public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/llvmlite/
Date: Sat,  9 Dec 2017 08:36:40 +0000 (UTC)	[thread overview]
Message-ID: <1512808585.a97a7a441d0316e61bd6a06cc9efc4f232e80b32.mgorny@gentoo> (raw)

commit:     a97a7a441d0316e61bd6a06cc9efc4f232e80b32
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec  9 08:23:22 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec  9 08:36:25 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a97a7a44

dev-python/llvmlite: Bump to 0.21.0 (for LLVM 5)

 dev-python/llvmlite/Manifest               |  1 +
 dev-python/llvmlite/llvmlite-0.21.0.ebuild | 54 ++++++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/dev-python/llvmlite/Manifest b/dev-python/llvmlite/Manifest
index efd237ebef7..c0046c4cb02 100644
--- a/dev-python/llvmlite/Manifest
+++ b/dev-python/llvmlite/Manifest
@@ -2,3 +2,4 @@ DIST llvmlite-0.12.1.tar.gz 88271 SHA256 3ce71beebd4cbc7a49abe4eadfc99725477fd43
 DIST llvmlite-0.16.0.tar.gz 95284 SHA256 ef3bae32482f91742d91571b5225a6943804291eb9405b98090a7b50942ec5e9 SHA512 97a251ef9d840fc5a25bd673c644207750f2e653ccad5850dec0a7f1bc77170c6ce85d5cd663ab5c109cb1b51ced9545493d35ef81dfe04a3696b5a0c37fa768 WHIRLPOOL ab629a507c2cc27756109162469a0eed8f4dbb059b7c3957df65e059c6e613581fed6380b58686812ed5378a9d2ebe5f754e6de1a5132c89a323b221da203e91
 DIST llvmlite-0.19.0.tar.gz 97109 SHA256 fbaeb3d584e0f6bac82a33776e9b5f0b5b4a3415a03edeff5d66f6176f0edbe2 SHA512 93551bbab519021abdc66ca099b9090b3af54b048adbce8d16f3700c066bbc4f5c24e5234a8a1ac4bfcdf8bf74d0ac52bb7023251ac948af6ef99fbd5a5324c8 WHIRLPOOL ee6170c09ac897862fee4705b8131f6dfb97a980c8aec73a9316f7d0d57dfeb4a0e3bd629f536cfeb51df682b4838b1c4e267ff3ebaf54f2f5db7193062014f5
 DIST llvmlite-0.20.0.tar.gz 96753 SHA256 b2f174848df16bb9195a07fec102110a06d018da736bd9b3570a54d44c797c29 SHA512 c2e0918e7acfba68922f60889180ec660da13ea199c9e8dfb3ac075c295baeb8c90784a6acc3c463cdd696f8f61c42226548d38db5bd8c4397a23cfa7c7ff764 WHIRLPOOL 8eae219cce74a106ddf48b771b210589775a4fea37f8267ed7e496b078d92503fe955edc371326cf3261d9707461f996585209cd30183cc81f5b6f204b1aa293
+DIST llvmlite-0.21.0.tar.gz 96462 BLAKE2B 8458037ca49c2c7035cc65539c1dc933f26c694e07502bfb0f37adfa389c56d715b53310fa977461fa75d7f826384a9c408682bee942e7cda6a299b16192c183 SHA512 25fb0986faf558995e6405a77d675d1dfcda2f79f8e6f5183d66a16f7b1f323df7eefb54455d9a15412c4eb88cd2e160d9f45038b7d97da6fffe78d7adc0e296

