Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/yubikey-manager-qt/
Date: Fri, 08 Sep 2017 21:48:55
Message-Id: 1504907304.31c98a4e39629ad571736ff03fd1b13a32596cb5.mrueg@gentoo
1 commit: 31c98a4e39629ad571736ff03fd1b13a32596cb5
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 8 21:48:24 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 8 21:48:24 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31c98a4e
7
8 app-crypt/yubikey-manager-qt: Version bump to 0.3.1
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.2
11
12 app-crypt/yubikey-manager-qt/Manifest | 1 +
13 .../yubikey-manager-qt-0.3.1.ebuild | 39 ++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/app-crypt/yubikey-manager-qt/Manifest b/app-crypt/yubikey-manager-qt/Manifest
17 index b36707723fd..181fcdfa2d2 100644
18 --- a/app-crypt/yubikey-manager-qt/Manifest
19 +++ b/app-crypt/yubikey-manager-qt/Manifest
20 @@ -1 +1,2 @@
21 DIST yubikey-manager-qt-0.3.0_p20170316.tar.gz 174053 SHA256 69144073666e7ef4e8273fb1dd93b452a6091a5b9beabd2f3de41cce6d0b6668 SHA512 9280aeb242ab3e9f66b297d8cdab0b5f16bb966469932501bcfaf8d084d2db8f1c566ebdc82a4fb3f80ab196b946982f723a1cf8a36736c8dd874757b94c2472 WHIRLPOOL 6ae4c54242a83553d58cd78a24b2e99b73df004af0d8008f34a3ba635672fd2ef2b587ad3301aa1fdd3d619014704abdfe512b3d6ad9c55ae4f4f4b33aceb21b
22 +DIST yubikey-manager-qt-0.3.1.tar.gz 175215 SHA256 e41bcda5aae5e0f92158f591e8e584d25c9b4872475f8e4253c7a7671e94c859 SHA512 d47a6b75b50c2dca073ab74ea2d7c7c46ff86ec338f52d49afd39796cc1f3de7ddd74664b5f60f9013393b9ca24621da63d218eb3c2cb3017fefed2370b269d1 WHIRLPOOL 1d6de66f0450d72e29b9e9a2a959f4ca8ed7c8614b976115ecfb433e8b5f1795d12e6d907f73152b6bef3de6510cbcf236b2386b18a3cba2094269f78522196a
23
24 diff --git a/app-crypt/yubikey-manager-qt/yubikey-manager-qt-0.3.1.ebuild b/app-crypt/yubikey-manager-qt/yubikey-manager-qt-0.3.1.ebuild
25 new file mode 100644
26 index 00000000000..660c413e887
27 --- /dev/null
28 +++ b/app-crypt/yubikey-manager-qt/yubikey-manager-qt-0.3.1.ebuild
29 @@ -0,0 +1,39 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python3_{4,5,6} )
36 +
37 +inherit qmake-utils python-single-r1 vcs-snapshot
38 +
39 +DESCRIPTION="Cross-platform application for configuring any YubiKey over all USB transports"
40 +HOMEPAGE="https://developers.yubico.com/yubikey-manager-qt https://github.com/Yubico/yubikey-manager-qt"
41 +SRC_URI="https://github.com/Yubico/yubikey-manager-qt/archive/${P}.tar.gz"
42 +
43 +LICENSE="BSD-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +IUSE=""
47 +
48 +DEPEND="app-crypt/yubikey-manager[${PYTHON_USEDEP}]
49 + dev-python/pyotherside[${PYTHON_USEDEP}]
50 + dev-qt/qtsingleapplication[qt5]
51 + dev-qt/qtdeclarative:5
52 + dev-qt/qtwidgets:5"
53 +RDEPEND="${DEPEND}"
54 +
55 +src_prepare() {
56 + default
57 + rm -rf vendor ykman-gui/vendor || die
58 + sed -i -e "s/ykman-cli//" ${PN}.pro || die
59 + sed -i -e "/qtsingleapplication.pri/d" -e "/CONFIG += c++11/a CONFIG += qtsingleapplication" -i ykman-gui/ykman-gui.pro || die
60 +}
61 +
62 +src_configure() {
63 + eqmake5
64 +}
65 +
66 +src_install() {
67 + emake install INSTALL_ROOT="${D}"
68 +}