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 A85221382C5 for ; Tue, 9 Feb 2021 14:45:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6ACCAE093D; Tue, 9 Feb 2021 14:45:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 421EEE093D for ; Tue, 9 Feb 2021 14:45:13 +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 2677F340DBB for ; Tue, 9 Feb 2021 14:45:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 552354BE for ; Tue, 9 Feb 2021 14:45:09 +0000 (UTC) From: "Alexys Jacob" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexys Jacob" Message-ID: <1612881754.70fa81b2fab8226fe92c4137bbbe6cbe97b96c82.ultrabug@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/py3status/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/py3status/metadata.xml x11-misc/py3status/py3status-3.33-r1.ebuild X-VCS-Directories: x11-misc/py3status/ X-VCS-Committer: ultrabug X-VCS-Committer-Name: Alexys Jacob X-VCS-Revision: 70fa81b2fab8226fe92c4137bbbe6cbe97b96c82 X-VCS-Branch: master Date: Tue, 9 Feb 2021 14:45:09 +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: f91834ba-ba0a-4dfe-95cf-f557a31ab3a7 X-Archives-Hash: b47a4c4f01e59249f94d02f771179a5f commit: 70fa81b2fab8226fe92c4137bbbe6cbe97b96c82 Author: Ferenc Erki gmail com> AuthorDate: Mon Feb 8 20:31:59 2021 +0000 Commit: Alexys Jacob gentoo org> CommitDate: Tue Feb 9 14:42:34 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70fa81b2 x11-misc/py3status: add minimal USE flag Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Ferenc Erki gmail.com> Closes: https://github.com/gentoo/gentoo/pull/19378 Signed-off-by: Alexys Jacob gentoo.org> x11-misc/py3status/metadata.xml | 1 + x11-misc/py3status/py3status-3.33-r1.ebuild | 30 +++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/x11-misc/py3status/metadata.xml b/x11-misc/py3status/metadata.xml index 29c98f85e34..fe9e1147ee8 100644 --- a/x11-misc/py3status/metadata.xml +++ b/x11-misc/py3status/metadata.xml @@ -11,6 +11,7 @@ Install extra requirement dev-python/gevent to enable green threads. + Don't depend on x11-misc/i3status if you don't plan to use any of its built-in modules. Install extra requirement dev-python/pyudev to enable udev events monitoring on modules. diff --git a/x11-misc/py3status/py3status-3.33-r1.ebuild b/x11-misc/py3status/py3status-3.33-r1.ebuild new file mode 100644 index 00000000000..a5c75fc841b --- /dev/null +++ b/x11-misc/py3status/py3status-3.33-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python{3_7,3_8} ) + +SRC_URI="https://github.com/ultrabug/py3status/archive/${PV}.tar.gz -> ${P}.tar.gz" + +inherit distutils-r1 + +MY_PN="py3status" +MY_P="${MY_PN}-${PV/_/-}" + +DESCRIPTION="py3status is an extensible i3status wrapper written in python" +HOMEPAGE="https://github.com/ultrabug/py3status" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gevent minimal +udev" + +RDEPEND=" + !minimal? ( x11-misc/i3status ) + gevent? ( >=dev-python/gevent-1.2.0[${PYTHON_USEDEP}] ) + udev? ( >=dev-python/pyudev-0.21.0[${PYTHON_USEDEP}] ) +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +S=${WORKDIR}/${MY_P}