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/sympy/
Date: Thu, 30 Dec 2021 21:30:29
Message-Id: 1640899460.ec4957dde39994d3d895b1e5782b66873c48df91.mgorny@gentoo
1 commit: ec4957dde39994d3d895b1e5782b66873c48df91
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 30 21:24:20 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 30 21:24:20 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec4957dd
7
8 dev-python/sympy: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/sympy/Manifest | 1 -
13 dev-python/sympy/sympy-1.8.ebuild | 62 ---------------------------------------
14 2 files changed, 63 deletions(-)
15
16 diff --git a/dev-python/sympy/Manifest b/dev-python/sympy/Manifest
17 index f549c6299d54..f45377a0b2be 100644
18 --- a/dev-python/sympy/Manifest
19 +++ b/dev-python/sympy/Manifest
20 @@ -1,2 +1 @@
21 -DIST sympy-1.8.tar.gz 7167842 BLAKE2B 878c6daf0584c9da54f82b9c68c62715792db428ab4ebfb355f0368c52edb254947d1ce1919e651279b767295ecb00a76b8cbbaa1fbe9c97915221c7403c3ded SHA512 61141e1d0a6105e725fb415edbdf981b3aa95debcfe73f9da5ca36afc7a70e91b5c28ed45454054c1b9a8d45e42bfe724e5b20da717746c301fd095da17f4db7
22 DIST sympy-1.9.tar.gz 7476018 BLAKE2B 5ab9920bf6d16eaed3af30100e7593551a4dce29dc76605ccf87d55e8a7c14514b5733c9456353403cfc96008fd5d046ce04f44bb7e69f844d545bdd3e55e7e0 SHA512 139712219ba6bf420ba89b3f8d086ab8883c5ab965e9308ba9ee665ac3ac69a9b16fa30c6f5dfbc77dd34873ff3ff95c0d058954d7f9d853f5e9537efc24dd3c
23
24 diff --git a/dev-python/sympy/sympy-1.8.ebuild b/dev-python/sympy/sympy-1.8.ebuild
25 deleted file mode 100644
26 index 38f695685f20..000000000000
27 --- a/dev-python/sympy/sympy-1.8.ebuild
28 +++ /dev/null
29 @@ -1,62 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -DISTUTILS_USE_SETUPTOOLS=rdepend
36 -PYTHON_COMPAT=( python3_{7..9} )
37 -
38 -inherit distutils-r1 virtualx
39 -
40 -DESCRIPTION="Computer Algebra System in pure Python"
41 -HOMEPAGE="https://www.sympy.org/"
42 -SRC_URI="https://github.com/sympy/sympy/archive/${P}.tar.gz"
43 -S="${WORKDIR}/${PN}-${P}"
44 -
45 -LICENSE="BSD"
46 -SLOT="0"
47 -KEYWORDS="amd64 ~arm ~arm64 ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
48 -IUSE="aesara examples imaging ipython latex mathml opengl pdf png pyglet symengine test texmacs"
49 -
50 -RDEPEND="
51 - dev-python/mpmath[${PYTHON_USEDEP}]
52 - dev-python/pexpect[${PYTHON_USEDEP}]
53 - aesara? ( dev-python/aesara[${PYTHON_USEDEP}] )
54 - imaging? ( dev-python/pillow[${PYTHON_USEDEP}] )
55 - ipython? ( dev-python/ipython[${PYTHON_USEDEP}] )
56 - latex? (
57 - virtual/latex-base
58 - dev-texlive/texlive-fontsextra
59 - png? ( app-text/dvipng )
60 - pdf? ( app-text/ghostscript-gpl )
61 - )
62 - mathml? ( dev-libs/libxml2:2[${PYTHON_USEDEP}] )
63 - opengl? ( dev-python/pyopengl[${PYTHON_USEDEP}] )
64 - pyglet? ( dev-python/pyglet[${PYTHON_USEDEP}] )
65 - symengine? ( dev-python/symengine[${PYTHON_USEDEP}] )
66 - texmacs? ( app-office/texmacs )
67 -"
68 -
69 -distutils_enable_tests pytest
70 -
71 -python_test() {
72 - virtx esetup.py test
73 -}
74 -
75 -python_install_all() {
76 - local DOCS=( AUTHORS README.md )
77 -
78 - if use examples; then
79 - dodoc -r examples
80 - docompress -x /usr/share/doc/${PF}/examples
81 - fi
82 -
83 - distutils-r1_python_install_all
84 -
85 - if use texmacs; then
86 - exeinto /usr/libexec/TeXmacs/bin/
87 - doexe data/TeXmacs/bin/tm_sympy
88 - insinto /usr/share/TeXmacs/plugins/sympy/
89 - doins -r data/TeXmacs/progs
90 - fi
91 -}