Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Batch template fix for z* packages
@ 2021-03-28 10:52 UsernameRandomlyGenerated
  2021-03-28 12:03 ` [PR PATCH] [Updated] " UsernameRandomlyGenerated
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: UsernameRandomlyGenerated @ 2021-03-28 10:52 UTC (permalink / raw)
  To: ml

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

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

https://github.com/UsernameRandomlyGenerated/void-packages zlicense
https://github.com/void-linux/void-packages/pull/29804

Batch template fix for z* packages
<!-- 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.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->
Inspired by heliocat, that should fix most of the templates for packages that star with "z". I'll create another PR for zlib as it needs sed for license.


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

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

From e2dd1d34a647504b28f341a5dcd999d05ec04eb4 Mon Sep 17 00:00:00 2001
From: UsernameRandomlyGenerated <coredavid@tutanota.com>
Date: Sun, 28 Mar 2021 12:01:11 +0200
Subject: [PATCH 1/7] z80ex: fix license

---
 srcpkgs/z80ex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z80ex/template b/srcpkgs/z80ex/template
index 00a24a6fb902..f69ae320f0ac 100644
--- a/srcpkgs/z80ex/template
+++ b/srcpkgs/z80ex/template
@@ -5,7 +5,7 @@ revision=1
 build_style=cmake
 short_desc="ZiLOG Z80 CPU emulation library"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
-license="GPL-2"
+license="GPL-2.0-only"
 homepage="https://sourceforge.net/projects/z80ex/"
 distfiles="${SOURCEFORGE_SITE}/project/z80ex/z80ex/${version}/z80ex-${version}.tar.gz"
 checksum=6f5e521d068a614b41e10180ad4ae45b1bc258ec28c962543feb9078856c2530

From f85d0fe4eee0c33858358de2a8cf7b35c8287895 Mon Sep 17 00:00:00 2001
From: UsernameRandomlyGenerated <coredavid@tutanota.com>
Date: Sun, 28 Mar 2021 12:03:50 +0200
Subject: [PATCH 2/7] zerofree: fix template

---
 srcpkgs/zerofree/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zerofree/template b/srcpkgs/zerofree/template
index 82d05a933846..4b13cc21840f 100644
--- a/srcpkgs/zerofree/template
+++ b/srcpkgs/zerofree/template
@@ -4,7 +4,7 @@ version=1.1.1
 revision=1
 build_style=gnu-makefile
 makedepends="e2fsprogs-devel"
-short_desc="A tool to zero free blocks in an ext2 filesystem"
+short_desc="Tool to zero free blocks in an ext2 filesystem"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-only"
 homepage="https://frippery.org/uml/index.html"

From 8dcd8b572e8b15e52ca53b35de508925473156b0 Mon Sep 17 00:00:00 2001
From: UsernameRandomlyGenerated <coredavid@tutanota.com>
Date: Sun, 28 Mar 2021 12:10:43 +0200
Subject: [PATCH 3/7] zisofs-tools: fix template

Lint will still complain about not using ${version} but that's just how the download path is.
---
 srcpkgs/zisofs-tools/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/zisofs-tools/template b/srcpkgs/zisofs-tools/template
index 157e5411052a..05f7eae9413c 100644
--- a/srcpkgs/zisofs-tools/template
+++ b/srcpkgs/zisofs-tools/template
@@ -5,9 +5,9 @@ revision=5
 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>"
+license="GPL-2.0-or-later"
+homepage="https://www.kernel.org/pub/linux/utils/fs/zisofs/"
 distfiles="http://pkgs.fedoraproject.org/repo/pkgs/zisofs-tools/zisofs-tools-1.0.8.tar.bz2/2d0ed8c9a1f60b45f949b136f9be1f6c/$pkgname-$version.tar.bz2"
 checksum=ae4e53e4914934d41660248fb59d3c8761f1f1fd180d5ec993c17ddb3afd04f3
 

From 561169d932877cebdfa873a7f44faa4ee89e676c Mon Sep 17 00:00:00 2001
From: UsernameRandomlyGenerated <coredavid@tutanota.com>
Date: Sun, 28 Mar 2021 12:37:11 +0200
Subject: [PATCH 4/7] zmap: fix license

---
 srcpkgs/zmap/template | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/srcpkgs/zmap/template b/srcpkgs/zmap/template
index 53f2383fa793..f59686704346 100644
--- a/srcpkgs/zmap/template
+++ b/srcpkgs/zmap/template
@@ -8,7 +8,7 @@ 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
@@ -27,5 +27,4 @@ do_install() {
 	mv ${DESTDIR}/usr/sbin/* ${DESTDIR}/usr/bin
 	vmkdir etc/zmap
 	vcopy conf/* etc/zmap
-	vlicense LICENSE
 }

From dc2a2c5925b4ec6c06979eb7ee84b9faa74c70d4 Mon Sep 17 00:00:00 2001
From: UsernameRandomlyGenerated <coredavid@tutanota.com>
Date: Sun, 28 Mar 2021 12:44:14 +0200
Subject: [PATCH 5/7] zsnes: fix template

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

diff --git a/srcpkgs/zsnes/template b/srcpkgs/zsnes/template
index df49c9c7d3e7..8e987ee16527 100644
--- a/srcpkgs/zsnes/template
+++ b/srcpkgs/zsnes/template
@@ -2,9 +2,9 @@
 #
 # 32bit
 archs="i686"
-lib32mode="full"
 wrksrc="zsnes_1_51"
 build_wrksrc="src"
+lib32mode="full"
 
 pkgname=zsnes
 version=1.51
@@ -16,7 +16,7 @@ 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"
+license="GPL-2.0-only"
 homepage="http://www.zsnes.com/"
 distfiles="${SOURCEFORGE_SITE}/zsnes/zsnes151src.tar.bz2"
 checksum=2856dedba272e9eed66cbf68dd4a9ae56797c373686c57371a65c7df35264623

From b837fc471232575e3c373fedbc96e129aa4739c4 Mon Sep 17 00:00:00 2001
From: UsernameRandomlyGenerated <coredavid@tutanota.com>
Date: Sun, 28 Mar 2021 12:45:22 +0200
Subject: [PATCH 6/7] zsync: fix license

---
 srcpkgs/zsync/template | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/srcpkgs/zsync/template b/srcpkgs/zsync/template
index 8d0a710769be..ef4300c08c38 100644
--- a/srcpkgs/zsync/template
+++ b/srcpkgs/zsync/template
@@ -5,7 +5,7 @@ revision=3
 build_style=gnu-configure
 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
@@ -13,4 +13,3 @@ checksum=0b9d53433387aa4f04634a6c63a5efa8203070f2298af72a705f9be3dda65af2
 post_extract() {
 	sed -i "11a#include <sys/types.h>" libzsync/sha1.h
 }
-

From 3a2f49953521d4783718bb3e1e9d054b56a8d767 Mon Sep 17 00:00:00 2001
From: UsernameRandomlyGenerated <coredavid@tutanota.com>
Date: Sun, 28 Mar 2021 12:47:43 +0200
Subject: [PATCH 7/7] zulip-desktop: fix template

---
 srcpkgs/zulip-desktop/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/zulip-desktop/template b/srcpkgs/zulip-desktop/template
index 7bf91792fdd1..49ac0f08144b 100644
--- a/srcpkgs/zulip-desktop/template
+++ b/srcpkgs/zulip-desktop/template
@@ -1,15 +1,16 @@
-pkgname="zulip-desktop"
+# Template file for 'zulip-desktop'
+pkgname=zulip-desktop
 version=0.5.1
 revision=2
 wrksrc="${pkgname}-legacy-${version}"
 build_style=cmake
 configure_args="-DBUILD_WITH_QT5=On"
+makedepends="qt5-webkit-devel phonon-qt5-devel qt5-svg-devel qt5-multimedia-devel"
 short_desc="Workplace chat that improves your productivity"
 maintainer="Luca - <luca.andrea.fuse@gmx.com>"
 license="Apache-2.0"
 homepage="https://www.zulip.org/"
 distfiles="https://github.com/zulip/${pkgname}-legacy/archive/${version}.tar.gz>${pkgname}-${version}.tar.gz"
-makedepends="qt5-webkit-devel phonon-qt5-devel qt5-svg-devel qt5-multimedia-devel"
 checksum=2475e5298b7df29c7ee8585da7189f4af8dda279e5e1d6e26c8f3fa08ce31ae5
 
 if [ -n "$CROSS_BUILD" ]; then

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

* Re: [PR PATCH] [Updated] Batch template fix for z* packages
  2021-03-28 10:52 [PR PATCH] Batch template fix for z* packages UsernameRandomlyGenerated
@ 2021-03-28 12:03 ` UsernameRandomlyGenerated
  2021-03-29 18:41 ` [PR PATCH] [Closed]: " UsernameRandomlyGenerated
  2021-03-29 18:44 ` ericonr
  2 siblings, 0 replies; 4+ messages in thread
