Gentoo Archives: gentoo-commits

From: Jason Donenfeld <zx2c4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/pass/
Date: Fri, 03 Aug 2018 03:37:39
Message-Id: 1533267445.d94a4fec907bb9d476669c0fe277ca3a9506990f.zx2c4@gentoo
1 commit: d94a4fec907bb9d476669c0fe277ca3a9506990f
2 Author: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 3 03:37:25 2018 +0000
4 Commit: Jason Donenfeld <zx2c4 <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 3 03:37:25 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d94a4fec
7
8 app-admin/pass: bump
9
10 Package-Manager: Portage-2.3.43, Repoman-2.3.10
11
12 app-admin/pass/Manifest | 2 +-
13 app-admin/pass/pass-1.7.2.ebuild | 78 ----------------------
14 .../{pass-1.7.2-r1.ebuild => pass-1.7.3.ebuild} | 2 +-
15 3 files changed, 2 insertions(+), 80 deletions(-)
16
17 diff --git a/app-admin/pass/Manifest b/app-admin/pass/Manifest
18 index 6156b551573..f12d405e6d6 100644
19 --- a/app-admin/pass/Manifest
20 +++ b/app-admin/pass/Manifest
21 @@ -1 +1 @@
22 -DIST password-store-1.7.2.tar.xz 63620 BLAKE2B a1fe0b7ee1fdb94d2b76773653462d14c07c8fb239ffbcae210cc3c9c829fc5c0bd0bf85d8d44343a0cec50aae953b13a70d67aa7c94abf6c02f84bfd0d7c4ff SHA512 e6719a7125af6ecd80fdbeb38b4e2e89e7358ff16e18739d68a04b72dfdf860294b54f7ec0ec9676a62d2e270db8f54784a357c82217a478694472f8136e3657
23 +DIST password-store-1.7.3.tar.xz 63416 BLAKE2B 5931608e0208dfe6965b79f586c153a4930d1c3d3b74433d026ee0bc5889fcc29334c637ca4fb68308d0169bad7c8235b6632e9f80eda1e24f0f5721353f88e3 SHA512 89755a7b02f05d75055a9fc14fd3f456c0a49ec31bdffd097a027f91228c64a98b18c1e80017aeda811773ae3287ff1b9737532da8ded06799d8fe3979ca06f7
24
25 diff --git a/app-admin/pass/pass-1.7.2.ebuild b/app-admin/pass/pass-1.7.2.ebuild
26 deleted file mode 100644
27 index 47767213280..00000000000
28 --- a/app-admin/pass/pass-1.7.2.ebuild
29 +++ /dev/null
30 @@ -1,78 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit bash-completion-r1 elisp-common
37 -
38 -DESCRIPTION="Stores, retrieves, generates, and synchronizes passwords securely"
39 -HOMEPAGE="https://www.passwordstore.org/"
40 -SRC_URI="https://git.zx2c4.com/password-store/snapshot/password-store-${PV}.tar.xz"
41 -
42 -SLOT="0"
43 -LICENSE="GPL-2"
44 -KEYWORDS="amd64 ~arm x86 ~x86-macos"
45 -IUSE="+git X zsh-completion fish-completion emacs dmenu importers elibc_Darwin"
46 -
47 -RDEPEND="
48 - app-crypt/gnupg
49 - media-gfx/qrencode
50 - >=app-text/tree-1.7.0
51 - git? ( dev-vcs/git )
52 - X? ( x11-misc/xclip )
53 - elibc_Darwin? ( app-misc/getopt )
54 - zsh-completion? ( app-shells/gentoo-zsh-completions )
55 - fish-completion? ( app-shells/fish )
56 - dmenu? ( x11-misc/dmenu x11-misc/xdotool )
57 - emacs? ( virtual/emacs )
58 -"
59 -
60 -S="${WORKDIR}/password-store-${PV}"
61 -
62 -src_prepare() {
63 - default
64 -
65 - use elibc_Darwin || return
66 - # use coreutils'
67 - sed -i -e 's/openssl base64/base64/g' src/platform/darwin.sh || die
68 - # host getopt isn't cool, and we aren't brew (rip out brew reference)
69 - sed -i -e '/^GETOPT=/s/=.*$/=getopt-long/' src/platform/darwin.sh || die
70 - # make sure we can find "mount"
71 - sed -i -e 's:mount -t:/sbin/mount -t:' src/platform/darwin.sh || die
72 -}
73 -
74 -src_compile() {
75 - :;
76 -}
77 -
78 -src_install() {
79 - emake install \
80 - DESTDIR="${D}" \
81 - PREFIX="${EPREFIX}/usr" \
82 - BASHCOMPDIR="$(get_bashcompdir)" \
83 - WITH_BASHCOMP=yes \
84 - WITH_ZSHCOMP=$(usex zsh-completion) \
85 - WITH_FISHCOMP=$(usex fish-completion)
86 - use dmenu && dobin contrib/dmenu/passmenu
87 - if use emacs; then
88 - elisp-install ${PN} contrib/emacs/*.el
89 - elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el"
90 - fi
91 - if use importers; then
92 - exeinto /usr/share/${PN}/importers
93 - doexe contrib/importers/*
94 - fi
95 -}
96 -
97 -pkg_postinst() {
98 - use emacs && elisp-site-regen
99 - if use importers; then
100 - einfo "To import passwords from other password managers, you may use the"
101 - einfo "various importer scripts found in:"
102 - einfo " ${EROOT%/}/usr/share/${PN}/importers/"
103 - fi
104 -}
105 -
106 -pkg_postrm() {
107 - use emacs && elisp-site-regen
108 -}
109
110 diff --git a/app-admin/pass/pass-1.7.2-r1.ebuild b/app-admin/pass/pass-1.7.3.ebuild
111 similarity index 98%
112 rename from app-admin/pass/pass-1.7.2-r1.ebuild
113 rename to app-admin/pass/pass-1.7.3.ebuild
114 index 9618fcff0ce..38bc4967611 100644
115 --- a/app-admin/pass/pass-1.7.2-r1.ebuild
116 +++ b/app-admin/pass/pass-1.7.3.ebuild
117 @@ -11,7 +11,7 @@ SRC_URI="https://git.zx2c4.com/password-store/snapshot/password-store-${PV}.tar.
118
119 SLOT="0"
120 LICENSE="GPL-2"
121 -KEYWORDS="~amd64 ~arm ~x86"
122 +KEYWORDS="~amd64 ~arm ~x86 ~x86-macos"
123 IUSE="+git X zsh-completion fish-completion emacs dmenu importers elibc_Darwin"
124
125 RDEPEND="