Skip to content
Snippets Groups Projects
Commit d4377c12 authored by Adam J. Stewart's avatar Adam J. Stewart
Browse files

Add Python 3.5 support, latest version of PySide

parent 633e540a
Branches
Tags
No related merge requests found
...@@ -31,8 +31,8 @@ class PyPyside(Package): ...@@ -31,8 +31,8 @@ class PyPyside(Package):
homepage = "https://pypi.python.org/pypi/pyside" homepage = "https://pypi.python.org/pypi/pyside"
url = "https://pypi.python.org/packages/source/P/PySide/PySide-1.2.2.tar.gz" url = "https://pypi.python.org/packages/source/P/PySide/PySide-1.2.2.tar.gz"
# version('1.2.4', '3cb7174c13bd45e3e8f77638926cb8c0') # rpath problems version('1.2.4', '3cb7174c13bd45e3e8f77638926cb8c0') # rpath problems
version('1.2.2', 'c45bc400c8a86d6b35f34c29e379e44d') version('1.2.2', 'c45bc400c8a86d6b35f34c29e379e44d', preferred=True)
depends_on('cmake', type='build') depends_on('cmake', type='build')
...@@ -72,6 +72,13 @@ def patch(self): ...@@ -72,6 +72,13 @@ def patch(self):
# PySide can't find the Shiboken library, even though it comes # PySide can't find the Shiboken library, even though it comes
# bundled with it and is installed in the same directory. # 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(self, spec, prefix): def install(self, spec, prefix):
python('setup.py', 'install', python('setup.py', 'install',
'--prefix=%s' % prefix, '--prefix=%s' % prefix,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment