Date: Fri, 25 Oct 2019 08:03:52 +0000 (UTC) From: Mateusz Piotrowski <0mp@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r515585 - in head/deskutils: . fff Message-ID: <201910250803.x9P83qME061371@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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: <<EOM +Install the devel/xdg-utils port if you wish to use xdg-open with fff. + +Install the following ports in order to enable image displaying support: +- www/w3m-img +- x11/xdotool +EOM + type: install + } + ]
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910250803.x9P83qME061371>