Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] fail2ban: update to version 0.11.2
@ 2021-08-01 13:21 ftpd
  2021-08-01 13:22 ` ftpd
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: ftpd @ 2021-08-01 13:21 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ftpd/void-packages master
https://github.com/void-linux/void-packages/pull/32289

fail2ban: update to version 0.11.2
<!-- 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?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] 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-glibc)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From 09747d7919a2abaaadbb827c3773cc82c3acdf42 Mon Sep 17 00:00:00 2001
From: Bartek Stalewski <ftpd@insomniac.pl>
Date: Sun, 1 Aug 2021 15:19:34 +0200
Subject: [PATCH] fail2ban: update to version 0.11.2

---
 srcpkgs/fail2ban/files/fail2ban/run | 2 +-
 srcpkgs/fail2ban/template           | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/fail2ban/files/fail2ban/run b/srcpkgs/fail2ban/files/fail2ban/run
index c8e9a5b60f6d..415e97753519 100755
--- a/srcpkgs/fail2ban/files/fail2ban/run
+++ b/srcpkgs/fail2ban/files/fail2ban/run
@@ -1,4 +1,4 @@
 #!/bin/sh
-mkdir -p /var/run/fail2ban
+mkdir -p /var/run/fail2ban /var/lib/fail2ban
 
 exec fail2ban-server -f
diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 2b8fe877a8be..74856be408c9 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
-version=0.11.1
-revision=2
+version=0.11.2
+revision=1
 build_style=python3-module
 hostmakedepends="pkg-config python3"
 depends="python3"
@@ -10,7 +10,7 @@ maintainer="necrophcodr <necrophcodr@necrophcodr.me>"
 license="GPL-2.0-only"
 homepage="http://www.fail2ban.org/"
 distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
-checksum=71d2a52b66bb0f87ac3812246bdd3819ec561913cd44afd39130a342f043aa6d
+checksum=383108e5f8644cefb288537950923b7520f642e7e114efb843f6e7ea9268b1e0
 conf_files="
  /etc/fail2ban/fail2ban.conf
  /etc/fail2ban/jail.conf

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

* Re: fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
@ 2021-08-01 13:22 ` ftpd
  2021-08-01 14:19 ` [PR REVIEW] " paper42
                   ` (17 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: ftpd @ 2021-08-01 13:22 UTC (permalink / raw)
  To: ml

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

New comment by ftpd on void-packages repository

https://github.com/void-linux/void-packages/pull/32289#issuecomment-890520265

Comment:
@abenson, I'm tagging you as agreed on IRC.

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

* Re: [PR REVIEW] fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
  2021-08-01 13:22 ` ftpd
@ 2021-08-01 14:19 ` paper42
  2021-08-01 14:22 ` [PR PATCH] [Updated] " ftpd
                   ` (16 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: paper42 @ 2021-08-01 14:19 UTC (permalink / raw)
  To: ml

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

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/32289#discussion_r680518213

Comment:
`/var/lib/fail2ban` is not on tmpfs unlike `/var/run/fail2ban`, so it can be created by the package on install time, not every time the service is enabled. Try creating this directory using `make_dirs` in the template and removing it from the service.

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

* Re: [PR PATCH] [Updated] fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
  2021-08-01 13:22 ` ftpd
  2021-08-01 14:19 ` [PR REVIEW] " paper42
@ 2021-08-01 14:22 ` ftpd
  2021-08-01 14:23 ` [PR REVIEW] " ftpd
                   ` (15 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: ftpd @ 2021-08-01 14:22 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ftpd/void-packages master
https://github.com/void-linux/void-packages/pull/32289

fail2ban: update to version 0.11.2
<!-- 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?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] 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-glibc)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From 09747d7919a2abaaadbb827c3773cc82c3acdf42 Mon Sep 17 00:00:00 2001
From: Bartek Stalewski <ftpd@insomniac.pl>
Date: Sun, 1 Aug 2021 15:19:34 +0200
Subject: [PATCH 1/2] fail2ban: update to version 0.11.2

---
 srcpkgs/fail2ban/files/fail2ban/run | 2 +-
 srcpkgs/fail2ban/template           | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/fail2ban/files/fail2ban/run b/srcpkgs/fail2ban/files/fail2ban/run
index c8e9a5b60f6d..415e97753519 100755
--- a/srcpkgs/fail2ban/files/fail2ban/run
+++ b/srcpkgs/fail2ban/files/fail2ban/run
@@ -1,4 +1,4 @@
 #!/bin/sh
-mkdir -p /var/run/fail2ban
+mkdir -p /var/run/fail2ban /var/lib/fail2ban
 
 exec fail2ban-server -f
diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 2b8fe877a8be..74856be408c9 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
-version=0.11.1
-revision=2
+version=0.11.2
+revision=1
 build_style=python3-module
 hostmakedepends="pkg-config python3"
 depends="python3"
@@ -10,7 +10,7 @@ maintainer="necrophcodr <necrophcodr@necrophcodr.me>"
 license="GPL-2.0-only"
 homepage="http://www.fail2ban.org/"
 distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
-checksum=71d2a52b66bb0f87ac3812246bdd3819ec561913cd44afd39130a342f043aa6d
+checksum=383108e5f8644cefb288537950923b7520f642e7e114efb843f6e7ea9268b1e0
 conf_files="
  /etc/fail2ban/fail2ban.conf
  /etc/fail2ban/jail.conf

From 6613d83edcd129099c103ecb4dd0f7c581e7fffe Mon Sep 17 00:00:00 2001
From: Bartek Stalewski <ftpd@insomniac.pl>
Date: Sun, 1 Aug 2021 16:22:39 +0200
Subject: [PATCH 2/2] fail2ban: update to version 0.11.2

---
 srcpkgs/fail2ban/files/fail2ban/run | 2 +-
 srcpkgs/fail2ban/template           | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/files/fail2ban/run b/srcpkgs/fail2ban/files/fail2ban/run
index 415e97753519..c8e9a5b60f6d 100755
--- a/srcpkgs/fail2ban/files/fail2ban/run
+++ b/srcpkgs/fail2ban/files/fail2ban/run
@@ -1,4 +1,4 @@
 #!/bin/sh
-mkdir -p /var/run/fail2ban /var/lib/fail2ban
+mkdir -p /var/run/fail2ban
 
 exec fail2ban-server -f
diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 74856be408c9..44cf37af4917 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -16,6 +16,7 @@ conf_files="
  /etc/fail2ban/jail.conf
  /etc/fail2ban/action.d/*.conf
  /etc/fail2ban/filter.d/*.conf"
+make_dirs="/var/lib/fail2ban 0700 root root"
 
 pre_build() {
 	./fail2ban-2to3

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

* Re: [PR REVIEW] fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
                   ` (2 preceding siblings ...)
  2021-08-01 14:22 ` [PR PATCH] [Updated] " ftpd
@ 2021-08-01 14:23 ` ftpd
  2021-08-03  3:55 ` ericonr
                   ` (14 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: ftpd @ 2021-08-01 14:23 UTC (permalink / raw)
  To: ml

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

New review comment by ftpd on void-packages repository

https://github.com/void-linux/void-packages/pull/32289#discussion_r680518739

Comment:
Thanks, done.

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

* Re: [PR REVIEW] fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
                   ` (4 preceding siblings ...)
  2021-08-03  3:55 ` ericonr
@ 2021-08-03  3:55 ` ericonr
  2021-08-03  3:55 ` ericonr
                   ` (12 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: ericonr @ 2021-08-03  3:55 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/32289#discussion_r681414432

Comment:
```suggestion
homepage="https://www.fail2ban.org/"
```

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

* Re: [PR REVIEW] fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
                   ` (3 preceding siblings ...)
  2021-08-01 14:23 ` [PR REVIEW] " ftpd
@ 2021-08-03  3:55 ` ericonr
  2021-08-03  3:55 ` ericonr
                   ` (13 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: ericonr @ 2021-08-03  3:55 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/32289#discussion_r681414222

Comment:
Please expand `pkgname` here to `fail2ban`.

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

* Re: [PR REVIEW] fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
                   ` (6 preceding siblings ...)
  2021-08-03  3:55 ` ericonr
@ 2021-08-03  3:55 ` ericonr
  2021-08-03  7:37 ` ftpd
                   ` (10 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: ericonr @ 2021-08-03  3:55 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/32289#discussion_r681414251

Comment:
Please add a changelog: https://raw.githubusercontent.com/fail2ban/fail2ban/master/ChangeLog

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

* Re: [PR REVIEW] fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
                   ` (5 preceding siblings ...)
  2021-08-03  3:55 ` ericonr
@ 2021-08-03  3:55 ` ericonr
  2021-08-03  3:55 ` ericonr
                   ` (11 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: ericonr @ 2021-08-03  3:55 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/32289#discussion_r681414572

Comment:
Explain in your commit message why this is now necessary.

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

* Re: [PR REVIEW] fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
                   ` (7 preceding siblings ...)
  2021-08-03  3:55 ` ericonr
@ 2021-08-03  7:37 ` ftpd
  2021-08-03  7:38 ` [PR PATCH] [Updated] " ftpd
                   ` (9 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: ftpd @ 2021-08-03  7:37 UTC (permalink / raw)
  To: ml

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

New review comment by ftpd on void-packages repository

https://github.com/void-linux/void-packages/pull/32289#discussion_r681512319

Comment:
I don't know if it is. In current version this directory is not created so the first run will fail, because it can't create default database `/var/lib/fail2ban/fail2ban.sqlite3`. I've added this as a convenience, but maybe previous maintainer of this package did it on purpose? Please advise should I add it or not.

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

* Re: [PR PATCH] [Updated] fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
                   ` (8 preceding siblings ...)
  2021-08-03  7:37 ` ftpd
@ 2021-08-03  7:38 ` ftpd
  2021-08-03  7:39 ` [PR REVIEW] " ftpd
                   ` (8 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: ftpd @ 2021-08-03  7:38 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ftpd/void-packages master
https://github.com/void-linux/void-packages/pull/32289

fail2ban: update to version 0.11.2
<!-- 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?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] 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-glibc)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From 09747d7919a2abaaadbb827c3773cc82c3acdf42 Mon Sep 17 00:00:00 2001
From: Bartek Stalewski <ftpd@insomniac.pl>
Date: Sun, 1 Aug 2021 15:19:34 +0200
Subject: [PATCH 1/3] fail2ban: update to version 0.11.2

---
 srcpkgs/fail2ban/files/fail2ban/run | 2 +-
 srcpkgs/fail2ban/template           | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/fail2ban/files/fail2ban/run b/srcpkgs/fail2ban/files/fail2ban/run
index c8e9a5b60f6d..415e97753519 100755
--- a/srcpkgs/fail2ban/files/fail2ban/run
+++ b/srcpkgs/fail2ban/files/fail2ban/run
@@ -1,4 +1,4 @@
 #!/bin/sh
-mkdir -p /var/run/fail2ban
+mkdir -p /var/run/fail2ban /var/lib/fail2ban
 
 exec fail2ban-server -f
diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 2b8fe877a8be..74856be408c9 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
-version=0.11.1
-revision=2
+version=0.11.2
+revision=1
 build_style=python3-module
 hostmakedepends="pkg-config python3"
 depends="python3"
@@ -10,7 +10,7 @@ maintainer="necrophcodr <necrophcodr@necrophcodr.me>"
 license="GPL-2.0-only"
 homepage="http://www.fail2ban.org/"
 distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
-checksum=71d2a52b66bb0f87ac3812246bdd3819ec561913cd44afd39130a342f043aa6d
+checksum=383108e5f8644cefb288537950923b7520f642e7e114efb843f6e7ea9268b1e0
 conf_files="
  /etc/fail2ban/fail2ban.conf
  /etc/fail2ban/jail.conf

From 6613d83edcd129099c103ecb4dd0f7c581e7fffe Mon Sep 17 00:00:00 2001
From: Bartek Stalewski <ftpd@insomniac.pl>
Date: Sun, 1 Aug 2021 16:22:39 +0200
Subject: [PATCH 2/3] fail2ban: update to version 0.11.2

---
 srcpkgs/fail2ban/files/fail2ban/run | 2 +-
 srcpkgs/fail2ban/template           | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/files/fail2ban/run b/srcpkgs/fail2ban/files/fail2ban/run
index 415e97753519..c8e9a5b60f6d 100755
--- a/srcpkgs/fail2ban/files/fail2ban/run
+++ b/srcpkgs/fail2ban/files/fail2ban/run
@@ -1,4 +1,4 @@
 #!/bin/sh
-mkdir -p /var/run/fail2ban /var/lib/fail2ban
+mkdir -p /var/run/fail2ban
 
 exec fail2ban-server -f
diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 74856be408c9..44cf37af4917 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -16,6 +16,7 @@ conf_files="
  /etc/fail2ban/jail.conf
  /etc/fail2ban/action.d/*.conf
  /etc/fail2ban/filter.d/*.conf"
+make_dirs="/var/lib/fail2ban 0700 root root"
 
 pre_build() {
 	./fail2ban-2to3

From f3c117c9a81d5baabfcf0977cf08970f5192134d Mon Sep 17 00:00:00 2001
From: ftpd <ftpd+sites@insomniac.pl>
Date: Tue, 3 Aug 2021 09:38:04 +0200
Subject: [PATCH 3/3] Update srcpkgs/fail2ban/template
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Co-authored-by: Érico Nogueira Rolim <34201958+ericonr@users.noreply.github.com>
---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 44cf37af4917..89b0dad92840 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -8,7 +8,7 @@ depends="python3"
 short_desc="Authentication failure monitor system"
 maintainer="necrophcodr <necrophcodr@necrophcodr.me>"
 license="GPL-2.0-only"
-homepage="http://www.fail2ban.org/"
+homepage="https://www.fail2ban.org/"
 distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
 checksum=383108e5f8644cefb288537950923b7520f642e7e114efb843f6e7ea9268b1e0
 conf_files="

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

* Re: [PR REVIEW] fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
                   ` (9 preceding siblings ...)
  2021-08-03  7:38 ` [PR PATCH] [Updated] " ftpd
@ 2021-08-03  7:39 ` ftpd
  2021-08-03  7:46 ` [PR PATCH] [Updated] " ftpd
                   ` (7 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: ftpd @ 2021-08-03  7:39 UTC (permalink / raw)
  To: ml

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

New review comment by ftpd on void-packages repository

https://github.com/void-linux/void-packages/pull/32289#discussion_r681513449

Comment:
Oh, ok. I left is as it was because I assumed it's the preferred way.

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

* Re: [PR PATCH] [Updated] fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
                   ` (10 preceding siblings ...)
  2021-08-03  7:39 ` [PR REVIEW] " ftpd
@ 2021-08-03  7:46 ` ftpd
  2021-08-03  7:48 ` ftpd
                   ` (6 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: ftpd @ 2021-08-03  7:46 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ftpd/void-packages master
https://github.com/void-linux/void-packages/pull/32289

fail2ban: update to version 0.11.2
<!-- 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?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] 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-glibc)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From 09747d7919a2abaaadbb827c3773cc82c3acdf42 Mon Sep 17 00:00:00 2001
From: Bartek Stalewski <ftpd@insomniac.pl>
Date: Sun, 1 Aug 2021 15:19:34 +0200
Subject: [PATCH 1/4] fail2ban: update to version 0.11.2

---
 srcpkgs/fail2ban/files/fail2ban/run | 2 +-
 srcpkgs/fail2ban/template           | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/fail2ban/files/fail2ban/run b/srcpkgs/fail2ban/files/fail2ban/run
index c8e9a5b60f6d..415e97753519 100755
--- a/srcpkgs/fail2ban/files/fail2ban/run
+++ b/srcpkgs/fail2ban/files/fail2ban/run
@@ -1,4 +1,4 @@
 #!/bin/sh
-mkdir -p /var/run/fail2ban
+mkdir -p /var/run/fail2ban /var/lib/fail2ban
 
 exec fail2ban-server -f
diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 2b8fe877a8be..74856be408c9 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
-version=0.11.1
-revision=2
+version=0.11.2
+revision=1
 build_style=python3-module
 hostmakedepends="pkg-config python3"
 depends="python3"
@@ -10,7 +10,7 @@ maintainer="necrophcodr <necrophcodr@necrophcodr.me>"
 license="GPL-2.0-only"
 homepage="http://www.fail2ban.org/"
 distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
-checksum=71d2a52b66bb0f87ac3812246bdd3819ec561913cd44afd39130a342f043aa6d
+checksum=383108e5f8644cefb288537950923b7520f642e7e114efb843f6e7ea9268b1e0
 conf_files="
  /etc/fail2ban/fail2ban.conf
  /etc/fail2ban/jail.conf

From 6613d83edcd129099c103ecb4dd0f7c581e7fffe Mon Sep 17 00:00:00 2001
From: Bartek Stalewski <ftpd@insomniac.pl>
Date: Sun, 1 Aug 2021 16:22:39 +0200
Subject: [PATCH 2/4] fail2ban: update to version 0.11.2

---
 srcpkgs/fail2ban/files/fail2ban/run | 2 +-
 srcpkgs/fail2ban/template           | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/files/fail2ban/run b/srcpkgs/fail2ban/files/fail2ban/run
index 415e97753519..c8e9a5b60f6d 100755
--- a/srcpkgs/fail2ban/files/fail2ban/run
+++ b/srcpkgs/fail2ban/files/fail2ban/run
@@ -1,4 +1,4 @@
 #!/bin/sh
-mkdir -p /var/run/fail2ban /var/lib/fail2ban
+mkdir -p /var/run/fail2ban
 
 exec fail2ban-server -f
diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 74856be408c9..44cf37af4917 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -16,6 +16,7 @@ conf_files="
  /etc/fail2ban/jail.conf
  /etc/fail2ban/action.d/*.conf
  /etc/fail2ban/filter.d/*.conf"
+make_dirs="/var/lib/fail2ban 0700 root root"
 
 pre_build() {
 	./fail2ban-2to3

From f3c117c9a81d5baabfcf0977cf08970f5192134d Mon Sep 17 00:00:00 2001
From: ftpd <ftpd+sites@insomniac.pl>
Date: Tue, 3 Aug 2021 09:38:04 +0200
Subject: [PATCH 3/4] Update srcpkgs/fail2ban/template
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Co-authored-by: Érico Nogueira Rolim <34201958+ericonr@users.noreply.github.com>
---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 44cf37af4917..89b0dad92840 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -8,7 +8,7 @@ depends="python3"
 short_desc="Authentication failure monitor system"
 maintainer="necrophcodr <necrophcodr@necrophcodr.me>"
 license="GPL-2.0-only"
-homepage="http://www.fail2ban.org/"
+homepage="https://www.fail2ban.org/"
 distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
 checksum=383108e5f8644cefb288537950923b7520f642e7e114efb843f6e7ea9268b1e0
 conf_files="

From b1d734f668d416fd8692fe663de893bacfeb63aa Mon Sep 17 00:00:00 2001
From: Bartek Stalewski <ftpd@insomniac.pl>
Date: Tue, 3 Aug 2021 09:45:59 +0200
Subject: [PATCH 4/4] fail2ban: update to version 0.11.2

---
 srcpkgs/fail2ban/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 89b0dad92840..4abc63302393 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -9,7 +9,8 @@ short_desc="Authentication failure monitor system"
 maintainer="necrophcodr <necrophcodr@necrophcodr.me>"
 license="GPL-2.0-only"
 homepage="https://www.fail2ban.org/"
-distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
+changelog="https://raw.githubusercontent.com/fail2ban/fail2ban/master/ChangeLog"
+distfiles="https://github.com/fail2ban/fail2ban/archive/${version}.tar.gz"
 checksum=383108e5f8644cefb288537950923b7520f642e7e114efb843f6e7ea9268b1e0
 conf_files="
  /etc/fail2ban/fail2ban.conf

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

* Re: [PR PATCH] [Updated] fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
                   ` (11 preceding siblings ...)
  2021-08-03  7:46 ` [PR PATCH] [Updated] " ftpd
@ 2021-08-03  7:48 ` ftpd
  2021-08-03  7:54 ` ftpd
                   ` (5 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: ftpd @ 2021-08-03  7:48 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ftpd/void-packages master
https://github.com/void-linux/void-packages/pull/32289

fail2ban: update to version 0.11.2
<!-- 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?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] 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-glibc)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From 09747d7919a2abaaadbb827c3773cc82c3acdf42 Mon Sep 17 00:00:00 2001
From: Bartek Stalewski <ftpd@insomniac.pl>
Date: Sun, 1 Aug 2021 15:19:34 +0200
Subject: [PATCH 1/5] fail2ban: update to version 0.11.2

---
 srcpkgs/fail2ban/files/fail2ban/run | 2 +-
 srcpkgs/fail2ban/template           | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/fail2ban/files/fail2ban/run b/srcpkgs/fail2ban/files/fail2ban/run
index c8e9a5b60f6d..415e97753519 100755
--- a/srcpkgs/fail2ban/files/fail2ban/run
+++ b/srcpkgs/fail2ban/files/fail2ban/run
@@ -1,4 +1,4 @@
 #!/bin/sh
-mkdir -p /var/run/fail2ban
+mkdir -p /var/run/fail2ban /var/lib/fail2ban
 
 exec fail2ban-server -f
diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 2b8fe877a8be..74856be408c9 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
-version=0.11.1
-revision=2
+version=0.11.2
+revision=1
 build_style=python3-module
 hostmakedepends="pkg-config python3"
 depends="python3"
@@ -10,7 +10,7 @@ maintainer="necrophcodr <necrophcodr@necrophcodr.me>"
 license="GPL-2.0-only"
 homepage="http://www.fail2ban.org/"
 distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
-checksum=71d2a52b66bb0f87ac3812246bdd3819ec561913cd44afd39130a342f043aa6d
+checksum=383108e5f8644cefb288537950923b7520f642e7e114efb843f6e7ea9268b1e0
 conf_files="
  /etc/fail2ban/fail2ban.conf
  /etc/fail2ban/jail.conf

From 6613d83edcd129099c103ecb4dd0f7c581e7fffe Mon Sep 17 00:00:00 2001
From: Bartek Stalewski <ftpd@insomniac.pl>
Date: Sun, 1 Aug 2021 16:22:39 +0200
Subject: [PATCH 2/5] fail2ban: update to version 0.11.2

---
 srcpkgs/fail2ban/files/fail2ban/run | 2 +-
 srcpkgs/fail2ban/template           | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/files/fail2ban/run b/srcpkgs/fail2ban/files/fail2ban/run
index 415e97753519..c8e9a5b60f6d 100755
--- a/srcpkgs/fail2ban/files/fail2ban/run
+++ b/srcpkgs/fail2ban/files/fail2ban/run
@@ -1,4 +1,4 @@
 #!/bin/sh
-mkdir -p /var/run/fail2ban /var/lib/fail2ban
+mkdir -p /var/run/fail2ban
 
 exec fail2ban-server -f
diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 74856be408c9..44cf37af4917 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -16,6 +16,7 @@ conf_files="
  /etc/fail2ban/jail.conf
  /etc/fail2ban/action.d/*.conf
  /etc/fail2ban/filter.d/*.conf"
+make_dirs="/var/lib/fail2ban 0700 root root"
 
 pre_build() {
 	./fail2ban-2to3

From f3c117c9a81d5baabfcf0977cf08970f5192134d Mon Sep 17 00:00:00 2001
From: ftpd <ftpd+sites@insomniac.pl>
Date: Tue, 3 Aug 2021 09:38:04 +0200
Subject: [PATCH 3/5] Update srcpkgs/fail2ban/template
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Co-authored-by: Érico Nogueira Rolim <34201958+ericonr@users.noreply.github.com>
---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 44cf37af4917..89b0dad92840 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -8,7 +8,7 @@ depends="python3"
 short_desc="Authentication failure monitor system"
 maintainer="necrophcodr <necrophcodr@necrophcodr.me>"
 license="GPL-2.0-only"
-homepage="http://www.fail2ban.org/"
+homepage="https://www.fail2ban.org/"
 distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
 checksum=383108e5f8644cefb288537950923b7520f642e7e114efb843f6e7ea9268b1e0
 conf_files="

From b1d734f668d416fd8692fe663de893bacfeb63aa Mon Sep 17 00:00:00 2001
From: Bartek Stalewski <ftpd@insomniac.pl>
Date: Tue, 3 Aug 2021 09:45:59 +0200
Subject: [PATCH 4/5] fail2ban: update to version 0.11.2

---
 srcpkgs/fail2ban/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 89b0dad92840..4abc63302393 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -9,7 +9,8 @@ short_desc="Authentication failure monitor system"
 maintainer="necrophcodr <necrophcodr@necrophcodr.me>"
 license="GPL-2.0-only"
 homepage="https://www.fail2ban.org/"
-distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
+changelog="https://raw.githubusercontent.com/fail2ban/fail2ban/master/ChangeLog"
+distfiles="https://github.com/fail2ban/fail2ban/archive/${version}.tar.gz"
 checksum=383108e5f8644cefb288537950923b7520f642e7e114efb843f6e7ea9268b1e0
 conf_files="
  /etc/fail2ban/fail2ban.conf

From b9df81be145df89628e35a26ca2bdcaf72f14d9d Mon Sep 17 00:00:00 2001
From: Bartek Stalewski <ftpd@insomniac.pl>
Date: Tue, 3 Aug 2021 09:48:35 +0200
Subject: [PATCH 5/5] fail2ban: update to version 0.11.2

---
 srcpkgs/fail2ban/template | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 2b8fe877a8be..4abc63302393 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,21 +1,23 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
-version=0.11.1
-revision=2
+version=0.11.2
+revision=1
 build_style=python3-module
 hostmakedepends="pkg-config python3"
 depends="python3"
 short_desc="Authentication failure monitor system"
 maintainer="necrophcodr <necrophcodr@necrophcodr.me>"
 license="GPL-2.0-only"
-homepage="http://www.fail2ban.org/"
-distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
-checksum=71d2a52b66bb0f87ac3812246bdd3819ec561913cd44afd39130a342f043aa6d
+homepage="https://www.fail2ban.org/"
+changelog="https://raw.githubusercontent.com/fail2ban/fail2ban/master/ChangeLog"
+distfiles="https://github.com/fail2ban/fail2ban/archive/${version}.tar.gz"
+checksum=383108e5f8644cefb288537950923b7520f642e7e114efb843f6e7ea9268b1e0
 conf_files="
  /etc/fail2ban/fail2ban.conf
  /etc/fail2ban/jail.conf
  /etc/fail2ban/action.d/*.conf
  /etc/fail2ban/filter.d/*.conf"
+make_dirs="/var/lib/fail2ban 0700 root root"
 
 pre_build() {
 	./fail2ban-2to3

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

* Re: [PR PATCH] [Updated] fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
                   ` (12 preceding siblings ...)
  2021-08-03  7:48 ` ftpd
@ 2021-08-03  7:54 ` ftpd
  2021-08-03  8:01 ` ftpd
                   ` (4 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: ftpd @ 2021-08-03  7:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ftpd/void-packages master
https://github.com/void-linux/void-packages/pull/32289

fail2ban: update to version 0.11.2
<!-- 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?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] 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-glibc)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From 1fbc92e3010450227b338f1a214c99553e8e4dd0 Mon Sep 17 00:00:00 2001
From: Bartek Stalewski <ftpd@insomniac.pl>
Date: Tue, 3 Aug 2021 09:54:04 +0200
Subject: [PATCH] fail2ban: update to version 0.11.2

---
 srcpkgs/cryfs/template         |  4 ++--
 srcpkgs/fail2ban/template      | 12 +++++++-----
 srcpkgs/knot-resolver/template |  9 +++++----
 srcpkgs/monit/template         |  4 ++--
 srcpkgs/tailscale/template     |  4 ++--
 5 files changed, 18 insertions(+), 15 deletions(-)

diff --git a/srcpkgs/cryfs/template b/srcpkgs/cryfs/template
index 87912c2b7fe7..6d8f855a80af 100644
--- a/srcpkgs/cryfs/template
+++ b/srcpkgs/cryfs/template
@@ -1,10 +1,10 @@
 # Template file for 'cryfs'
 pkgname=cryfs
 version=0.10.2
-revision=2
+revision=3
 create_wrksrc=yes
 build_style=cmake
-configure_args="-DCRYFS_UPDATE_CHECKS=off -DCMAKE_BUILD_TYPE=None
+configure_args="-DCRYFS_UPDATE_CHECKS=off
  -DBoost_USE_STATIC_LIBS=OFF -DCMAKE_CXX_STANDARD_LIBRARIES=-lfmt"
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel fuse-devel libcurl-devel libgomp-devel crypto++-devel
diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 2b8fe877a8be..4abc63302393 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,21 +1,23 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
-version=0.11.1
-revision=2
+version=0.11.2
+revision=1
 build_style=python3-module
 hostmakedepends="pkg-config python3"
 depends="python3"
 short_desc="Authentication failure monitor system"
 maintainer="necrophcodr <necrophcodr@necrophcodr.me>"
 license="GPL-2.0-only"
-homepage="http://www.fail2ban.org/"
-distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
-checksum=71d2a52b66bb0f87ac3812246bdd3819ec561913cd44afd39130a342f043aa6d
+homepage="https://www.fail2ban.org/"
+changelog="https://raw.githubusercontent.com/fail2ban/fail2ban/master/ChangeLog"
+distfiles="https://github.com/fail2ban/fail2ban/archive/${version}.tar.gz"
+checksum=383108e5f8644cefb288537950923b7520f642e7e114efb843f6e7ea9268b1e0
 conf_files="
  /etc/fail2ban/fail2ban.conf
  /etc/fail2ban/jail.conf
  /etc/fail2ban/action.d/*.conf
  /etc/fail2ban/filter.d/*.conf"
+make_dirs="/var/lib/fail2ban 0700 root root"
 
 pre_build() {
 	./fail2ban-2to3
diff --git a/srcpkgs/knot-resolver/template b/srcpkgs/knot-resolver/template
index b4a39a09a30c..b07a400a3a02 100644
--- a/srcpkgs/knot-resolver/template
+++ b/srcpkgs/knot-resolver/template
@@ -1,6 +1,6 @@
 # Template file for 'knot-resolver'
 pkgname=knot-resolver
-version=5.3.2
+version=5.4.0
 revision=1
 build_style=meson
 configure_args="
@@ -8,17 +8,18 @@ configure_args="
  -Dgroup=_knot_resolver
  -Duser=_knot_resolver
  -Dkeyfile_default=/var/lib/knot-resolver/root.keys
- -Droot_hints=/var/lib/knot-resolver/root.hints"
+ -Droot_hints=/var/lib/knot-resolver/root.hints
+ -Dkres_gen_test=false"
 hostmakedepends="meson pkg-config protobuf-c"
 makedepends="LuaJIT-devel fstrm-devel gnutls-devel libedit-devel libknot-devel
- libuv-devel lmdb-devel protobuf-c-devel"
+ libuv-devel lmdb-devel protobuf-c-devel nghttp2-devel libcap-ng-devel libcap-ng-devel"
 checkdepends="cmocka-devel"
 short_desc="Full caching DNS resolver implementation"
 maintainer="Duncaen <duncaen@voidlinux.org>"
 license="GPL-3.0-or-later"
 homepage="https://www.knot-resolver.cz/"
 distfiles="https://secure.nic.cz/files/knot-resolver/knot-resolver-${version}.tar.xz"
-checksum=8b6f447d5fe93422d4c129a2d4004a977369c3aa6e55258ead1cbd488bc01436
+checksum=534af671b98433b23b57039acc9d7d3c100a4888a8cf9aeba36161774ca0815e
 
 system_accounts="_knot_resolver"
 _knot_resolver_homedir="/var/cache/knot-resolver"
diff --git a/srcpkgs/monit/template b/srcpkgs/monit/template
index e401ff3d8733..06c060661d38 100644
--- a/srcpkgs/monit/template
+++ b/srcpkgs/monit/template
@@ -1,6 +1,6 @@
 # Template file for 'monit'
 pkgname=monit
-version=5.28.0
+version=5.28.1
 revision=1
 build_style=gnu-configure
 configure_args="
@@ -16,7 +16,7 @@ license="AGPL-3.0-only"
 homepage="https://mmonit.com/monit/"
 changelog="https://mmonit.com/monit/changes/"
 distfiles="https://mmonit.com/monit/dist/${pkgname}-${version}.tar.gz"
-checksum=9fc6287fd9570b25a85c5d5bf988ee8bd4c54d0e9e01ff04cc4b9398a159849c
+checksum=57d8885f66e58a0a4ca6a967f2bb7e8c15ed988a25b5ca6ba6733f919ef07a5c
 
 pre_configure() {
 	./bootstrap
diff --git a/srcpkgs/tailscale/template b/srcpkgs/tailscale/template
index 598429ea085e..e715ba313352 100644
--- a/srcpkgs/tailscale/template
+++ b/srcpkgs/tailscale/template
@@ -1,6 +1,6 @@
 # Template file for 'tailscale'
 pkgname=tailscale
-version=1.10.0
+version=1.12.1
 revision=1
 build_style=go
 go_import_path="tailscale.com"
@@ -14,7 +14,7 @@ maintainer="Noel Cower <ncower@nil.dev>"
 license="BSD-3-Clause"
 homepage="https://tailscale.com"
 distfiles="https://github.com/tailscale/tailscale/archive/v${version}.tar.gz"
-checksum=8345fc01fd07d3fa325817104b373bbdd54568ef807135e9d5eafa5321fa7f87
+checksum=9a94e6073f5e171c9ba6c3f5ca291bdae688c8e26fb586c3df4302204af77e86
 
 post_install() {
 	vlicense LICENSE

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

* Re: [PR PATCH] [Updated] fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
                   ` (13 preceding siblings ...)
  2021-08-03  7:54 ` ftpd
@ 2021-08-03  8:01 ` ftpd
  2021-08-03  8:03 ` ftpd
                   ` (3 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: ftpd @ 2021-08-03  8:01 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ftpd/void-packages master
https://github.com/void-linux/void-packages/pull/32289

fail2ban: update to version 0.11.2
<!-- 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?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] 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-glibc)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From 1fbc92e3010450227b338f1a214c99553e8e4dd0 Mon Sep 17 00:00:00 2001
From: Bartek Stalewski <ftpd@insomniac.pl>
Date: Tue, 3 Aug 2021 09:54:04 +0200
Subject: [PATCH 1/2] fail2ban: update to version 0.11.2

---
 srcpkgs/cryfs/template         |  4 ++--
 srcpkgs/fail2ban/template      | 12 +++++++-----
 srcpkgs/knot-resolver/template |  9 +++++----
 srcpkgs/monit/template         |  4 ++--
 srcpkgs/tailscale/template     |  4 ++--
 5 files changed, 18 insertions(+), 15 deletions(-)

diff --git a/srcpkgs/cryfs/template b/srcpkgs/cryfs/template
index 87912c2b7fe7..6d8f855a80af 100644
--- a/srcpkgs/cryfs/template
+++ b/srcpkgs/cryfs/template
@@ -1,10 +1,10 @@
 # Template file for 'cryfs'
 pkgname=cryfs
 version=0.10.2
-revision=2
+revision=3
 create_wrksrc=yes
 build_style=cmake
-configure_args="-DCRYFS_UPDATE_CHECKS=off -DCMAKE_BUILD_TYPE=None
+configure_args="-DCRYFS_UPDATE_CHECKS=off
  -DBoost_USE_STATIC_LIBS=OFF -DCMAKE_CXX_STANDARD_LIBRARIES=-lfmt"
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel fuse-devel libcurl-devel libgomp-devel crypto++-devel
diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 2b8fe877a8be..4abc63302393 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,21 +1,23 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
-version=0.11.1
-revision=2
+version=0.11.2
+revision=1
 build_style=python3-module
 hostmakedepends="pkg-config python3"
 depends="python3"
 short_desc="Authentication failure monitor system"
 maintainer="necrophcodr <necrophcodr@necrophcodr.me>"
 license="GPL-2.0-only"
-homepage="http://www.fail2ban.org/"
-distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
-checksum=71d2a52b66bb0f87ac3812246bdd3819ec561913cd44afd39130a342f043aa6d
+homepage="https://www.fail2ban.org/"
+changelog="https://raw.githubusercontent.com/fail2ban/fail2ban/master/ChangeLog"
+distfiles="https://github.com/fail2ban/fail2ban/archive/${version}.tar.gz"
+checksum=383108e5f8644cefb288537950923b7520f642e7e114efb843f6e7ea9268b1e0
 conf_files="
  /etc/fail2ban/fail2ban.conf
  /etc/fail2ban/jail.conf
  /etc/fail2ban/action.d/*.conf
  /etc/fail2ban/filter.d/*.conf"
+make_dirs="/var/lib/fail2ban 0700 root root"
 
 pre_build() {
 	./fail2ban-2to3
diff --git a/srcpkgs/knot-resolver/template b/srcpkgs/knot-resolver/template
index b4a39a09a30c..b07a400a3a02 100644
--- a/srcpkgs/knot-resolver/template
+++ b/srcpkgs/knot-resolver/template
@@ -1,6 +1,6 @@
 # Template file for 'knot-resolver'
 pkgname=knot-resolver
-version=5.3.2
+version=5.4.0
 revision=1
 build_style=meson
 configure_args="
@@ -8,17 +8,18 @@ configure_args="
  -Dgroup=_knot_resolver
  -Duser=_knot_resolver
  -Dkeyfile_default=/var/lib/knot-resolver/root.keys
- -Droot_hints=/var/lib/knot-resolver/root.hints"
+ -Droot_hints=/var/lib/knot-resolver/root.hints
+ -Dkres_gen_test=false"
 hostmakedepends="meson pkg-config protobuf-c"
 makedepends="LuaJIT-devel fstrm-devel gnutls-devel libedit-devel libknot-devel
- libuv-devel lmdb-devel protobuf-c-devel"
+ libuv-devel lmdb-devel protobuf-c-devel nghttp2-devel libcap-ng-devel libcap-ng-devel"
 checkdepends="cmocka-devel"
 short_desc="Full caching DNS resolver implementation"
 maintainer="Duncaen <duncaen@voidlinux.org>"
 license="GPL-3.0-or-later"
 homepage="https://www.knot-resolver.cz/"
 distfiles="https://secure.nic.cz/files/knot-resolver/knot-resolver-${version}.tar.xz"
-checksum=8b6f447d5fe93422d4c129a2d4004a977369c3aa6e55258ead1cbd488bc01436
+checksum=534af671b98433b23b57039acc9d7d3c100a4888a8cf9aeba36161774ca0815e
 
 system_accounts="_knot_resolver"
 _knot_resolver_homedir="/var/cache/knot-resolver"
diff --git a/srcpkgs/monit/template b/srcpkgs/monit/template
index e401ff3d8733..06c060661d38 100644
--- a/srcpkgs/monit/template
+++ b/srcpkgs/monit/template
@@ -1,6 +1,6 @@
 # Template file for 'monit'
 pkgname=monit
-version=5.28.0
+version=5.28.1
 revision=1
 build_style=gnu-configure
 configure_args="
@@ -16,7 +16,7 @@ license="AGPL-3.0-only"
 homepage="https://mmonit.com/monit/"
 changelog="https://mmonit.com/monit/changes/"
 distfiles="https://mmonit.com/monit/dist/${pkgname}-${version}.tar.gz"
-checksum=9fc6287fd9570b25a85c5d5bf988ee8bd4c54d0e9e01ff04cc4b9398a159849c
+checksum=57d8885f66e58a0a4ca6a967f2bb7e8c15ed988a25b5ca6ba6733f919ef07a5c
 
 pre_configure() {
 	./bootstrap
diff --git a/srcpkgs/tailscale/template b/srcpkgs/tailscale/template
index 598429ea085e..e715ba313352 100644
--- a/srcpkgs/tailscale/template
+++ b/srcpkgs/tailscale/template
@@ -1,6 +1,6 @@
 # Template file for 'tailscale'
 pkgname=tailscale
-version=1.10.0
+version=1.12.1
 revision=1
 build_style=go
 go_import_path="tailscale.com"
@@ -14,7 +14,7 @@ maintainer="Noel Cower <ncower@nil.dev>"
 license="BSD-3-Clause"
 homepage="https://tailscale.com"
 distfiles="https://github.com/tailscale/tailscale/archive/v${version}.tar.gz"
-checksum=8345fc01fd07d3fa325817104b373bbdd54568ef807135e9d5eafa5321fa7f87
+checksum=9a94e6073f5e171c9ba6c3f5ca291bdae688c8e26fb586c3df4302204af77e86
 
 post_install() {
 	vlicense LICENSE

From ecdddd4e2c999ecf5ec1883fa007406a1ac91dc0 Mon Sep 17 00:00:00 2001
From: Bartek Stalewski <ftpd@insomniac.pl>
Date: Tue, 3 Aug 2021 09:54:04 +0200
Subject: [PATCH 2/2] fail2ban: update to version 0.11.2

---
 srcpkgs/fail2ban/template | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 2b8fe877a8be..4abc63302393 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,21 +1,23 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
-version=0.11.1
-revision=2
+version=0.11.2
+revision=1
 build_style=python3-module
 hostmakedepends="pkg-config python3"
 depends="python3"
 short_desc="Authentication failure monitor system"
 maintainer="necrophcodr <necrophcodr@necrophcodr.me>"
 license="GPL-2.0-only"
-homepage="http://www.fail2ban.org/"
-distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
-checksum=71d2a52b66bb0f87ac3812246bdd3819ec561913cd44afd39130a342f043aa6d
+homepage="https://www.fail2ban.org/"
+changelog="https://raw.githubusercontent.com/fail2ban/fail2ban/master/ChangeLog"
+distfiles="https://github.com/fail2ban/fail2ban/archive/${version}.tar.gz"
+checksum=383108e5f8644cefb288537950923b7520f642e7e114efb843f6e7ea9268b1e0
 conf_files="
  /etc/fail2ban/fail2ban.conf
  /etc/fail2ban/jail.conf
  /etc/fail2ban/action.d/*.conf
  /etc/fail2ban/filter.d/*.conf"
+make_dirs="/var/lib/fail2ban 0700 root root"
 
 pre_build() {
 	./fail2ban-2to3

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

* Re: fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
                   ` (14 preceding siblings ...)
  2021-08-03  8:01 ` ftpd
@ 2021-08-03  8:03 ` ftpd
  2021-08-03  8:03 ` [PR PATCH] [Closed]: " ftpd
                   ` (2 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: ftpd @ 2021-08-03  8:03 UTC (permalink / raw)
  To: ml

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

New comment by ftpd on void-packages repository

https://github.com/void-linux/void-packages/pull/32289#issuecomment-891628866

Comment:
I've messed up too much on git part, sorry. I will close this PR and create new one.

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

* Re: [PR PATCH] [Closed]: fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
                   ` (15 preceding siblings ...)
  2021-08-03  8:03 ` ftpd
@ 2021-08-03  8:03 ` ftpd
  2021-08-03 13:54 ` [PR REVIEW] " ericonr
  2021-08-03 16:40 ` ftpd
  18 siblings, 0 replies; 20+ messages in thread
From: ftpd @ 2021-08-03  8:03 UTC (permalink / raw)
  To: ml

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

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

fail2ban: update to version 0.11.2
https://github.com/void-linux/void-packages/pull/32289

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?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] 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-glibc)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

* Re: [PR REVIEW] fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
                   ` (16 preceding siblings ...)
  2021-08-03  8:03 ` [PR PATCH] [Closed]: " ftpd
@ 2021-08-03 13:54 ` ericonr
  2021-08-03 16:40 ` ftpd
  18 siblings, 0 replies; 20+ messages in thread
From: ericonr @ 2021-08-03 13:54 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/32289#discussion_r681782375

Comment:
Do leave it in, then. Just mention that this makes first startup work out of the box.

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

* Re: [PR REVIEW] fail2ban: update to version 0.11.2
  2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
                   ` (17 preceding siblings ...)
  2021-08-03 13:54 ` [PR REVIEW] " ericonr
@ 2021-08-03 16:40 ` ftpd
  18 siblings, 0 replies; 20+ messages in thread
From: ftpd @ 2021-08-03 16:40 UTC (permalink / raw)
  To: ml

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

New review comment by ftpd on void-packages repository

https://github.com/void-linux/void-packages/pull/32289#discussion_r681928200

Comment:
Did it in https://github.com/void-linux/void-packages/pull/32303, this one I had to close because of my stupidity.

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

end of thread, other threads:[~2021-08-03 16:40 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-01 13:21 [PR PATCH] fail2ban: update to version 0.11.2 ftpd
2021-08-01 13:22 ` ftpd
2021-08-01 14:19 ` [PR REVIEW] " paper42
2021-08-01 14:22 ` [PR PATCH] [Updated] " ftpd
2021-08-01 14:23 ` [PR REVIEW] " ftpd
2021-08-03  3:55 ` ericonr
2021-08-03  3:55 ` ericonr
2021-08-03  3:55 ` ericonr
2021-08-03  3:55 ` ericonr
2021-08-03  7:37 ` ftpd
2021-08-03  7:38 ` [PR PATCH] [Updated] " ftpd
2021-08-03  7:39 ` [PR REVIEW] " ftpd
2021-08-03  7:46 ` [PR PATCH] [Updated] " ftpd
2021-08-03  7:48 ` ftpd
2021-08-03  7:54 ` ftpd
2021-08-03  8:01 ` ftpd
2021-08-03  8:03 ` ftpd
2021-08-03  8:03 ` [PR PATCH] [Closed]: " ftpd
2021-08-03 13:54 ` [PR REVIEW] " ericonr
2021-08-03 16:40 ` ftpd

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