From owner-svn-ports-head@freebsd.org Mon Feb 25 18:24:46 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2765915118D1; Mon, 25 Feb 2019 18:24:46 +0000 (UTC) (envelope-from rene@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 BD99B71C56; Mon, 25 Feb 2019 18:24:45 +0000 (UTC) (envelope-from rene@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 7F2CF20CB5; Mon, 25 Feb 2019 18:24:45 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1PIOjYx018723; Mon, 25 Feb 2019 18:24:45 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1PIOjLP018721; Mon, 25 Feb 2019 18:24:45 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201902251824.x1PIOjLP018721@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Mon, 25 Feb 2019 18:24:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493886 - head/sysutils/password-store X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: head/sysutils/password-store X-SVN-Commit-Revision: 493886 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BD99B71C56 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] 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: Mon, 25 Feb 2019 18:24:46 -0000 Author: rene Date: Mon Feb 25 18:24:44 2019 New Revision: 493886 URL: https://svnweb.freebsd.org/changeset/ports/493886 Log: sysutils/password-store: use new website in WWW line [1] While here, replace hardcoded "password-store" by ${PORTNAME} in Makefile PR: 236028 Submitted by: Nuno Teixeira Modified: head/sysutils/password-store/Makefile head/sysutils/password-store/pkg-descr Modified: head/sysutils/password-store/Makefile ============================================================================== --- head/sysutils/password-store/Makefile Mon Feb 25 17:22:55 2019 (r493885) +++ head/sysutils/password-store/Makefile Mon Feb 25 18:24:44 2019 (r493886) @@ -4,7 +4,7 @@ PORTNAME= password-store PORTVERSION= 1.7.3 PORTREVISION= 1 CATEGORIES= sysutils -MASTER_SITES= https://git.zx2c4.com/password-store/snapshot/ +MASTER_SITES= https://git.zx2c4.com/${PORTNAME}/snapshot/ MAINTAINER= rene@FreeBSD.org COMMENT= Stores, retrieves, generates, and synchronizes passwords securely @@ -43,15 +43,15 @@ SUB_FILES= pass post-patch: @${REINPLACE_CMD} -Ee 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/src/platform/freebsd.sh - @${REINPLACE_CMD} -Ee 's|^SYSTEM_EXTENSION_DIR=""|SYSTEM_EXTENSION_DIR="${PREFIX}/libexec/password-store/extensions"|g' \ - ${WRKSRC}/src/password-store.sh + @${REINPLACE_CMD} -Ee 's|^SYSTEM_EXTENSION_DIR=""|SYSTEM_EXTENSION_DIR="${PREFIX}/libexec/${PORTNAME}/extensions"|g' \ + ${WRKSRC}/src/${PORTNAME}.sh do-install: ${INSTALL_SCRIPT} ${WRKDIR}/pass ${STAGEDIR}${PREFIX}/bin/ - ${MKDIR} ${STAGEDIR}${PREFIX}/libexec/password-store/extensions - ${MKDIR} ${STAGEDIR}${PREFIX}/libexec/password-store/platform - ${INSTALL_SCRIPT} ${WRKSRC}/src/password-store.sh ${STAGEDIR}${PREFIX}/libexec/password-store/pass - ${INSTALL_SCRIPT} ${WRKSRC}/src/platform/freebsd.sh ${STAGEDIR}${PREFIX}/libexec/password-store/platform/ + ${MKDIR} ${STAGEDIR}${PREFIX}/libexec/${PORTNAME}/extensions + ${MKDIR} ${STAGEDIR}${PREFIX}/libexec/${PORTNAME}/platform + ${INSTALL_SCRIPT} ${WRKSRC}/src/${PORTNAME}.sh ${STAGEDIR}${PREFIX}/libexec/${PORTNAME}/pass + ${INSTALL_SCRIPT} ${WRKSRC}/src/platform/freebsd.sh ${STAGEDIR}${PREFIX}/libexec/${PORTNAME}/platform/ ${INSTALL_MAN} ${WRKSRC}/man/pass.1 ${STAGEDIR}${MANPREFIX}/man/man1/pass.1 do-install-CONTRIB-on: @@ -62,9 +62,9 @@ do-install-CONTRIB-on: @${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions ${INSTALL_DATA} ${STAGEDIR}${DATADIR}/pass.zsh-completion ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_pass @${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d - ${INSTALL_DATA} ${STAGEDIR}${DATADIR}/pass.bash-completion ${STAGEDIR}${PREFIX}/etc/bash_completion.d/password-store + ${INSTALL_DATA} ${STAGEDIR}${DATADIR}/pass.bash-completion ${STAGEDIR}${PREFIX}/etc/bash_completion.d/${PORTNAME} @${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/completions - ${INSTALL_DATA} ${STAGEDIR}${DATADIR}/pass.fish-completion ${STAGEDIR}${PREFIX}/share/fish/completions/password-store.fish + ${INSTALL_DATA} ${STAGEDIR}${DATADIR}/pass.fish-completion ${STAGEDIR}${PREFIX}/share/fish/completions/${PORTNAME}.fish do-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} Modified: head/sysutils/password-store/pkg-descr ============================================================================== --- head/sysutils/password-store/pkg-descr Mon Feb 25 17:22:55 2019 (r493885) +++ head/sysutils/password-store/pkg-descr Mon Feb 25 18:24:44 2019 (r493886) @@ -15,4 +15,4 @@ You can edit the password store using ordinary Unix sh pass command. There are no funky file formats or new paradigms to learn. There is bash completion so that you can simply hit tab to fill in names. -WWW: http://zx2c4.com/projects/password-store/ +WWW: https://www.password-store.org/