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/numexpr/
Date: Sat, 29 Aug 2020 06:13:33
Message-Id: 1598680753.2bfbd1ba0e29073b69461f1c86d664577362ee5a.mgorny@gentoo
1 commit: 2bfbd1ba0e29073b69461f1c86d664577362ee5a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 29 05:51:19 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 29 05:59:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bfbd1ba
7
8 dev-python/numexpr: Bump to 2.7.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/numexpr/Manifest | 1 +
13 dev-python/numexpr/numexpr-2.7.2.ebuild | 50 +++++++++++++++++++++++++++++++++
14 2 files changed, 51 insertions(+)
15
16 diff --git a/dev-python/numexpr/Manifest b/dev-python/numexpr/Manifest
17 index 61bcc6c3ae5..278b612c5d9 100644
18 --- a/dev-python/numexpr/Manifest
19 +++ b/dev-python/numexpr/Manifest
20 @@ -1 +1,2 @@
21 DIST numexpr-2.7.1.tar.gz 99196 BLAKE2B 14912a0a50a46c085215f0a40467371859aedeaaf999f747d735df4c244529709b26c1257d3c5c05ed0ceea801d117bf6a330dbd30573fe274522e1101e2f4b3 SHA512 e8852ed1c7bd7f7e94ce5ad78de7a8a7ca30a5873dbfa4fae0a179fbcf956b1e66f2a09c1785f0d8d9e83a5cba359a55840a21784bc225aa01915a322709d370
22 +DIST numexpr-2.7.2.gh.tar.gz 118982 BLAKE2B b032f00c36ffadb88cf9a4cd6323137b920bce48ec73f88f006d3186f9a8c1d75a11ceb6bd32f412cba5c10cbe3cb518cdbdb19ef022100fcc408fc82ede9881 SHA512 41946df6d642e226b4a38b11d5db67ef91d63d56b33d3b52f09377c022d236ea4e9a5aaaf380737d18405ee25109260ae60f79d0c9465b95de14465f41c40075
23
24 diff --git a/dev-python/numexpr/numexpr-2.7.2.ebuild b/dev-python/numexpr/numexpr-2.7.2.ebuild
25 new file mode 100644
26 index 00000000000..81aa1d3663c
27 --- /dev/null
28 +++ b/dev-python/numexpr/numexpr-2.7.2.ebuild
29 @@ -0,0 +1,50 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{6..9} )
36 +PYTHON_REQ_USE="threads(+)"
37 +
38 +inherit distutils-r1 flag-o-matic
39 +
40 +DESCRIPTION="Fast numerical array expression evaluator for Python and NumPy"
41 +HOMEPAGE="https://github.com/pydata/numexpr"
42 +SRC_URI="
43 + https://github.com/pydata/numexpr/archive/v${PV}.tar.gz
44 + -> ${P}.gh.tar.gz"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
49 +IUSE="mkl"
50 +
51 +RDEPEND="
52 + >=dev-python/numpy-1.6[${PYTHON_USEDEP}]
53 + mkl? ( sci-libs/mkl )
54 +"
55 +
56 +python_prepare_all() {
57 + # TODO: mkl can be used but it fails for me
58 + # only works with mkl in tree. newer mkl will use pkgconfig
59 + if use mkl; then
60 + use amd64 && local ext="_lp64"
61 + cat > site.cfg <<- _EOF_ || die
62 + [mkl]
63 + library_dirs = ${MKLROOT}/lib/em64t
64 + include_dirs = ${MKLROOT}/include
65 + mkl_libs = mkl_solver${ext}, mkl_intel${ext}, \
66 + mkl_intel_thread, mkl_core, iomp5
67 + _EOF_
68 + fi
69 +
70 + distutils-r1_python_prepare_all
71 +}
72 +
73 +python_test() {
74 + pushd "${BUILD_DIR}"/lib >/dev/null || die
75 + "${EPYTHON}" \
76 + -c "import sys,numexpr; sys.exit(0 if numexpr.test().wasSuccessful() else 1)" \
77 + || die
78 + pushd >/dev/null || die
79 +}