[arch-commits] Commit in python-sympy/repos/community-staging-any (3 files)
Antonio Rojas
arojas at gemini.archlinux.org
Sat Dec 4 11:29:51 UTC 2021
Date: Saturday, December 4, 2021 @ 11:29:51
Author: arojas
Revision: 1065013
archrelease: copy trunk to community-staging-any
Added:
python-sympy/repos/community-staging-any/PKGBUILD
(from rev 1065012, python-sympy/trunk/PKGBUILD)
python-sympy/repos/community-staging-any/sympy-python-3.10.patch
(from rev 1065012, python-sympy/trunk/sympy-python-3.10.patch)
Deleted:
python-sympy/repos/community-staging-any/PKGBUILD
-------------------------+
PKGBUILD | 80 ++++++++++++++++++++++++----------------------
sympy-python-3.10.patch | 26 ++++++++++++++
2 files changed, 69 insertions(+), 37 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2021-12-04 11:29:39 UTC (rev 1065012)
+++ PKGBUILD 2021-12-04 11:29:51 UTC (rev 1065013)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Stéphane Gaudreault <stephane at archlinux.org>
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
-# Contributor: Peter Garceau <RockyChimp at gmail.com>
-
-pkgname=python-sympy
-pkgver=1.9
-pkgrel=2
-arch=('any')
-pkgdesc='Symbolic manipulation package (Computer Algebra System), written in pure Python'
-url='https://sympy.org/en/index.html'
-license=('BSD')
-depends=('python-mpmath')
-optdepends=('ipython: user friendly interface for isympy'
- 'python-symengine: optimized backend, set USE_SYMENGINE=1 to use')
-makedepends=('python-setuptools')
-source=("https://github.com/sympy/sympy/archive/sympy-$pkgver/sympy-$pkgver.tar.gz")
-sha512sums=('139712219ba6bf420ba89b3f8d086ab8883c5ab965e9308ba9ee665ac3ac69a9b16fa30c6f5dfbc77dd34873ff3ff95c0d058954d7f9d853f5e9537efc24dd3c')
-
-build() {
- cd sympy-sympy-$pkgver
- python setup.py build
-}
-
-check() {
- cd sympy-sympy-$pkgver
- python setup.py test
-}
-
-package() {
- cd sympy-sympy-$pkgver
-
- python setup.py install --root "$pkgdir" --optimize=1
-
- install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
Copied: python-sympy/repos/community-staging-any/PKGBUILD (from rev 1065012, python-sympy/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2021-12-04 11:29:51 UTC (rev 1065013)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Stéphane Gaudreault <stephane at archlinux.org>
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
+# Contributor: Peter Garceau <RockyChimp at gmail.com>
+
+pkgname=python-sympy
+pkgver=1.9
+pkgrel=3
+arch=('any')
+pkgdesc='Symbolic manipulation package (Computer Algebra System), written in pure Python'
+url='https://sympy.org/en/index.html'
+license=('BSD')
+depends=('python-mpmath')
+optdepends=('ipython: user friendly interface for isympy'
+ 'python-symengine: optimized backend, set USE_SYMENGINE=1 to use')
+makedepends=('python-setuptools')
+source=("https://github.com/sympy/sympy/archive/sympy-$pkgver/sympy-$pkgver.tar.gz"
+ sympy-python-3.10.patch)
+sha512sums=('139712219ba6bf420ba89b3f8d086ab8883c5ab965e9308ba9ee665ac3ac69a9b16fa30c6f5dfbc77dd34873ff3ff95c0d058954d7f9d853f5e9537efc24dd3c'
+ 'fbda6f7d293337f08909684179efd9497fea7093dfedf2c0bf2fc67ee1168ce50268f6580091b3e1db78eef59e19c4780e3537b077d156ea7b4680191ad43468')
+
+prepare() {
+ patch -d sympy-sympy-$pkgver -p1 < sympy-python-3.10.patch # Fix tests with python 3.10 (Fedora)
+}
+
+build() {
+ cd sympy-sympy-$pkgver
+ python setup.py build
+}
+
+check() {
+ cd sympy-sympy-$pkgver
+ python bin/test
+}
+
+package() {
+ cd sympy-sympy-$pkgver
+
+ python setup.py install --root "$pkgdir" --optimize=1
+
+ install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
Copied: python-sympy/repos/community-staging-any/sympy-python-3.10.patch (from rev 1065012, python-sympy/trunk/sympy-python-3.10.patch)
===================================================================
--- sympy-python-3.10.patch (rev 0)
+++ sympy-python-3.10.patch 2021-12-04 11:29:51 UTC (rev 1065013)
@@ -0,0 +1,26 @@
+--- a/sympy/external/tests/test_pythonmpq.py 2021-09-30 16:23:28.000000000 -0600
++++ b/sympy/external/tests/test_pythonmpq.py 2021-10-08 11:06:59.453830335 -0600
+@@ -42,7 +42,7 @@ def test_PythonMPQ():
+ assert check_Q(Q(Q(3, 5))) == (3, 5)
+ assert check_Q(Q(0.5)) == (1, 2)
+ assert check_Q(Q('0.5')) == (1, 2)
+- assert check_Q(Q(Decimal('0.6'))) == (3, 5)
++ assert check_Q(Q(str(Decimal('0.6')))) == (3, 5)
+ assert check_Q(Q(Fraction(3, 5))) == (3, 5)
+
+ # Invalid types
+--- a/sympy/polys/ring_series.py 2021-09-30 16:23:28.000000000 -0600
++++ b/sympy/polys/ring_series.py 2021-10-08 13:43:30.746068783 -0600
+@@ -989,6 +989,11 @@ def rs_nth_root(p, n, x, prec):
+ except ValueError: # as exponent
+ raise DomainError("The given series can't be expanded in "
+ "this domain.")
++ except TypeError:
++ try:
++ const = R(c**QQ(1, n))
++ except ValueError:
++ raise DomainError("The given series can't be expanded in this domain.")
+ res = rs_nth_root(p/c, n, x, prec)*const
+ else:
+ res = _nth_root1(p, n, x, prec)
+
More information about the arch-commits
mailing list