Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Omnibus lint pass for SPDX warnings - packages starting with Z
@ 2021-07-01  7:19 heliocat
  2021-07-03  2:21 ` [PR REVIEW] " ericonr
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: heliocat @ 2021-07-01  7:19 UTC (permalink / raw)
  To: ml

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

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

https://github.com/heliocat/void-packages lint_z
https://github.com/void-linux/void-packages/pull/31733

Omnibus lint pass for SPDX warnings - packages starting with Z
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->

#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl



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

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

From 379c310e2fbf5f16810760b98974a8b44a9b81ce Mon Sep 17 00:00:00 2001
From: Colin Booth <colin@heliocat.net>
Date: Wed, 30 Jun 2021 23:08:42 -0700
Subject: [PATCH 1/4] zisofs-tools: fix license, template layout

---
 srcpkgs/zisofs-tools/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/zisofs-tools/template b/srcpkgs/zisofs-tools/template
index 157e5411052a..5292775c1a72 100644
--- a/srcpkgs/zisofs-tools/template
+++ b/srcpkgs/zisofs-tools/template
@@ -1,14 +1,14 @@
 # Template file for 'zisofs-tools'
 pkgname=zisofs-tools
 version=1.0.8
-revision=5
+revision=6
 build_style=gnu-configure
 makedepends="zlib-devel"
 short_desc="ISO9660 transparent compression tool"
-homepage="https://www.kernel.org/pub/linux/utils/fs/zisofs/"
-license="GPL-2"
 maintainer="Orphaned <orphan@voidlinux.org>"
-distfiles="http://pkgs.fedoraproject.org/repo/pkgs/zisofs-tools/zisofs-tools-1.0.8.tar.bz2/2d0ed8c9a1f60b45f949b136f9be1f6c/$pkgname-$version.tar.bz2"
+license="GPL-2.0-or-later"
+homepage="https://mirrors.edge.kernel.org/pub/linux/utils/fs/zisofs/README"
+distfiles="http://pkgs.fedoraproject.org/repo/pkgs/zisofs-tools/zisofs-tools-${version}.tar.bz2/2d0ed8c9a1f60b45f949b136f9be1f6c/$pkgname-$version.tar.bz2"
 checksum=ae4e53e4914934d41660248fb59d3c8761f1f1fd180d5ec993c17ddb3afd04f3
 
 do_install() {

From 50c147743a65bb534639b94ae9c8426e53c5b5e5 Mon Sep 17 00:00:00 2001
From: Colin Booth <colin@heliocat.net>
Date: Wed, 30 Jun 2021 23:41:15 -0700
Subject: [PATCH 2/4] zmap: fix license, skip checks

---
 srcpkgs/zmap/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/zmap/template b/srcpkgs/zmap/template
index 53f2383fa793..b35b850480e9 100644
--- a/srcpkgs/zmap/template
+++ b/srcpkgs/zmap/template
@@ -1,17 +1,18 @@
 # Template file for 'zmap'
 pkgname=zmap
 version=2.1.1
-revision=4
+revision=5
 build_style=cmake
 conf_files="/etc/zmap/blacklist.conf /etc/zmap/zmap.conf"
 hostmakedepends="flex byacc gengetopt pkg-config"
 makedepends="libpcap-devel gmp-devel json-c-devel"
 short_desc="Fast network scanner designed for Internet-wide network surveys"
 maintainer="Duncaen <mail@duncano.de>"
-license="Apache"
+license="Apache-2.0"
 homepage="https://zmap.io"
 distfiles="https://github.com/zmap/zmap/archive/v${version}.tar.gz"
 checksum=29627520c81101de01b0213434adb218a9f1210bfd3f2dcfdfc1f975dbce6399
+make_check=no # does not define any checks
 
 do_configure() {
 	cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .
@@ -27,5 +28,4 @@ do_install() {
 	mv ${DESTDIR}/usr/sbin/* ${DESTDIR}/usr/bin
 	vmkdir etc/zmap
 	vcopy conf/* etc/zmap
-	vlicense LICENSE
 }

From 85da8b63907673a13c90a3fe766c544751dd3d3c Mon Sep 17 00:00:00 2001
From: Colin Booth <colin@heliocat.net>
Date: Thu, 1 Jul 2021 00:14:14 -0700
Subject: [PATCH 3/4] zsnes: fix license, template layout, http->https

---
 srcpkgs/zsnes/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/zsnes/template b/srcpkgs/zsnes/template
index df49c9c7d3e7..db366e95d09d 100644
--- a/srcpkgs/zsnes/template
+++ b/srcpkgs/zsnes/template
@@ -2,13 +2,13 @@
 #
 # 32bit
 archs="i686"
-lib32mode="full"
 wrksrc="zsnes_1_51"
 build_wrksrc="src"
+lib32mode="full"
 
 pkgname=zsnes
 version=1.51
-revision=3
+revision=4
 build_style=gnu-configure
 configure_args="force_arch=i686"
 hostmakedepends="nasm pkg-config"
@@ -16,8 +16,8 @@ makedepends="MesaLib-devel SDL-devel libpng-devel ncurses-devel"
 depends="desktop-file-utils hicolor-icon-theme"
 short_desc="Super Nintendo emulator"
 maintainer="Orphaned <orphan@voidlinux.org>"
-license="GPL-2"
-homepage="http://www.zsnes.com/"
+license="GPL-2.0-only"
+homepage="https://www.zsnes.com/"
 distfiles="${SOURCEFORGE_SITE}/zsnes/zsnes151src.tar.bz2"
 checksum=2856dedba272e9eed66cbf68dd4a9ae56797c373686c57371a65c7df35264623
 

From dad8d9a7f5ee6435adae212d07bed1a04f2d5bb8 Mon Sep 17 00:00:00 2001
From: Colin Booth <colin@heliocat.net>
Date: Thu, 1 Jul 2021 00:18:16 -0700
Subject: [PATCH 4/4] zsync: fix license, checkdepends, vsed, template layout

---
 srcpkgs/zsync/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/zsync/template b/srcpkgs/zsync/template
index 8d0a710769be..693089f0dc6e 100644
--- a/srcpkgs/zsync/template
+++ b/srcpkgs/zsync/template
@@ -1,16 +1,16 @@
 # Template file for 'zsync'
 pkgname=zsync
 version=0.6.2
-revision=3
+revision=4
 build_style=gnu-configure
+checkdepends="perl"
 short_desc="Client-side implementation of the rsync algorithm"
 maintainer="Orphaned <orphan@voidlinux.org>"
-license="Artistic"
+license="Artistic-2.0"
 homepage="http://zsync.moria.org.uk/"
 distfiles="http://zsync.moria.org.uk/download/zsync-$version.tar.bz2"
 checksum=0b9d53433387aa4f04634a6c63a5efa8203070f2298af72a705f9be3dda65af2
 
 post_extract() {
-	sed -i "11a#include <sys/types.h>" libzsync/sha1.h
+	vsed -i "11a#include <sys/types.h>" libzsync/sha1.h
 }
-

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

* Re: [PR REVIEW] Omnibus lint pass for SPDX warnings - packages starting with Z
  2021-07-01  7:19 [PR PATCH] Omnibus lint pass for SPDX warnings - packages starting with Z heliocat
@ 2021-07-03  2:21 ` ericonr
  2021-07-03  6:16 ` heliocat
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: ericonr @ 2021-07-03  2:21 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/31733#discussion_r663304078

Comment:
Please group these together, it will bubble up a bunch of xlints.

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

* Re: [PR REVIEW] Omnibus lint pass for SPDX warnings - packages starting with Z
  2021-07-01  7:19 [PR PATCH] Omnibus lint pass for SPDX warnings - packages starting with Z heliocat
  2021-07-03  2:21 ` [PR REVIEW] " ericonr
