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: Sun, 02 Jun 2019 07:20:19
Message-Id: 1559459945.b922024d4855447d0b2e2f9e89e3132d963625a4.mgorny@gentoo
1 commit: b922024d4855447d0b2e2f9e89e3132d963625a4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 2 06:21:33 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 2 07:19:05 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b922024d
7
8 dev-python/llvmlite: Remove 0.20.0 (for LLVM 4)
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.20.0.ebuild | 54 ------------------------------
14 2 files changed, 55 deletions(-)
15
16 diff --git a/dev-python/llvmlite/Manifest b/dev-python/llvmlite/Manifest
17 index c4f42becb64..6f4b1d7fa39 100644
18 --- a/dev-python/llvmlite/Manifest
19 +++ b/dev-python/llvmlite/Manifest
20 @@ -1,4 +1,3 @@
21 -DIST llvmlite-0.20.0.tar.gz 96753 BLAKE2B ec9cfa554f44162c0d6e755628603c9afd85642998f56ed49c2ff29c3ef975ef4ce14c6555382ca282b70d71a1ff7347c0b773b339b14345e10d3b9ac96ac55e SHA512 c2e0918e7acfba68922f60889180ec660da13ea199c9e8dfb3ac075c295baeb8c90784a6acc3c463cdd696f8f61c42226548d38db5bd8c4397a23cfa7c7ff764
22 DIST llvmlite-0.22.0.gh.tar.gz 156077 BLAKE2B 1b95a0636807fcf38955b32bd5c7c19784df2cc6708f23624c047f0e9caf4eb2fc26c7a1cb778d7cc7e42b8aeaee1ed43c92bcdaf7eb2e798c25f692b96b786a SHA512 633ec4d294dc246ebff5c7931e9bea86efa28323242411f3f54bc34c99085ebaef477b5bfd8224080790a12b188308ff9662c284b360e1a2939f4fe9b84a9458
23 DIST llvmlite-0.26.0.gh.tar.gz 175536 BLAKE2B 6736e94c13974bb79bcda08ef58dd6d1e67d07a0173b5f2ab1b2fcf9a6e72b2a0b8737da5598023fa0c6db85cfd84f2d429f6077e1342a15b500376addd03c69 SHA512 e6bf76b209f44624fe21551971d422bbee6a6dcdfbd2c42607904be32db1b94cfcb185e70198fced5deadd938208d66d94eed4cea31726ae7f4779d58b57eb48
24 DIST llvmlite-0.28.0.gh.tar.gz 191141 BLAKE2B 23c86c28311a4e8c7f9c209a7ed7816ad5002c26f9fda7a47cf2b54c4578db28ed0781b54a716726db8a7c1abce79a79a99c3f5bf4be2a61d547eb74d06cb507 SHA512 c00c767c80a507975a055088ca4328766c992e7267219dea54376daf5eb11397532b243352976d3569185149007650d5e94839b61aa55502e1991f72b1ba492a
25
26 diff --git a/dev-python/llvmlite/llvmlite-0.20.0.ebuild b/dev-python/llvmlite/llvmlite-0.20.0.ebuild
27 deleted file mode 100644
28 index 4114a4b5a1f..00000000000
29 --- a/dev-python/llvmlite/llvmlite-0.20.0.ebuild
30 +++ /dev/null
31 @@ -1,54 +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 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -
45 -LICENSE="BSD"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
48 -IUSE="examples"
49 -
50 -LLVM_MAX_SLOT=4
51 -
52 -RDEPEND="
53 - dev-python/six[${PYTHON_USEDEP}]
54 - sys-devel/llvm:${LLVM_MAX_SLOT}
55 - sys-libs/zlib:0=
56 - virtual/python-enum34[${PYTHON_USEDEP}]
57 -"
58 -DEPEND="${RDEPEND}
59 - dev-python/setuptools[${PYTHON_USEDEP}]
60 -"
61 -PATCHES=(
62 - "${FILESDIR}"/llvmlite-0.15.0-use-system-six.patch
63 -)
64 -
65 -python_prepare_all() {
66 - # disable -flto, we do not force it against user's wishes
67 - # add -fPIC, needed to link against shared libraries
68 - # plus use those vars to force our CXXFLAGS/LDFLAGS in...
69 - export CXX_FLTO_FLAGS="${CXXFLAGS} -fPIC"
70 - export LD_FLTO_FLAGS="${LDFLAGS} -fPIC"
71 - distutils-r1_python_prepare_all
72 -}
73 -
74 -python_test() {
75 - "${EPYTHON}" runtests.py -v || die "Tests failed under ${EPYTHON}"
76 -}
77 -
78 -python_install_all() {
79 - distutils-r1_python_install_all
80 - if use examples; then
81 - insinto /usr/share/doc/${PF}
82 - doins -r examples
83 - docompress -x /usr/share/doc/${PF}/examples
84 - fi
85 -}