Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: chirp and dependencies
@ 2023-08-15  8:19 realcharmer
  2023-08-15  8:29 ` [PR PATCH] [Updated] " realcharmer
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: realcharmer @ 2023-08-15  8:19 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 987 bytes --]

There is a new pull request by realcharmer against master on the void-packages repository

https://github.com/realcharmer/void-packages chirp
https://github.com/void-linux/void-packages/pull/45610

New package: chirp and dependencies
This PR adds CHIRP, utility for programming amateur radios, and needed python3 dependencies. This package has been requested and packaged in the past, but was rejected due to upstream not supporting python3 and was postponed until then. The software is now running well on python3.

Related: #14681, #9018, #12072

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)

A patch file from https://github.com/void-linux/void-packages/pull/45610.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-chirp-45610.patch --]
[-- Type: text/x-diff, Size: 3274 bytes --]

From 6264c54009f37645382fae4223894bc3d948794e Mon Sep 17 00:00:00 2001
From: Emil Miler <em@0x45.cz>
Date: Tue, 15 Aug 2023 10:12:02 +0200
Subject: [PATCH 1/3] New package: python3-suds-1.1.2

---
 srcpkgs/python3-suds/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/python3-suds/template

diff --git a/srcpkgs/python3-suds/template b/srcpkgs/python3-suds/template
new file mode 100644
index 0000000000000..41fa373d7fdd1
--- /dev/null
+++ b/srcpkgs/python3-suds/template
@@ -0,0 +1,17 @@
+# Template file for 'python3-suds'
+pkgname=python3-suds
+version=1.1.2
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3"
+short_desc="Lightweight SOAP-based web service client for Python"
+maintainer="Emil Miler <em@0x45.cz>"
+license="LGPL-3.0"
+homepage="https://github.com/suds-community/suds/"
+distfiles="${PYPI_SITE}/s/suds/suds-${version}.tar.gz"
+checksum=1d5cfa74117193b244a4233f246c483d9f41198b448c5f14a8bad11c4f649f2b
+
+post_install() {
+	vlicense LICENSE.txt
+}

From 6fe9a5e4e3d946c7559316c9f7c632d31d51382c Mon Sep 17 00:00:00 2001
From: Emil Miler <em@0x45.cz>
Date: Tue, 15 Aug 2023 10:12:31 +0200
Subject: [PATCH 2/3] New package: python3-yattag-1.15.1

---
 srcpkgs/python3-yattag/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/python3-yattag/template

diff --git a/srcpkgs/python3-yattag/template b/srcpkgs/python3-yattag/template
new file mode 100644
index 0000000000000..98de6665d3704
--- /dev/null
+++ b/srcpkgs/python3-yattag/template
@@ -0,0 +1,17 @@
+# Template file for 'python3-yattag'
+pkgname=python3-yattag
+version=1.15.1
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3"
+short_desc="Generate HTML or XML in a pythonic way"
+maintainer="Emil Miler <em@0x45.cz>"
+license="LGPL-2.1"
+homepage="https://www.yattag.org/"
+distfiles="${PYPI_SITE}/y/yattag/yattag-${version}.tar.gz"
+checksum=960fa54be1229d96f43178133e0b195c003391fdc49ecdb6b69b7374db6be416
+
+post_install() {
+	vlicense license/lgpl-2.1.txt
+}

From 26c103ea992d42950a27d112d9f46b7bae660951 Mon Sep 17 00:00:00 2001
From: Emil Miler <em@0x45.cz>
Date: Tue, 15 Aug 2023 10:15:20 +0200
Subject: [PATCH 3/3] New package: chirp-20230814

---
 srcpkgs/chirp/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/chirp/template

diff --git a/srcpkgs/chirp/template b/srcpkgs/chirp/template
new file mode 100644
index 0000000000000..18571a49a9c9d
--- /dev/null
+++ b/srcpkgs/chirp/template
@@ -0,0 +1,18 @@
+# Template file for 'chirp'
+pkgname=chirp
+version=20230814
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3-six wxPython4 python3-pyserial python3-future python3-requests
+ python3-suds python3-yattag"
+short_desc="Open-source tool for programming amateur radios"
+maintainer="Emil Miler <em@0x45.cz>"
+license="GPL-3.0-or-later"
+homepage="https://chirp.danplanet.com/projects/chirp/wiki/Home"
+distfiles="https://trac.chirp.danplanet.com/chirp_next/next-${version}/chirp-${version}.tar.gz"
+checksum=0e1e4726da8d7c360ea79948898f3aeb4221eecd22b546f69d51e47d24b7c599
+
+post_install() {
+	vlicense COPYING
+}

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

* Re: [PR PATCH] [Updated] New package: chirp and dependencies
  2023-08-15  8:19 [PR PATCH] New package: chirp and dependencies realcharmer
@ 2023-08-15  8:29 ` realcharmer
  2023-08-15  8:32 ` realcharmer
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: realcharmer @ 2023-08-15  8:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 992 bytes --]

There is an updated pull request by realcharmer against master on the void-packages repository

https://github.com/realcharmer/void-packages chirp
https://github.com/void-linux/void-packages/pull/45610

New package: chirp and dependencies
This PR adds CHIRP, utility for programming amateur radios, and needed python3 dependencies. This package has been requested and packaged in the past, but was rejected due to upstream not supporting python3 and was postponed until then. The software is now running well on python3.

Related: #14681, #9018, #12072

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)

A patch file from https://github.com/void-linux/void-packages/pull/45610.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-chirp-45610.patch --]
[-- Type: text/x-diff, Size: 3071 bytes --]

From 4252b30c3323af0cda8e990f4abd8268c28ad7d9 Mon Sep 17 00:00:00 2001
From: Emil Miler <em@0x45.cz>
Date: Tue, 15 Aug 2023 10:12:02 +0200
Subject: [PATCH 1/3] New package: python3-suds-1.1.2

---
 srcpkgs/python3-suds/template | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 srcpkgs/python3-suds/template

diff --git a/srcpkgs/python3-suds/template b/srcpkgs/python3-suds/template
new file mode 100644
index 0000000000000..29b4e98f3fad2
--- /dev/null
+++ b/srcpkgs/python3-suds/template
@@ -0,0 +1,12 @@
+# Template file for 'python3-suds'
+pkgname=python3-suds
+version=1.1.2
+revision=1
+build_style=python3-pep517
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3"
+short_desc="Lightweight SOAP-based web service client for Python"
+maintainer="Emil Miler <em@0x45.cz>"
+license="LGPL-3.0-or-later"
+homepage="https://github.com/suds-community/suds/"
+distfiles="${PYPI_SITE}/s/suds/suds-${version}.tar.gz"

From 0ec8cb728170b5f7a32bab4b3387b7b556570ce7 Mon Sep 17 00:00:00 2001
From: Emil Miler <em@0x45.cz>
Date: Tue, 15 Aug 2023 10:12:31 +0200
Subject: [PATCH 2/3] New package: python3-yattag-1.15.1

---
 srcpkgs/python3-yattag/template | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 srcpkgs/python3-yattag/template

diff --git a/srcpkgs/python3-yattag/template b/srcpkgs/python3-yattag/template
new file mode 100644
index 0000000000000..fb9935b59e79f
--- /dev/null
+++ b/srcpkgs/python3-yattag/template
@@ -0,0 +1,13 @@
+# Template file for 'python3-yattag'
+pkgname=python3-yattag
+version=1.15.1
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3"
+short_desc="Generate HTML or XML in a pythonic way"
+maintainer="Emil Miler <em@0x45.cz>"
+license="LGPL-2.1-only"
+homepage="https://www.yattag.org/"
+distfiles="${PYPI_SITE}/y/yattag/yattag-${version}.tar.gz"
+checksum=960fa54be1229d96f43178133e0b195c003391fdc49ecdb6b69b7374db6be416

From ec1ac405e124b7def847d30c47a9491bfc6f2646 Mon Sep 17 00:00:00 2001
From: Emil Miler <em@0x45.cz>
Date: Tue, 15 Aug 2023 10:15:20 +0200
Subject: [PATCH 3/3] New package: chirp-20230814

---
 srcpkgs/chirp/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/chirp/template

diff --git a/srcpkgs/chirp/template b/srcpkgs/chirp/template
new file mode 100644
index 0000000000000..5545245aeef1c
--- /dev/null
+++ b/srcpkgs/chirp/template
@@ -0,0 +1,14 @@
+# Template file for 'chirp'
+pkgname=chirp
+version=20230814
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3-six wxPython4 python3-pyserial python3-future python3-requests
+ python3-suds python3-yattag"
+short_desc="Open-source tool for programming amateur radios"
+maintainer="Emil Miler <em@0x45.cz>"
+license="GPL-3.0-or-later"
+homepage="https://chirp.danplanet.com/projects/chirp/wiki/Home"
+distfiles="https://trac.chirp.danplanet.com/chirp_next/next-${version}/chirp-${version}.tar.gz"
+checksum=0e1e4726da8d7c360ea79948898f3aeb4221eecd22b546f69d51e47d24b7c599

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

* Re: [PR PATCH] [Updated] New package: chirp and dependencies
  2023-08-15  8:19 [PR PATCH] New package: chirp and dependencies realcharmer
  2023-08-15  8:29 ` [PR PATCH] [Updated] " realcharmer
