From owner-svn-ports-head@freebsd.org Fri Oct 25 08:03:54 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 33457169C60; Fri, 25 Oct 2019 08:03:54 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46zxT60ZWxz4CQM; Fri, 25 Oct 2019 08:03:54 +0000 (UTC) (envelope-from 0mp@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 EB3B023742; Fri, 25 Oct 2019 08:03:53 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9P83rla061376; Fri, 25 Oct 2019 08:03:53 GMT (envelope-from 0mp@FreeBSD.org) Received: (from 0mp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9P83qME061371; Fri, 25 Oct 2019 08:03:52 GMT (envelope-from 0mp@FreeBSD.org) Message-Id: <201910250803.x9P83qME061371@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: 0mp set sender to 0mp@FreeBSD.org using -f From: Mateusz Piotrowski <0mp@FreeBSD.org> Date: Fri, 25 Oct 2019 08:03:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r515585 - in head/deskutils: . fff X-SVN-Group: ports-head X-SVN-Commit-Author: 0mp X-SVN-Commit-Paths: in head/deskutils: . fff X-SVN-Commit-Revision: 515585 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.29 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: Fri, 25 Oct 2019 08:03:54 -0000 Author: 0mp Date: Fri Oct 25 08:03:52 2019 New Revision: 515585 URL: https://svnweb.freebsd.org/changeset/ports/515585 Log: New port: deskutils/fff: Simple file manager written in Bash A simple file manager written in Bash. - It's ******* Fast - Minimal (only requires bash and coreutils) - Smooth Scrolling (using vim keybindings) - Works on Linux, BSD, macOS, Haiku etc. - Supports LS_COLORS! - File operations (copy, paste, cut, ranger style bulk rename, etc) - Instant as you type search - Tab completion for all commands! - Automatic CD on exit (see setup) - Works as a file picker in vim/neovim! - Display images with w3m-img! - Supports $CDPATH. WWW: https://github.com/dylanaraps/fff Added: head/deskutils/fff/ head/deskutils/fff/Makefile (contents, props changed) head/deskutils/fff/distinfo (contents, props changed) head/deskutils/fff/pkg-descr (contents, props changed) head/deskutils/fff/pkg-message (contents, props changed) Modified: head/deskutils/Makefile Modified: head/deskutils/Makefile ============================================================================== --- head/deskutils/Makefile Fri Oct 25 08:00:21 2019 (r515584) +++ head/deskutils/Makefile Fri Oct 25 08:03:52 2019 (r515585) @@ -50,6 +50,7 @@ SUBDIR += fasd SUBDIR += fbreader SUBDIR += fet + SUBDIR += fff SUBDIR += flameshot SUBDIR += foliate SUBDIR += freemind Added: head/deskutils/fff/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/fff/Makefile Fri Oct 25 08:03:52 2019 (r515585) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= fff +DISTVERSION= 2.1 +CATEGORIES= deskutils + +MAINTAINER= 0mp@FreeBSD.org +COMMENT= Simple file manager written in Bash + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +RUN_DEPENDS= bash:shells/bash + +USES= shebangfix +SHEBANG_FILES= fff +USE_GITHUB= yes +GH_ACCOUNT= dylanaraps + +NO_ARCH= yes +NO_BUILD= yes +PLIST_FILES= bin/fff share/man/man1/fff.1 + +.include Added: head/deskutils/fff/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/fff/distinfo Fri Oct 25 08:03:52 2019 (r515585) @@ -0,0 +1,3 @@ +TIMESTAMP = 1568021713 +SHA256 (dylanaraps-fff-2.1_GH0.tar.gz) = 776870d11c022fa40468d5d582831c0ab5beced573489097deaaf5dd690e7eab +SIZE (dylanaraps-fff-2.1_GH0.tar.gz) = 15573 Added: head/deskutils/fff/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/fff/pkg-descr Fri Oct 25 08:03:52 2019 (r515585) @@ -0,0 +1,16 @@ +A simple file manager written in Bash. + +- It's ******* Fast +- Minimal (only requires bash and coreutils) +- Smooth Scrolling (using vim keybindings) +- Works on Linux, BSD, macOS, Haiku etc. +- Supports LS_COLORS! +- File operations (copy, paste, cut, ranger style bulk rename, etc) +- Instant as you type search +- Tab completion for all commands! +- Automatic CD on exit (see setup) +- Works as a file picker in vim/neovim! +- Display images with w3m-img! +- Supports $CDPATH. + +WWW: https://github.com/dylanaraps/fff Added: head/deskutils/fff/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/fff/pkg-message Fri Oct 25 08:03:52 2019 (r515585) @@ -0,0 +1,12 @@ +[ +{ + message: <