mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2026-05-06 15:49:53 -04:00
11970431fe
Signed-off-by: Sam James <sam@gentoo.org>
23 lines
581 B
Bash
23 lines
581 B
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{11..14} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="DBus library in Python 3"
|
|
HOMEPAGE="https://github.com/dasbus-project/dasbus"
|
|
SRC_URI="https://github.com/dasbus-project/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~sparc"
|
|
|
|
RDEPEND="dev-python/pygobject:3[${PYTHON_USEDEP}]"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
distutils_enable_tests unittest
|