From owner-svn-ports-head@freebsd.org Sun Sep 23 13:50:13 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1581D108F364; Sun, 23 Sep 2018 13:50:13 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B27AC76D91; Sun, 23 Sep 2018 13:50:12 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A9041386A; Sun, 23 Sep 2018 13:50:12 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8NDoCd3065909; Sun, 23 Sep 2018 13:50:12 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8NDoB0b065902; Sun, 23 Sep 2018 13:50:11 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201809231350.w8NDoB0b065902@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sun, 23 Sep 2018 13:50:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480509 - in head/sysutils: . bfs X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/sysutils: . bfs X-SVN-Commit-Revision: 480509 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2018 13:50:13 -0000 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 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