Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/lastpass-cli/
Date: Sat, 26 Dec 2015 09:15:06
Message-Id: 1450914791.f0c0e349ae9ce259a4bb2d62d5c0247933423e56.monsieurp@gentoo
1 commit: f0c0e349ae9ce259a4bb2d62d5c0247933423e56
2 Author: Gokturk Yuksek <gokturk <AT> binghamton <DOT> edu>
3 AuthorDate: Wed Dec 23 23:50:40 2015 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 23 23:53:11 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0c0e349
7
8 app-admin/lastpass-cli: bump to version 0.7.1
9
10 Patching Makefile in src_prepare to disable stripping on install
11 isn't needed anymore. See upstream commit 17b5d40 for more info.
12
13 Package-Manager: portage-2.2.24
14
15 app-admin/lastpass-cli/Manifest | 1 +
16 app-admin/lastpass-cli/lastpass-cli-0.7.1.ebuild | 33 ++++++++++++++++++++++++
17 2 files changed, 34 insertions(+)
18
19 diff --git a/app-admin/lastpass-cli/Manifest b/app-admin/lastpass-cli/Manifest
20 index 0cc1134..7d23177 100644
21 --- a/app-admin/lastpass-cli/Manifest
22 +++ b/app-admin/lastpass-cli/Manifest
23 @@ -1 +1,2 @@
24 DIST lastpass-cli-0.6.0.tar.gz 65047 SHA256 e48f210b34a030e8b8cef3e1d05957aabe757ea4cd31bf03c46b70ddc830733c SHA512 ceaa660e6a7d3b27b09ce6d1d522af216e2c8357859d87034f7f887b53631bf5214b02400f8cb91d0c0020fcfb7889dd0fd8731b1af76a63f94666de2ac4dcd4 WHIRLPOOL 4554d8576e71a0b4c7d69556614a33f3e34d85aec4dd6aa50973ba8eb212864fc45bf3a7cb4e2847cb60a00546e46652cf5baf7f34872ada23431e78078cc6ed
25 +DIST lastpass-cli-0.7.1.tar.gz 68232 SHA256 e9e2d1dbbb6be0b0d9ce8d6c24026fc537cadc824528c96ac562737a90152f5c SHA512 c6be9b4cf30165835dd4e8716992d43246c91c4e9177226285b5a5214fd5927774155cc75b9aad66c69ec8b10ca0b0e00485a429e2bd064dd406fc55f275a295 WHIRLPOOL b88d4de9fdb120463a8454c098c12a1e2a366429904dec82d271b4ef287bdce192efef5de297733c3a38be21f3241ff402c8448a96daa195b986c671456b0b1d
26
27 diff --git a/app-admin/lastpass-cli/lastpass-cli-0.7.1.ebuild b/app-admin/lastpass-cli/lastpass-cli-0.7.1.ebuild
28 new file mode 100644
29 index 0000000..ee61d92
30 --- /dev/null
31 +++ b/app-admin/lastpass-cli/lastpass-cli-0.7.1.ebuild
32 @@ -0,0 +1,33 @@
33 +# Copyright 1999-2015 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=5
38 +
39 +DESCRIPTION="Interfaces with LastPass.com from the command line."
40 +SRC_URI="https://github.com/lastpass/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +HOMEPAGE="https://github.com/lastpass/lastpass-cli"
42 +
43 +SLOT="0"
44 +LICENSE="GPL-2"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="X +pinentry"
47 +
48 +RDEPEND="
49 + X? ( || ( x11-misc/xclip x11-misc/xsel ) )
50 + dev-libs/openssl:0
51 + net-misc/curl
52 + dev-libs/libxml2
53 + pinentry? ( app-crypt/pinentry )
54 +"
55 +DEPEND="${RDEPEND} app-text/asciidoc"
56 +
57 +src_compile() {
58 + emake PREFIX="${EPREFIX}/usr"
59 + emake PREFIX="${EPREFIX}/usr" doc-man
60 +}
61 +
62 +src_install() {
63 + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
64 + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install-doc
65 +}