public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sympy/files/, dev-python/sympy/
Date: Sat, 18 Feb 2023 00:41:04 +0000 (UTC)	[thread overview]
Message-ID: <1676680850.abeff5c36e1e91ee31a457b002b6891da1a67cd5.sam@gentoo> (raw)

commit:     abeff5c36e1e91ee31a457b002b6891da1a67cd5
Author:     Jérôme Carretero <cJ-gentoo <AT> zougloub <DOT> eu>
AuthorDate: Fri Feb 17 12:42:25 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 18 00:40:50 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abeff5c3

dev-python/sympy: add support for python3.11

The added patch makes tests run; they failed only due to a deprecation
warning happening.

Signed-off-by: Jérôme Carretero <cJ-gentoo <AT> zougloub.eu>
Closes: https://github.com/gentoo/gentoo/pull/29605
Signed-off-by: Sam James <sam <AT> gentoo.org>

 ...py-1.11-no-deprecated-threading-event-api.patch | 54 +++++++++++++++++
 dev-python/sympy/sympy-1.11.1-r1.ebuild            | 70 ++++++++++++++++++++++
 2 files changed, 124 insertions(+)

diff --git a/dev-python/sympy/files/sympy-1.11-no-deprecated-threading-event-api.patch b/dev-python/sympy/files/sympy-1.11-no-deprecated-threading-event-api.patch
new file mode 100644
index 000000000000..eaffd3f1fbe1
--- /dev/null
+++ b/dev-python/sympy/files/sympy-1.11-no-deprecated-threading-event-api.patch
@@ -0,0 +1,54 @@
+Patch back-ported from the sympy git repo
+url: https://github.com/sympy/sympy/commit/b89ca436cf25e2a1caf82c9d33221d06698d0ff5
+
+commit b89ca436cf25e2a1caf82c9d33221d06698d0ff5
+Author: Chris Kerr <chris.kerr@mykolab.ch>
+Date:   Thu Sep 22 19:32:27 2022 +0300
+
+    Replace deprecated .isSet() method with .is_set()
+    
+    Fixes https://github.com/sympy/sympy/issues/24074
+
+diff --git a/sympy/plotting/pygletplot/plot_mode_base.py b/sympy/plotting/pygletplot/plot_mode_base.py
+index c1c2b0a6ec..2c6503650a 100644
+--- a/sympy/plotting/pygletplot/plot_mode_base.py
++++ b/sympy/plotting/pygletplot/plot_mode_base.py
+@@ -269,7 +269,7 @@ def _calculate_all(self):
+         self._calculate_cverts()
+ 
+     def _calculate_verts(self):
+-        if self._calculating_verts.isSet():
++        if self._calculating_verts.is_set():
+             return
+         self._calculating_verts.set()
+         try:
+@@ -280,9 +280,9 @@ def _calculate_verts(self):
+             self.bounds_callback()
+ 
+     def _calculate_cverts(self):
+-        if self._calculating_verts.isSet():
++        if self._calculating_verts.is_set():
+             return
+-        while self._calculating_cverts.isSet():
++        while self._calculating_cverts.is_set():
+             sleep(0)  # wait for previous calculation
+         self._calculating_cverts.set()
+         try:
+@@ -291,7 +291,7 @@ def _calculate_cverts(self):
+             self._calculating_cverts.clear()
+ 
+     def _get_calculating_verts(self):
+-        return self._calculating_verts.isSet()
++        return self._calculating_verts.is_set()
+ 
+     def _get_calculating_verts_pos(self):
+         return self._calculating_verts_pos
+@@ -300,7 +300,7 @@ def _get_calculating_verts_len(self):
+         return self._calculating_verts_len
+ 
+     def _get_calculating_cverts(self):
+-        return self._calculating_cverts.isSet()
++        return self._calculating_cverts.is_set()
+ 
+     def _get_calculating_cverts_pos(self):
+         return self._calculating_cverts_pos

diff --git a/dev-python/sympy/sympy-1.11.1-r1.ebuild b/dev-python/sympy/sympy-1.11.1-r1.ebuild
new file mode 100644
index 000000000000..df5b5e24a757
--- /dev/null
+++ b/dev-python/sympy/sympy-1.11.1-r1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Computer Algebra System in pure Python"
+HOMEPAGE="https://www.sympy.org/"
+SRC_URI="https://github.com/sympy/sympy/archive/${P}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/${PN}-${P}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+IUSE="aesara examples imaging ipython latex mathml opengl pdf png pyglet symengine test texmacs"
+
+RDEPEND="
+	dev-python/mpmath[${PYTHON_USEDEP}]
+	dev-python/pexpect[${PYTHON_USEDEP}]
+	aesara? ( $(python_gen_cond_dep 'dev-python/aesara[${PYTHON_USEDEP}]' python3_{9..10}) )
+	imaging? ( dev-python/pillow[${PYTHON_USEDEP}] )
+	ipython? ( dev-python/ipython[${PYTHON_USEDEP}] )
+	latex? (
+		virtual/latex-base
+		dev-texlive/texlive-fontsextra
+		png? ( app-text/dvipng )
+		pdf? ( app-text/ghostscript-gpl )
+	)
+	mathml? ( dev-libs/libxml2:2[${PYTHON_USEDEP}] )
+	opengl? ( dev-python/pyopengl[${PYTHON_USEDEP}] )
+	pyglet? ( dev-python/pyglet[${PYTHON_USEDEP}] )
+	symengine? ( dev-python/symengine[${PYTHON_USEDEP}] )
+	texmacs? ( app-office/texmacs )
+"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-1.11-no-deprecated-threading-event-api.patch"
+)
+
+distutils_enable_tests pytest
+
+src_test() {
+	virtx distutils-r1_src_test
+}
+
+python_test() {
+	esetup.py test
+}
+
+python_install_all() {
+	local DOCS=( AUTHORS README.md )
+
+	if use examples; then
+		dodoc -r examples
+		docompress -x /usr/share/doc/${PF}/examples
+	fi
+
+	distutils-r1_python_install_all
+
+	if use texmacs; then
+		exeinto /usr/libexec/TeXmacs/bin/
+		doexe data/TeXmacs/bin/tm_sympy
+		insinto /usr/share/TeXmacs/plugins/sympy/
+		doins -r data/TeXmacs/progs
+	fi
+}


             reply	other threads:[~2023-02-18  0:41 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-18  0:41 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-06-15  9:46 [gentoo-commits] repo/gentoo:master commit in: dev-python/sympy/files/, dev-python/sympy/ Michał Górny
2023-12-09 18:11 Sam James
2023-11-17  7:57 Michał Górny
2023-06-27 12:05 Michał Górny
2018-09-19  6:16 Andrey Grozin
2015-12-01  6:43 Andrey Grozin
2015-11-14 16:07 Andrey Grozin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1676680850.abeff5c36e1e91ee31a457b002b6891da1a67cd5.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox