Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sympy/
Date: Mon, 31 Aug 2020 14:15:09
Message-Id: 1598883248.d00923053ed81dcf2acd3ee6245e74222ce542bb.sam@gentoo
1 commit: d00923053ed81dcf2acd3ee6245e74222ce542bb
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 31 14:14:08 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 31 14:14:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0092305
7
8 dev-python/sympy: cleanup old
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-python/sympy/Manifest | 1 -
14 dev-python/sympy/sympy-1.5.1-r1.ebuild | 66 ----------------------------------
15 2 files changed, 67 deletions(-)
16
17 diff --git a/dev-python/sympy/Manifest b/dev-python/sympy/Manifest
18 index ef247c746c8..c69fce3ec46 100644
19 --- a/dev-python/sympy/Manifest
20 +++ b/dev-python/sympy/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST sympy-1.5.1.tar.gz 6815997 BLAKE2B bc74d01fdf2ccea6b83a06c11f810e3d105e9d35b397c8b87a1bcc4e316d00c456f576baf57d1b4a6175e056dec58f05fbb05893519775ffa252ac018452d2ff SHA512 3c4220243d2cbcff9eedb2a7986431b5b4d7d0007c78208a60b21830c9a3528d2171086874c42205c1227f779e44c19b9562943e2935d329bc352e7ea85396c7
23 DIST sympy-1.6.1.tar.gz 6811393 BLAKE2B cd19946fc726b5a74f9ff0af07f07f8f76ea28b20818653d785848e331c126d634d8167e3506d8b87c12ed057df4a59551f0a0214b7d1292e199c6a3353f70be SHA512 95630b6fad1e41f2d58d1f4f4433ef76d4553f3e119bfdd36048c5880ac7f07d572e901eaae0b5c6208f598989a86ab5e03932a851f8048c584154973be6982c
24 DIST sympy-1.6.2.tar.gz 6811705 BLAKE2B 4cd894d28bedc986acc8ef67aa60f82e0899c2ed028658a8f340d7538b890e0ed380b3614a464eb58d71873b29b0795508b4556bb8115bf0c108336ef1e4cca3 SHA512 e16a1d85aba438e4248bac48a163ea1827e2cee57c28f7670ed19cc69d4c08d6796d62f79d245e269d75765b8f7ff4f4ca2841f98534e136ceeb5d3f7a5d252a
25
26 diff --git a/dev-python/sympy/sympy-1.5.1-r1.ebuild b/dev-python/sympy/sympy-1.5.1-r1.ebuild
27 deleted file mode 100644
28 index f5455d9408f..00000000000
29 --- a/dev-python/sympy/sympy-1.5.1-r1.ebuild
30 +++ /dev/null
31 @@ -1,66 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -PYTHON_COMPAT=( python{3_6,3_7} )
38 -
39 -inherit distutils-r1 eutils virtualx
40 -
41 -DESCRIPTION="Computer Algebra System in pure Python"
42 -HOMEPAGE="https://sympy.org"
43 -SRC_URI="https://github.com/${PN}/${PN}/archive/${P}.tar.gz"
44 -
45 -LICENSE="BSD"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
48 -IUSE="examples imaging ipython latex mathml opengl pdf png pyglet symengine test texmacs theano"
49 -
50 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
51 -
52 -RESTRICT="test"
53 -# All tests actually pass, except a bunch of tests related to the deprecated pygletplot
54 -# It is a non-trivial work to wipe out all such tests :-(
55 -
56 -RDEPEND="dev-python/mpmath[${PYTHON_USEDEP}]
57 - dev-python/pexpect[${PYTHON_USEDEP}]
58 - imaging? ( dev-python/pillow[${PYTHON_USEDEP}] )
59 - ipython? ( dev-python/ipython[${PYTHON_USEDEP}] )
60 - latex? (
61 - virtual/latex-base
62 - dev-texlive/texlive-fontsextra
63 - png? ( app-text/dvipng )
64 - pdf? ( app-text/ghostscript-gpl )
65 - )
66 - mathml? ( dev-libs/libxml2:2[${PYTHON_USEDEP}] )
67 - opengl? ( dev-python/pyopengl[${PYTHON_USEDEP}] )
68 - pyglet? ( dev-python/pyglet[${PYTHON_USEDEP}] )
69 - symengine? ( dev-python/symengine[${PYTHON_USEDEP}] )
70 - texmacs? ( app-office/texmacs )
71 - theano? ( dev-python/theano[${PYTHON_USEDEP}] )
72 -"
73 -
74 -DEPEND="${RDEPEND}
75 - test? ( ${RDEPEND} dev-python/pytest[${PYTHON_USEDEP}] )"
76 -
77 -S="${WORKDIR}/${PN}-${P}"
78 -
79 -python_test() {
80 - virtx "${PYTHON}" setup.py test
81 -}
82 -
83 -python_install_all() {
84 - local DOCS=( AUTHORS README.rst )
85 - if use examples; then
86 - dodoc -r examples
87 - docompress -x /usr/share/doc/${PF}/examples
88 - fi
89 - distutils-r1_python_install_all
90 -
91 - if use texmacs; then
92 - exeinto /usr/libexec/TeXmacs/bin/
93 - doexe data/TeXmacs/bin/tm_sympy
94 - insinto /usr/share/TeXmacs/plugins/sympy/
95 - doins -r data/TeXmacs/progs
96 - fi
97 -}