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/bottleneck/
Date: Tue, 28 Jan 2020 21:30:33
Message-Id: 1580247010.2a558c6b8aeee939e9ac3f804a9528a375f4dad9.mgorny@gentoo
1 commit: 2a558c6b8aeee939e9ac3f804a9528a375f4dad9
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 28 20:53:24 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 28 21:30:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a558c6b
7
8 dev-python/bottleneck: Combine ebuilds (remove py2)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild | 2 +-
13 dev-python/bottleneck/bottleneck-1.2.1.ebuild | 29 ------------------------
14 2 files changed, 1 insertion(+), 30 deletions(-)
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 index 833b7c25e77..ffe790c6fe3 100644
18 --- a/dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild
19 +++ b/dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild
20 @@ -12,7 +12,7 @@ SRC_URI="https://github.com/kwgoodman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
21
22 SLOT="0"
23 LICENSE="BSD"
24 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
25 +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
26 IUSE="test"
27 RESTRICT="!test? ( test )"
28
29
30 diff --git a/dev-python/bottleneck/bottleneck-1.2.1.ebuild b/dev-python/bottleneck/bottleneck-1.2.1.ebuild
31 deleted file mode 100644
32 index 6221eaf8242..00000000000
33 --- a/dev-python/bottleneck/bottleneck-1.2.1.ebuild
34 +++ /dev/null
35 @@ -1,29 +0,0 @@
36 -# Copyright 1999-2020 Gentoo Authors
37 -# Distributed under the terms of the GNU General Public License v2
38 -
39 -EAPI=7
40 -PYTHON_COMPAT=( python2_7 python3_{6,7} )
41 -
42 -inherit distutils-r1
43 -
44 -DESCRIPTION="Fast NumPy array functions written in Cython"
45 -HOMEPAGE="https://pypi.org/project/Bottleneck/"
46 -SRC_URI="https://github.com/kwgoodman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 -
48 -SLOT="0"
49 -LICENSE="BSD"
50 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
51 -IUSE="test"
52 -RESTRICT="!test? ( test )"
53 -
54 -RDEPEND="
55 - >=dev-python/numpy-1.9.1[${PYTHON_USEDEP}]
56 - sci-libs/scipy[${PYTHON_USEDEP}]
57 -"
58 -DEPEND="${RDEPEND}
59 - dev-python/setuptools[${PYTHON_USEDEP}]
60 - test? ( dev-python/nose )"
61 -
62 -python_test() {
63 - ${EPYTHON} ./tools/test-installed-bottleneck.py
64 -}