Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/moolticute/
Date: Tue, 04 Dec 2018 21:20:55
Message-Id: 1543956311.346e6de85daa4fa6c1ebd68033eedc0510ffbc00.mgorny@gentoo
1 commit: 346e6de85daa4fa6c1ebd68033eedc0510ffbc00
2 Author: Pierre-Olivier Mercier <nemunaire <AT> nemunai <DOT> re>
3 AuthorDate: Fri Nov 16 13:32:32 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 4 20:45:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=346e6de8
7
8 app-crypt/moolticute: remove old
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.11
11 Signed-off-by: Pierre-Olivier Mercier <nemunaire <AT> nemunai.re>
12 Closes: https://github.com/gentoo/gentoo/pull/10431
13 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
14
15 app-crypt/moolticute/Manifest | 1 -
16 app-crypt/moolticute/moolticute-0.18.1.ebuild | 66 ---------------------------
17 2 files changed, 67 deletions(-)
18
19 diff --git a/app-crypt/moolticute/Manifest b/app-crypt/moolticute/Manifest
20 index c8c0821d333..1b3bd8b26d6 100644
21 --- a/app-crypt/moolticute/Manifest
22 +++ b/app-crypt/moolticute/Manifest
23 @@ -1,2 +1 @@
24 -DIST moolticute-0.18.1.tar.gz 5549370 BLAKE2B 11a1a40e799e54f18e44eacb6ded1892681932676328bfcf0dfc23d197fc418bbe5b726adee280125e974bdf0497e9148f60735e0f80785380ae1b2894d1b187 SHA512 166c2091e84bbe19fced593c97f195d958feb37556670a1e457a0532bf4df399dce214e89782cb8006db5eedad5b9d2c21e5dc9902137f5b2b17b96aa6780366
25 DIST moolticute-0.30.1.tar.gz 5562456 BLAKE2B 104f4bd10edf4147d205fec69ec48eddf31150f898242819be25b83fa5f8ddcd51fd016aa2331b9b94fc8c60062745f0d06e5f0b4a30222c1cc44d54eccd6521 SHA512 463b549fbcdbdff3da51a0b781e7ff2c4ca33ebd22ff355b24f13db3c77b3f3fe38d3d97ff260829517d5d93c43b7d746ff58e3fca3d838f7e32de7066c5288a
26
27 diff --git a/app-crypt/moolticute/moolticute-0.18.1.ebuild b/app-crypt/moolticute/moolticute-0.18.1.ebuild
28 deleted file mode 100644
29 index da3da6c6597..00000000000
30 --- a/app-crypt/moolticute/moolticute-0.18.1.ebuild
31 +++ /dev/null
32 @@ -1,66 +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 -if [[ ${PV} == 9999* ]]; then
39 - EGIT_REPO_URI="https://github.com/mooltipass/moolticute.git"
40 - inherit git-r3
41 - KEYWORDS=""
42 -else
43 - SRC_URI="https://github.com/mooltipass/moolticute/archive/v${PV/_/-}.tar.gz -> ${P}.tar.gz"
44 - KEYWORDS="~amd64 ~arm"
45 -fi
46 -
47 -inherit gnome2-utils qmake-utils udev
48 -
49 -DESCRIPTION="Mooltipass crossplatform daemon/tools"
50 -HOMEPAGE="https://github.com/mooltipass/moolticute"
51 -
52 -LICENSE="GPL-3"
53 -SLOT="0"
54 -IUSE=""
55 -
56 -RDEPEND="
57 - >=dev-libs/libusb-1.0.20
58 - dev-qt/qtcore:5
59 - dev-qt/qtgui:5
60 - dev-qt/qtnetwork:5
61 - dev-qt/qttest:5
62 - dev-qt/qtwebsockets:5
63 - dev-qt/qtwidgets:5
64 -"
65 -DEPEND="${RDEPEND}
66 - dev-qt/linguist-tools:5
67 -"
68 -
69 -S="${WORKDIR}/${P/_/-}"
70 -
71 -src_prepare() {
72 - default
73 -
74 - # Fill version.h with package version
75 - if [[ ${PV} != 9999* ]]; then
76 - sed -i "s/\"git\"/\"v${PV/_/-}\"/" src/version.h || die
77 - fi
78 -}
79 -
80 -src_configure() {
81 - eqmake5 PREFIX="/usr" Moolticute.pro
82 -}
83 -
84 -src_install() {
85 - emake install INSTALL_ROOT="${D}"
86 -
87 - udev_dorules "${FILESDIR}/50-mooltipass.rule"
88 - newinitd "${FILESDIR}/moolticuted.init" moolticuted
89 -}
90 -
91 -pkg_postinst() {
92 - udev_reload
93 - gnome2_icon_cache_update
94 -}
95 -
96 -pkg_postrm() {
97 - gnome2_icon_cache_update
98 -}