@ 2023-08-15  8:32 ` realcharmer
  2023-08-15  8:39 ` realcharmer
  2023-08-16  0:43 ` [PR PATCH] [Merged]: " sgn
  3 siblings, 0 replies; 5+ messages in thread
From: realcharmer @ 2023-08-15  8:32 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 992 bytes --]

There is an updated pull request by realcharmer against master on the void-packages repository

https://github.com/realcharmer/void-packages chirp
https://github.com/void-linux/void-packages/pull/45610

New package: chirp and dependencies
This PR adds CHIRP, utility for programming amateur radios, and needed python3 dependencies. This package has been requested and packaged in the past, but was rejected due to upstream not supporting python3 and was postponed until then. The software is now running well on python3.

Related: #14681, #9018, #12072

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)

A patch file from https://github.com/void-linux/void-packages/pull/45610.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-chirp-45610.patch --]
[-- Type: text/x-diff, Size: 3147 bytes --]

From 4899480d3161ca2c6ca7e3d99818df8558f9c2d7 Mon Sep 17 00:00:00 2001
From: Emil Miler <em@0x45.cz>
Date: Tue, 15 Aug 2023 10:12:02 +0200
Subject: [PATCH 1/3] New package: python3-suds-1.1.2

---
 srcpkgs/python3-suds/template | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 srcpkgs/python3-suds/template

diff --git a/srcpkgs/python3-suds/template b/srcpkgs/python3-suds/template
new file mode 100644
index 0000000000000..d4a33cc5d24ef
--- /dev/null
+++ b/srcpkgs/python3-suds/template
@@ -0,0 +1,13 @@
+# Template file for 'python3-suds'
+pkgname=python3-suds
+version=1.1.2
+revision=1
+build_style=python3-pep517
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3"
+short_desc="Lightweight SOAP-based web service client for Python"
+maintainer="Emil Miler <em@0x45.cz>"
+license="LGPL-3.0-or-later"
+homepage="https://github.com/suds-community/suds/"
+distfiles="${PYPI_SITE}/s/suds/suds-${version}.tar.gz"
+checksum=1d5cfa74117193b244a4233f246c483d9f41198b448c5f14a8bad11c4f649f2b

From 291c22dd8cd8f0cce46f098a8a6b42f72728a42c Mon Sep 17 00:00:00 2001
From: Emil Miler <em@0x45.cz>
Date: Tue, 15 Aug 2023 10:12:31 +0200
Subject: [PATCH 2/3] New package: python3-yattag-1.15.1

---
 srcpkgs/python3-yattag/template | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 srcpkgs/python3-yattag/template

diff --git a/srcpkgs/python3-yattag/template b/srcpkgs/python3-yattag/template
new file mode 100644
index 0000000000000..fb9935b59e79f
--- /dev/null
+++ b/srcpkgs/python3-yattag/template
@@ -0,0 +1,13 @@
+# Template file for 'python3-yattag'
+pkgname=python3-yattag
+version=1.15.1
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3"
+short_desc="Generate HTML or XML in a pythonic way"
+maintainer="Emil Miler <em@0x45.cz>"
+license="LGPL-2.1-only"
+homepage="https://www.yattag.org/"
+distfiles="${PYPI_SITE}/y/yattag/yattag-${version}.tar.gz"
+checksum=960fa54be1229d96f43178133e0b195c003391fdc49ecdb6b69b7374db6be416

From fa90a0ae5049bc9c3b51105376115a2c01be33e7 Mon Sep 17 00:00:00 2001
From: Emil Miler <em@0x45.cz>
Date: Tue, 15 Aug 2023 10:15:20 +0200
Subject: [PATCH 3/3] New package: chirp-20230814

---
 srcpkgs/chirp/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/chirp/template

diff --git a/srcpkgs/chirp/template b/srcpkgs/chirp/template
new file mode 100644
index 0000000000000..5545245aeef1c
--- /dev/null
+++ b/srcpkgs/chirp/template
@@ -0,0 +1,14 @@
+# Template file for 'chirp'
+pkgname=chirp
+version=20230814
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3-six wxPython4 python3-pyserial python3-future python3-requests
+ python3-suds python3-yattag"
+short_desc="Open-source tool for programming amateur radios"
+maintainer="Emil Miler <em@0x45.cz>"
+license="GPL-3.0-or-later"
+homepage="https://chirp.danplanet.com/projects/chirp/wiki/Home"
+distfiles="https://trac.chirp.danplanet.com/chirp_next/next-${version}/chirp-${version}.tar.gz"
+checksum=0e1e4726da8d7c360ea79948898f3aeb4221eecd22b546f69d51e47d24b7c599

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

* Re: [PR PATCH] [Updated] New package: chirp and dependencies
  2023-08-15  8:19 [PR PATCH] New package: chirp and dependencies realcharmer
  2023-08-15  8:29 ` [PR PATCH] [Updated] " realcharmer
  2023-08-15  8:32 ` realcharmer
@ 2023-08-15  8:39 ` realcharmer
  2023-08-16  0:43 ` [PR PATCH] [Merged]: " sgn
  3 siblings, 0 replies; 5+ messages in thread
From: realcharmer @ 2023-08-15  8:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 992 bytes --]

There is an updated pull request by realcharmer against master on the void-packages repository

https://github.com/realcharmer/void-packages chirp
https://github.com/void-linux/void-packages/pull/45610

New package: chirp and dependencies
This PR adds CHIRP, utility for programming amateur radios, and needed python3 dependencies. This package has been requested and packaged in the past, but was rejected due to upstream not supporting python3 and was postponed until then. The software is now running well on python3.

Related: #14681, #9018, #12072

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)

A patch file from https://github.com/void-linux/void-packages/pull/45610.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-chirp-45610.patch --]
[-- Type: text/x-diff, Size: 3161 bytes --]

From 4899480d3161ca2c6ca7e3d99818df8558f9c2d7 Mon Sep 17 00:00:00 2001
From: Emil Miler <em@0x45.cz>
Date: Tue, 15 Aug 2023 10:12:02 +0200
Subject: [PATCH 1/3] New package: python3-suds-1.1.2

---
 srcpkgs/python3-suds/template | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 srcpkgs/python3-suds/template

diff --git a/srcpkgs/python3-suds/template b/srcpkgs/python3-suds/template
new file mode 100644
index 0000000000000..d4a33cc5d24ef
--- /dev/null
+++ b/srcpkgs/python3-suds/template
@@ -0,0 +1,13 @@
+# Template file for 'python3-suds'
+pkgname=python3-suds
+version=1.1.2
+revision=1
+build_style=python3-pep517
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3"
+short_desc="Lightweight SOAP-based web service client for Python"
+maintainer="Emil Miler <em@0x45.cz>"
+license="LGPL-3.0-or-later"
+homepage="https://github.com/suds-community/suds/"
+distfiles="${PYPI_SITE}/s/suds/suds-${version}.tar.gz"
+checksum=1d5cfa74117193b244a4233f246c483d9f41198b448c5f14a8bad11c4f649f2b

From 291c22dd8cd8f0cce46f098a8a6b42f72728a42c Mon Sep 17 00:00:00 2001
From: Emil Miler <em@0x45.cz>
Date: Tue, 15 Aug 2023 10:12:31 +0200
Subject: [PATCH 2/3] New package: python3-yattag-1.15.1

---
 srcpkgs/python3-yattag/template | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 srcpkgs/python3-yattag/template

diff --git a/srcpkgs/python3-yattag/template b/srcpkgs/python3-yattag/template
new file mode 100644
index 0000000000000..fb9935b59e79f
--- /dev/null
+++ b/srcpkgs/python3-yattag/template
@@ -0,0 +1,13 @@
+# Template file for 'python3-yattag'
+pkgname=python3-yattag
+version=1.15.1
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3"
+short_desc="Generate HTML or XML in a pythonic way"
+maintainer="Emil Miler <em@0x45.cz>"
+license="LGPL-2.1-only"
+homepage="https://www.yattag.org/"
+distfiles="${PYPI_SITE}/y/yattag/yattag-${version}.tar.gz"
+checksum=960fa54be1229d96f43178133e0b195c003391fdc49ecdb6b69b7374db6be416

From 13142700d36866d7cafe6d8cd98443589e8b7cf5 Mon Sep 17 00:00:00 2001
From: Emil Miler <em@0x45.cz>
Date: Tue, 15 Aug 2023 10:15:20 +0200
Subject: [PATCH 3/3] New package: chirp-20230814

---
 srcpkgs/chirp/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/chirp/template

diff --git a/srcpkgs/chirp/template b/srcpkgs/chirp/template
new file mode 100644
index 0000000000000..25fa195d038cd
--- /dev/null
+++ b/srcpkgs/chirp/template
@@ -0,0 +1,14 @@
+# Template file for 'chirp'
+pkgname=chirp
+version=20230814
+revision=1
+build_style=python3-pep517
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3-six wxPython4 python3-pyserial python3-future python3-requests
+ python3-suds python3-yattag"
+short_desc="Open-source tool for programming amateur radios"
+maintainer="Emil Miler <em@0x45.cz>"
+license="GPL-3.0-or-later"
+homepage="https://chirp.danplanet.com/projects/chirp/wiki/Home"
+distfiles="https://trac.chirp.danplanet.com/chirp_next/next-${version}/chirp-${version}.tar.gz"
+checksum=0e1e4726da8d7c360ea79948898f3aeb4221eecd22b546f69d51e47d24b7c599

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

* Re: [PR PATCH] [Merged]: New package: chirp and dependencies
  2023-08-15  8:19 [PR PATCH] New package: chirp and dependencies realcharmer
                   ` (2 preceding siblings ...)
  2023-08-15  8:39 ` realcharmer
@ 2023-08-16  0:43 ` sgn
  3 siblings, 0 replies; 5+ messages in thread
From: sgn @ 2023-08-16  0:43 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 830 bytes --]

There's a merged pull request on the void-packages repository

New package: chirp and dependencies
https://github.com/void-linux/void-packages/pull/45610

Description:
This PR adds CHIRP, utility for programming amateur radios, and needed python3 dependencies. This package has been requested and packaged in the past, but was rejected due to upstream not supporting python3 and was postponed until then. The software is now running well on python3.

Related: #14681, #9018, #12072

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)

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

end of thread, other threads:[~2023-08-16  0:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-15  8:19 [PR PATCH] New package: chirp and dependencies realcharmer
2023-08-15  8:29 ` [PR PATCH] [Updated] " realcharmer
2023-08-15  8:32 ` realcharmer
2023-08-15  8:39 ` realcharmer
2023-08-16  0:43 ` [PR PATCH] [Merged]: " sgn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).