From: UsernameRandomlyGenerated @ 2021-03-28 12:03 UTC (permalink / raw)
  To: ml

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

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

https://github.com/UsernameRandomlyGenerated/void-packages zlicense
https://github.com/void-linux/void-packages/pull/29804

Batch template fix for z* packages
<!-- 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.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->
Inspired by heliocat, that should fix most of the templates for packages that star with "z". I'll create another PR for zlib as it needs sed for license.


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

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

From e2dd1d34a647504b28f341a5dcd999d05ec04eb4 Mon Sep 17 00:00:00 2001
From: UsernameRandomlyGenerated <coredavid@tutanota.com>
Date: Sun, 28 Mar 2021 12:01:11 +0200
Subject: [PATCH 1/8] z80ex: fix license

---
 srcpkgs/z80ex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z80ex/template b/srcpkgs/z80ex/template
index 00a24a6fb902..f69ae320f0ac 100644
--- a/srcpkgs/z80ex/template
+++ b/srcpkgs/z80ex/template
@@ -5,7 +5,7 @@ revision=1
 build_style=cmake
 short_desc="ZiLOG Z80 CPU emulation library"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
-license="GPL-2"
+license="GPL-2.0-only"
 homepage="https://sourceforge.net/projects/z80ex/"
 distfiles="${SOURCEFORGE_SITE}/project/z80ex/z80ex/${version}/z80ex-${version}.tar.gz"
 checksum=6f5e521d068a614b41e10180ad4ae45b1bc258ec28c962543feb9078856c2530

