Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/llvmlite/
Date: Sat, 21 Aug 2021 07:56:56
Message-Id: 1629532568.9e42f5beb4f6e604f5159798eb9e06a1ccfa669a.mgorny@gentoo
1 commit: 9e42f5beb4f6e604f5159798eb9e06a1ccfa669a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 21 07:11:33 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 21 07:56:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e42f5be
7
8 dev-python/llvmlite: Bump to 0.37.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/llvmlite/Manifest | 1 +
13 dev-python/llvmlite/llvmlite-0.37.0.ebuild | 60 ++++++++++++++++++++++++++++++
14 2 files changed, 61 insertions(+)
15
16 diff --git a/dev-python/llvmlite/Manifest b/dev-python/llvmlite/Manifest
17 index 6ad26510632..aa5002c97c6 100644
18 --- a/dev-python/llvmlite/Manifest
19 +++ b/dev-python/llvmlite/Manifest
20 @@ -1 +1,2 @@
21 DIST llvmlite-0.36.0.gh.tar.gz 232059 BLAKE2B 2d1ace28003d52271fb20f086ba37bec1f2f72c0092ea7a8fa2a1ee8d30c319f9625938a8ebdb69dec5dec63d5a67b598a071401e5e1db9de973d55fd889dc8a SHA512 a769255f276e429def4d6f8d35d516df3ae3e026fb8b4af33c1695a9ea24c64a84c38943b530756c4ffc5c619611158e947de391bba501223dbf2a4cd21d53c0
22 +DIST llvmlite-0.37.0.gh.tar.gz 223602 BLAKE2B 74f975d5ac1782528f60f1c0d5c6230a02953e0d494d8323e4caa6651f642ad791ad51df44f6593da41edc5c34bd883f144e95b16f9b8962393d16de013fdbc5 SHA512 665f486fd38c9cc4ee91b15fc75f33451ada6391fc9f1b371091ece844693e0cd8e23766400bf76d9879e8f10f53f4e21f8bb19f3ff1e01c4a95ce9004b0884a
23
24 diff --git a/dev-python/llvmlite/llvmlite-0.37.0.ebuild b/dev-python/llvmlite/llvmlite-0.37.0.ebuild
25 new file mode 100644
26 index 00000000000..102521832fc
27 --- /dev/null
28 +++ b/dev-python/llvmlite/llvmlite-0.37.0.ebuild
29 @@ -0,0 +1,60 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +inherit distutils-r1 llvm
37 +
38 +DESCRIPTION="Python wrapper around the llvm C++ library"
39 +HOMEPAGE="https://llvmlite.pydata.org/"
40 +SRC_URI="https://github.com/numba/llvmlite/archive/v${PV/_/}.tar.gz -> ${P/_/}.gh.tar.gz"
41 +S=${WORKDIR}/${P/_/}
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
46 +IUSE="examples"
47 +
48 +LLVM_MAX_SLOT=11
49 +
50 +RDEPEND="
51 + sys-devel/llvm:${LLVM_MAX_SLOT}
52 + sys-libs/zlib:0=
53 +"
54 +DEPEND="${RDEPEND}"
55 +
56 +src_prepare() {
57 + sed -i -e '/max_python/s:3\.10:3.11:' setup.py || die
58 + distutils-r1_src_prepare
59 +}
60 +
61 +python_configure_all() {
62 + # upstream's build system is just horrible, and they ignored the PR
63 + # fixing it, so let's build the shared lib properly using implicit
64 + # make rules
65 +
66 + export LDLIBS=$(llvm-config --libs all)
67 + export CXXFLAGS="$(llvm-config --cxxflags) -fPIC ${CXXFLAGS}"
68 + export LDFLAGS="$(llvm-config --ldflags) ${LDFLAGS}"
69 +
70 + local files=( ffi/*.cpp )
71 + emake -f - <<EOF
72 +ffi/libllvmlite.so: ${files[*]/.cpp/.o}
73 + \$(CXX) -shared \$(CXXFLAGS) \$(LDFLAGS) -o \$@ \$^ \$(LDLIBS)
74 +EOF
75 +
76 + export LLVMLITE_SKIP_LLVM_VERSION_CHECK=1
77 +}
78 +
79 +python_test() {
80 + "${EPYTHON}" runtests.py -v || die "Tests failed under ${EPYTHON}"
81 +}
82 +
83 +python_install_all() {
84 + distutils-r1_python_install_all
85 + if use examples; then
86 + dodoc -r examples
87 + docompress -x /usr/share/doc/${PF}/examples
88 + fi
89 +}