diff --git a/dev-python/llvmlite/llvmlite-0.21.0.ebuild b/dev-python/llvmlite/llvmlite-0.21.0.ebuild
new file mode 100644
index 00000000000..957abcd3634
--- /dev/null
+++ b/dev-python/llvmlite/llvmlite-0.21.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1 llvm
+
+DESCRIPTION="Python wrapper around the llvm C++ library"
+HOMEPAGE="http://llvmlite.pydata.org/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="examples"
+
+LLVM_MAX_SLOT=5
+
+RDEPEND="
+	dev-python/six[${PYTHON_USEDEP}]
+	sys-devel/llvm:${LLVM_MAX_SLOT}
+	sys-libs/zlib:0=
+	virtual/python-enum34[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+"
+PATCHES=(
+	"${FILESDIR}"/llvmlite-0.15.0-use-system-six.patch
+)
+
+python_prepare_all() {
+	# disable -flto, we do not force it against user's wishes
+	# add -fPIC, needed to link against shared libraries
+	# plus use those vars to force our CXXFLAGS/LDFLAGS in...
+	export CXX_FLTO_FLAGS="${CXXFLAGS} -fPIC"
+	export LD_FLTO_FLAGS="${LDFLAGS} -fPIC"
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	"${EPYTHON}" runtests.py -v || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+	distutils-r1_python_install_all
+	if use examples; then
+		insinto /usr/share/doc/${PF}
+		doins -r examples
+		docompress -x /usr/share/doc/${PF}/examples
+	fi
+}


             reply	other threads:[~2017-12-09  8:36 UTC|newest]

Thread overview: 86+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-09  8:36 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-09-12 20:29 [gentoo-commits] repo/gentoo:master commit in: dev-python/llvmlite/ Michał Górny
2021-09-12 17:38 Sam James
2021-09-12  7:31 Sam James
2021-09-12  7:24 Agostino Sarubbo
2021-09-12  7:09 Agostino Sarubbo
2021-08-21  7:56 Michał Górny
2021-05-10 18:08 Michał Górny
2021-05-06 10:01 Sam James
2021-05-04 19:13 Sam James
2021-04-13  7:36 Agostino Sarubbo
2021-03-13  8:38 Michał Górny
2021-03-03 13:54 Sam James
2021-01-21  7:40 Agostino Sarubbo
2020-12-01 10:32 Michał Górny
2020-09-19  7:21 Michał Górny
2020-09-19  2:19 Sam James
2020-09-18  8:26 Agostino Sarubbo
2020-09-18  7:45 Agostino Sarubbo
2020-09-18  7:29 Agostino Sarubbo
2020-08-13  9:22 Michał Górny
2020-07-30 22:11 Michał Górny
2020-07-19  7:37 Agostino Sarubbo
2020-07-18 23:30 Sam James
2020-07-09 10:55 Michał Górny
2020-06-11  8:01 Michał Górny
2020-05-11  9:04 Michał Górny
2020-02-05 16:24 Michał Górny
2019-12-09 19:20 Michał Górny
2019-10-11 14:13 Michał Górny
2019-09-16 22:13 Aaron Bauman
2019-09-13 15:47 Mikle Kolyada
2019-09-10  7:10 Agostino Sarubbo
2019-09-10  7:06 Agostino Sarubbo
2019-09-09 19:02 Michał Górny
2019-06-02  7:20 Michał Górny
2019-05-30 11:37 Michał Górny
2019-05-30 11:37 Michał Górny
2019-05-30 11:37 Michał Górny
2019-05-22 12:47 Michał Górny
2019-05-13 17:36 Aaron Bauman
2019-05-11 11:25 Mikle Kolyada
2019-03-13  7:37 Michał Górny
2019-02-02 10:31 Michał Górny
2019-01-17 21:09 Mikle Kolyada
2018-12-30  9:53 Michał Górny
2018-12-30  9:49 Michał Górny
2018-12-29 19:12 Thomas Deutschmann
2018-12-26 13:34 Michał Górny
2018-11-28  9:04 Michał Górny
2018-09-19 14:39 Michał Górny
2018-09-19 14:39 Michał Górny
2018-09-11  7:25 Michał Górny
2018-09-11  7:25 Michał Górny
2018-07-21  5:55 Michał Górny
2018-07-21  0:06 Mikle Kolyada
2018-07-07  5:31 Michał Górny
2018-07-07  5:31 Michał Górny
2018-06-26 17:17 Mike Gilbert
2018-06-01 18:38 Michał Górny
2018-04-25 14:36 Michał Górny
2018-04-11 16:19 Michał Górny
2018-03-29 10:19 Michał Górny
2018-02-16 12:20 Michał Górny
2018-01-29  1:06 Thomas Deutschmann
2018-01-17 22:14 Mikle Kolyada
2017-12-29 18:54 Mikle Kolyada
2017-12-28 18:45 Thomas Deutschmann
2017-11-29 17:50 Michał Górny
2017-09-16  8:11 Michał Górny
2017-07-22  6:37 Michał Górny
2017-07-21  0:23 Sebastien Fabbro
2017-04-22 21:36 Michał Górny
2017-04-22 21:36 Michał Górny
2017-04-10 17:36 Michał Górny
2017-04-10 17:36 Michał Górny
2016-12-26 10:55 Aaron Bauman
2016-11-15 14:32 Michał Górny
2016-09-02 20:53 Patrick Lauer
2016-07-21 13:15 Patrick Lauer
2016-06-08 13:46 Patrick Lauer
2016-05-19  4:13 Benda XU
2016-04-06  5:29 Patrick Lauer
2016-03-05 10:33 Patrick Lauer
2016-03-05 10:33 Patrick Lauer
2015-11-20 14:11 Benda XU

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1512808585.a97a7a441d0316e61bd6a06cc9efc4f232e80b32.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox