public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Virgil Dupras" <vdupras@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/numexpr/
Date: Wed, 20 Feb 2019 21:10:34 +0000 (UTC)	[thread overview]
Message-ID: <1550697021.3fa927ddff6bbec95718ea6e7dc578ac17e9c92a.vdupras@gentoo> (raw)

commit:     3fa927ddff6bbec95718ea6e7dc578ac17e9c92a
Author:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 20 21:10:21 2019 +0000
Commit:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
CommitDate: Wed Feb 20 21:10:21 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fa927dd

dev-python/numexpr: remove old

Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-python/numexpr/Manifest             |  2 --
 dev-python/numexpr/numexpr-2.6.1.ebuild | 58 ---------------------------------
 dev-python/numexpr/numexpr-2.6.2.ebuild | 58 ---------------------------------
 3 files changed, 118 deletions(-)

diff --git a/dev-python/numexpr/Manifest b/dev-python/numexpr/Manifest
index eb78d48b25a..904147a8678 100644
--- a/dev-python/numexpr/Manifest
+++ b/dev-python/numexpr/Manifest
@@ -1,4 +1,2 @@
-DIST numexpr-2.6.1.tar.gz 90819 BLAKE2B 833402388e184bd38c449bcda866f68858f486d5cf30aec29dc5e9827a34a40cb166128a8fb217f0ed1614e0b759cf2164e31cb2a16198ea3e6a216c9fe01853 SHA512 07c88b1788ecad2c59260e7a6a15dfc21d486462a8866091d157286e5ce3b5b77f5fdab401fd30e2a5e4880398af53641d557003497c7d3658421bfcff38c31c
-DIST numexpr-2.6.2.tar.gz 90970 BLAKE2B 85034d7d36bd921df289f817451e7b30071b9d448dc050e4f25afd13315921e3c10d61a41983cf106606e4efd91504e94ca7d8f01d80b230a9f717f41eb687ee SHA512 730e19e61987ecb00bfc3a65db043c88a1311046f2ea5f0a48c93d6a8d7576dbaa166b0b9b0f547e344b21b5c269be1b5aa2097e88aaac55219884c7ece55261
 DIST numexpr-2.6.8.tar.gz 94517 BLAKE2B b41593183d69cd98f81107da5abc3eb59b35c6e61c0dde213c9a201c2776e4684d8af4b1a88c59ca464a7755941de9baf2157af64e8662c4219ae8ece635aefb SHA512 e610a2e3891f12b3a9fd7acb14a0362e0f03084035aa274827ec5e7d2584f2c599493afaf406d8720d915c7ed834dca11b1fbf28c0645077eb63223a2bf52cf9
 DIST numexpr-2.6.9.tar.gz 94419 BLAKE2B 22492c1c59306fbd93174b5bab2ffaa32628c52cc570871bd6192a4589b65b6f679a77c8ec6f37b0a2ac09f004364a2ba87ecc26f459cb2d4b3b2705196b9fdc SHA512 d43845fb63c1e7b645b282d251f7f112784dbc04b61af1ffcbb9646cbe2e3a9f5d38aaa000f7d49880abe44c25205a6ef1e284577d36868220a197cdc0e55166

diff --git a/dev-python/numexpr/numexpr-2.6.1.ebuild b/dev-python/numexpr/numexpr-2.6.1.ebuild
deleted file mode 100644
index 453de3de466..00000000000
--- a/dev-python/numexpr/numexpr-2.6.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1 flag-o-matic
-
-DESCRIPTION="Fast numerical array expression evaluator for Python and NumPy"
-HOMEPAGE="https://github.com/pydata/numexpr"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="mkl"
-
-RDEPEND="
-	>=dev-python/numpy-1.6[${PYTHON_USEDEP}]
-	mkl? ( sci-libs/mkl )"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-	# TODO: mkl can be used but it fails for me
-	# only works with mkl in tree. newer mkl will use pkgconfig
-	if use mkl; then
-		use amd64 && local ext="_lp64"
-		cat > site.cfg <<- _EOF_ || die
-		[mkl]
-		library_dirs = ${MKLROOT}/lib/em64t
-		include_dirs = ${MKLROOT}/include
-		mkl_libs = mkl_solver${ext}, mkl_intel${ext}, \
-		mkl_intel_thread, mkl_core, iomp5
-		_EOF_
-	fi
-
-	distutils-r1_python_prepare_all
-}
-
-python_compile() {
-	if ! python_is_python3; then
-		local -x CFLAGS="${CFLAGS}"
-		append-cflags -fno-strict-aliasing
-	fi
-
-	distutils-r1_python_compile
-}
-
-python_test() {
-	pushd "${BUILD_DIR}"/lib >/dev/null || die
-	"${EPYTHON}" \
-		-c "import sys;import numexpr;sys.exit(0 if numexpr.test() else 1)" \
-		|| die
-	pushd >/dev/null || die
-}

