diff options
author | Gonçalo Duarte <gonegrier.duarte@gmail.com> | 2023-09-15 11:39:31 +0000 |
---|---|---|
committer | Gonçalo Duarte <gonegrier.duarte@gmail.com> | 2023-09-15 11:41:15 +0000 |
commit | 5b9bb5ba2e3795ea5d4356df053be58af70e3984 (patch) | |
tree | 4a3e98d6c3e61e6dcec9fb254c39ea97d4af8b23 /dev-python | |
parent | app-admin/synadm: drop 0.42 (diff) | |
download | guru-5b9bb5ba2e3795ea5d4356df053be58af70e3984.tar.gz guru-5b9bb5ba2e3795ea5d4356df053be58af70e3984.tar.bz2 guru-5b9bb5ba2e3795ea5d4356df053be58af70e3984.zip |
dev-python/cassowary: update build dependencys
Signed-off-by: Gonçalo Duarte <gonegrier.duarte@gmail.com>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/cassowary/cassowary-0.6.ebuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/dev-python/cassowary/cassowary-0.6.ebuild b/dev-python/cassowary/cassowary-0.6.ebuild index 41dde7b55..3467c79d9 100644 --- a/dev-python/cassowary/cassowary-0.6.ebuild +++ b/dev-python/cassowary/cassowary-0.6.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=no -PYTHON_COMPAT=( python3_{9..12} ) +PYTHON_COMPAT=(python3_{9..12}) inherit linux-mod-r1 distutils-r1 desktop @@ -14,6 +14,11 @@ KEYWORDS="~amd64" DESCRIPTION="Run Windows Applications on Linux as if they are native (Using a VM and FreeRDP)" HOMEPAGE="https://github.com/casualsnek/cassowary" +BDEPEND="dev-python/setuptools + dev-python/build + dev-python/installer +" + RDEPEND="net-misc/freerdp dev-python/libvirt-python dev-python/PyQt5 @@ -29,7 +34,7 @@ MODULES_KERNEL_MIN=5.10 python_compile() { cd "${S}/app-linux" || die - echo "See documenation of cassowary" > README.md || die # Dummy Readme file (solve qa error) + echo "See documenation of cassowary" >README.md || die # Dummy Readme file (solve qa error) sed -i "s/version = 0.5/version = ${PV}/g" setup.cfg || die #version typo upstream ${EPYTHON} -m build --wheel --no-isolation } |