Date: Wed, 12 Dec 2018 14:17:08 +0000 (UTC) From: David Naylor <dbn@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487296 - in head/deskutils: . fasd Message-ID: <201812121417.wBCEH85V048910@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dbn Date: Wed Dec 12 14:17:08 2018 New Revision: 487296 URL: https://svnweb.freebsd.org/changeset/ports/487296 Log: deskutils/fasd: Shell helper program to autocomplete paths faster PR: 228969 Added: head/deskutils/fasd/ head/deskutils/fasd/Makefile (contents, props changed) head/deskutils/fasd/distinfo (contents, props changed) head/deskutils/fasd/pkg-descr (contents, props changed) head/deskutils/fasd/pkg-message (contents, props changed) Modified: head/deskutils/Makefile Modified: head/deskutils/Makefile ============================================================================== --- head/deskutils/Makefile Wed Dec 12 13:28:50 2018 (r487295) +++ head/deskutils/Makefile Wed Dec 12 14:17:08 2018 (r487296) @@ -51,6 +51,7 @@ SUBDIR += flameshot SUBDIR += freemind SUBDIR += freeplane + SUBDIR += fasd SUBDIR += fusenshi SUBDIR += gaddr SUBDIR += ganttproject Added: head/deskutils/fasd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/fasd/Makefile Wed Dec 12 14:17:08 2018 (r487296) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= fasd +PORTVERSION= 1.0.1 +CATEGORIES= deskutils + +MAINTAINER= mail@dbalan.in +COMMENT= Shell helper program to autocomplete paths faster + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= clvv + +MAKE_ARGS+= prefix=${PREFIX} \ + MANDIR=${MANPREFIX}/man + +PLIST_FILES= bin/fasd man/man1/fasd.1.gz + +.include <bsd.port.mk> Added: head/deskutils/fasd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/fasd/distinfo Wed Dec 12 14:17:08 2018 (r487296) @@ -0,0 +1,3 @@ +TIMESTAMP = 1528835657 +SHA256 (clvv-fasd-1.0.1_GH0.tar.gz) = 88efdfbbed8df408699a14fa6c567450bf86480f5ff3dde42d0b3e1dee731f65 +SIZE (clvv-fasd-1.0.1_GH0.tar.gz) = 16018 Added: head/deskutils/fasd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/fasd/pkg-descr Wed Dec 12 14:17:08 2018 (r487296) @@ -0,0 +1,5 @@ +Fasd is a handy shell helper program to access files and directories faster. +Fasd will try to expand path arguments from previously seen ones ordered by +frequency of access. + +WWW: https://github.com/clvv/fasd Added: head/deskutils/fasd/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/fasd/pkg-message Wed Dec 12 14:17:08 2018 (r487296) @@ -0,0 +1,7 @@ +To get fasd working in a shell, some initialization code must be run. Put the +line below in your shell rc. + +eval "$(fasd --init auto)" + +This will setup a command hook that executes on every command and advanced tab +completion for zsh and bash.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812121417.wBCEH85V048910>