Gentoo Archives: gentoo-commits

From: Jason Donenfeld <zx2c4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/qtpass/
Date: Thu, 04 Jan 2018 20:54:51
Message-Id: 1515099285.93c226b41afd8214c2397b9748810663351206fb.zx2c4@gentoo
1 commit: 93c226b41afd8214c2397b9748810663351206fb
2 Author: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 4 20:54:06 2018 +0000
4 Commit: Jason Donenfeld <zx2c4 <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 4 20:54:45 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93c226b4
7
8 app-admin/qtpass: bump for critical security vulnerability
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 app-admin/qtpass/Manifest | 2 +-
13 .../{qtpass-1.1.6.ebuild => qtpass-1.2.1.ebuild} | 10 ++++--
14 app-admin/qtpass/qtpass-9999.ebuild | 40 ----------------------
15 3 files changed, 9 insertions(+), 43 deletions(-)
16
17 diff --git a/app-admin/qtpass/Manifest b/app-admin/qtpass/Manifest
18 index 682876977cc..397410986fb 100644
19 --- a/app-admin/qtpass/Manifest
20 +++ b/app-admin/qtpass/Manifest
21 @@ -1 +1 @@
22 -DIST qtpass-1.1.6.tar.gz 325329 BLAKE2B 091cc00bc276f637a5d7f954a715a6e3687e1b369f1fd572f90c956c721524159a82d4283b025980f9b31132e07236706bd79fbbb830adccd3167a979bca48cc SHA512 64d712a33df97b04ab1a9d5472aa7fa567e38e31ff7ba297e567d087a3f32b1c59097b339cdd4f568efc2bce16b93f2d2316e94d2605b6abac299d7cf7d0c3df
23 +DIST qtpass-1.2.1.tar.gz 361147 BLAKE2B f46ce4362d4d3e0c0b0a425e5a40cf013181b899d5b1a2efc03cc5c4a3eca2d3ce1cdca78fdb95e8fecae23ffe56c01dbe65c9d07e2fff48934e995a710aac40 SHA512 3621a46aab5db5a41e80aea10bc6baf662510bcb249a1f56d33492aa66c824d9f018164f2d6a70256a7b3d59a9b73c4c8459b5d3fbe19886a607f8f0dc7410c1
24
25 diff --git a/app-admin/qtpass/qtpass-1.1.6.ebuild b/app-admin/qtpass/qtpass-1.2.1.ebuild
26 similarity index 76%
27 rename from app-admin/qtpass/qtpass-1.1.6.ebuild
28 rename to app-admin/qtpass/qtpass-1.2.1.ebuild
29 index 67195457fc9..dc949c150fc 100644
30 --- a/app-admin/qtpass/qtpass-1.1.6.ebuild
31 +++ b/app-admin/qtpass/qtpass-1.2.1.ebuild
32 @@ -1,11 +1,11 @@
33 -# Copyright 1999-2017 Gentoo Foundation
34 +# Copyright 1999-2018 Gentoo Foundation
35 # Distributed under the terms of the GNU General Public License v2
36
37 EAPI=6
38
39 MY_P="QtPass-${PV}"
40
41 -inherit qmake-utils
42 +inherit qmake-utils desktop
43
44 DESCRIPTION="multi-platform GUI for pass, the standard unix password manager"
45 HOMEPAGE="https://qtpass.org/"
46 @@ -27,6 +27,12 @@ RDEPEND="app-admin/pass
47 DEPEND="${RDEPEND}
48 dev-qt/linguist-tools:5"
49
50 +src_prepare() {
51 + default
52 +
53 + sed -i 's/SUBDIRS += src tests main/SUBDIRS += src main/' "${S}"/qtpass.pro || die
54 + sed -i '/main\.depends = tests/d' "${S}"/qtpass.pro || die
55 +}
56 src_configure() {
57 eqmake5 PREFIX="${D}"/usr
58 }
59
60 diff --git a/app-admin/qtpass/qtpass-9999.ebuild b/app-admin/qtpass/qtpass-9999.ebuild
61 deleted file mode 100644
62 index 8da3eb46f11..00000000000
63 --- a/app-admin/qtpass/qtpass-9999.ebuild
64 +++ /dev/null
65 @@ -1,40 +0,0 @@
66 -# Copyright 1999-2016 Gentoo Foundation
67 -# Distributed under the terms of the GNU General Public License v2
68 -
69 -EAPI=6
70 -
71 -inherit qmake-utils git-r3
72 -
73 -DESCRIPTION="multi-platform GUI for pass, the standard unix password manager"
74 -HOMEPAGE="https://qtpass.org/"
75 -EGIT_REPO_URI="https://github.com/IJHack/${PN}.git"
76 -LICENSE="GPL-3"
77 -SLOT="0"
78 -KEYWORDS=""
79 -IUSE=""
80 -DOCS=( FAQ.md README.md CONTRIBUTING.md )
81 -
82 -RDEPEND="dev-qt/qtcore:5
83 - dev-qt/qtgui:5[xcb]
84 - dev-qt/qtwidgets:5
85 - dev-qt/qtnetwork:5
86 - app-admin/pass
87 - net-misc/x11-ssh-askpass"
88 -DEPEND="${RDEPEND}
89 - dev-qt/linguist-tools:5
90 -"
91 -
92 -src_configure() {
93 - eqmake5 PREFIX="${D}"/usr
94 -}
95 -
96 -src_install() {
97 - default
98 -
99 - doman ${PN}.1
100 -
101 - insinto /usr/share/applications
102 - doins "${PN}.desktop"
103 -
104 - newicon artwork/icon.svg "${PN}-icon.svg"
105 -}