mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-16 23:19:31 +00:00
31 lines
887 B
Bash
31 lines
887 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
PYTHON_COMPAT=( python3_{10..13} )
|
|
DISTUTILS_USE_PEP517=hatchling
|
|
|
|
DESCRIPTION="py3status is an extensible i3status wrapper written in python"
|
|
HOMEPAGE="https://github.com/ultrabug/py3status"
|
|
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/_/-}"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="minimal +dbus +udev"
|
|
# It feels useless to run tests on this simple package
|
|
# since upstream (I) runs tox on CI
|
|
RESTRICT="test"
|
|
|
|
RDEPEND="
|
|
!minimal? ( x11-misc/i3status )
|
|
dbus? ( >=dev-python/dbus-python-1.3.2[${PYTHON_USEDEP}] >=dev-python/pygobject-3.46.0[${PYTHON_USEDEP}] )
|
|
udev? ( >=dev-python/pyudev-0.21.0[${PYTHON_USEDEP}] )
|
|
"
|
|
DEPEND="${RDEPEND}"
|