diff options
author | SPRATAY <spratay+linux@getgoogleoff.me> | 2024-01-04 23:07:11 +0300 |
---|---|---|
committer | SPRATAY <spratay+linux@getgoogleoff.me> | 2024-01-04 23:07:11 +0300 |
commit | 5a4ee4ee4d3a8db696bbea69063b320fda7e49e2 (patch) | |
tree | f14eedc7d7b719888fa3193af9960147b497083e /x11-wm/qtile-extras/qtile-extras-0.23.0.ebuild | |
parent | dev-go/lichen: drop package since it is in the main tree (diff) | |
download | guru-5a4ee4ee4d3a8db696bbea69063b320fda7e49e2.tar.gz guru-5a4ee4ee4d3a8db696bbea69063b320fda7e49e2.tar.bz2 guru-5a4ee4ee4d3a8db696bbea69063b320fda7e49e2.zip |
x11-wm/qtile-extras: new package, add 0.23.0
Signed-off-by: SPRATAY <spratay+linux@getgoogleoff.me>
Diffstat (limited to 'x11-wm/qtile-extras/qtile-extras-0.23.0.ebuild')
-rw-r--r-- | x11-wm/qtile-extras/qtile-extras-0.23.0.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/x11-wm/qtile-extras/qtile-extras-0.23.0.ebuild b/x11-wm/qtile-extras/qtile-extras-0.23.0.ebuild new file mode 100644 index 000000000..dcfb54729 --- /dev/null +++ b/x11-wm/qtile-extras/qtile-extras-0.23.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=no +PYTHON_COMPAT=(python3_{9..12}) + +inherit distutils-r1 desktop + +SRC_URI="https://github.com/elParaguayo/qtile-extras/archive/${PV}.tar.gz -> ${P}.tar.gz" +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 + dev-python/setuptools-scm + dev-python/wheel +" + +RDEPEND="x11-wm/qtile" + +DEPEND="${RDEPEND}" + +LICENSE="MIT" +SLOT="0" +IUSE="" + +export SETUPTOOLS_SCM_PRETEND_VERSION=7.0.0 + +python_compile() { + ${EPYTHON} -m build --wheel --no-isolation +} + +python_install() { + ${EPYTHON} -m installer --destdir="${D}" dist/*.whl +} |