Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/qoauth/
Date: Sun, 29 Oct 2017 21:12:58
Message-Id: 1509311566.660b4077a31f49c4bdc37fae300af6e2193afbc6.asturm@gentoo
1 commit: 660b4077a31f49c4bdc37fae300af6e2193afbc6
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 29 20:59:38 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 29 21:12:46 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=660b4077
7
8 dev-libs/qoauth: Drop old
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.4
11
12 dev-libs/qoauth/qoauth-2.0.1_pre20160315-r1.ebuild | 60 ----------------------
13 1 file changed, 60 deletions(-)
14
15 diff --git a/dev-libs/qoauth/qoauth-2.0.1_pre20160315-r1.ebuild b/dev-libs/qoauth/qoauth-2.0.1_pre20160315-r1.ebuild
16 deleted file mode 100644
17 index 5a7f308f3f9..00000000000
18 --- a/dev-libs/qoauth/qoauth-2.0.1_pre20160315-r1.ebuild
19 +++ /dev/null
20 @@ -1,60 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -inherit qmake-utils
27 -
28 -DESCRIPTION="Qt-based library for OAuth support"
29 -HOMEPAGE="https://github.com/ayoy/qoauth/wiki"
30 -SRC_URI="https://dev.gentoo.org/~johu/distfiles/${P}.tar.xz"
31 -
32 -LICENSE="LGPL-2.1"
33 -SLOT="5"
34 -KEYWORDS="amd64 ~ppc64 x86"
35 -IUSE="debug doc test"
36 -
37 -COMMON_DEPEND="
38 - app-crypt/qca:2[debug?,qt5]
39 - dev-qt/qtnetwork:5
40 -"
41 -DEPEND="${COMMON_DEPEND}
42 - doc? ( app-doc/doxygen )
43 - test? ( dev-qt/qttest:5 )
44 -"
45 -RDEPEND="${COMMON_DEPEND}
46 - app-crypt/qca:2[ssl]
47 - !dev-libs/qoauth:0
48 -"
49 -
50 -# disable functional tests that require network connection
51 -# and rely on 3rd party external server (bug #341267)
52 -PATCHES=( "${FILESDIR}/${PN}-1.0.1-disable-ft.patch" )
53 -
54 -src_prepare() {
55 - default
56 -
57 - if ! use test; then
58 - sed -i -e '/SUBDIRS/s/tests//' ${PN}.pro || die "sed failed"
59 - fi
60 -
61 - sed -i -e '/^ *docs \\$/d' \
62 - -e '/^ *build_all \\$/d' \
63 - -e 's/^\#\(!macx\)/\1/' \
64 - src/src.pro || die "sed failed"
65 -
66 - sed -i -e "s/\(.*\)lib$/\1$(get_libdir)/" src/pcfile.sh || die "sed failed"
67 -}
68 -
69 -src_configure() {
70 - eqmake5 qoauth.pro
71 -}
72 -
73 -src_install() {
74 - if use doc; then
75 - doxygen "${S}"/Doxyfile || die "failed to generate documentation"
76 - HTML_DOCS=( "${S}"/doc/html/. )
77 - fi
78 -
79 - INSTALL_ROOT="${D}" default
80 -}