Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] bfs: update to 2.4.
@ 2022-02-24 21:36 daniel-eys
  2022-02-24 21:57 ` daniel-eys
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: daniel-eys @ 2022-02-24 21:36 UTC (permalink / raw)
  To: ml

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

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

https://github.com/daniel-eys/void-packages bfs
https://github.com/void-linux/void-packages/pull/35836

bfs: update to 2.4.
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- 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
-->


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

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

From 82c6ee2edbf25791c49db2ed8bede4a6d46e693a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Thu, 24 Feb 2022 22:26:49 +0100
Subject: [PATCH] bfs: update to 2.4.

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

diff --git a/srcpkgs/bfs/template b/srcpkgs/bfs/template
index c4d8b40be69b..4c9f0a8efc00 100644
--- a/srcpkgs/bfs/template
+++ b/srcpkgs/bfs/template
@@ -1,9 +1,9 @@
 # Template file for 'bfs'
 pkgname=bfs
-version=2.3.1
+version=2.4
 revision=1
 build_style=gnu-makefile
-makedepends="acl-devel libcap-devel"
+makedepends="acl-devel libcap-devel oniguruma-devel"
 checkdepends="acl-progs libcap-progs"
 short_desc="Breadth-first version of the UNIX find command"
 maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
@@ -11,7 +11,7 @@ license="0BSD"
 homepage="https://github.com/tavianator/bfs"
 changelog="https://raw.githubusercontent.com/tavianator/bfs/main/RELEASES.md"
 distfiles="https://github.com/tavianator/bfs/archive/${version}.tar.gz"
-checksum=c3ed60001804ca79a3794935ab6b9927bd14df42dc34e475b34d62929fcc5a98
+checksum=fc258bf6ee807262e68dc3e502168cfb30b97aafbbcc248b4a8e5f14b3119ed2
 
 post_install() {
 	vlicense LICENSE

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

* Re: bfs: update to 2.4.
  2022-02-24 21:36 [PR PATCH] bfs: update to 2.4 daniel-eys
@ 2022-02-24 21:57 ` daniel-eys
  2022-02-25 15:22 ` [WIP] " tavianator
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: daniel-eys @ 2022-02-24 21:57 UTC (permalink / raw)
  To: ml

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

New comment by daniel-eys on void-packages repository

https://github.com/void-linux/void-packages/pull/35836#issuecomment-1050304637

Comment:
one test failed on musl, having a look into that


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

* Re: [WIP] bfs: update to 2.4.
  2022-02-24 21:36 [PR PATCH] bfs: update to 2.4 daniel-eys
  2022-02-24 21:57 ` daniel-eys
@ 2022-02-25 15:22 ` tavianator
  2022-03-27 18:33 ` [PR PATCH] [Updated] " daniel-eys
  2022-03-27 20:33 ` [PR PATCH] [Merged]: bfs: update to 2.5 leahneukirchen
  3 siblings, 0 replies; 5+ messages in thread
From: tavianator @ 2022-02-25 15:22 UTC (permalink / raw)
  To: ml

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

New comment by tavianator on void-packages repository

https://github.com/void-linux/void-packages/pull/35836#issuecomment-1050947339

Comment:
The musl failure is a bug in musl I think.  POSIX says this about `fnmatch()`:

> If pattern ends with an unescaped &lt;backslash>, fnmatch() shall return a non-zero value (indicating either no match or an error).

And yet:

```
$ cat foo.c
#include <assert.h>
#include <fnmatch.h>

int main(void) {
        assert(fnmatch("\\", "\\", 0) != 0);
        return 0;
}
$ gcc foo.c -o foo && ./foo
$ musl-gcc foo.c -o foo && ./foo
Assertion failed: fnmatch("\\", "\\", 0) != 0 (foo.c: main: 5)
```

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

* Re: [PR PATCH] [Updated] [WIP] bfs: update to 2.4.
  2022-02-24 21:36 [PR PATCH] bfs: update to 2.4 daniel-eys
  2022-02-24 21:57 ` daniel-eys
  2022-02-25 15:22 ` [WIP] " tavianator
@ 2022-03-27 18:33 ` daniel-eys
  2022-03-27 20:33 ` [PR PATCH] [Merged]: bfs: update to 2.5 leahneukirchen
  3 siblings, 0 replies; 5+ messages in thread
From: daniel-eys @ 2022-03-27 18:33 UTC (permalink / raw)
  To: ml

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

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

https://github.com/daniel-eys/void-packages bfs
https://github.com/void-linux/void-packages/pull/35836

[WIP] bfs: update to 2.4.
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- 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
-->


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

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

From 3bac40088a207557ba9f6cd1008be231c201c911 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Thu, 24 Feb 2022 22:26:49 +0100
Subject: [PATCH] bfs: update to 2.5.

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

diff --git a/srcpkgs/bfs/template b/srcpkgs/bfs/template
index c4d8b40be69b..799cd1d86bb6 100644
--- a/srcpkgs/bfs/template
+++ b/srcpkgs/bfs/template
@@ -1,9 +1,9 @@
 # Template file for 'bfs'
 pkgname=bfs
-version=2.3.1
+version=2.5
 revision=1
 build_style=gnu-makefile
-makedepends="acl-devel libcap-devel"
+makedepends="acl-devel libcap-devel oniguruma-devel"
 checkdepends="acl-progs libcap-progs"
 short_desc="Breadth-first version of the UNIX find command"
 maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
@@ -11,7 +11,7 @@ license="0BSD"
 homepage="https://github.com/tavianator/bfs"
 changelog="https://raw.githubusercontent.com/tavianator/bfs/main/RELEASES.md"
 distfiles="https://github.com/tavianator/bfs/archive/${version}.tar.gz"
-checksum=c3ed60001804ca79a3794935ab6b9927bd14df42dc34e475b34d62929fcc5a98
+checksum=410be5de74bfc5dece213731d3a8462310789118d299fb14f02bd9b0fdd66875
 
 post_install() {
 	vlicense LICENSE

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

* Re: [PR PATCH] [Merged]: bfs: update to 2.5.
  2022-02-24 21:36 [PR PATCH] bfs: update to 2.4 daniel-eys
                   ` (2 preceding siblings ...)
  2022-03-27 18:33 ` [PR PATCH] [Updated] " daniel-eys
@ 2022-03-27 20:33 ` leahneukirchen
  3 siblings, 0 replies; 5+ messages in thread
From: leahneukirchen @ 2022-03-27 20:33 UTC (permalink / raw)
  To: ml

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

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

bfs: update to 2.5.
https://github.com/void-linux/void-packages/pull/35836

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- 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
-->


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

end of thread, other threads:[~2022-03-27 20:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-24 21:36 [PR PATCH] bfs: update to 2.4 daniel-eys
2022-02-24 21:57 ` daniel-eys
2022-02-25 15:22 ` [WIP] " tavianator
2022-03-27 18:33 ` [PR PATCH] [Updated] " daniel-eys
2022-03-27 20:33 ` [PR PATCH] [Merged]: bfs: update to 2.5 leahneukirchen

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