From f85d0fe4eee0c33858358de2a8cf7b35c8287895 Mon Sep 17 00:00:00 2001
From: UsernameRandomlyGenerated <coredavid@tutanota.com>
Date: Sun, 28 Mar 2021 12:03:50 +0200
Subject: [PATCH 2/8] zerofree: fix template

---
 srcpkgs/zerofree/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zerofree/template b/srcpkgs/zerofree/template
index 82d05a933846..4b13cc21840f 100644
--- a/srcpkgs/zerofree/template
+++ b/srcpkgs/zerofree/template
@@ -4,7 +4,7 @@ version=1.1.1
 revision=1
 build_style=gnu-makefile
 makedepends="e2fsprogs-devel"
-short_desc="A tool to zero free blocks in an ext2 filesystem"
+short_desc="Tool to zero free blocks in an ext2 filesystem"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-only"
 homepage="https://frippery.org/uml/index.html"

From 8dcd8b572e8b15e52ca53b35de508925473156b0 Mon Sep 17 00:00:00 2001
From: UsernameRandomlyGenerated <coredavid@tutanota.com>
Date: Sun, 28 Mar 2021 12:10:43 +0200
Subject: [PATCH 3/8] zisofs-tools: fix template

Lint will still complain about not using ${version} but that's just how the download path is.
---
 srcpkgs/zisofs-tools/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/zisofs-tools/template b/srcpkgs/zisofs-tools/template
