Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/nuitka/
Date: Tue, 28 Jan 2020 15:03:47
Message-Id: 1580223804.8c90d17fad9a49b3bd2073262b07a1483aea1970.juippis@gentoo
1 commit: 8c90d17fad9a49b3bd2073262b07a1483aea1970
2 Author: Oz Tiram <oz.tiram <AT> gmail <DOT> com>
3 AuthorDate: Sat Jan 18 09:18:23 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 28 15:03:24 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c90d17f
7
8 dev-python/nuitka: bump version to 0.6.6
9
10 Closes: https://bugs.gentoo.org/705392
11 Package-Manager: Portage-2.3.79, Repoman-2.3.16
12 Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
13 Closes: https://github.com/gentoo/gentoo/pull/14374
14 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
15
16 dev-python/nuitka/Manifest | 1 +
17 dev-python/nuitka/nuitka-0.6.6.ebuild | 34 ++++++++++++++++++++++++++++++++++
18 2 files changed, 35 insertions(+)
19
20 diff --git a/dev-python/nuitka/Manifest b/dev-python/nuitka/Manifest
21 index 89ce04d4a34..875fa625e38 100644
22 --- a/dev-python/nuitka/Manifest
23 +++ b/dev-python/nuitka/Manifest
24 @@ -1,2 +1,3 @@
25 DIST Nuitka-0.6.4.tar.gz 2211662 BLAKE2B 4831782516503f128911321bb9755db9ea7d48fe0438dbff1fbc9ded3c690dc0d2f4dd14f0f5a5b8c66cb2b8e8d380e9658b590a48316497b42f78e68a8ae5ea SHA512 89e882b5fa37fd5a1357f69e13db7c340bc6d5471e18b7796cc1b7bd9970c480f8fecb9a7b11e19e41e936c5f90ef204b7409146a362beb6946f3d8f88cdf93e
26 DIST Nuitka-0.6.5.tar.gz 2239333 BLAKE2B 687b82863ad5cb78d1c1b3b353ecee8a44eccbcd73eee70181bfe274d7e9d6011323bde9e320cd13c8c67deeef86de5e93c61592b56ca9fa9412fcfa3d152a06 SHA512 785dc60b4a42061401066ed510a3bc82988a0f8947372dcbd381c7b9cf6c2907c9cc0510c8188b0526c7fa3d9f3ec43207b46190a8485cf1e546b5316fa6dbdb
27 +DIST Nuitka-0.6.6.tar.gz 2276002 BLAKE2B 74ada1032d5eef3068e6c0fbd088437014de8752b71ce98b90bb868bb7241efe301d4fa1ef661f00f54730ca3d27470cc6c804bc2b394085349ad9a1aed0feb4 SHA512 82752105fc5b5d5d09d460ba25a6424420ff055ea841a32c6e32ec9099870ceefe06dcadab347fe689cec94f4d8891a4125910f7cff504a8aa736139b29c2a8b
28
29 diff --git a/dev-python/nuitka/nuitka-0.6.6.ebuild b/dev-python/nuitka/nuitka-0.6.6.ebuild
30 new file mode 100644
31 index 00000000000..08ab6c59bf2
32 --- /dev/null
33 +++ b/dev-python/nuitka/nuitka-0.6.6.ebuild
34 @@ -0,0 +1,34 @@
35 +# Copyright 1999-2020 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +DISTUTILS_USE_SETUPTOOLS="rdepend"
41 +
42 +PYTHON_COMPAT=( python3_{6,7} )
43 +
44 +inherit distutils-r1 eutils python-utils-r1
45 +
46 +DESCRIPTION="Python to native compiler"
47 +HOMEPAGE="https://www.nuitka.net"
48 +SRC_URI="https://nuitka.net/releases/${P^}.tar.gz"
49 +
50 +LICENSE="Apache-2.0"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~x86"
53 +
54 +BDEPEND="dev-util/scons[${PYTHON_USEDEP}]"
55 +
56 +RDEPEND="${BDEPEND}
57 + dev-python/appdirs[${PYTHON_USEDEP}]"
58 +
59 +S="${WORKDIR}/${P^}"
60 +
61 +python_install() {
62 + distutils-r1_python_install
63 + python_optimize
64 +}
65 +
66 +pkg_postinst() {
67 + optfeature "support for stand-alone executables" app-admin/chrpath
68 +}