summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-12-07 18:46:11 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2020-12-07 19:18:57 +0100
commit8bf7564c045874005219c4a782956028aa8b7638 (patch)
treea99cd1af2a18e91245682e5c78f787bb1d698a64
parentdev-db/dbmodel: Port to EAPI-7, qmake-utils, fix HOMEPAGE (diff)
downloadkde-sunset-8bf7564c045874005219c4a782956028aa8b7638.tar.gz
kde-sunset-8bf7564c045874005219c4a782956028aa8b7638.tar.bz2
kde-sunset-8bf7564c045874005219c4a782956028aa8b7638.zip
dev-libs/qoauth: Remove unused library, no revdeps
Last revdep dropped in commit fa17cd1a653ea9fd552f19bb248fb568bf063d55 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--dev-libs/qoauth/Manifest1
-rw-r--r--dev-libs/qoauth/metadata.xml5
-rw-r--r--dev-libs/qoauth/qoauth-1.0.1.ebuild72
3 files changed, 0 insertions, 78 deletions
diff --git a/dev-libs/qoauth/Manifest b/dev-libs/qoauth/Manifest
deleted file mode 100644
index 5afefcc3..00000000
--- a/dev-libs/qoauth/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST qoauth-1.0.1-src.tar.bz2 42298 BLAKE2B f524a0ab873578e0699ba62b8ca26a9eaa432e981bc4123f145da5436867dac39947724ad4590fb2a8c4b1e9f57d75bf31c691f01217ee9bcb17ec10554c28c1 SHA512 86869c82e6efd490888f3bb16cba5bb014821e35507d3d396a84f5112a2d0bd7cb1251ba5dff82a8913eeae77a0feeebfdf4a7d1e9870023fb3c106d603c3dd8
diff --git a/dev-libs/qoauth/metadata.xml b/dev-libs/qoauth/metadata.xml
deleted file mode 100644
index 6f49eba8..00000000
--- a/dev-libs/qoauth/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/dev-libs/qoauth/qoauth-1.0.1.ebuild b/dev-libs/qoauth/qoauth-1.0.1.ebuild
deleted file mode 100644
index abbe36a2..00000000
--- a/dev-libs/qoauth/qoauth-1.0.1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit qt4-r2
-
-DESCRIPTION="Qt-based library for OAuth support"
-HOMEPAGE="https://github.com/ayoy/qoauth/wiki"
-SRC_URI="http://files.ayoy.net/qoauth/release/${PV}/src/${P}-src.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
-IUSE="debug doc static-libs test"
-
-RESTRICT+=" !test? ( test )"
-
-COMMON_DEPEND="
- app-crypt/qca:2-qt4[debug?]
-"
-DEPEND="${COMMON_DEPEND}
- doc? ( app-doc/doxygen )
- test? ( dev-qt/qttest:4 )
-"
-RDEPEND="${COMMON_DEPEND}
- app-crypt/qca:2-qt4[ssl]
-"
-
-S=${WORKDIR}/${P}-src
-
-DOCS="README CHANGELOG"
-PATCHES=(
- # disable functional tests that require network connection
- # and rely on 3rd party external server (bug #341267)
- "${FILESDIR}/${P}-disable-ft.patch"
-)
-
-src_prepare() {
- qt4-r2_src_prepare
-
- if ! use test; then
- sed -i -e '/SUBDIRS/s/tests//' ${PN}.pro || die "sed failed"
- fi
-
- sed -i -e '/^ *docs \\$/d' \
- -e '/^ *build_all \\$/d' \
- -e 's/^\#\(!macx\)/\1/' \
- src/src.pro || die "sed failed"
-
- sed -i -e "s/\(.*\)lib$/\1$(get_libdir)/" src/pcfile.sh || die "sed failed"
-}
-
-src_compile() {
- default
- if use static-libs; then
- emake -C src static
- fi
-}
-
-src_install() {
- qt4-r2_src_install
-
- if use static-libs; then
- dolib.a "${S}"/lib/lib${PN}.a
- fi
-
- if use doc; then
- doxygen "${S}"/Doxyfile || die "failed to generate documentation"
- dohtml "${S}"/doc/html/*
- fi
-}