Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sympy/
Date: Wed, 24 Aug 2022 19:36:42
Message-Id: 1661369780.754d230f3bf8cacaf4b5b9d6327df52be08ca0b7.arthurzam@gentoo
1 commit: 754d230f3bf8cacaf4b5b9d6327df52be08ca0b7
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 24 19:35:54 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 24 19:36:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=754d230f
7
8 dev-python/sympy: add 1.11
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/sympy/Manifest | 1 +
13 dev-python/sympy/sympy-1.11.ebuild | 66 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 67 insertions(+)
15
16 diff --git a/dev-python/sympy/Manifest b/dev-python/sympy/Manifest
17 index 3de66a97f00f..fa1689ebec86 100644
18 --- a/dev-python/sympy/Manifest
19 +++ b/dev-python/sympy/Manifest
20 @@ -1 +1,2 @@
21 DIST sympy-1.10.1.tar.gz 7666681 BLAKE2B e522e71058ebc8bdf3c016e3067bae9138e9a9a15ea658cba1fd35a04ce58246b5c3d7ab9c231d7071ed20b588ecfaa9275f383825b511a40c9821eadb53dd44 SHA512 7b6d5718826951bb1e477a78c3de8b95b8edda103981ad03c9f0da125ad35d72d8e5b5716d478ac4f00810939f1dc35786cc2e0a6b75cffb098cc1be9d8f7168
22 +DIST sympy-1.11.tar.gz 13462278 BLAKE2B 8129ac3b3a02930f05d3e9b8bbf3d224be9a92743a4ae5c518d34bd8bb2bffee1ceb3bac8b24423752d82cfdebaed7f72b51a8383a48080b7c3f8c7ce1e49c3d SHA512 4ecebe3ed363c0ccc365df0b7ffbafdde7d8a3012feda4e9c4b54b77f4b73b46cac949070d0e7ddd2ec350c18eb54a11f6abd6cd40e476eed0f1ded18c99fc09
23
24 diff --git a/dev-python/sympy/sympy-1.11.ebuild b/dev-python/sympy/sympy-1.11.ebuild
25 new file mode 100644
26 index 000000000000..b75ed090fb89
27 --- /dev/null
28 +++ b/dev-python/sympy/sympy-1.11.ebuild
29 @@ -0,0 +1,66 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..10} )
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 +src_test() {
72 + virtx distutils-r1_src_test
73 +}
74 +
75 +python_test() {
76 + esetup.py test
77 +}
78 +
79 +python_install_all() {
80 + local DOCS=( AUTHORS README.md )
81 +
82 + if use examples; then
83 + dodoc -r examples
84 + docompress -x /usr/share/doc/${PF}/examples
85 + fi
86 +
87 + distutils-r1_python_install_all
88 +
89 + if use texmacs; then
90 + exeinto /usr/libexec/TeXmacs/bin/
91 + doexe data/TeXmacs/bin/tm_sympy
92 + insinto /usr/share/TeXmacs/plugins/sympy/
93 + doins -r data/TeXmacs/progs
94 + fi
95 +}