Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/pass/
Date: Thu, 01 Apr 2021 20:13:58
Message-Id: 1617307980.1ac982ebcba006eb94b18a6e7a4ed55d026098e1.mattst88@gentoo
1 commit: 1ac982ebcba006eb94b18a6e7a4ed55d026098e1
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 1 20:08:55 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 1 20:13:00 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ac982eb
7
8 app-admin/pass: Version bump to 1.7.4_pre20210216
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 app-admin/pass/Manifest | 1 +
13 app-admin/pass/pass-1.7.4_pre20210216.ebuild | 92 ++++++++++++++++++++++++++++
14 2 files changed, 93 insertions(+)
15
16 diff --git a/app-admin/pass/Manifest b/app-admin/pass/Manifest
17 index f12d405e6d6..dcd8486ea58 100644
18 --- a/app-admin/pass/Manifest
19 +++ b/app-admin/pass/Manifest
20 @@ -1 +1,2 @@
21 DIST password-store-1.7.3.tar.xz 63416 BLAKE2B 5931608e0208dfe6965b79f586c153a4930d1c3d3b74433d026ee0bc5889fcc29334c637ca4fb68308d0169bad7c8235b6632e9f80eda1e24f0f5721353f88e3 SHA512 89755a7b02f05d75055a9fc14fd3f456c0a49ec31bdffd097a027f91228c64a98b18c1e80017aeda811773ae3287ff1b9737532da8ded06799d8fe3979ca06f7
22 +DIST password-store-918992c19231b33b3d4a3288a7288a620e608cb4.tar.xz 65000 BLAKE2B 2bd7768fe1a93ce55b0daf15088bde7ce75dbe33f44b1890e27ca6efe70fadb07610b830bd9926f6c88b33c4d3ae208b0035f13e81f28978cb26454332a19b13 SHA512 63a448e4da3da60d3dfe02b02eb11417e179c4f0b973c822bfbb485262076ae7458c3e35e95b2ad9997a2ddfa8bbe91a822c86d7ad5d2f7a6e6cb90d11774aa9
23
24 diff --git a/app-admin/pass/pass-1.7.4_pre20210216.ebuild b/app-admin/pass/pass-1.7.4_pre20210216.ebuild
25 new file mode 100644
26 index 00000000000..190d2cec6a4
27 --- /dev/null
28 +++ b/app-admin/pass/pass-1.7.4_pre20210216.ebuild
29 @@ -0,0 +1,92 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit bash-completion-r1 elisp-common
36 +
37 +if [[ ${PV} = 9999* ]]; then
38 + EGIT_REPO_URI="https://git.zx2c4.com/password-store"
39 + inherit git-r3
40 +else
41 + KEYWORDS="~amd64 ~arm64 ~x86 ~x64-macos"
42 + COMMIT_ID="918992c19231b33b3d4a3288a7288a620e608cb4"
43 + SRC_URI="https://git.zx2c4.com/password-store/snapshot/password-store-${COMMIT_ID}.tar.xz"
44 + S="${WORKDIR}/${PN}"
45 +fi
46 +
47 +DESCRIPTION="Stores, retrieves, generates, and synchronizes passwords securely"
48 +HOMEPAGE="https://www.passwordstore.org/"
49 +
50 +SLOT="0"
51 +LICENSE="GPL-2"
52 +IUSE="+git wayland X zsh-completion fish-completion emacs dmenu importers elibc_Darwin"
53 +
54 +RDEPEND="
55 + app-crypt/gnupg
56 + media-gfx/qrencode
57 + >=app-text/tree-1.7.0
58 + git? ( dev-vcs/git )
59 + wayland? ( gui-apps/wl-clipboard )
60 + X? ( x11-misc/xclip )
61 + elibc_Darwin? ( app-misc/getopt )
62 + zsh-completion? ( app-shells/gentoo-zsh-completions )
63 + fish-completion? ( app-shells/fish )
64 + dmenu? ( x11-misc/dmenu x11-misc/xdotool )
65 + emacs? ( >=app-editors/emacs-23.1:* >=app-emacs/f-0.11.0 >=app-emacs/s-1.9.0 >=app-emacs/with-editor-2.5.11 )
66 +"
67 +
68 +src_unpack() {
69 + default
70 +
71 + # Hack: Tests fail if the path length is too long
72 + mv "${WORKDIR}/password-store-${COMMIT_ID}" "${WORKDIR}/${PN}"
73 +}
74 +
75 +src_prepare() {
76 + default
77 +
78 + use elibc_Darwin || return
79 + # use coreutils'
80 + sed -i -e 's/openssl base64/base64/g' src/platform/darwin.sh || die
81 + # host getopt isn't cool, and we aren't brew (rip out brew reference)
82 + sed -i -e '/^GETOPT=/s/=.*$/=getopt-long/' src/platform/darwin.sh || die
83 + # make sure we can find "mount"
84 + sed -i -e 's:mount -t:/sbin/mount -t:' src/platform/darwin.sh || die
85 +}
86 +
87 +src_compile() {
88 + use emacs && elisp-compile contrib/emacs/*.el
89 +}
90 +
91 +src_install() {
92 + emake install \
93 + DESTDIR="${D}" \
94 + PREFIX="${EPREFIX}/usr" \
95 + BASHCOMPDIR="$(get_bashcompdir)" \
96 + WITH_BASHCOMP=yes \
97 + WITH_ZSHCOMP=$(usex zsh-completion) \
98 + WITH_FISHCOMP=$(usex fish-completion)
99 + use dmenu && dobin contrib/dmenu/passmenu
100 + if use emacs; then
101 + elisp-install ${PN} contrib/emacs/*.{el,elc}
102 + elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el"
103 + fi
104 + if use importers; then
105 + exeinto /usr/share/${PN}/importers
106 + doexe contrib/importers/*
107 + fi
108 +}
109 +
110 +pkg_postinst() {
111 + use emacs && elisp-site-regen
112 + if use importers; then
113 + einfo "To import passwords from other password managers, you may use the"
114 + einfo "various importer scripts found in:"
115 + einfo " ${EROOT}/usr/share/${PN}/importers/"
116 + fi
117 +}
118 +
119 +pkg_postrm() {
120 + use emacs && elisp-site-regen
121 +}