diff options
-rw-r--r-- | dev-python/nuitka/Manifest | 1 | ||||
-rw-r--r-- | dev-python/nuitka/nuitka-0.6.8.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/dev-python/nuitka/Manifest b/dev-python/nuitka/Manifest index a8c764c28adf..8d5ea5c5adca 100644 --- a/dev-python/nuitka/Manifest +++ b/dev-python/nuitka/Manifest @@ -1 +1,2 @@ DIST Nuitka-0.6.7.tar.gz 2284868 BLAKE2B 91c2e5362697d8c14f0627d757c70922aff3ccc2c9eb359f6b303e9ae7580d594106328b9fe644e8f668018aae496e50041948bdfbf59c27fe1ce0e50eb90177 SHA512 9f3dbfe67f2618a5363aa47974fe0199428a4798e79ebfcf78f15365048a6c676b5b2c9d5569adcd264389c66f643b3190647dc17acb76e59b9b95ee6762f5a2 +DIST Nuitka-0.6.8.tar.gz 2390759 BLAKE2B 5f207a2dcac6a2825143268d3c28eab113705c050b67dbbfd3b655a0221ca3c04b2b206f3e8a85b4f17d28db52c11f19ea6260d2e7853c382942a76a15dc1973 SHA512 d9a9add759736c35fda57bbf82382effbcebce954228e56bf7c124502b96513f17a7083ded66da3ee33c52443b18c92839bff59a5c081d8fe44d6eec6c15fe54 diff --git a/dev-python/nuitka/nuitka-0.6.8.ebuild b/dev-python/nuitka/nuitka-0.6.8.ebuild new file mode 100644 index 000000000000..52e9e3fb9f44 --- /dev/null +++ b/dev-python/nuitka/nuitka-0.6.8.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS="rdepend" + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 eutils python-utils-r1 + +DESCRIPTION="Python to native compiler" +HOMEPAGE="https://www.nuitka.net" +SRC_URI="https://nuitka.net/releases/${P^}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="doc" + +BDEPEND="dev-util/scons[${PYTHON_USEDEP}]" + +RDEPEND="${BDEPEND} + dev-python/appdirs[${PYTHON_USEDEP}]" + +DOCS=( Changelog.pdf Developer_Manual.pdf README.pdf ) +S="${WORKDIR}/${P^}" + +python_install() { + distutils-r1_python_install + python_optimize + doman doc/nuitka.1 + doman doc/nuitka3.1 + doman doc/nuitka3-run.1 + doman doc/nuitka-run.1 +} + +pkg_postinst() { + optfeature "support for stand-alone executables" app-admin/chrpath +} |