Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/symengine/
Date: Sun, 08 Mar 2020 16:02:08
Message-Id: 1583683290.0c29ecd6783ab8ae9561d4bd6ce870a2a770085e.asturm@gentoo
1 commit: 0c29ecd6783ab8ae9561d4bd6ce870a2a770085e
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 8 16:00:23 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 8 16:01:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c29ecd6
7
8 dev-python/symengine: Drop 0.5.1 (r0)
9
10 Package-Manager: Portage-2.3.93, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-python/symengine/symengine-0.5.1.ebuild | 40 -----------------------------
14 1 file changed, 40 deletions(-)
15
16 diff --git a/dev-python/symengine/symengine-0.5.1.ebuild b/dev-python/symengine/symengine-0.5.1.ebuild
17 deleted file mode 100644
18 index 010852d4745..00000000000
19 --- a/dev-python/symengine/symengine-0.5.1.ebuild
20 +++ /dev/null
21 @@ -1,40 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -PYTHON_COMPAT=( python{3_6,3_7} )
28 -
29 -inherit distutils-r1
30 -
31 -MYP=${PN}.py-${PV}
32 -
33 -DESCRIPTION="Python wrappers to the symengine C++ library"
34 -HOMEPAGE="https://github.com/symengine/symengine.py"
35 -SRC_URI="https://github.com/symengine/symengine.py/archive/v${PV}.tar.gz -> ${MYP}.tar.gz"
36 -
37 -LICENSE="MIT"
38 -SLOT="0"
39 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
40 -IUSE="test"
41 -RESTRICT="!test? ( test )"
42 -RDEPEND="
43 - dev-python/numpy[${PYTHON_USEDEP}]
44 - >=sci-libs/symengine-0.4"
45 -DEPEND="${RDEPEND}
46 - dev-python/cython[${PYTHON_USEDEP}]
47 - dev-python/setuptools[${PYTHON_USEDEP}]
48 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
49 -
50 -S="${WORKDIR}/${MYP}"
51 -
52 -python_test() {
53 - cd "${BUILD_DIR}"
54 - nosetests -v || die "tests failed with ${EPYTHON}"
55 -}
56 -
57 -python_install_all() {
58 - distutils-r1_python_prepare_all
59 - rm "${ED}"/usr/share/doc/${PF}/README.md || die
60 - newdoc README.md ${PN}.py.md
61 -}