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: Thu, 13 Apr 2017 10:21:02
Message-Id: 1492078846.6a9a3e48cefc5a947f6e1e714d01e56ec39972ca.zx2c4@gentoo
1 commit: 6a9a3e48cefc5a947f6e1e714d01e56ec39972ca
2 Author: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 13 10:20:14 2017 +0000
4 Commit: Jason Donenfeld <zx2c4 <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 13 10:20:46 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a9a3e48
7
8 app-admin/pass: stable
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 app-admin/pass/Manifest | 1 -
13 app-admin/pass/pass-1.6.5.ebuild | 73 ----------------------------------------
14 app-admin/pass/pass-1.7.1.ebuild | 2 +-
15 3 files changed, 1 insertion(+), 75 deletions(-)
16
17 diff --git a/app-admin/pass/Manifest b/app-admin/pass/Manifest
18 index f4214458cb6..281d8ce531f 100644
19 --- a/app-admin/pass/Manifest
20 +++ b/app-admin/pass/Manifest
21 @@ -1,2 +1 @@
22 -DIST password-store-1.6.5.tar.xz 54576 SHA256 337a39767e6a8e69b2bcc549f27ff3915efacea57e5334c6068fcb72331d7315 SHA512 e28503b63c6d18a2f45f4a732fdec0380c2ac15e1778136ec5e7ac568662b09183d3ad4fd36ca7e87cfe74540f916cb6365695bdf665a39da4cbe86c4bde7a78 WHIRLPOOL da5a5652d6fcea4f571135072f205cc7ad1aecb927478fde7979051557df958e9c51c47363c12f213deafbd7572eefe0f204acda7e430548e365f0e7fdc0c94f
23 DIST password-store-1.7.1.tar.xz 62340 SHA256 f6d2199593398aaefeaa55e21daddfb7f1073e9e096af6d887126141e99d9869 SHA512 2ba2ebc80c90454bbab1da3c43c2cfc87135f838f381e2616eef7c36b0c1de01e491cf587a666bb052d6dfd475fa429bc8fd82b0269325bd2b70afbb897b923e WHIRLPOOL 34bcf6aecf7287313a47721b403664667001f4997be2f2f37114708cd64ea67af682176b6991c828802d71de306383f122a3668d388b8d9a68c1563dbb68bc46
24
25 diff --git a/app-admin/pass/pass-1.6.5.ebuild b/app-admin/pass/pass-1.6.5.ebuild
26 deleted file mode 100644
27 index a94a7f3217a..00000000000
28 --- a/app-admin/pass/pass-1.6.5.ebuild
29 +++ /dev/null
30 @@ -1,73 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
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 x86 ~x86-macos"
45 -IUSE="+git X zsh-completion fish-completion emacs dmenu importers elibc_Darwin"
46 -
47 -RDEPEND="
48 - app-crypt/gnupg
49 - app-admin/pwgen
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 - use elibc_Darwin || return
64 - # use coreutils'
65 - sed -i -e 's/openssl base64/base64/g' src/platform/darwin.sh || die
66 - # host getopt isn't cool, and we aren't brew (rip out brew reference)
67 - sed -i -e '/^GETOPT=/s/=.*$/=getopt-long/' src/platform/darwin.sh || die
68 - # make sure we can find "mount"
69 - sed -i -e 's:mount -t:/sbin/mount -t:' src/platform/darwin.sh || die
70 -}
71 -
72 -src_compile() {
73 - :;
74 -}
75 -
76 -src_install() {
77 - use zsh-completion && export FORCE_ZSHCOMP=1
78 - use fish-completion && export FORCE_FISHCOMP=1
79 - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
80 - use dmenu && dobin contrib/dmenu/passmenu
81 - newbashcomp src/completion/pass.bash-completion pass
82 - if use emacs; then
83 - elisp-install ${PN} contrib/emacs/*.el
84 - elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el"
85 - fi
86 - if use importers; then
87 - exeinto /usr/share/${PN}/importers
88 - doexe contrib/importers/*
89 - fi
90 -}
91 -
92 -pkg_postinst() {
93 - use emacs && elisp-site-regen
94 - if use importers; then
95 - einfo "To import passwords from other password managers, you may use the"
96 - einfo "various importer scripts found in:"
97 - einfo " ${ROOT}usr/share/${PN}/importers/"
98 - fi
99 -}
100 -
101 -pkg_postrm() {
102 - use emacs && elisp-site-regen
103 -}
104
105 diff --git a/app-admin/pass/pass-1.7.1.ebuild b/app-admin/pass/pass-1.7.1.ebuild
106 index 519ef4f5244..627d9ebd3bb 100644
107 --- a/app-admin/pass/pass-1.7.1.ebuild
108 +++ b/app-admin/pass/pass-1.7.1.ebuild
109 @@ -11,7 +11,7 @@ SRC_URI="https://git.zx2c4.com/password-store/snapshot/password-store-${PV}.tar.
110
111 SLOT="0"
112 LICENSE="GPL-2"
113 -KEYWORDS="~amd64 ~x86 ~x86-macos"
114 +KEYWORDS="amd64 x86 ~x86-macos"
115 IUSE="+git X zsh-completion fish-completion emacs dmenu importers elibc_Darwin"
116
117 RDEPEND="