Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/signon-oauth2/, net-libs/signon-oauth2/files/
Date: Sat, 29 Dec 2018 13:37:29
Message-Id: 1546090631.bf2b0c9652066001268ac0c4a72ab1b2367704a1.asturm@gentoo
1 commit: bf2b0c9652066001268ac0c4a72ab1b2367704a1
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 29 13:37:11 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 29 13:37:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf2b0c96
7
8 net-libs/signon-oauth2: Drop 0.21-r1
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 net-libs/signon-oauth2/Manifest | 1 -
14 .../signon-oauth2-0.21-unused-dependency.patch | 16 ---------
15 .../signon-oauth2/signon-oauth2-0.21-r1.ebuild | 42 ----------------------
16 3 files changed, 59 deletions(-)
17
18 diff --git a/net-libs/signon-oauth2/Manifest b/net-libs/signon-oauth2/Manifest
19 index 57126546b87..050b4e9172a 100644
20 --- a/net-libs/signon-oauth2/Manifest
21 +++ b/net-libs/signon-oauth2/Manifest
22 @@ -1,2 +1 @@
23 -DIST signon-oauth2-0.21.tar.bz2 37819 BLAKE2B 5de9add1952ba94e12b776c7f4b462bfc31ce01c148d8819b6e159510c4b00f4d2fc915a62f585b1061d46efbeb92406e3c117452e4e7f5575404fea3ab20601 SHA512 b0f97353e87c08420c3132f3357522b526a7c48df807ab833e05297ebfc86e0e8f25d4d3aa94e8ebc4aa1d9bc77856d63c43e5b5e9f3e63628f7710b9a056fd0
24 DIST signon-oauth2-0.24.tar.gz 39011 BLAKE2B 41b672d1f489321b2f93f245530da1e51867eb4f0d1675ba72240f59f5ab7d6d2a079899e1a6dbc63c82bc53e1fab467c6696f5171c98ab00243d5ec9ddd92f4 SHA512 8a1e5be7f34419ded7841cb4de62e03ab56556f39ae40e3e11b549d45c6c51edc6888d1aab254c0ba6746d6306bb8b92dd24e473387542d6a987208c20acf6d9
25
26 diff --git a/net-libs/signon-oauth2/files/signon-oauth2-0.21-unused-dependency.patch b/net-libs/signon-oauth2/files/signon-oauth2-0.21-unused-dependency.patch
27 deleted file mode 100644
28 index 3e6656dd272..00000000000
29 --- a/net-libs/signon-oauth2/files/signon-oauth2-0.21-unused-dependency.patch
30 +++ /dev/null
31 @@ -1,16 +0,0 @@
32 -Qt5XmlPatterns is not actually used, but build will fail if it's missing.
33 -
34 -Gentoo-bug: 564316
35 -
36 ---- src/src.pro
37 -+++ src/src.pro
38 -@@ -4,8 +4,7 @@
39 - TARGET = oauth2plugin
40 - DESTDIR = lib/signon
41 - QT += core \
42 -- network \
43 -- xmlpatterns
44 -+ network
45 - QT -= gui
46 - CONFIG += plugin \
47 - build_all \
48
49 diff --git a/net-libs/signon-oauth2/signon-oauth2-0.21-r1.ebuild b/net-libs/signon-oauth2/signon-oauth2-0.21-r1.ebuild
50 deleted file mode 100644
51 index dc913a9e283..00000000000
52 --- a/net-libs/signon-oauth2/signon-oauth2-0.21-r1.ebuild
53 +++ /dev/null
54 @@ -1,42 +0,0 @@
55 -# Copyright 1999-2017 Gentoo Foundation
56 -# Distributed under the terms of the GNU General Public License v2
57 -
58 -EAPI=5
59 -
60 -inherit eutils qmake-utils
61 -
62 -DESCRIPTION="OAuth2 plugin for Signon daemon"
63 -HOMEPAGE="https://01.org/gsso/"
64 -SRC_URI="https://dev.gentoo.org/~kensington/distfiles/${P}.tar.bz2"
65 -
66 -LICENSE="LGPL-2.1"
67 -SLOT="0"
68 -KEYWORDS="amd64 x86"
69 -IUSE="test"
70 -
71 -RDEPEND="
72 - dev-qt/qtcore:5
73 - dev-qt/qtnetwork:5[ssl]
74 - net-libs/signond
75 -"
76 -DEPEND="${RDEPEND}
77 - test? ( dev-qt/qttest:5 )
78 -"
79 -
80 -src_prepare() {
81 - if use !test; then
82 - sed -i -e '/^SUBDIRS/s/tests//' signon-oauth2.pro || die "couldn't disable tests"
83 - else
84 - sed -i -e '/^INSTALLS.*/,+1d' tests/tests.pro || die "couldn't remove tests from install target"
85 - fi
86 -
87 - epatch "${FILESDIR}/${P}-unused-dependency.patch"
88 -}
89 -
90 -src_configure() {
91 - eqmake5
92 -}
93 -
94 -src_install() {
95 - emake INSTALL_ROOT="${D}" install
96 -}