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: Mon, 09 Sep 2019 19:02:46
Message-Id: 1568055743.42a477dc49d2a276b1b1d681abef745546c80b91.mgorny@gentoo
1 commit: 42a477dc49d2a276b1b1d681abef745546c80b91
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 2 07:25:54 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 9 19:02:23 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42a477dc
7
8 dev-python/llvmlite: Remove 0.22.0 (for LLVM 5)
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.22.0.ebuild | 55 ------------------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/dev-python/llvmlite/Manifest b/dev-python/llvmlite/Manifest
17 index 6f4b1d7fa39..2091028e060 100644
18 --- a/dev-python/llvmlite/Manifest
19 +++ b/dev-python/llvmlite/Manifest
20 @@ -1,4 +1,3 @@
21 -DIST llvmlite-0.22.0.gh.tar.gz 156077 BLAKE2B 1b95a0636807fcf38955b32bd5c7c19784df2cc6708f23624c047f0e9caf4eb2fc26c7a1cb778d7cc7e42b8aeaee1ed43c92bcdaf7eb2e798c25f692b96b786a SHA512 633ec4d294dc246ebff5c7931e9bea86efa28323242411f3f54bc34c99085ebaef477b5bfd8224080790a12b188308ff9662c284b360e1a2939f4fe9b84a9458
22 DIST llvmlite-0.26.0.gh.tar.gz 175536 BLAKE2B 6736e94c13974bb79bcda08ef58dd6d1e67d07a0173b5f2ab1b2fcf9a6e72b2a0b8737da5598023fa0c6db85cfd84f2d429f6077e1342a15b500376addd03c69 SHA512 e6bf76b209f44624fe21551971d422bbee6a6dcdfbd2c42607904be32db1b94cfcb185e70198fced5deadd938208d66d94eed4cea31726ae7f4779d58b57eb48
23 DIST llvmlite-0.28.0.gh.tar.gz 191141 BLAKE2B 23c86c28311a4e8c7f9c209a7ed7816ad5002c26f9fda7a47cf2b54c4578db28ed0781b54a716726db8a7c1abce79a79a99c3f5bf4be2a61d547eb74d06cb507 SHA512 c00c767c80a507975a055088ca4328766c992e7267219dea54376daf5eb11397532b243352976d3569185149007650d5e94839b61aa55502e1991f72b1ba492a
24 DIST llvmlite-0.29.0.gh.tar.gz 196507 BLAKE2B d4870ca042d446857b7409c0c50c370458747ee744c24611e88da4bc8780c26125b2e8db3db7fe9d4f553f9aae5769b62effe1ac94cfaf234bab54d43c8086e9 SHA512 8735b46b1a3053b89306bf6e05c8c6c375d15371d33635f1d27e5533d7a78a85f773e04b7ed8d39ebab40a892c374839e1324665d81459cb797f760d6d2c81d1
25
26 diff --git a/dev-python/llvmlite/llvmlite-0.22.0.ebuild b/dev-python/llvmlite/llvmlite-0.22.0.ebuild
27 deleted file mode 100644
28 index 7a2336c7b60..00000000000
29 --- a/dev-python/llvmlite/llvmlite-0.22.0.ebuild
30 +++ /dev/null
31 @@ -1,55 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -PYTHON_COMPAT=( python{2_7,3_5,3_6} )
38 -
39 -inherit distutils-r1 llvm
40 -
41 -DESCRIPTION="Python wrapper around the llvm C++ library"
42 -HOMEPAGE="http://llvmlite.pydata.org/"
43 -# upstream slacks in making pypi releases
44 -SRC_URI="https://github.com/numba/llvmlite/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
45 -
46 -LICENSE="BSD"
47 -SLOT="0"
48 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
49 -IUSE="examples"
50 -
51 -LLVM_MAX_SLOT=5
52 -
53 -RDEPEND="
54 - dev-python/six[${PYTHON_USEDEP}]
55 - sys-devel/llvm:${LLVM_MAX_SLOT}
56 - sys-libs/zlib:0=
57 - virtual/python-enum34[${PYTHON_USEDEP}]
58 -"
59 -DEPEND="${RDEPEND}
60 - dev-python/setuptools[${PYTHON_USEDEP}]
61 -"
62 -PATCHES=(
63 - "${FILESDIR}"/llvmlite-0.15.0-use-system-six.patch
64 -)
65 -
66 -python_prepare_all() {
67 - # disable -flto, we do not force it against user's wishes
68 - # add -fPIC, needed to link against shared libraries
69 - # plus use those vars to force our CXXFLAGS/LDFLAGS in...
70 - export CXX_FLTO_FLAGS="${CXXFLAGS} -fPIC"
71 - export LD_FLTO_FLAGS="${LDFLAGS} -fPIC"
72 - distutils-r1_python_prepare_all
73 -}
74 -
75 -python_test() {
76 - "${EPYTHON}" runtests.py -v || die "Tests failed under ${EPYTHON}"
77 -}
78 -
79 -python_install_all() {
80 - distutils-r1_python_install_all
81 - if use examples; then
82 - insinto /usr/share/doc/${PF}
83 - doins -r examples
84 - docompress -x /usr/share/doc/${PF}/examples
85 - fi
86 -}