summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-12-17 11:09:32 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2020-12-17 11:23:23 +0100
commit1e370f7d09c25ee789e27183249b047ad0fbb897 (patch)
treef3742ef914ec0119df463fb2f9d66dc40421b6cc /net-libs/signon-oauth2
parentnet-analyzer/zabbix: removed obsolete 4.0.25-r1 & 5.0.4-r1 (diff)
downloadgentoo-1e370f7d09c25ee789e27183249b047ad0fbb897.tar.gz
gentoo-1e370f7d09c25ee789e27183249b047ad0fbb897.tar.bz2
gentoo-1e370f7d09c25ee789e27183249b047ad0fbb897.zip
net-libs/signon-oauth2: Drop 0.24
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-libs/signon-oauth2')
-rw-r--r--net-libs/signon-oauth2/Manifest1
-rw-r--r--net-libs/signon-oauth2/files/signon-oauth2-0.24-disable-examples.patch14
-rw-r--r--net-libs/signon-oauth2/signon-oauth2-0.24.ebuild53
3 files changed, 0 insertions, 68 deletions
diff --git a/net-libs/signon-oauth2/Manifest b/net-libs/signon-oauth2/Manifest
index 2950b1955cc5..effff8a83604 100644
--- a/net-libs/signon-oauth2/Manifest
+++ b/net-libs/signon-oauth2/Manifest
@@ -1,2 +1 @@
-DIST signon-oauth2-0.24.tar.gz 39011 BLAKE2B 41b672d1f489321b2f93f245530da1e51867eb4f0d1675ba72240f59f5ab7d6d2a079899e1a6dbc63c82bc53e1fab467c6696f5171c98ab00243d5ec9ddd92f4 SHA512 8a1e5be7f34419ded7841cb4de62e03ab56556f39ae40e3e11b549d45c6c51edc6888d1aab254c0ba6746d6306bb8b92dd24e473387542d6a987208c20acf6d9
DIST signon-oauth2-0.25.tar.gz 41090 BLAKE2B d14cde073cf834427e337f94345b719ad1af38a285587f987f6ed42f96e8aecfcf63720e42b7f86f2018565c198e1f31b7b75da74c86db3e8a15680da70d3f9e SHA512 721cd514ee0a1175e3b1bbaa78dc1a87fd382327bcbee8356de040f04455f7cc80ed173e3f33a6acf4c0d679847063a25282e9d5c9a9be99f730bec41be96451
diff --git a/net-libs/signon-oauth2/files/signon-oauth2-0.24-disable-examples.patch b/net-libs/signon-oauth2/files/signon-oauth2-0.24-disable-examples.patch
deleted file mode 100644
index dd730e449773..000000000000
--- a/net-libs/signon-oauth2/files/signon-oauth2-0.24-disable-examples.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Author: Diane Trout <diane@ghic.org>
-Description: Don't install the examples as they end up conflicting with
- other packages.
---- a/signon-oauth2.pro
-+++ b/signon-oauth2.pro
-@@ -3,7 +3,7 @@
-
- TEMPLATE = subdirs
- CONFIG += ordered
--SUBDIRS = src tests example
-+SUBDIRS = src tests
-
- include( common-installs-config.pri )
-
diff --git a/net-libs/signon-oauth2/signon-oauth2-0.24.ebuild b/net-libs/signon-oauth2/signon-oauth2-0.24.ebuild
deleted file mode 100644
index 5317e17cef7b..000000000000
--- a/net-libs/signon-oauth2/signon-oauth2-0.24.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN=signon-plugin-oauth2
-MY_PV=VERSION_${PV}
-inherit qmake-utils
-
-DESCRIPTION="OAuth2 plugin for Signon daemon"
-HOMEPAGE="https://gitlab.com/accounts-sso/signon-plugin-oauth2"
-SRC_URI="https://gitlab.com/accounts-sso/${MY_PN}/-/archive/${MY_PV}/${MY_PN}-${MY_PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtnetwork:5[ssl]
- net-libs/signond
-"
-DEPEND="${RDEPEND}
- test? ( dev-qt/qttest:5 )
-"
-
-S="${WORKDIR}/${MY_PN}-${MY_PV}"
-
-PATCHES=(
- "${FILESDIR}/${P}-disable-examples.patch"
- "${FILESDIR}/${P}-dont-install-tests.patch"
-)
-
-src_prepare() {
- default
- sed -i -e '/QMAKE_CXXFLAGS.*Werror/s/^/#DONT /' common-project-config.pri ||
- die "failed to disable -Werror"
- if ! use test; then
- sed -i -e '/^SUBDIRS/s/tests//' signon-oauth2.pro ||
- die "Failed to disable tests"
- fi
-}
-
-src_configure() {
- eqmake5 \
- LIBDIR=/usr/$(get_libdir)
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install
-}