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