Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bottleneck/
Date: Sun, 19 Jan 2020 19:54:23
Message-Id: 1579463652.1f5c1a4b00f79b9bc042e49021a5ad0359dc02e2.pacho@gentoo
1 commit: 1f5c1a4b00f79b9bc042e49021a5ad0359dc02e2
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 19 19:49:12 2020 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 19 19:54:12 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f5c1a4b
7
8 (cat_pn): No reverse dep needs py2 support
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild | 29 ++++++++++++++++++++++++
14 1 file changed, 29 insertions(+)
15
16 diff --git a/dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild b/dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild
17 new file mode 100644
18 index 00000000000..833b7c25e77
19 --- /dev/null
20 +++ b/dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild
21 @@ -0,0 +1,29 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +PYTHON_COMPAT=( python3_{6,7} )
27 +
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="Fast NumPy array functions written in Cython"
31 +HOMEPAGE="https://pypi.org/project/Bottleneck/"
32 +SRC_URI="https://github.com/kwgoodman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
33 +
34 +SLOT="0"
35 +LICENSE="BSD"
36 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
37 +IUSE="test"
38 +RESTRICT="!test? ( test )"
39 +
40 +RDEPEND="
41 + >=dev-python/numpy-1.9.1[${PYTHON_USEDEP}]
42 + sci-libs/scipy[${PYTHON_USEDEP}]
43 +"
44 +DEPEND="${RDEPEND}
45 + dev-python/setuptools[${PYTHON_USEDEP}]
46 + test? ( dev-python/nose )"
47 +
48 +python_test() {
49 + ${EPYTHON} ./tools/test-installed-bottleneck.py
50 +}