diff --git a/dev-python/numexpr/numexpr-2.6.2.ebuild b/dev-python/numexpr/numexpr-2.6.2.ebuild
deleted file mode 100644
index 93836f5e9c2..00000000000
--- a/dev-python/numexpr/numexpr-2.6.2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1 flag-o-matic
-
-DESCRIPTION="Fast numerical array expression evaluator for Python and NumPy"
-HOMEPAGE="https://github.com/pydata/numexpr"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="mkl"
-
-RDEPEND="
-	>=dev-python/numpy-1.6[${PYTHON_USEDEP}]
-	mkl? ( sci-libs/mkl )"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-	# TODO: mkl can be used but it fails for me
-	# only works with mkl in tree. newer mkl will use pkgconfig
-	if use mkl; then
-		use amd64 && local ext="_lp64"
-		cat > site.cfg <<- _EOF_ || die
-		[mkl]
-		library_dirs = ${MKLROOT}/lib/em64t
-		include_dirs = ${MKLROOT}/include
-		mkl_libs = mkl_solver${ext}, mkl_intel${ext}, \
-		mkl_intel_thread, mkl_core, iomp5
-		_EOF_
-	fi
-
-	distutils-r1_python_prepare_all
-}
-
-python_compile() {
-	if ! python_is_python3; then
-		local -x CFLAGS="${CFLAGS}"
-		append-cflags -fno-strict-aliasing
-	fi
-
-	distutils-r1_python_compile
-}
-
-python_test() {
-	pushd "${BUILD_DIR}"/lib >/dev/null || die
-	"${EPYTHON}" \
-		-c "import sys;import numexpr;sys.exit(0 if numexpr.test() else 1)" \
-		|| die
-	pushd >/dev/null || die
-}


             reply	other threads:[~2019-02-20 21:10 UTC|newest]

