[arch-commits] Commit in pyside2/repos (3 files)

Antonio Rojas arojas at gemini.archlinux.org
Sat Mar 5 12:38:48 UTC 2022


    Date: Saturday, March 5, 2022 @ 12:38:48
  Author: arojas
Revision: 438957

archrelease: copy trunk to testing-x86_64

Added:
  pyside2/repos/testing-x86_64/
  pyside2/repos/testing-x86_64/PKGBUILD
    (from rev 438956, pyside2/trunk/PKGBUILD)
  pyside2/repos/testing-x86_64/python310.patch
    (from rev 438956, pyside2/trunk/python310.patch)

-----------------+
 PKGBUILD        |   62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 python310.patch |   34 +++++++++++++++++++++++++++++
 2 files changed, 96 insertions(+)

Copied: pyside2/repos/testing-x86_64/PKGBUILD (from rev 438956, pyside2/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2022-03-05 12:38:48 UTC (rev 438957)
@@ -0,0 +1,62 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=pyside2
+_qtver=5.15.3
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(LGPL)
+pkgdesc='Enables the use of Qt5 APIs in Python applications'
+depends=(python-shiboken2 qt5-declarative)
+makedepends=(shiboken2 cmake python-setuptools
+             qt5-multimedia qt5-tools qt5-sensors qt5-charts qt5-webengine qt5-datavis3d
+             qt5-websockets qt5-speech qt5-3d qt5-svg qt5-script qt5-scxml qt5-x11extras
+             qt5-quickcontrols2 qt5-serialport qt5-remoteobjects)
+optdepends=('qt5-svg: QtSvg bindings'
+            'qt5-script: QtScript bindings'
+            'qt5-speech: QtTextToSpeech bindings'
+            'qt5-websockets: QtWebSockets bindings'
+            'qt5-webengine: QtWebEngine bindings'
+            'qt5-datavis3d: QtDataVisualization bindings'
+            'qt5-scxml: QtScxml bindings'
+            'qt5-sensors: QtSensors bindings'
+            'qt5-3d: Qt3D bindings'
+            'qt5-x11extras: QtX11Extras bindings'
+            'qt5-charts: QtCharts bindings'
+            'qt5-tools: QtHelp bindings'
+            'qt5-remoteobjects: QtRemoteObjects bindings'
+            'qt5-serialport: QtSerialPort bindings'
+            'qt5-quickcontrols2: QtQuickControls2 bindings')
+groups=(qt qt5)
+conflicts=(python-pyside2)
+provides=(python-pyside2 qt5-python-bindings)
+replaces=(python-pyside2)
+_pkgfqn=pyside-setup-opensource-src-$_qtver
+source=(https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz
+        python310.patch)
+sha256sums=('69481d137d80ed42461cbdb06cee06477f0a8cbe235d61b56472a66ed7982093'
+            '4c23df7c69e3c258261b8648ca3ce0eb054282b9da4dd79f707d97772aa4b459')
+
+prepare() {
+  patch -d $_pkgfqn -p1 -i ../python310.patch # Fix build with Python 3.10
+}
+
+build() {
+  cmake -B build -S $_pkgfqn/sources/pyside2 \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DBUILD_TESTS=OFF \
+    -DPYTHON_EXECUTABLE=/usr/bin/python
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+# Install egg-info
+  cd $_pkgfqn
+  python setup.py egg_info --build-type=pyside2
+  _pythonpath=`python -c "from sysconfig import get_path; print(get_path('platlib'))"`
+  cp -r PySide2.egg-info "$pkgdir"/$_pythonpath
+}

Copied: pyside2/repos/testing-x86_64/python310.patch (from rev 438956, pyside2/trunk/python310.patch)
===================================================================
--- testing-x86_64/python310.patch	                        (rev 0)
+++ testing-x86_64/python310.patch	2022-03-05 12:38:48 UTC (rev 438957)
@@ -0,0 +1,34 @@
+diff --git a/build_scripts/config.py b/build_scripts/config.py
+index b1b32068d..00cbd3fc9 100644
+--- a/build_scripts/config.py
++++ b/build_scripts/config.py
+@@ -93,6 +93,7 @@ class Config(object):
+             'Programming Language :: Python :: 3.7',
+             'Programming Language :: Python :: 3.8',
+             'Programming Language :: Python :: 3.9',
++            'Programming Language :: Python :: 3.10',
+         ]
+ 
+         self.setup_script_dir = None
+@@ -135,7 +136,7 @@ class Config(object):
+         setup_kwargs['zip_safe'] = False
+         setup_kwargs['cmdclass'] = cmd_class_dict
+         setup_kwargs['version'] = package_version
+-        setup_kwargs['python_requires'] = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.10"
++        setup_kwargs['python_requires'] = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.11"
+ 
+         if quiet:
+             # Tells distutils / setuptools to be quiet, and only print warnings or errors.
+diff --git a/build_scripts/wheel_override.py b/build_scripts/wheel_override.py
+index 66141763b..3f3c12a2e 100644
+--- a/build_scripts/wheel_override.py
++++ b/build_scripts/wheel_override.py
+@@ -90,7 +90,7 @@ class PysideBuildWheel(_bdist_wheel, DistUtilsCommandMixin):
+         limited_api_enabled = (OPTION["LIMITED_API"] == 'yes'
+                                and sys.version_info[0] >= 3)
+         if limited_api_enabled:
+-            self.py_limited_api = "cp35.cp36.cp37.cp38.cp39"
++            self.py_limited_api = "cp35.cp36.cp37.cp38.cp39.cp310"
+ 
+         self._package_version = get_package_version()
+ 



More information about the arch-commits mailing list