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