summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2023-07-17 22:54:59 +0200
committerGitHub <noreply@github.com>2023-07-17 15:54:59 -0500
commit1fa60a6c70baedbc452d36a44484ef02dfaa31f3 (patch)
tree87fa358404ac8f9cf7185aee51b643bcfd98daac /var
parent1730bcaa31932a7359caa31853557c7a5039186d (diff)
downloadspack-1fa60a6c70baedbc452d36a44484ef02dfaa31f3.tar.gz
spack-1fa60a6c70baedbc452d36a44484ef02dfaa31f3.tar.bz2
spack-1fa60a6c70baedbc452d36a44484ef02dfaa31f3.tar.xz
spack-1fa60a6c70baedbc452d36a44484ef02dfaa31f3.zip
py-pyside: fix build with python3.8 (#38886)
* py-pyside: fix build for version 1.2.2 * Remove check for python version * Fix style * Remove unnecessary patch * Update var/spack/repos/builtin/packages/py-pyside/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/py-pyside/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Remove py-markupsafe conflict * Update var/spack/repos/builtin/packages/py-pyside/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/py-pyside/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Move python check removal below suprocess patch * Remove preference of 1.2.2 --------- Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-pyside/package.py28
1 files changed, 10 insertions, 18 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyside/package.py b/var/spack/repos/builtin/packages/py-pyside/package.py
index 42c4553c34..a710151835 100644
--- a/var/spack/repos/builtin/packages/py-pyside/package.py
+++ b/var/spack/repos/builtin/packages/py-pyside/package.py
@@ -26,21 +26,19 @@ class PyPyside(PythonPackage):
"1.2.4", sha256="1421bc1bf612c396070de9e1ffe227c07c1f3129278bc7d30c754b5146be2433"
) # rpath problems
- # v1.2.2 does not work with Python3
- version(
- "1.2.2",
- sha256="53129fd85e133ef630144c0598d25c451eab72019cdcb1012f2aec773a3f25be",
- preferred=True,
- )
-
- depends_on("cmake", type="build")
+ version("1.2.2", sha256="53129fd85e133ef630144c0598d25c451eab72019cdcb1012f2aec773a3f25be")
+ # to prevent error: 'PyTypeObject' {aka 'struct _typeobject'} has no member
+ # named 'tp_print'
+ depends_on("python@:3.8", type=("build", "run"))
depends_on("py-setuptools", type="build")
# in newer pip versions --install-option does not exist
depends_on("py-pip@:23.0", type="build")
+ depends_on("cmake@2.6:", type="build")
+
depends_on("py-sphinx", type=("build", "run"))
depends_on("py-sphinx@:3.5.0", type=("build", "run"), when="@:1.2.2")
- depends_on("qt@4.5:4.9")
+ depends_on("qt@4.6:4.8")
depends_on("libxml2@2.6.32:")
depends_on("libxslt@1.1.19:")
@@ -59,6 +57,9 @@ class PyPyside(PythonPackage):
)
filter_file("^ if subprocess.mswindows:", " if mswindows:", "popenasync.py")
+ # Remove check for python version because the above patch adds support for newer versions
+ filter_file("^check_allowed_python_version()", "", "setup.py")
+
# Add Spack's standard CMake args to the sub-builds.
# They're called BY setup.py so we have to patch it.
filter_file(
@@ -84,14 +85,5 @@ class PyPyside(PythonPackage):
# PySide can't find the Shiboken library, even though it comes
# bundled with it and is installed in the same directory.
- # PySide does not provide official support for
- # Python 3.5, but it should work fine
- filter_file(
- "'Programming Language :: Python :: 3.4'",
- "'Programming Language :: Python :: 3.4',\r\n "
- "'Programming Language :: Python :: 3.5'",
- "setup.py",
- )
-
def install_options(self, spec, prefix):
return ["--jobs={0}".format(make_jobs)]