public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/numexpr/
Date: Sun, 20 Sep 2015 10:24:05 +0000 (UTC)	[thread overview]
Message-ID: <1442744643.795cd3a02f7ee23a17c551af217eace5c64308cd.jlec@gentoo> (raw)

commit:     795cd3a02f7ee23a17c551af217eace5c64308cd
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 20 10:22:18 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Sep 20 10:24:03 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=795cd3a0

dev-python/numexpr: Clean old

Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/numexpr/Manifest             |  2 --
 dev-python/numexpr/numexpr-2.4.1.ebuild | 48 ---------------------------------
 dev-python/numexpr/numexpr-2.4.ebuild   | 48 ---------------------------------
 3 files changed, 98 deletions(-)

diff --git a/dev-python/numexpr/Manifest b/dev-python/numexpr/Manifest
index 4d021ca..205b8dd 100644
--- a/dev-python/numexpr/Manifest
+++ b/dev-python/numexpr/Manifest
@@ -1,4 +1,2 @@
-DIST numexpr-2.4.1.tar.gz 84990 SHA256 5b53a9e9e50f33e2e562b4ae9f88066c9e54a3bd7c144d29d0067b87856815b4 SHA512 d5aa34532dd1a504b3c78cff07def4114201560c04ce30d033a4701eb95961c53582b71291569cd10f22d50b00edc5dbb4e1b6454d8597c68f231c9c576471b7 WHIRLPOOL 9bfde967bc772111e1cc4a8e5931dc31896b7da4b43c33b8ae7bb3701f782e895b434ee4cddabe2a90abfe90cc240322b92dc224b7917123d90f2d9f9044cea4
 DIST numexpr-2.4.3.tar.gz 85171 SHA256 3ae7191c89df40db6b0a8637a4dace7c5956bc910793a53225f985f3b443c722 SHA512 b33984072fddd4303980be8533e1348b48ff27de5e150029147e3666ce6bb9e1147dbc45eb0ef22506aebaea6fb366d65ff01221235f9b9935d78ea70ba9aa53 WHIRLPOOL ac5981bac643b825d6ab2fbd6c46b6d73ad62374490e5f05a71fc0b9c4269ab401617da98079e1604b11f454863e64e009a2acc00b7b30499b20eff73efe033f
 DIST numexpr-2.4.4.tar.gz 87133 SHA256 dfa2fad1af040e93a8022fbe4437f2183bf80e5f64d466381ad589308a73565b SHA512 abc53f8aafb39e55b6b811c1f08c01eefca23c36fb9d20a82484ef658c8062ffe51d8841d6651f43fb7f8cea6420270623df6ba9f98a95a0f7a09e6ceef91b35 WHIRLPOOL 9ab19609189e866a11c03b0aeaa3b93124d8018d53e8dec641721eff39eb73c969c34c457209d63988361ffadef13a205ba5b71d19ad120e9f44313f42c7cd1b
-DIST numexpr-2.4.tar.gz 84770 SHA256 1b63a5ce11c10d36433e2a74e2e4c360a4e004618507778881659e80a912fc58 SHA512 bebc3e81505f4c2e7d3c6f7cf2c02fe1ce07186c81de743db43399f2f81a135125a675dbd7a631fea55aaea1d092ab9a84539676027ce31f6fb7b1fca23cf253 WHIRLPOOL 1cf2e98f8e092505c1098f0c55a1b05488146164afa3bfec351cbe8ed44fa401edab503884ffa2b599a5a8db86e4bda94229a6d147aba60f554141ec85f37273

diff --git a/dev-python/numexpr/numexpr-2.4.1.ebuild b/dev-python/numexpr/numexpr-2.4.1.ebuild
deleted file mode 100644
index f115595..0000000
--- a/dev-python/numexpr/numexpr-2.4.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit distutils-r1
-
-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[${PYTHON_USEDEP}]
-	mkl? ( sci-libs/mkl )"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-DOCS=( ANNOUNCE.rst AUTHORS.txt README.rst RELEASE_NOTES.rst )
-
-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
-		local ext
-		use amd64 && ext=_lp64
-		cat <<- EOF > "${S}"/site.cfg
-		[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_test() {
-	cd "${BUILD_DIR}"/lib* || die
-	"${PYTHON}" -c "import numexpr; numexpr.test()" || die
-}

diff --git a/dev-python/numexpr/numexpr-2.4.ebuild b/dev-python/numexpr/numexpr-2.4.ebuild
deleted file mode 100644
index 83c7c98..0000000
--- a/dev-python/numexpr/numexpr-2.4.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit distutils-r1
-
-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[${PYTHON_USEDEP}]
-	mkl? ( sci-libs/mkl )"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-DOCS=( ANNOUNCE.rst AUTHORS.txt README.rst RELEASE_NOTES.rst )
-
-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
-		local ext
-		use amd64 && ext=_lp64
-		cat <<- EOF > "${S}"/site.cfg
-		[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_test() {
-	cd "${BUILD_DIR}"/lib* || die
-	"${PYTHON}" -c "import numexpr; numexpr.test()" || die
-}


             reply	other threads:[~2015-09-20 10:24 UTC|newest]

Thread overview: 154+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-20 10:24 Justin Lecher [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-10-26  1:05 [gentoo-commits] repo/gentoo:master commit in: dev-python/numexpr/ Sam James
2025-10-22  8:34 Arthur Zamarin
2025-10-21 21:42 Sam James
2025-10-14  6:48 Michał Górny
2025-10-14  6:48 Michał Górny
2025-10-01  3:10 Michał Górny
2025-09-25 10:01 Michał Górny
2025-09-25 10:01 Michał Górny
2025-09-12  4:29 Michał Górny
2025-09-11  4:59 Sam James
2025-09-11  4:56 Michał Górny
2025-07-17 11:12 Sam James
2025-07-05 15:19 Arthur Zamarin
2025-07-05 14:27 Arthur Zamarin
2025-07-04  9:42 Arthur Zamarin
2025-07-03  5:29 Sam James
2025-06-28 13:59 Arthur Zamarin
2025-06-28  8:11 Sam James
2025-06-10  1:59 Michał Górny
2025-02-27 21:15 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-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-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=1442744643.795cd3a02f7ee23a17c551af217eace5c64308cd.jlec@gentoo \
    --to=jlec@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