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: Fri, 26 Oct 2018 09:37:24
Message-Id: 1540546629.56703489c322d26053f71756ce32890aabf7622b.polynomial-c@gentoo
1 commit: 56703489c322d26053f71756ce32890aabf7622b
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 26 09:37:09 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 26 09:37:09 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56703489
7
8 app-admin/keepassxc: Removed old.
9
10 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 app-admin/keepassxc/Manifest | 1 -
14 app-admin/keepassxc/keepassxc-2.2.4.ebuild | 77 ------------------------------
15 app-admin/keepassxc/metadata.xml | 1 -
16 3 files changed, 79 deletions(-)
17
18 diff --git a/app-admin/keepassxc/Manifest b/app-admin/keepassxc/Manifest
19 index f7a6cecfb8b..8d7898ccb78 100644
20 --- a/app-admin/keepassxc/Manifest
21 +++ b/app-admin/keepassxc/Manifest
22 @@ -1,3 +1,2 @@
23 -DIST keepassxc-2.2.4.tar.gz 3895421 BLAKE2B 0de35f394dae8cf8d70f75d73783965826cc03ac9f0921afa547d02e61cb04be167891d92aa0db09f007c47e96a5a7e5793772c50de14bf65a7f80a603ca6611 SHA512 f3308138d63b65a8b384a52f4723507be921d7bbf19031724886fcd12266bf2683326f5531c8f665b0e98ff63cd97251694199ef748191e59a5a8cceb3710025
24 DIST keepassxc-2.3.3-src.tar.xz 4113768 BLAKE2B 7c599471b775ff8612968596765d05f2862ae21adc0bb0d595b5366ce55354c156e1df3940549bb955dd9e6609cbebbae3f108ae3eb8ccb0e85c83e9183a60d8 SHA512 155dda3c81ecb3be4638c634fe2dd7f96a54076b371a1f6ab95c33319ff2a50eaf941a1415f42724444749a40d7fbcb3972604199f6a0445df4a22a4bac73c0b
25 DIST keepassxc-2.3.4-src.tar.xz 4137176 BLAKE2B bbf8dbef5fb365f3c0d9332454b2b3bce7d4e411f43939ae683428ca669a459f1662bb8b1a1da228bc9447ee15349a5cd558e4fdfcc5194f22401f56003fd0f0 SHA512 edca22ef9d7c553d21d8ea6115a5635265176acc56fdf055f1961a3e65046de49ed5b67eb68ecf4f925226fb5bca140d5d473a5082301168f6a8bb7979f562a8
26
27 diff --git a/app-admin/keepassxc/keepassxc-2.2.4.ebuild b/app-admin/keepassxc/keepassxc-2.2.4.ebuild
28 deleted file mode 100644
29 index 9cd93a341e8..00000000000
30 --- a/app-admin/keepassxc/keepassxc-2.2.4.ebuild
31 +++ /dev/null
32 @@ -1,77 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -SCM=""
39 -[[ "${PV}" == 9999 ]] && SCM="git-r3"
40 -inherit cmake-utils gnome2-utils xdg-utils ${SCM}
41 -unset SCM
42 -
43 -DESCRIPTION="KeePassXC - KeePass Cross-platform Community Edition"
44 -HOMEPAGE="https://keepassxc.org"
45 -
46 -if [[ "${PV}" != 9999 ]] ; then
47 - SRC_URI="https://github.com/keepassxreboot/keepassxc/archive/${PV}.tar.gz -> ${P}.tar.gz"
48 - KEYWORDS="amd64 x86"
49 -else
50 - EGIT_REPO_URI="https://github.com/keepassxreboot/${PN}"
51 -fi
52 -
53 -LICENSE="LGPL-2.1 GPL-2 GPL-3"
54 -SLOT="0"
55 -IUSE="autotype debug http test yubikey"
56 -
57 -RDEPEND="
58 - dev-libs/libgcrypt:=
59 - dev-qt/qtcore:5
60 - dev-qt/qtdbus:5
61 - dev-qt/qtgui:5
62 - dev-qt/qtnetwork:5
63 - dev-qt/qtwidgets:5
64 - sys-libs/zlib
65 - autotype? (
66 - dev-qt/qtx11extras:5
67 - x11-libs/libX11
68 - x11-libs/libXi
69 - x11-libs/libXtst
70 - )
71 - yubikey? ( sys-auth/ykpers )
72 -"
73 -
74 -DEPEND="
75 - ${RDEPEND}
76 - dev-qt/linguist-tools:5
77 - dev-qt/qtconcurrent:5
78 - test? ( dev-qt/qttest:5 )
79 -"
80 -
81 -src_prepare() {
82 - use test || \
83 - sed -e "/^find_package(Qt5Test/d" -i CMakeLists.txt || die
84 -
85 - cmake-utils_src_prepare
86 -}
87 -
88 -src_configure() {
89 - local mycmakeargs=(
90 - -DWITH_GUI_TESTS=OFF
91 - -DWITH_TESTS="$(usex test)"
92 - -DWITH_XC_AUTOTYPE="$(usex autotype)"
93 - -DWITH_XC_HTTP="$(usex http)"
94 - -DWITH_XC_YUBIKEY="$(usex yubikey)"
95 - )
96 - cmake-utils_src_configure
97 -}
98 -
99 -pkg_postinst() {
100 - gnome2_icon_cache_update
101 - xdg_desktop_database_update
102 - xdg_mimeinfo_database_update
103 -}
104 -
105 -pkg_postrm() {
106 - gnome2_icon_cache_update
107 - xdg_desktop_database_update
108 - xdg_mimeinfo_database_update
109 -}
110
111 diff --git a/app-admin/keepassxc/metadata.xml b/app-admin/keepassxc/metadata.xml
112 index ad767a50b28..56243a3c8c0 100644
113 --- a/app-admin/keepassxc/metadata.xml
114 +++ b/app-admin/keepassxc/metadata.xml
115 @@ -8,7 +8,6 @@
116 <use>
117 <flag name="autotype">Add support to autotype the passwords into other applications</flag>
118 <flag name="browser">Enables browser plugin support</flag>
119 - <flag name="http">Add http support</flag>
120 <flag name="network">Enable network support</flag>
121 <flag name="yubikey">Enable database unlocking via YubiKey.</flag>
122 </use>