@ 2021-07-03  6:16 ` heliocat
  2021-07-04 19:31 ` ericonr
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: heliocat @ 2021-07-03  6:16 UTC (permalink / raw)
  To: ml

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

New review comment by heliocat on void-packages repository

https://github.com/void-linux/void-packages/pull/31733#discussion_r663324660

Comment:
The only template that has a mis-located lib32mode is zsnes. Of the other six templates containing a lib32mode= line (doom3, mesa, pcsx2, qt5, swars, and wine), only doom3, qt5, and swars have lint errors and none of them complain about location.

Or are you saying to consolidate the lines of the zsnes template across the board? Entirely doable but I'd like to know that's the ask before redoing it.

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

* Re: [PR REVIEW] Omnibus lint pass for SPDX warnings - packages starting with Z
  2021-07-01  7:19 [PR PATCH] Omnibus lint pass for SPDX warnings - packages starting with Z heliocat
  2021-07-03  2:21 ` [PR REVIEW] " ericonr
  2021-07-03  6:16 ` heliocat
@ 2021-07-04 19:31 ` ericonr
  2021-07-04 20:01 ` [PR PATCH] [Updated] " heliocat
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: ericonr @ 2021-07-04 19:31 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/31733#discussion_r663546887

Comment:
Yes, only fix the lines in the zsnes template itself. That break between the two blocks makes xlint not do a full lint.

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

* Re: [PR PATCH] [Updated] Omnibus lint pass for SPDX warnings - packages starting with Z
  2021-07-01  7:19 [PR PATCH] Omnibus lint pass for SPDX warnings - packages starting with Z heliocat
                   ` (2 preceding siblings ...)
  2021-07-04 19:31 ` ericonr
