From 8bf7564c045874005219c4a782956028aa8b7638 Mon Sep 17 00:00:00 2001 From: Andreas Sturmlechner Date: Mon, 7 Dec 2020 18:46:11 +0100 Subject: dev-libs/qoauth: Remove unused library, no revdeps Last revdep dropped in commit fa17cd1a653ea9fd552f19bb248fb568bf063d55 Signed-off-by: Andreas Sturmlechner --- dev-libs/qoauth/Manifest | 1 - dev-libs/qoauth/metadata.xml | 5 --- dev-libs/qoauth/qoauth-1.0.1.ebuild | 72 ------------------------------------- 3 files changed, 78 deletions(-) delete mode 100644 dev-libs/qoauth/Manifest delete mode 100644 dev-libs/qoauth/metadata.xml delete mode 100644 dev-libs/qoauth/qoauth-1.0.1.ebuild 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 @@ - - - - - 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 -} -- cgit v1.2.3-65-gdbad