Thread overview: 135+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-20 21:10 Virgil Dupras [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-27 21:15 [gentoo-commits] repo/gentoo:master commit in: dev-python/numexpr/ Michał Górny
2024-12-16  6:10 Michał Górny
2024-12-15 19:50 Arthur Zamarin
2024-12-14 20:01 Arthur Zamarin
2024-12-14 14:06 Sam James
2024-12-14 12:57 Arthur Zamarin
2024-12-14 12:15 Arthur Zamarin
2024-12-14 11:49 Sam James
2024-11-24  3:28 Michał Górny
2024-11-01 18:44 Michał Górny
2024-11-01 16:38 Arthur Zamarin
2024-07-27 11:58 Sam James
2024-07-27 11:58 Sam James
2024-07-06 13:12 Jakov Smolić
2024-07-06  7:07 Arthur Zamarin
2024-06-21 16:59 Michał Górny
2024-05-20 16:25 Sam James
2024-04-30  4:42 Michał Górny
2024-04-11 11:59 Michał Górny
2024-04-11 11:59 Michał Górny
2024-04-04 18:52 Michał Górny
2024-02-28 14:04 Michał Górny
2024-02-28  2:32 Ionen Wolkens
2024-02-11 11:11 Sam James
2024-02-11 11:11 Sam James
2024-02-11 11:11 Sam James
2024-02-11 11:11 Sam James
2024-02-11  6:01 Sam James
2024-01-26 16:27 Michał Górny
2024-01-04 11:29 WANG Xuerui
2023-12-30 16:18 Michał Górny
2023-12-30 15:20 Arthur Zamarin
2023-12-30 14:51 Arthur Zamarin
2023-12-30 14:51 Arthur Zamarin
2023-12-30 14:36 Arthur Zamarin
2023-12-30 14:25 Arthur Zamarin
2023-12-30 14:25 Arthur Zamarin
2023-12-11 17:42 Michał Górny
2023-11-22 15:01 Andrew Ammerlaan
2023-10-28 15:24 Michał Górny
2023-10-27 19:55 Arthur Zamarin
2023-10-27 19:55 Arthur Zamarin
2023-10-27 19:33 Sam James
2023-10-27 19:32 Sam James
2023-10-27 19:32 Sam James
2023-10-27 19:32 Sam James
2023-10-26 17:11 Michał Górny
2023-10-26 16:27 Arthur Zamarin
2023-10-15  8:26 Sam James
2023-10-14 19:52 Arthur Zamarin
2023-10-14 18:17 Arthur Zamarin
2023-10-14 18:17 Arthur Zamarin
2023-10-14 16:52 Arthur Zamarin
2023-09-26 16:56 Michał Górny
2023-09-13 15:47 Michał Górny
2023-09-07 20:07 Sam James
2023-09-07 20:07 Sam James
2023-09-07 19:52 Sam James
2023-09-07 19:52 Sam James
2023-08-07  2:36 Michał Górny
2023-07-28 16:14 Michał Górny
2023-05-04 16:22 Michał Górny
2022-11-30  3:09 Michał Górny
2022-11-30  0:52 Sam James
2022-11-29 22:22 Jakov Smolić
2022-11-29  8:16 Arthur Zamarin
2022-11-29  7:30 Arthur Zamarin
2022-11-29  7:28 Arthur Zamarin
2022-11-29  7:25 Arthur Zamarin
2022-10-26 18:42 Arthur Zamarin
2022-07-25 15:01 Agostino Sarubbo
2022-07-25 14:56 Agostino Sarubbo
2022-07-25  6:41 Sam James
2022-07-24 16:29 Sam James
2022-07-24 16:29 Sam James
2022-07-24 16:29 Sam James
2022-06-27 19:08 Arthur Zamarin
2022-05-24 13:25 Andrew Ammerlaan
2022-02-14  8:35 Matt Turner
2022-01-03 22:30 Michał Górny
2022-01-03 19:23 Jakov Smolić
2022-01-03 19:23 Jakov Smolić
2022-01-03 19:00 Arthur Zamarin
2022-01-03 18:34 Arthur Zamarin
2022-01-03 18:07 Arthur Zamarin
2022-01-03 18:07 Arthur Zamarin
2021-12-11 19:10 Arthur Zamarin
2021-12-11 19:10 Arthur Zamarin
2021-12-02 14:17 Michał Górny
2021-12-02 14:17 Michał Górny
2021-12-02 14:17 Michał Górny
2021-12-02  8:12 Michał Górny
2021-11-14 23:51 Sam James
2021-10-24 21:14 Sam James
2021-09-06 23:42 Sam James
2021-09-06 23:37 Sam James
2021-09-06  0:13 Sam James
2021-08-10  4:59 Sam James
2021-07-28 16:14 Sergei Trofimovich
2021-07-19 14:45 Marek Szuba
2021-07-12 22:57 Michał Górny
2021-07-12 22:37 Sam James
2021-07-12 21:50 Sam James
2021-06-05 15:10 Andrew Ammerlaan
2021-06-05 14:40 Michał Górny
2021-03-02  8:56 Michał Górny
2021-03-02  5:55 Sam James
2021-03-02  5:52 Sam James
2020-12-29 11:46 Michał Górny
2020-10-09  8:53 Michał Górny
2020-10-09  8:31 Agostino Sarubbo
2020-08-29  6:13 Michał Górny
2020-08-18  5:28 Sam James
2020-08-14 23:22 Andreas Sturmlechner
2020-08-07 19:19 Sam James
2020-07-06 14:13 Michał Górny
2020-06-06 21:07 Pacho Ramos
2020-03-28 11:21 Michał Górny
2020-01-30 17:31 Michał Górny
2020-01-30 12:14 Agostino Sarubbo
2020-01-14 16:14 Agostino Sarubbo
2019-02-20 21:10 Virgil Dupras
2019-01-17 21:28 Mikle Kolyada
2018-12-29 19:12 Thomas Deutschmann
2018-12-06 20:40 Craig Andrews
2018-12-06 20:40 Craig Andrews
2017-03-11  0:10 Zac Medico
2016-10-26 20:16 David Seifert
2016-02-07 12:00 Justin Lecher
2015-11-11 17:27 Justin Lecher
2015-11-03 10:24 Justin Lecher
2015-09-20 10:24 Justin Lecher
2015-09-19 12:32 Agostino Sarubbo
2015-09-15  6:20 Justin Lecher

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=1550697021.3fa927ddff6bbec95718ea6e7dc578ac17e9c92a.vdupras@gentoo \
    --to=vdupras@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