Update to bfs-2.3.1

Changelog: https://github.com/tavianator/bfs/releases/tag/2.3.1
This commit is contained in:
bcallah 2022-02-19 14:27:10 +00:00
parent 689a2dc607
commit 2e3c7d804c
3 changed files with 11 additions and 11 deletions

View File

@ -1,11 +1,11 @@
# $OpenBSD: Makefile,v 1.17 2021/12/02 23:02:32 bcallah Exp $
# $OpenBSD: Makefile,v 1.18 2022/02/19 14:27:10 bcallah Exp $
COMMENT = breadth-first version of the UNIX find command
CATEGORIES = sysutils
GH_ACCOUNT = tavianator
GH_PROJECT = bfs
GH_TAGNAME = 2.3
GH_TAGNAME = 2.3.1
MAINTAINER = Brian Callahan <bcallah@openbsd.org>

View File

@ -1,2 +1,2 @@
SHA256 (bfs-2.3.tar.gz) = FdVFWvOjmVYdsdcB8gMtdDp6GiAdYN8rVcr9NRcne9M=
SIZE (bfs-2.3.tar.gz) = 143482
SHA256 (bfs-2.3.1.tar.gz) = w+1gABgEynmjeUk1q2uZJ70U30LcNOR1s01ikp/MWpg=
SIZE (bfs-2.3.1.tar.gz) = 144084

View File

@ -1,16 +1,16 @@
$OpenBSD: patch-tests_sh,v 1.5 2021/12/02 23:02:32 bcallah Exp $
$OpenBSD: patch-tests_sh,v 1.6 2022/02/19 14:27:10 bcallah Exp $
touch -h is a GNU extension
Index: tests.sh
--- tests.sh.orig
+++ tests.sh
@@ -954,7 +954,7 @@ function make_times() {
touch -t 199112140001 "$1/b"
touch -t 199112140002 "$1/c"
@@ -961,7 +961,7 @@ function make_times() {
$TOUCH -t 199112140001 "$1/b"
$TOUCH -t 199112140002 "$1/c"
ln -s a "$1/l"
- touch -h -t 199112140003 "$1/l"
+ touch -t 199112140003 "$1/l"
touch -t 199112140004 "$1"
- $TOUCH -h -t 199112140003 "$1/l"
+ $TOUCH -t 199112140003 "$1/l"
$TOUCH -t 199112140004 "$1"
}
make_times "$TMP/times"