From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AE6441396D9 for ; Sun, 29 Oct 2017 21:12:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2FE1FE0F0C; Sun, 29 Oct 2017 21:12:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0BD73E0F0C for ; Sun, 29 Oct 2017 21:12:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CDD393416C7 for ; Sun, 29 Oct 2017 21:12:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6785B41F for ; Sun, 29 Oct 2017 21:12:55 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1509311566.660b4077a31f49c4bdc37fae300af6e2193afbc6.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/qoauth/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/qoauth/qoauth-2.0.1_pre20160315-r1.ebuild X-VCS-Directories: dev-libs/qoauth/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 660b4077a31f49c4bdc37fae300af6e2193afbc6 X-VCS-Branch: master Date: Sun, 29 Oct 2017 21:12:55 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: bb3f2868-a22f-494a-948d-8afb40b04cc2 X-Archives-Hash: ef7857372500da1cbf7f5d6537267502 commit: 660b4077a31f49c4bdc37fae300af6e2193afbc6 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Oct 29 20:59:38 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 29 21:12:46 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=660b4077 dev-libs/qoauth: Drop old Package-Manager: Portage-2.3.13, Repoman-2.3.4 dev-libs/qoauth/qoauth-2.0.1_pre20160315-r1.ebuild | 60 ---------------------- 1 file changed, 60 deletions(-) diff --git a/dev-libs/qoauth/qoauth-2.0.1_pre20160315-r1.ebuild b/dev-libs/qoauth/qoauth-2.0.1_pre20160315-r1.ebuild deleted file mode 100644 index 5a7f308f3f9..00000000000 --- a/dev-libs/qoauth/qoauth-2.0.1_pre20160315-r1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit qmake-utils - -DESCRIPTION="Qt-based library for OAuth support" -HOMEPAGE="https://github.com/ayoy/qoauth/wiki" -SRC_URI="https://dev.gentoo.org/~johu/distfiles/${P}.tar.xz" - -LICENSE="LGPL-2.1" -SLOT="5" -KEYWORDS="amd64 ~ppc64 x86" -IUSE="debug doc test" - -COMMON_DEPEND=" - app-crypt/qca:2[debug?,qt5] - dev-qt/qtnetwork:5 -" -DEPEND="${COMMON_DEPEND} - doc? ( app-doc/doxygen ) - test? ( dev-qt/qttest:5 ) -" -RDEPEND="${COMMON_DEPEND} - app-crypt/qca:2[ssl] - !dev-libs/qoauth:0 -" - -# disable functional tests that require network connection -# and rely on 3rd party external server (bug #341267) -PATCHES=( "${FILESDIR}/${PN}-1.0.1-disable-ft.patch" ) - -src_prepare() { - default - - 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_configure() { - eqmake5 qoauth.pro -} - -src_install() { - if use doc; then - doxygen "${S}"/Doxyfile || die "failed to generate documentation" - HTML_DOCS=( "${S}"/doc/html/. ) - fi - - INSTALL_ROOT="${D}" default -}