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: Fri, 05 Jan 2018 19:05:39
Message-Id: 1515179126.7785b3e7ce686afb6dd045d6476d0bbf74a9b95c.asturm@gentoo
1 commit: 7785b3e7ce686afb6dd045d6476d0bbf74a9b95c
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 5 13:09:45 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 5 19:05:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7785b3e7
7
8 dev-libs/qoauth: Drop old
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.4
11
12 dev-libs/qoauth/Manifest | 1 -
13 dev-libs/qoauth/qoauth-1.0.1.ebuild | 68 -------------------------------------
14 2 files changed, 69 deletions(-)
15
16 diff --git a/dev-libs/qoauth/Manifest b/dev-libs/qoauth/Manifest
17 index e4b644540e9..4dafaee99db 100644
18 --- a/dev-libs/qoauth/Manifest
19 +++ b/dev-libs/qoauth/Manifest
20 @@ -1,2 +1 @@
21 -DIST qoauth-1.0.1-src.tar.bz2 42298 BLAKE2B f524a0ab873578e0699ba62b8ca26a9eaa432e981bc4123f145da5436867dac39947724ad4590fb2a8c4b1e9f57d75bf31c691f01217ee9bcb17ec10554c28c1 SHA512 86869c82e6efd490888f3bb16cba5bb014821e35507d3d396a84f5112a2d0bd7cb1251ba5dff82a8913eeae77a0feeebfdf4a7d1e9870023fb3c106d603c3dd8
22 DIST qoauth-2.0.1_pre20160315.tar.xz 45604 BLAKE2B 290d768e8661c6e8f9ae8094ec140da22f00c53cbfd9ed6ebab1f159ae82c2a0a111a9306eeab0c08ea5b0a349e07d9b7f402f14812a5688ba9860832991494c SHA512 ec44c597c7b9729645ab98e2c71c805d01eab4c0684b7ea0da6b015a052b0ad6e3aa9352ef53e36a67ff99b9f75fb9b89156ca8b23c639a70cc49aab656366c3
23
24 diff --git a/dev-libs/qoauth/qoauth-1.0.1.ebuild b/dev-libs/qoauth/qoauth-1.0.1.ebuild
25 deleted file mode 100644
26 index fb045417507..00000000000
27 --- a/dev-libs/qoauth/qoauth-1.0.1.ebuild
28 +++ /dev/null
29 @@ -1,68 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=4
34 -
35 -inherit qt4-r2
36 -
37 -DESCRIPTION="A Qt-based library for OAuth support"
38 -HOMEPAGE="https://github.com/ayoy/qoauth/wiki"
39 -SRC_URI="http://files.ayoy.net/qoauth/release/${PV}/src/${P}-src.tar.bz2"
40 -
41 -LICENSE="LGPL-2.1"
42 -SLOT="0"
43 -KEYWORDS="amd64 ppc ~ppc64 x86"
44 -IUSE="debug doc static-libs test"
45 -
46 -COMMON_DEPEND="app-crypt/qca:2[debug?,qt4(+)]"
47 -DEPEND="${COMMON_DEPEND}
48 - doc? ( app-doc/doxygen )
49 - test? ( dev-qt/qttest:4 )
50 -"
51 -RDEPEND="${COMMON_DEPEND}
52 - app-crypt/qca:2[ssl]
53 -"
54 -
55 -S=${WORKDIR}/${P}-src
56 -
57 -DOCS="README CHANGELOG"
58 -PATCHES=(
59 - # disable functional tests that require network connection
60 - # and rely on 3rd party external server (bug #341267)
61 - "${FILESDIR}/${P}-disable-ft.patch"
62 -)
63 -
64 -src_prepare() {
65 - qt4-r2_src_prepare
66 -
67 - if ! use test; then
68 - sed -i -e '/SUBDIRS/s/tests//' ${PN}.pro || die "sed failed"
69 - fi
70 -
71 - sed -i -e '/^ *docs \\$/d' \
72 - -e '/^ *build_all \\$/d' \
73 - -e 's/^\#\(!macx\)/\1/' \
74 - src/src.pro || die "sed failed"
75 -
76 - sed -i -e "s/\(.*\)lib$/\1$(get_libdir)/" src/pcfile.sh || die "sed failed"
77 -}
78 -
79 -src_compile() {
80 - default
81 - if use static-libs; then
82 - emake -C src static
83 - fi
84 -}
85 -
86 -src_install() {
87 - qt4-r2_src_install
88 -
89 - if use static-libs; then
90 - dolib.a "${S}"/lib/lib${PN}.a
91 - fi
92 -
93 - if use doc; then
94 - doxygen "${S}"/Doxyfile || die "failed to generate documentation"
95 - dohtml "${S}"/doc/html/*
96 - fi
97 -}