Update to bfs-1.3.3

Changelog: https://github.com/tavianator/bfs/releases/tag/1.3.3
This commit is contained in:
bcallah 2019-02-12 21:47:11 +00:00
parent 4b4750df5e
commit 9004874735
4 changed files with 6 additions and 22 deletions

View File

@ -1,11 +1,11 @@
# $OpenBSD: Makefile,v 1.3 2019/01/13 14:00:50 bcallah Exp $
# $OpenBSD: Makefile,v 1.4 2019/02/12 21:47:11 bcallah Exp $
COMMENT = breadth-first version of the UNIX find command
CATEGORIES = sysutils
GH_ACCOUNT = tavianator
GH_PROJECT = bfs
GH_TAGNAME = 1.3.2
GH_TAGNAME = 1.3.3
MAINTAINER = Brian Callahan <bcallah@openbsd.org>

View File

@ -1,2 +1,2 @@
SHA256 (bfs-1.3.2.tar.gz) = RZOebBkhyQ5fFZQH+HcXjMk3bcZugI2++AYA12JMu8I=
SIZE (bfs-1.3.2.tar.gz) = 88162
SHA256 (bfs-1.3.3.tar.gz) = thrmauew16ciCi+O87YSHY+10dFVvQPH57AGfQYa6Ks=
SIZE (bfs-1.3.3.tar.gz) = 92687

View File

@ -1,11 +1,11 @@
$OpenBSD: patch-Makefile,v 1.2 2019/01/04 03:14:12 bcallah Exp $
$OpenBSD: patch-Makefile,v 1.3 2019/02/12 21:47:11 bcallah Exp $
Install manual page to the correct directory.
Index: Makefile
--- Makefile.orig
+++ Makefile
@@ -100,8 +100,8 @@ clean:
@@ -112,8 +112,8 @@ clean:
install:
$(MKDIR) $(DESTDIR)$(PREFIX)/bin
$(INSTALL) -m755 bfs $(DESTDIR)$(PREFIX)/bin/bfs

View File

@ -1,16 +0,0 @@
$OpenBSD: patch-util_h,v 1.1 2019/01/13 14:00:50 bcallah Exp $
Don't fallback to having sys/acl.h, since we don't.
Index: util.h
--- util.h.orig
+++ util.h
@@ -34,7 +34,7 @@
#endif
#define BFS_HAS_MNTENT BFS_HAS_INCLUDE(<mntent.h>, __GLIBC__)
-#define BFS_HAS_SYS_ACL BFS_HAS_INCLUDE(<sys/acl.h>, true)
+#define BFS_HAS_SYS_ACL BFS_HAS_INCLUDE(<sys/acl.h>, false)
#define BFS_HAS_SYS_CAPABILITY BFS_HAS_INCLUDE(<sys/capability.h>, __linux__)
#define BFS_HAS_SYS_MKDEV BFS_HAS_INCLUDE(<sys/mkdev.h>, false)
#define BFS_HAS_SYS_PARAM BFS_HAS_INCLUDE(<sys/param.h>, true)