dev-python/nuitka: bump version to 0.6.8

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Oz Tiram <oz.tiram@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16014
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
Oz Tiram
2020-05-30 14:04:13 +00:00
committed by Joonas Niilola
parent 1db7d24c7f
commit f783f653f0
2 changed files with 42 additions and 0 deletions

View File

@@ -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

View File

@@ -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
}