Date: Tue, 11 Aug 2020 07:50:22 +0000 (UTC) From: Li-Wen Hsu <lwhsu@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r544671 - in head: . sysutils sysutils/autojump sysutils/autojump/files Message-ID: <202008110750.07B7oMUQ081162@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: lwhsu Date: Tue Aug 11 07:50:21 2020 New Revision: 544671 URL: https://svnweb.freebsd.org/changeset/ports/544671 Log: Readd sysutils/autojump, faster way to navigate your filesystem PR: 248470 Submitted by: Michel Boaventura <michel@boaventura.dev> Added: head/sysutils/autojump/ - copied from r534092, head/sysutils/autojump/ head/sysutils/autojump/pkg-plist (contents, props changed) Deleted: head/sysutils/autojump/files/ head/sysutils/autojump/pkg-deinstall head/sysutils/autojump/pkg-message Modified: head/MOVED head/sysutils/Makefile head/sysutils/autojump/Makefile head/sysutils/autojump/distinfo head/sysutils/autojump/pkg-descr Modified: head/MOVED ============================================================================== --- head/MOVED Tue Aug 11 07:47:42 2020 (r544670) +++ head/MOVED Tue Aug 11 07:50:21 2020 (r544671) @@ -14828,7 +14828,6 @@ security/xspy||2020-05-05|Has expired: Broken for more shells/osh||2020-05-05|Has expired: Broken for more than 6 months shells/shell-include||2020-05-05|Has expired: Broken for more than 6 months sysutils/abgx360gui||2020-05-05|Has expired: Broken for more than 6 months -sysutils/autojump||2020-05-05|Has expired: Broken for more than 6 months sysutils/backupchecker||2020-05-05|Has expired: Broken for more than 6 months sysutils/cdf||2020-05-05|Has expired: Broken for more than 6 months sysutils/cdls||2020-05-05|Has expired: Broken for more than 6 months Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Tue Aug 11 07:47:42 2020 (r544670) +++ head/sysutils/Makefile Tue Aug 11 07:50:21 2020 (r544671) @@ -65,6 +65,7 @@ SUBDIR += atitvout SUBDIR += atop SUBDIR += auto-admin + SUBDIR += autojump SUBDIR += automount SUBDIR += automounter SUBDIR += autopsy Modified: head/sysutils/autojump/Makefile ============================================================================== --- head/sysutils/autojump/Makefile Tue May 5 15:22:17 2020 (r534092) +++ head/sysutils/autojump/Makefile Tue Aug 11 07:50:21 2020 (r544671) @@ -1,44 +1,33 @@ -# Created by: Neeraj Verma <neeraj.verma.ports@vermatech.com> # $FreeBSD$ PORTNAME= autojump -PORTVERSION= 13 -PORTREVISION= 1 +PORTVERSION= 22.5.3 +DISTVERSIONPREFIX= release-v CATEGORIES= sysutils -MASTER_SITES= http://www.vermatech.com/distfiles/ -DISTNAME= autojump_v${PORTVERSION} -MAINTAINER= neeraj.verma.ports@vermatech.com -COMMENT= Tool that acts as a complement to cd +MAINTAINER= michel@boaventura.dev +COMMENT= Faster way to navigate your filesystem -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2020-05-05 - LICENSE= GPLv3+ -LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= bash:shells/bash +USES= python:run shebangfix +USE_GITHUB= yes +GH_ACCOUNT= wting +USE_PYTHON= concurrent autoplist +SHEBANG_FILES= bin/autojump -USES= python:run shebangfix NO_BUILD= yes -SHEBANG_FILES= autojump jumpapplet -SUB_FILES= pkg-install NO_ARCH= yes -PLIST_FILES= bin/autojump \ - bin/jumpapplet \ - man/man1/autojump.1.gz \ - share/autojump/autojump.bash \ - share/autojump/autojump.zsh \ - share/autojump/icon.png \ - share/zsh/site-functions/_j - do-install: - @(cd ${INSTALL_WRKSRC} && ${SETENV} ${SH} ./install.sh \ - --prefix ${STAGEDIR}${PREFIX}) - @${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions - ${INSTALL_DATA} ${WRKSRC}/_j \ - ${STAGEDIR}${PREFIX}/share/zsh/site-functions + ${MKDIR} ${STAGEDIR}${PREFIX}/bin + ${MKDIR} ${STAGEDIR}${PREFIX}/share/autojump + ${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions + ${CP} ${INSTALL_WRKSRC}/bin/autojump ${STAGEDIR}${PREFIX}/bin + ${CP} ${INSTALL_WRKSRC}/bin/*.py ${STAGEDIR}${PREFIX}/bin + ${CP} ${INSTALL_WRKSRC}/bin/autojump.bash ${STAGEDIR}${PREFIX}/share/autojump + ${CP} ${INSTALL_WRKSRC}/bin/autojump.zsh ${STAGEDIR}${PREFIX}/share/autojump + ${CP} ${INSTALL_WRKSRC}/bin/autojump.fish ${STAGEDIR}${PREFIX}/share/autojump + ${CP} ${INSTALL_WRKSRC}/bin/_j ${STAGEDIR}${PREFIX}/share/zsh/site-functions .include <bsd.port.mk> Modified: head/sysutils/autojump/distinfo ============================================================================== --- head/sysutils/autojump/distinfo Tue May 5 15:22:17 2020 (r534092) +++ head/sysutils/autojump/distinfo Tue Aug 11 07:50:21 2020 (r544671) @@ -1,2 +1,3 @@ -SHA256 (autojump_v13.tar.gz) = 020ef781b30f8cbe4f183f2ccadac720e3f747e82924aaa4b95da01d76cc2153 -SIZE (autojump_v13.tar.gz) = 22723 +TIMESTAMP = 1596643397 +SHA256 (wting-autojump-release-v22.5.3_GH0.tar.gz) = 00daf3698e17ac3ac788d529877c03ee80c3790472a85d0ed063ac3a354c37b1 +SIZE (wting-autojump-release-v22.5.3_GH0.tar.gz) = 55429 Modified: head/sysutils/autojump/pkg-descr ============================================================================== --- head/sysutils/autojump/pkg-descr Tue May 5 15:22:17 2020 (r534092) +++ head/sysutils/autojump/pkg-descr Tue Aug 11 07:50:21 2020 (r544671) @@ -1,7 +1,6 @@ -Autojump is a tool that acts as a complement to cd: it makes navigating your -filesystem a lot faster. It works by automagically maintaining a database of -the directories you use the most from the command line, and allows you to jump -back and forth between them, by typing just a few letters of the name of the -directory you want to jump to. +Autojump is a faster way to navigate your filesystem. It works by maintaining a +database of the directories you use the most from the command line. -WWW: https://github.com/joelthelion/autojump/wiki +Directories must be visited first before they can be jumped to. + +WWW: https://github.com/wting/autojump Added: head/sysutils/autojump/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/autojump/pkg-plist Tue Aug 11 07:50:21 2020 (r544671) @@ -0,0 +1,9 @@ +bin/autojump +bin/autojump_argparse.py +bin/autojump_data.py +bin/autojump_match.py +bin/autojump_utils.py +share/autojump/autojump.bash +share/autojump/autojump.fish +share/autojump/autojump.zsh +share/zsh/site-functions/_j
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008110750.07B7oMUQ081162>