Date: Sat, 9 Nov 2019 02:52:01 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r517101 - in head/sysutils: . pass-update Message-ID: <201911090252.xA92q1Lh073923@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Sat Nov 9 02:52:00 2019 New Revision: 517101 URL: https://svnweb.freebsd.org/changeset/ports/517101 Log: sysutils/pass-update: create port A pass extension that provides an easy flow for updating passwords. WWW: https://github.com/roddhjav/pass-update PR: 241252 Submitted by: Adam Jimerson <vendion@gmail.com> Added: head/sysutils/pass-update/ head/sysutils/pass-update/Makefile (contents, props changed) head/sysutils/pass-update/distinfo (contents, props changed) head/sysutils/pass-update/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile (contents, props changed) Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sat Nov 9 02:14:28 2019 (r517100) +++ head/sysutils/Makefile Sat Nov 9 02:52:00 2019 (r517101) @@ -855,6 +855,7 @@ SUBDIR += parallel SUBDIR += pass-otp SUBDIR += password-store + SUBDIR += password-update SUBDIR += passwordsafe SUBDIR += patchelf SUBDIR += pax-utils Added: head/sysutils/pass-update/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/pass-update/Makefile Sat Nov 9 02:52:00 2019 (r517101) @@ -0,0 +1,34 @@ +# $FreeBSD$ + +PORTNAME= pass-update +DISTVERSIONPREFIX= v +DISTVERSION= 2.1 +CATEGORIES= sysutils + +MAINTAINER= vendion@gmail.com +COMMENT= Pass extension that provides an easy flow for updating passwords + +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= bash:shells/bash \ + pass:sysutils/password-store + +USES= gmake shebangfix +USE_GITHUB= YES +GH_ACCOUNT= roddhjav +SHEBANG_FILES= tests/*.sh update.bash + +NO_ARCH= yes +NO_BUILD= yes +MAKE_ENV= BASHCOMPDIR=${PREFIX}/share/bash-completions/completions \ + DESTDIR=${STAGEDIR} \ + LIBDIR=${PREFIX}/libexec \ + MANDIR=${MANPREFIX}/man + +PLIST_FILES= libexec/password-store/extensions/update.bash \ + man/man1/pass-update.1.gz \ + share/bash-completions/completions/pass-update \ + share/zsh/site-functions/_pass-update + +.include <bsd.port.mk> Added: head/sysutils/pass-update/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/pass-update/distinfo Sat Nov 9 02:52:00 2019 (r517101) @@ -0,0 +1,3 @@ +TIMESTAMP = 1569034699 +SHA256 (roddhjav-pass-update-v2.1_GH0.tar.gz) = 2b0022102238e022e7ee945b7622f4c270810cda46508084fcb193582aafaf6f +SIZE (roddhjav-pass-update-v2.1_GH0.tar.gz) = 46200 Added: head/sysutils/pass-update/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/pass-update/pkg-descr Sat Nov 9 02:52:00 2019 (r517101) @@ -0,0 +1,3 @@ +A pass extension that provides an easy flow for updating passwords. + +WWW: https://github.com/roddhjav/pass-update
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911090252.xA92q1Lh073923>