Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/keepassxc/
Date: Thu, 01 Mar 2018 15:06:58
Message-Id: 1519916802.231dbd0f539647e3304f172323fe71e58e40e09d.polynomial-c@gentoo
1 commit: 231dbd0f539647e3304f172323fe71e58e40e09d
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 1 14:51:41 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 1 15:06:42 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=231dbd0f
7
8 app-admin/keepassxc: Adjusted live ebuild to new features.
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 app-admin/keepassxc/keepassxc-9999.ebuild | 14 +++++++-------
13 1 file changed, 7 insertions(+), 7 deletions(-)
14
15 diff --git a/app-admin/keepassxc/keepassxc-9999.ebuild b/app-admin/keepassxc/keepassxc-9999.ebuild
16 index 96bd13881e8..6207e109fd6 100644
17 --- a/app-admin/keepassxc/keepassxc-9999.ebuild
18 +++ b/app-admin/keepassxc/keepassxc-9999.ebuild
19 @@ -3,24 +3,23 @@
20
21 EAPI=6
22
23 -SCM=""
24 -[[ "${PV}" == 9999 ]] && SCM="git-r3"
25 -inherit cmake-utils gnome2-utils xdg-utils ${SCM}
26 -unset SCM
27 +inherit cmake-utils gnome2-utils xdg-utils
28
29 DESCRIPTION="KeePassXC - KeePass Cross-platform Community Edition"
30 HOMEPAGE="https://keepassxc.org"
31
32 if [[ "${PV}" != 9999 ]] ; then
33 - SRC_URI="https://github.com/keepassxreboot/keepassxc/archive/${PV}.tar.gz -> ${P}.tar.gz"
34 + #SRC_URI="https://github.com/keepassxreboot/keepassxc/archive/${PV}.tar.gz -> ${P}.tar.gz"
35 + SRC_URI="https://github.com/keepassxreboot/keepassxc/releases/download/${PV}/${P}-src.tar.xz"
36 KEYWORDS="~amd64 ~x86"
37 else
38 + inherit git-r3
39 EGIT_REPO_URI="https://github.com/keepassxreboot/${PN}"
40 fi
41
42 LICENSE="LGPL-2.1 GPL-2 GPL-3"
43 SLOT="0"
44 -IUSE="autotype browser debug http network test yubikey"
45 +IUSE="autotype browser debug network test yubikey"
46
47 RDEPEND="
48 app-crypt/argon2:=
49 @@ -37,6 +36,7 @@ RDEPEND="
50 x11-libs/libXi
51 x11-libs/libXtst
52 )
53 + browser? ( >=dev-libs/libsodium-1.0.12 )
54 yubikey? ( sys-auth/ykpers )
55 "
56
57 @@ -59,7 +59,7 @@ src_configure() {
58 -DWITH_GUI_TESTS=OFF
59 -DWITH_TESTS="$(usex test)"
60 -DWITH_XC_AUTOTYPE="$(usex autotype)"
61 - -DWITH_XC_HTTP="$(usex http)"
62 + -DWITH_XC_HTTP=OFF
63 -DWITH_XC_NETWORKING="$(usex network)"
64 -DWITH_XC_BROWSER="$(usex browser)"
65 -DWITH_XC_YUBIKEY="$(usex yubikey)"