From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E957B13989A for ; Thu, 27 Aug 2015 12:10:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB18F1418A; Thu, 27 Aug 2015 12:10:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 743431418A for ; Thu, 27 Aug 2015 12:10:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 71A56340AB5 for ; Thu, 27 Aug 2015 12:10:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B01E4121 for ; Thu, 27 Aug 2015 12:10:26 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1440677402.0e7be806735e476597f1efad3e6a0776d05b863d.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/signon-oauth2/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/signon-oauth2/Manifest net-libs/signon-oauth2/metadata.xml net-libs/signon-oauth2/signon-oauth2-0.21.ebuild X-VCS-Directories: net-libs/signon-oauth2/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 0e7be806735e476597f1efad3e6a0776d05b863d X-VCS-Branch: master Date: Thu, 27 Aug 2015 12:10:26 +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: b9fc0db9-fb30-43ae-befe-01c7282f8183 X-Archives-Hash: 88b237c0f6dd6280cf9c0b28754db400 commit: 0e7be806735e476597f1efad3e6a0776d05b863d Author: Johannes Huber gentoo org> AuthorDate: Thu Aug 27 12:09:51 2015 +0000 Commit: Johannes Huber gentoo org> CommitDate: Thu Aug 27 12:10:02 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e7be806 net-libs/signon-oauth2: New package Required for KDEs Telepathy client based on KF5. Import from kde overlay. Initial ebuild by Karol Herbst karolherbst.de>. Package-Manager: portage-2.2.20.1 net-libs/signon-oauth2/Manifest | 1 + net-libs/signon-oauth2/metadata.xml | 5 +++ net-libs/signon-oauth2/signon-oauth2-0.21.ebuild | 41 ++++++++++++++++++++++++ 3 files changed, 47 insertions(+) diff --git a/net-libs/signon-oauth2/Manifest b/net-libs/signon-oauth2/Manifest new file mode 100644 index 0000000..51b7f4f --- /dev/null +++ b/net-libs/signon-oauth2/Manifest @@ -0,0 +1 @@ +DIST signon-oauth2-0.21.tar.bz2 37819 SHA256 d09b74d9b298c1f2d5229b15d2aa1761a7e8fe0fb26d16626dd28faba3e314a3 SHA512 b0f97353e87c08420c3132f3357522b526a7c48df807ab833e05297ebfc86e0e8f25d4d3aa94e8ebc4aa1d9bc77856d63c43e5b5e9f3e63628f7710b9a056fd0 WHIRLPOOL 9ed35ca0f1a457665f6991d5d8d550e07f0cc0db428b5c8dd4f1a7f0056989fe9961ab657e54de531c3c7f185c987c6531c008c012d3de38f15780fdfdfb0651 diff --git a/net-libs/signon-oauth2/metadata.xml b/net-libs/signon-oauth2/metadata.xml new file mode 100644 index 0000000..a23f444 --- /dev/null +++ b/net-libs/signon-oauth2/metadata.xml @@ -0,0 +1,5 @@ + + + + kde + diff --git a/net-libs/signon-oauth2/signon-oauth2-0.21.ebuild b/net-libs/signon-oauth2/signon-oauth2-0.21.ebuild new file mode 100644 index 0000000..2c5b49b --- /dev/null +++ b/net-libs/signon-oauth2/signon-oauth2-0.21.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit qmake-utils + +DESCRIPTION="OAuth2 plugin for Signon daemon" +HOMEPAGE="https://01.org/gsso/" +SRC_URI="http://dev.gentoo.org/~kensington/distfiles/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtnetwork:5 + net-libs/signond +" +DEPEND="${RDEPEND} + test? ( dev-qt/qttest:5 ) +" + +src_prepare() { + if use !test; then + sed -i -e '/^SUBDIRS/s/tests//' signon-oauth2.pro || die "couldn't disable tests" + else + sed -i -e '/^INSTALLS.*/,+1d' tests/tests.pro || die "couldn't remove tests from install target" + fi +} + +src_configure() { + eqmake5 +} + +src_install() { + emake INSTALL_ROOT="${D}" install +}