Date: Sun, 23 Sep 2018 13:50:11 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480509 - in head/sysutils: . bfs Message-ID: <201809231350.w8NDoB0b065902@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Sun Sep 23 13:50:11 2018 New Revision: 480509 URL: https://svnweb.freebsd.org/changeset/ports/480509 Log: New port: sysutils/bfs bfs is a breadth-first version of the UNIX find(1) command. It supports almost every feature from every major find(1) implementation, so your existing command lines should work as-is. It also adds some features of its own, such as a more forgiving command line parser and some additional options. WWW: https://github.com/tavianator/bfs Added: head/sysutils/bfs/ head/sysutils/bfs/Makefile (contents, props changed) head/sysutils/bfs/distinfo (contents, props changed) head/sysutils/bfs/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Sep 23 13:30:47 2018 (r480508) +++ head/sysutils/Makefile Sun Sep 23 13:50:11 2018 (r480509) @@ -106,6 +106,7 @@ SUBDIR += beadm SUBDIR += beadm-devel SUBDIR += beats + SUBDIR += bfs SUBDIR += bhyve-firmware SUBDIR += bhyve-rc SUBDIR += biosfont Added: head/sysutils/bfs/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bfs/Makefile Sun Sep 23 13:50:11 2018 (r480509) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= bfs +DISTVERSION= 1.2.3 +CATEGORIES= sysutils + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Breadth-first version of the UNIX find command + +LICENSE= BSD0CLAUSE +LICENSE_NAME= BSD Zero Clause License +LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + +TEST_DEPENDS= bash:shells/bash + +USES= gmake shebangfix +USE_GITHUB= yes +GH_ACCOUNT= tavianator + +SHEBANG_FILES= tests.sh +PLIST_FILES= bin/bfs \ + man/man1/bfs.1.gz +TEST_TARGET= check + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bfs ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/bfs.1 ${STAGEDIR}${MANPREFIX}/man/man1 + +.include <bsd.port.mk> Added: head/sysutils/bfs/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bfs/distinfo Sun Sep 23 13:50:11 2018 (r480509) @@ -0,0 +1,3 @@ +TIMESTAMP = 1537658096 +SHA256 (tavianator-bfs-1.2.3_GH0.tar.gz) = 8ce9e47367db50aeb0bf3c5707080a853993ed98059d577daa45c681f07e2fcd +SIZE (tavianator-bfs-1.2.3_GH0.tar.gz) = 80044 Added: head/sysutils/bfs/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bfs/pkg-descr Sun Sep 23 13:50:11 2018 (r480509) @@ -0,0 +1,8 @@ +bfs(1) is a breadth-first version of the UNIX find(1) command. + +It supports almost every feature from every major find(1) +implementation, so your existing command lines should work as-is. +It also adds some features of its own, such as a more forgiving +command line parser and some additional options. + +WWW: https://github.com/tavianator/bfs
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809231350.w8NDoB0b065902>