summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-03-29 10:48:08 +0200
committerMichał Górny <mgorny@gentoo.org>2018-03-29 12:19:06 +0200
commit4b5d10b5a9b33de02baf4afc3f41d2b072332816 (patch)
tree95bf7dc7357c60dbc68c6e7102767efe919d0f6c /dev-python/llvmlite
parentdev-libs/libclc: Drop 0.2.0_pre20160209 (requires LLVM 3.7) (diff)
downloadgentoo-4b5d10b5a9b33de02baf4afc3f41d2b072332816.tar.gz
gentoo-4b5d10b5a9b33de02baf4afc3f41d2b072332816.tar.bz2
gentoo-4b5d10b5a9b33de02baf4afc3f41d2b072332816.zip
dev-python/llvmlite: Drop 0.12.1 (requires LLVM 3.7)
Diffstat (limited to 'dev-python/llvmlite')
-rw-r--r--dev-python/llvmlite/Manifest1
-rw-r--r--dev-python/llvmlite/llvmlite-0.12.1.ebuild45
2 files changed, 0 insertions, 46 deletions
diff --git a/dev-python/llvmlite/Manifest b/dev-python/llvmlite/Manifest
index 3b0c549c054a..f44d774b2e20 100644
--- a/dev-python/llvmlite/Manifest
+++ b/dev-python/llvmlite/Manifest
@@ -1,4 +1,3 @@
-DIST llvmlite-0.12.1.tar.gz 88271 BLAKE2B 752725d51f9897eb34b89844ed51a6fe11f228ff59699eb0ba222483777a67e72c8b4f33a477d728f88dfecbf49323241bfe2487dc682a1ef4bc05d1c51e12b4 SHA512 f5b448f0ae3d84a0d3438dd7bb4c7f87055e551191c4fefb6282539029d25e8c5e1cca9dec5b90c0d99ec0a720719133b2ccf8b9551aa818c3b4626cc522d8d9
DIST llvmlite-0.16.0.tar.gz 95284 BLAKE2B 6a970e5ad8fcf23e4ed774b83144474c2b3094be875202a441781e93ecf10549542a73cb72980791a5e69f57d1a08768f06fabae921636642651f572fe945554 SHA512 97a251ef9d840fc5a25bd673c644207750f2e653ccad5850dec0a7f1bc77170c6ce85d5cd663ab5c109cb1b51ced9545493d35ef81dfe04a3696b5a0c37fa768
DIST llvmlite-0.19.0.tar.gz 97109 BLAKE2B c4d22d130d12d7e61e9ddc177e28c6d8c3d0a1bffa0fcd672dd237260d80929c9ae0da428165f379c53276ed464b80f7cb9aec4abc4f66e105c7415db150edb0 SHA512 93551bbab519021abdc66ca099b9090b3af54b048adbce8d16f3700c066bbc4f5c24e5234a8a1ac4bfcdf8bf74d0ac52bb7023251ac948af6ef99fbd5a5324c8
DIST llvmlite-0.20.0.tar.gz 96753 BLAKE2B ec9cfa554f44162c0d6e755628603c9afd85642998f56ed49c2ff29c3ef975ef4ce14c6555382ca282b70d71a1ff7347c0b773b339b14345e10d3b9ac96ac55e SHA512 c2e0918e7acfba68922f60889180ec660da13ea199c9e8dfb3ac075c295baeb8c90784a6acc3c463cdd696f8f61c42226548d38db5bd8c4397a23cfa7c7ff764
diff --git a/dev-python/llvmlite/llvmlite-0.12.1.ebuild b/dev-python/llvmlite/llvmlite-0.12.1.ebuild
deleted file mode 100644
index 52f240ea76f0..000000000000
--- a/dev-python/llvmlite/llvmlite-0.12.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DISTUTILS_IN_SOURCE_BUILD="1"
-RESTRICT="test"
-
-DESCRIPTION="Python wrapper around the llvm C++ library"
-HOMEPAGE="https://pypi.python.org/pypi/llvmlite"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc examples"
-
-RDEPEND="
- =sys-devel/llvm-3.7*
- $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7 python3_3)
- "
-DEPEND="${RDEPEND}
- dev-util/cmake"
-
-python_prepare_all() {
- sed -i -e 's/-flto$/-flto -fPIC/' \
- -e 's/-static-libstdc++ //' ffi/Makefile.linux || die
-
- # disable test using installed instance to read version info
- sed -e 's:test_version:_&:' -i llvmlite/tests/test_binding.py || die
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- "${PYTHON}" -m "llvmlite.tests" || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- use examples && local EXAMPLES=( examples/. )
- distutils-r1_python_install_all
-}