@ 2021-07-04 20:01 ` heliocat
  2021-07-04 20:01 ` [PR REVIEW] " heliocat
  2021-07-04 20:52 ` [PR PATCH] [Merged]: " ericonr
  5 siblings, 0 replies; 7+ messages in thread
From: heliocat @ 2021-07-04 20:01 UTC (permalink / raw)
  To: ml

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

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

https://github.com/heliocat/void-packages lint_z
https://github.com/void-linux/void-packages/pull/31733

Omnibus lint pass for SPDX warnings - packages starting with Z
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->

#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl



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

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

From 379c310e2fbf5f16810760b98974a8b44a9b81ce Mon Sep 17 00:00:00 2001
From: Colin Booth <colin@heliocat.net>
Date: Wed, 30 Jun 2021 23:08:42 -0700
Subject: [PATCH 1/4] zisofs-tools: fix license, template layout

---
 srcpkgs/zisofs-tools/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/zisofs-tools/template b/srcpkgs/zisofs-tools/template
index 157e5411052a..5292775c1a72 100644
--- a/srcpkgs/zisofs-tools/template
+++ b/srcpkgs/zisofs-tools/template
@@ -1,14 +1,14 @@
 # Template file for 'zisofs-tools'
 pkgname=zisofs-tools
 version=1.0.8
-revision=5
+revision=6
 build_style=gnu-configure
 makedepends="zlib-devel"
 short_desc="ISO9660 transparent compression tool"
-homepage="https://www.kernel.org/pub/linux/utils/fs/zisofs/"
-license="GPL-2"
 maintainer="Orphaned <orphan@voidlinux.org>"
-distfiles="http://pkgs.fedoraproject.org/repo/pkgs/zisofs-tools/zisofs-tools-1.0.8.tar.bz2/2d0ed8c9a1f60b45f949b136f9be1f6c/$pkgname-$version.tar.bz2"
+license="GPL-2.0-or-later"
+homepage="https://mirrors.edge.kernel.org/pub/linux/utils/fs/zisofs/README"
+distfiles="http://pkgs.fedoraproject.org/repo/pkgs/zisofs-tools/zisofs-tools-${version}.tar.bz2/2d0ed8c9a1f60b45f949b136f9be1f6c/$pkgname-$version.tar.bz2"
 checksum=ae4e53e4914934d41660248fb59d3c8761f1f1fd180d5ec993c17ddb3afd04f3
 
 do_install() {

From 50c147743a65bb534639b94ae9c8426e53c5b5e5 Mon Sep 17 00:00:00 2001
From: Colin Booth <colin@heliocat.net>
Date: Wed, 30 Jun 2021 23:41:15 -0700
Subject: [PATCH 2/4] zmap: fix license, skip checks

---
 srcpkgs/zmap/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/zmap/template b/srcpkgs/zmap/template
index 53f2383fa793..b35b850480e9 100644
--- a/srcpkgs/zmap/template
+++ b/srcpkgs/zmap/template
@@ -1,17 +1,18 @@
 # Template file for 'zmap'
 pkgname=zmap
 version=2.1.1
-revision=4
+revision=5
 build_style=cmake
 conf_files="/etc/zmap/blacklist.conf /etc/zmap/zmap.conf"
 hostmakedepends="flex byacc gengetopt pkg-config"
 makedepends="libpcap-devel gmp-devel json-c-devel"
 short_desc="Fast network scanner designed for Internet-wide network surveys"
 maintainer="Duncaen <mail@duncano.de>"
-license="Apache"
+license="Apache-2.0"
 homepage="https://zmap.io"
 distfiles="https://github.com/zmap/zmap/archive/v${version}.tar.gz"
 checksum=29627520c81101de01b0213434adb218a9f1210bfd3f2dcfdfc1f975dbce6399
+make_check=no # does not define any checks
 
 do_configure() {
 	cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .
@@ -27,5 +28,4 @@ do_install() {
 	mv ${DESTDIR}/usr/sbin/* ${DESTDIR}/usr/bin
 	vmkdir etc/zmap
 	vcopy conf/* etc/zmap
-	vlicense LICENSE
 }

From 4beab8dcb8d8f366c9a5fb3eefbe6a4ab2570f98 Mon Sep 17 00:00:00 2001
From: Colin Booth <colin@heliocat.net>
Date: Thu, 1 Jul 2021 00:14:14 -0700
Subject: [PATCH 3/4] zsnes: fix license, template layout, http->https

---
 srcpkgs/zsnes/template | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/zsnes/template b/srcpkgs/zsnes/template
index df49c9c7d3e7..c0a587933aa1 100644
--- a/srcpkgs/zsnes/template
+++ b/srcpkgs/zsnes/template
@@ -1,14 +1,12 @@
 # Template file for 'zsnes'
 #
 # 32bit
+pkgname=zsnes
+version=1.51
+revision=4
 archs="i686"
-lib32mode="full"
 wrksrc="zsnes_1_51"
 build_wrksrc="src"
-
-pkgname=zsnes
-version=1.51
-revision=3
 build_style=gnu-configure
 configure_args="force_arch=i686"
 hostmakedepends="nasm pkg-config"
@@ -16,10 +14,11 @@ makedepends="MesaLib-devel SDL-devel libpng-devel ncurses-devel"
 depends="desktop-file-utils hicolor-icon-theme"
 short_desc="Super Nintendo emulator"
 maintainer="Orphaned <orphan@voidlinux.org>"
-license="GPL-2"
-homepage="http://www.zsnes.com/"
+license="GPL-2.0-only"
+homepage="https://www.zsnes.com/"
 distfiles="${SOURCEFORGE_SITE}/zsnes/zsnes151src.tar.bz2"
 checksum=2856dedba272e9eed66cbf68dd4a9ae56797c373686c57371a65c7df35264623
+lib32mode="full"
 
 CFLAGS="-fcommon"
 

From c9d39955196b29f3635ba4fd3ac6fa981cb151f8 Mon Sep 17 00:00:00 2001
From: Colin Booth <colin@heliocat.net>
Date: Thu, 1 Jul 2021 00:18:16 -0700
Subject: [PATCH 4/4] zsync: fix license, checkdepends, vsed, template layout

---
 srcpkgs/zsync/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/zsync/template b/srcpkgs/zsync/template
index 8d0a710769be..693089f0dc6e 100644
--- a/srcpkgs/zsync/template
+++ b/srcpkgs/zsync/template
@@ -1,16 +1,16 @@
 # Template file for 'zsync'
 pkgname=zsync
 version=0.6.2
-revision=3
+revision=4
 build_style=gnu-configure
+checkdepends="perl"
 short_desc="Client-side implementation of the rsync algorithm"
 maintainer="Orphaned <orphan@voidlinux.org>"
-license="Artistic"
+license="Artistic-2.0"
 homepage="http://zsync.moria.org.uk/"
 distfiles="http://zsync.moria.org.uk/download/zsync-$version.tar.bz2"
 checksum=0b9d53433387aa4f04634a6c63a5efa8203070f2298af72a705f9be3dda65af2
 
 post_extract() {
-	sed -i "11a#include <sys/types.h>" libzsync/sha1.h
+	vsed -i "11a#include <sys/types.h>" libzsync/sha1.h
 }
-

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

* Re: [PR REVIEW] Omnibus lint pass for SPDX warnings - packages starting with Z
  2021-07-01  7:19 [PR PATCH] Omnibus lint pass for SPDX warnings - packages starting with Z heliocat
                   ` (3 preceding siblings ...)
  2021-07-04 20:01 ` [PR PATCH] [Updated] " heliocat
@ 2021-07-04 20:01 ` heliocat
  2021-07-04 20:52 ` [PR PATCH] [Merged]: " ericonr
  5 siblings, 0 replies; 7+ messages in thread
From: heliocat @ 2021-07-04 20:01 UTC (permalink / raw)
  To: ml

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

New review comment by heliocat on void-packages repository

https://github.com/void-linux/void-packages/pull/31733#discussion_r663549931

Comment:
Cool thanks, fixed.

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

* Re: [PR PATCH] [Merged]: Omnibus lint pass for SPDX warnings - packages starting with Z
  2021-07-01  7:19 [PR PATCH] Omnibus lint pass for SPDX warnings - packages starting with Z heliocat
                   ` (4 preceding siblings ...)
  2021-07-04 20:01 ` [PR REVIEW] " heliocat
@ 2021-07-04 20:52 ` ericonr
  5 siblings, 0 replies; 7+ messages in thread
From: ericonr @ 2021-07-04 20:52 UTC (permalink / raw)
  To: ml

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

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

Omnibus lint pass for SPDX warnings - packages starting with Z
https://github.com/void-linux/void-packages/pull/31733

Description:
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->

#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl



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

end of thread, other threads:[~2021-07-04 20:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-01  7:19 [PR PATCH] Omnibus lint pass for SPDX warnings - packages starting with Z heliocat
2021-07-03  2:21 ` [PR REVIEW] " ericonr
2021-07-03  6:16 ` heliocat
2021-07-04 19:31 ` ericonr
2021-07-04 20:01 ` [PR PATCH] [Updated] " heliocat
2021-07-04 20:01 ` [PR REVIEW] " heliocat
2021-07-04 20:52 ` [PR PATCH] [Merged]: " ericonr

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).