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 D58C6138AE9 for ; Sun, 26 Nov 2017 15:43:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5BCBE0E1A; Sun, 26 Nov 2017 15:43:46 +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 C13E5E0E2C for ; Sun, 26 Nov 2017 15:43:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 EB5AF33C770 for ; Sun, 26 Nov 2017 15:43:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49FEBA841 for ; Sun, 26 Nov 2017 15:43:43 +0000 (UTC) From: "Kristian Fiskerstrand" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kristian Fiskerstrand" Message-ID: <1511709052.6d11aa141259c04645bf015a8145a86503b8d53c.k_f@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/xapp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/xapp/xapp-1.0.1-r2.ebuild X-VCS-Directories: dev-python/xapp/ X-VCS-Committer: k_f X-VCS-Committer-Name: Kristian Fiskerstrand X-VCS-Revision: 6d11aa141259c04645bf015a8145a86503b8d53c X-VCS-Branch: master Date: Sun, 26 Nov 2017 15:43:43 +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: 2e16230f-e30e-46ee-b3c6-fbc41c093fa7 X-Archives-Hash: 5da3f3a2ee8bf9137f0f425e10128ef2 commit: 6d11aa141259c04645bf015a8145a86503b8d53c Author: Kristian Fiskerstrand gentoo org> AuthorDate: Sun Nov 26 14:26:02 2017 +0000 Commit: Kristian Fiskerstrand gentoo org> CommitDate: Sun Nov 26 15:10:52 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d11aa14 dev-python/xapp: Add explicit introspection dep Bug: https://bugs.gentoo.org/636162 Package-Manager: Portage-2.3.13, Repoman-2.3.3 dev-python/xapp/xapp-1.0.1-r2.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/dev-python/xapp/xapp-1.0.1-r2.ebuild b/dev-python/xapp/xapp-1.0.1-r2.ebuild new file mode 100644 index 00000000000..5e6426fce4e --- /dev/null +++ b/dev-python/xapp/xapp-1.0.1-r2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6} ) + +inherit distutils-r1 + +DESCRIPTION="Python bindings for x11-libs/xapps" +HOMEPAGE="https://github.com/linuxmint/python-xapp" +SRC_URI="https://github.com/linuxmint/python-xapp/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="x11-libs/xapps[introspection]" +RDEPEND="${DEPEND} + dev-python/psutil[${PYTHON_USEDEP}]" + +S="${WORKDIR}/python-xapp-${PV}"