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, 30 Jun 2022 17:09:51
Message-Id: 1656608978.12e5c2df17197acac4bbfd8f4126a68b8ebae423.arthurzam@gentoo
1 commit: 12e5c2df17197acac4bbfd8f4126a68b8ebae423
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 30 16:42:45 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 30 17:09:38 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12e5c2df
7
8 dev-python/nuitka: add 0.9.2
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.2.ebuild | 49 +++++++++++++++++++++++++++++++++++
14 2 files changed, 50 insertions(+)
15
16 diff --git a/dev-python/nuitka/Manifest b/dev-python/nuitka/Manifest
17 index c23601338341..867af6e8124f 100644
18 --- a/dev-python/nuitka/Manifest
19 +++ b/dev-python/nuitka/Manifest
20 @@ -1,3 +1,4 @@
21 DIST Nuitka-0.8.4.tar.gz 3828278 BLAKE2B dbd6abb945f66ab6a5a359b8370fd3d5d36fbdc2c232b5002356f59ffbfa531180b96467b67a2edbb7a779c75ebe58789e9ae0ff806b5649eea4a5b7d9c0934c SHA512 683918e60f2f65d22911f894c2e4fedeafd9d0ef0cacd48bb66422fa2077f225c7c861186b83b9c0fd50eb965b956a1b26342249b3db2af599250c16fe84a152
22 DIST Nuitka-0.9.1.tar.gz 3856232 BLAKE2B 61d92ce8eba7b6832cb8fab4e612f66cc6c26986e45c540f7bb07e806cffd70b0348d6c2e0163bfe046a16e2002355264dd8f1c43c8e1741d4c55ca84ade136c SHA512 b9dd496dd0239a954935a55bab95c4bdb5cf2943e7660983d4169f5d0fe53d62cb81ee814b04548ce594004eae658f388e85b675ccbdf3efca79376f13d59f66
23 +DIST Nuitka-0.9.2.tar.gz 3856931 BLAKE2B daeb80c4682b8cf86335e13d6441169ec342dbd2fd245819eedd91451e84f28de395014a899614c0129df61316583813670614be0054a36406f8172f90d45bd3 SHA512 42fedde68ece78d01d0c5ec891a7a189e895bb3da6e25f944971f081f3b13b23f6553fe99d02a45a90474bf0044d61921ae88a82c787a3e5db24ac1331ccf3ca
24 DIST Nuitka-0.9.tar.gz 3855240 BLAKE2B 59a508aabb04af0b841879a4de23fe9f9f8ea2588125127834319da21ef22ab530d8e39a2baba1b49043e9997dff9a20004fc548af5b09456b5eb3cd8f1d30a8 SHA512 ae2903e89233b7944e1ee1aa846897d30c352302bb8b064a31ab69237dc15ed0e451bba63db5530968e10f60b8da745bf7d7f1f130ff039d9aac2329f628f32f
25
26 diff --git a/dev-python/nuitka/nuitka-0.9.2.ebuild b/dev-python/nuitka/nuitka-0.9.2.ebuild
27 new file mode 100644
28 index 000000000000..5b987e13729d
29 --- /dev/null
30 +++ b/dev-python/nuitka/nuitka-0.9.2.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 +}