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 86702138351 for ; Thu, 30 Jan 2020 06:33:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 729B2E085A; Thu, 30 Jan 2020 06:33:38 +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 25D11E07FA for ; Thu, 30 Jan 2020 06:33:38 +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 345AD34E54E for ; Thu, 30 Jan 2020 06:33:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0A2410D for ; Thu, 30 Jan 2020 06:33:33 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1580365986.734860dfcd6172c8f762e97319612b39fdec4484.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/xapp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/xapp/Manifest dev-python/xapp/xapp-1.8.1.ebuild X-VCS-Directories: dev-python/xapp/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 734860dfcd6172c8f762e97319612b39fdec4484 X-VCS-Branch: master Date: Thu, 30 Jan 2020 06:33:33 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9e39eb6d-e3da-4916-a087-de42ef24e026 X-Archives-Hash: cf5d49d589ad9c3e69996851ed7a53b9 commit: 734860dfcd6172c8f762e97319612b39fdec4484 Author: Olivier Laurantin laposte net> AuthorDate: Wed Jan 29 12:49:00 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Jan 30 06:33:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=734860df dev-python/xapp: version bump Update to the latest upstream version, add python3.7. Signed-off-by: Olivier Laurantin laposte.net> Signed-off-by: Joonas Niilola gentoo.org> dev-python/xapp/Manifest | 1 + dev-python/xapp/xapp-1.8.1.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-python/xapp/Manifest b/dev-python/xapp/Manifest index e9da2094bab..187bcc37003 100644 --- a/dev-python/xapp/Manifest +++ b/dev-python/xapp/Manifest @@ -1 +1,2 @@ DIST xapp-1.0.1.tar.gz 12327 BLAKE2B a627a833adc8ca32823d4c04fd65ef3dedc2eedd031c3030105f1f2341fa17744fc81c976f4eaa1a238653392510d416692ce804ff5bcfe9ed12d9595245e8d3 SHA512 7dc4db03476f6972f6452800d2ea58d7f78d0bd5dd6719f2b49d1c2e3315c3fa09c294b1195bebd26357c30b4c43d7e5c01d160708dd17ee488b823344895e25 +DIST xapp-1.8.1.tar.gz 19665 BLAKE2B cdead609611396cb24a5f09a1ac47773569c1637b2730b00a545dbe8d3a03d183209a433bd7dfa3ed9bdd27389a6ec759072c899ab106180b839d22edd22b0c1 SHA512 8f20e15eda96f2cfab08c2b99fc20f2e3b686049ea23971b7fa8f8367eec019dce4199b332ae412bfb853de44ed5a1bb6573ea8ca052910f12ee5ced15bafc10 diff --git a/dev-python/xapp/xapp-1.8.1.ebuild b/dev-python/xapp/xapp-1.8.1.ebuild new file mode 100644 index 00000000000..4a2474d1656 --- /dev/null +++ b/dev-python/xapp/xapp-1.8.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7} ) + +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}"