Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/qtpass/
Date: Sun, 19 Jan 2020 13:52:13
Message-Id: 1579441914.81059b96d9617be72620583b03af53803d9b5103.asturm@gentoo
1 commit: 81059b96d9617be72620583b03af53803d9b5103
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 15 20:40:50 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 19 13:51:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81059b96
7
8 app-admin/qtpass: Drop 1.2.3
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-admin/qtpass/Manifest | 1 -
14 app-admin/qtpass/qtpass-1.2.3.ebuild | 62 ------------------------------------
15 2 files changed, 63 deletions(-)
16
17 diff --git a/app-admin/qtpass/Manifest b/app-admin/qtpass/Manifest
18 index 671e5ebd098..f8284027bcd 100644
19 --- a/app-admin/qtpass/Manifest
20 +++ b/app-admin/qtpass/Manifest
21 @@ -1,2 +1 @@
22 -DIST qtpass-1.2.3.tar.gz 369412 BLAKE2B 55e8f5e7967b264b20aa044979620631f319e2ff38edcc4e1390ab5d9f35e1e90ff8ff00c94cd35a9b5c05a5ccd8d8fdfc97214e9bd9f564bae1bd80efe0f224 SHA512 d6c3af5b92042a38afecb40689d41c08105dd2a39555f78ebc585a6db6dd65cd8fd6dc637542dd3b5b4ce18f1a852768ffa298b5a461a2d0e4ef4950c58d1649
23 DIST qtpass-1.3.2.tar.gz 310316 BLAKE2B ac0f562fd263e9d46980a69183cfd556596750e1050dbc50748cd9be45bc4bf39e4de14cb59f778cfc54f5c32050d567d88d65ec039cba1e9c2e8ef24d7ae99a SHA512 9026f74f6ff75fcef2f6a0862484a2a1eaed1370edd0659e8b4d20039affe846e0da3a0a26a804563813bc678638ab67fa516441208e70c7e9de9b2eda876a10
24
25 diff --git a/app-admin/qtpass/qtpass-1.2.3.ebuild b/app-admin/qtpass/qtpass-1.2.3.ebuild
26 deleted file mode 100644
27 index 287f540e6f5..00000000000
28 --- a/app-admin/qtpass/qtpass-1.2.3.ebuild
29 +++ /dev/null
30 @@ -1,62 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -MY_P="QtPass-${PV}"
37 -
38 -inherit desktop qmake-utils virtualx
39 -
40 -DESCRIPTION="multi-platform GUI for pass, the standard unix password manager"
41 -HOMEPAGE="https://qtpass.org/"
42 -SRC_URI="https://github.com/IJHack/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="GPL-3"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~x86"
47 -IUSE=""
48 -
49 -RDEPEND="app-admin/pass
50 - dev-qt/qtcore:5
51 - dev-qt/qtgui:5[xcb]
52 - dev-qt/qtnetwork:5
53 - dev-qt/qtwidgets:5
54 - net-misc/x11-ssh-askpass"
55 -DEPEND="${RDEPEND}
56 - dev-qt/linguist-tools:5
57 - dev-qt/qtsvg:5
58 - test? ( dev-qt/qttest:5 )"
59 -
60 -S="${WORKDIR}/${MY_P}"
61 -
62 -DOCS=( {CHANGELOG,CONTRIBUTING,FAQ,README}.md )
63 -
64 -src_prepare() {
65 - default
66 -
67 - if ! use test ; then
68 - sed -i '/SUBDIRS += src /s/tests //' \
69 - qtpass.pro || die "sed for qtpass.pro failed"
70 - fi
71 -}
72 -
73 -src_configure() {
74 - eqmake5 PREFIX="${D}"/usr
75 -}
76 -
77 -src_test() {
78 - virtx default
79 -}
80 -
81 -src_install() {
82 - default
83 -
84 - insinto /usr/share/"${PN}"/translations
85 - doins localization/*.qm
86 -
87 - doman "${PN}".1
88 - domenu "${PN}".desktop
89 - newicon artwork/icon.png "${PN}"-icon.png
90 - insinto /usr/share/appdata
91 - doins qtpass.appdata.xml
92 -}