Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/nuitka/
Date: Thu, 04 Aug 2022 18:11:08
Message-Id: 1659636658.0f08ba59a8639793c84865dd48583a934f714c2c.arthurzam@gentoo
1 commit: 0f08ba59a8639793c84865dd48583a934f714c2c
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 4 17:57:38 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 4 18:10:58 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f08ba59
7
8 dev-python/nuitka: add 1.0.1
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/nuitka/Manifest | 1 +
13 dev-python/nuitka/nuitka-1.0.1.ebuild | 49 +++++++++++++++++++++++++++++++++++
14 2 files changed, 50 insertions(+)
15
16 diff --git a/dev-python/nuitka/Manifest b/dev-python/nuitka/Manifest
17 index 23d161b9464d..430fbe87ca49 100644
18 --- a/dev-python/nuitka/Manifest
19 +++ b/dev-python/nuitka/Manifest
20 @@ -1,3 +1,4 @@
21 DIST Nuitka-0.9.5.tar.gz 3858378 BLAKE2B 0b8aa2b191caaa348fda81af41d7a4ad486479742acb929c6e0f0c1ec08b06ca02c5cae46b986c569a8bb792e15fbb90e49db9ece3b226d4e09c054b4311f079 SHA512 4e0def27cc12f4b37debb509c015ba9e56649e82ecede31c142b7c420424364fb243932bd146397bfb82aea1591a06566b346a1b2c6d64cf26cdc59eb77cf875
22 DIST Nuitka-0.9.6.tar.gz 3858273 BLAKE2B 5fbe454c5f5612d94342b1247b463a4248a35123d7d4515dadb4c9f4cf5b6714f55e1972d55f60cfdfe65ca97af5fae2cfc92009b274ccf9adaf944217a39333 SHA512 6088459a12f5506a547d40a4c3f0f16f8ab470ee4875d36dfad97e4ba25d7cdc25cae1115a11dd7752dafe51d6c83d80798c74a110c995e47ba127d9b2afbf81
23 +DIST Nuitka-1.0.1.tar.gz 3893766 BLAKE2B 7d48344231fca1efce8d783a197813a1aa77c992fad84c1a958740287ea8079566c98bb6ac1e017030a6d6dba84bdef6a7711542adaa8a59612aed19da96f425 SHA512 0d3ba38733fdee4f6f4bff80fd2c7729177209e101f0eefe2c5a74fd449d038710eb979e1b313c1534bfe079ea3a7f88cda07ba2977c153032a56db0b75f739c
24 DIST Nuitka-1.0.tar.gz 3892664 BLAKE2B 6772c4af5a4fcee704a0c9b14b25a5ae8ca0d5663f2a60791dd194ae402dc0dccad1fbc3b85089469090f2f10cb0641fe739ef3f1c8c236292ac7e468c0de27d SHA512 4b8d17e49da152ab7c0ad146296375e8f8566bbd730ceac158c8dc9ed1588509384627f538dec347774b890a4715b4ba054b3be66b1b425bb736d35752b5db58
25
26 diff --git a/dev-python/nuitka/nuitka-1.0.1.ebuild b/dev-python/nuitka/nuitka-1.0.1.ebuild
27 new file mode 100644
28 index 000000000000..5b987e13729d
29 --- /dev/null
30 +++ b/dev-python/nuitka/nuitka-1.0.1.ebuild
31 @@ -0,0 +1,49 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +DISTUTILS_USE_PEP517=setuptools
38 +PYTHON_COMPAT=( python3_{8..10} )
39 +
40 +inherit distutils-r1 flag-o-matic optfeature
41 +
42 +DESCRIPTION="Python to native compiler"
43 +HOMEPAGE="https://www.nuitka.net"
44 +SRC_URI="https://nuitka.net/releases/${P^}.tar.gz"
45 +S="${WORKDIR}/${P^}"
46 +
47 +LICENSE="Apache-2.0"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~loong ~x86"
50 +IUSE="test"
51 +RESTRICT="!test? ( test )"
52 +
53 +RDEPEND="dev-util/scons[${PYTHON_USEDEP}]"
54 +BDEPEND="
55 + ${RDEPEND}
56 + test? ( dev-util/ccache )
57 +"
58 +
59 +DOCS=( Changelog.pdf Developer_Manual.pdf README.pdf )
60 +
61 +distutils-r1_src_prepare() {
62 + # remove vendored version of SCons that is Python2 only
63 + # this should be removed when upstream removes support for Python2
64 + rm -vR "${PN}/build/inline_copy/lib/scons-2.3.2/SCons" || die
65 + eapply_user
66 +}
67 +
68 +python_install() {
69 + distutils-r1_python_install
70 + doman doc/nuitka3.1 doc/nuitka3-run.1
71 +}
72 +
73 +python_test() {
74 + append-ldflags -Wl,--no-warn-search-mismatch
75 + ./tests/basics/run_all.py search || die
76 +}
77 +
78 +pkg_postinst() {
79 + optfeature "support for stand-alone executables" app-admin/chrpath
80 +}