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 E5B48139086 for ; Sat, 7 Jan 2017 17:23:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B87C234022; Sat, 7 Jan 2017 17:23:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 085B7234022 for ; Sat, 7 Jan 2017 17:23:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EEE9134155D for ; Sat, 7 Jan 2017 17:23:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F17CC2620 for ; Sat, 7 Jan 2017 17:22:58 +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: <1483809737.e22c5ac4d1cf61e929dc8707bb37ad2e4e7fc459.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.ebuild X-VCS-Directories: dev-libs/qoauth/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e22c5ac4d1cf61e929dc8707bb37ad2e4e7fc459 X-VCS-Branch: master Date: Sat, 7 Jan 2017 17:22:58 +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: 3a101c51-c112-4eb4-9618-46caa454f898 X-Archives-Hash: 7ad22571a99f6bb5eaf3ad5bb74f95af commit: e22c5ac4d1cf61e929dc8707bb37ad2e4e7fc459 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jan 7 16:55:58 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jan 7 17:22:17 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e22c5ac4 dev-libs/qoauth: Drop old Package-Manager: portage-2.3.0 dev-libs/qoauth/qoauth-2.0.1_pre20160315.ebuild | 71 ------------------------- 1 file changed, 71 deletions(-) diff --git a/dev-libs/qoauth/qoauth-2.0.1_pre20160315.ebuild b/dev-libs/qoauth/qoauth-2.0.1_pre20160315.ebuild deleted file mode 100644 index 9ffd038..00000000 --- a/dev-libs/qoauth/qoauth-2.0.1_pre20160315.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit qmake-utils - -DESCRIPTION="Qt-based library for OAuth support" -HOMEPAGE="https://wiki.github.com/ayoy/qoauth" -SRC_URI="https://dev.gentoo.org/~johu/distfiles/${P}.tar.xz" - -LICENSE="LGPL-2.1" -SLOT="5" -KEYWORDS="~amd64 ~ppc64 ~x86" -IUSE="debug doc static-libs test" - -COMMON_DEPEND="app-crypt/qca:2[debug?,qt5]" -DEPEND="${COMMON_DEPEND} - doc? ( app-doc/doxygen ) - test? ( dev-qt/qttest:5 ) -" -RDEPEND="${COMMON_DEPEND} - app-crypt/qca:2[ssl] - !dev-libs/qoauth:0 -" - -DOCS=( README CHANGELOG ) - -src_prepare() { - default - - # disable functional tests that require network connection - # and rely on 3rd party external server (bug #341267) - epatch "${FILESDIR}/${PN}-1.0.1-disable-ft.patch" - - 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_compile() { - default - if use static-libs; then - emake -C src static - fi -} - -src_install() { - INSTALL_ROOT="${D}" default - - 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 -}