index 157e5411052a..05f7eae9413c 100644
--- a/srcpkgs/zisofs-tools/template
+++ b/srcpkgs/zisofs-tools/template
@@ -5,9 +5,9 @@ revision=5
 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>"
+license="GPL-2.0-or-later"
+homepage="https://www.kernel.org/pub/linux/utils/fs/zisofs/"
 distfiles="http://pkgs.fedoraproject.org/repo/pkgs/zisofs-tools/zisofs-tools-1.0.8.tar.bz2/2d0ed8c9a1f60b45f949b136f9be1f6c/$pkgname-$version.tar.bz2"
 checksum=ae4e53e4914934d41660248fb59d3c8761f1f1fd180d5ec993c17ddb3afd04f3
 

From 561169d932877cebdfa873a7f44faa4ee89e676c Mon Sep 17 00:00:00 2001
From: UsernameRandomlyGenerated <coredavid@tutanota.com>
Date: Sun, 28 Mar 2021 12:37:11 +0200
Subject: [PATCH 4/8] zmap: fix license

---
 srcpkgs/zmap/template | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/srcpkgs/zmap/template b/srcpkgs/zmap/template
index 53f2383fa793..f59686704346 100644
--- a/srcpkgs/zmap/template
+++ b/srcpkgs/zmap/template
@@ -8,7 +8,7 @@ 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
@@ -27,5 +27,4 @@ do_install() {
 	mv ${DESTDIR}/usr/sbin/* ${DESTDIR}/usr/bin
 	vmkdir etc/zmap
 	vcopy conf/* etc/zmap
-	vlicense LICENSE
 }

From dc2a2c5925b4ec6c06979eb7ee84b9faa74c70d4 Mon Sep 17 00:00:00 2001
From: UsernameRandomlyGenerated <coredavid@tutanota.com>
Date: Sun, 28 Mar 2021 12:44:14 +0200
Subject: [PATCH 5/8] zsnes: fix template

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

diff --git a/srcpkgs/zsnes/template b/srcpkgs/zsnes/template
index df49c9c7d3e7..8e987ee16527 100644
--- a/srcpkgs/zsnes/template
+++ b/srcpkgs/zsnes/template
@@ -2,9 +2,9 @@
 #
 # 32bit
 archs="i686"
-lib32mode="full"
 wrksrc="zsnes_1_51"
 build_wrksrc="src"
+lib32mode="full"
 
 pkgname=zsnes
 version=1.51
@@ -16,7 +16,7 @@ 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"
+license="GPL-2.0-only"
 homepage="http://www.zsnes.com/"
 distfiles="${SOURCEFORGE_SITE}/zsnes/zsnes151src.tar.bz2"
 checksum=2856dedba272e9eed66cbf68dd4a9ae56797c373686c57371a65c7df35264623

From b837fc471232575e3c373fedbc96e129aa4739c4 Mon Sep 17 00:00:00 2001
From: UsernameRandomlyGenerated <coredavid@tutanota.com>
Date: Sun, 28 Mar 2021 12:45:22 +0200
Subject: [PATCH 6/8] zsync: fix license

---
 srcpkgs/zsync/template | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/srcpkgs/zsync/template b/srcpkgs/zsync/template
index 8d0a710769be..ef4300c08c38 100644
--- a/srcpkgs/zsync/template
+++ b/srcpkgs/zsync/template
@@ -5,7 +5,7 @@ revision=3
 build_style=gnu-configure
 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
@@ -13,4 +13,3 @@ checksum=0b9d53433387aa4f04634a6c63a5efa8203070f2298af72a705f9be3dda65af2
 post_extract() {
 	sed -i "11a#include <sys/types.h>" libzsync/sha1.h
 }
-

From 3a2f49953521d4783718bb3e1e9d054b56a8d767 Mon Sep 17 00:00:00 2001
From: UsernameRandomlyGenerated <coredavid@tutanota.com>
Date: Sun, 28 Mar 2021 12:47:43 +0200
Subject: [PATCH 7/8] zulip-desktop: fix template

---
 srcpkgs/zulip-desktop/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/zulip-desktop/template b/srcpkgs/zulip-desktop/template
index 7bf91792fdd1..49ac0f08144b 100644
--- a/srcpkgs/zulip-desktop/template
+++ b/srcpkgs/zulip-desktop/template
@@ -1,15 +1,16 @@
-pkgname="zulip-desktop"
+# Template file for 'zulip-desktop'
+pkgname=zulip-desktop
 version=0.5.1
 revision=2
 wrksrc="${pkgname}-legacy-${version}"
 build_style=cmake
 configure_args="-DBUILD_WITH_QT5=On"
+makedepends="qt5-webkit-devel phonon-qt5-devel qt5-svg-devel qt5-multimedia-devel"
 short_desc="Workplace chat that improves your productivity"
 maintainer="Luca - <luca.andrea.fuse@gmx.com>"
 license="Apache-2.0"
 homepage="https://www.zulip.org/"
 distfiles="https://github.com/zulip/${pkgname}-legacy/archive/${version}.tar.gz>${pkgname}-${version}.tar.gz"
-makedepends="qt5-webkit-devel phonon-qt5-devel qt5-svg-devel qt5-multimedia-devel"
 checksum=2475e5298b7df29c7ee8585da7189f4af8dda279e5e1d6e26c8f3fa08ce31ae5
 
 if [ -n "$CROSS_BUILD" ]; then

From 86396757e90402b94a9b71760c9e243a8ffe1cbe Mon Sep 17 00:00:00 2001
From: UsernameRandomlyGenerated <coredavid@tutanota.com>
Date: Sun, 28 Mar 2021 14:03:43 +0200
Subject: [PATCH 8/8] zsync: add perl to checkdepends

---
 srcpkgs/zsync/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/zsync/template b/srcpkgs/zsync/template
index ef4300c08c38..8fc5e685d372 100644
--- a/srcpkgs/zsync/template
+++ b/srcpkgs/zsync/template
@@ -3,6 +3,7 @@ pkgname=zsync
 version=0.6.2
 revision=3
 build_style=gnu-configure
+checkdepends="perl"
 short_desc="Client-side implementation of the rsync algorithm"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="Artistic-2.0"

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

* Re: [PR PATCH] [Closed]: Batch template fix for z* packages
  2021-03-28 10:52 [PR PATCH] Batch template fix for z* packages UsernameRandomlyGenerated
  2021-03-28 12:03 ` [PR PATCH] [Updated] " UsernameRandomlyGenerated
@ 2021-03-29 18:41 ` UsernameRandomlyGenerated
  2021-03-29 18:44 ` ericonr
  2 siblings, 0 replies; 4+ messages in thread
From: UsernameRandomlyGenerated @ 2021-03-29 18:41 UTC (permalink / raw)
  To: ml

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

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

Batch template fix for z* packages
https://github.com/void-linux/void-packages/pull/29804

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.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->
Inspired by heliocat, that should fix most of the templates for packages that star with "z". I'll create another PR for zlib as it needs sed for license.


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

* Re: Batch template fix for z* packages
  2021-03-28 10:52 [PR PATCH] Batch template fix for z* packages UsernameRandomlyGenerated
  2021-03-28 12:03 ` [PR PATCH] [Updated] " UsernameRandomlyGenerated
  2021-03-29 18:41 ` [PR PATCH] [Closed]: " UsernameRandomlyGenerated
@ 2021-03-29 18:44 ` ericonr
  2 siblings, 0 replies; 4+ messages in thread
From: ericonr @ 2021-03-29 18:44 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/29804#issuecomment-809621878

Comment:
Hi! Why did you close this?

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

end of thread, other threads:[~2021-03-29 18:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-28 10:52 [PR PATCH] Batch template fix for z* packages UsernameRandomlyGenerated
2021-03-28 12:03 ` [PR PATCH] [Updated] " UsernameRandomlyGenerated
2021-03-29 18:41 ` [PR PATCH] [Closed]: " UsernameRandomlyGenerated
2021-03-29 18:44 ` 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).