diff options
author | Paul Healy <lmiphay@gmail.com> | 2023-06-04 11:51:08 +0100 |
---|---|---|
committer | Paul Healy <lmiphay@gmail.com> | 2023-06-04 11:51:08 +0100 |
commit | 8a95fba0ec3dd82cf53876196dc4e4668a609f7a (patch) | |
tree | bb01de0116f0fcbbb29050ec2483d1ff3091772e /games-simulation/autobuild/autobuild-3.9.2.ebuild | |
parent | switch to py11 (diff) | |
download | lmiphay-8a95fba0ec3dd82cf53876196dc4e4668a609f7a.tar.gz lmiphay-8a95fba0ec3dd82cf53876196dc4e4668a609f7a.tar.bz2 lmiphay-8a95fba0ec3dd82cf53876196dc4e4668a609f7a.zip |
revbump, py11
Signed-off-by: Paul Healy <lmiphay@gmail.com>
Diffstat (limited to 'games-simulation/autobuild/autobuild-3.9.2.ebuild')
-rw-r--r-- | games-simulation/autobuild/autobuild-3.9.2.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/games-simulation/autobuild/autobuild-3.9.2.ebuild b/games-simulation/autobuild/autobuild-3.9.2.ebuild new file mode 100644 index 0000000..17ee976 --- /dev/null +++ b/games-simulation/autobuild/autobuild-3.9.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=(python3_11) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit eutils distutils-r1 git-r3 + +DESCRIPTION="A framework for building packages and for managing the dependencies" +HOMEPAGE="https://github.com/secondlife/autobuild" +SRC_URI="https://github.com/secondlife/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND=" + ${PYTHON_DEPS} +" +DEPEND=" + dev-python/pydot[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + games-simulation/llbase[${PYTHON_USEDEP}] + ${RDEPEND} +" + +DOCS="README.md" + +distutils_enable_tests nose |