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