[arch-commits] Commit in pyside2/repos (3 files)
Evangelos Foutras
foutrelis at gemini.archlinux.org
Wed Dec 1 13:48:29 UTC 2021
Date: Wednesday, December 1, 2021 @ 13:48:29
Author: foutrelis
Revision: 430004
archrelease: copy trunk to staging-x86_64
Added:
pyside2/repos/staging-x86_64/
pyside2/repos/staging-x86_64/PKGBUILD
(from rev 430003, pyside2/trunk/PKGBUILD)
pyside2/repos/staging-x86_64/python310.patch
(from rev 430003, pyside2/trunk/python310.patch)
-----------------+
PKGBUILD | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
python310.patch | 23 +++++++++++++++++++
2 files changed, 86 insertions(+)
Copied: pyside2/repos/staging-x86_64/PKGBUILD (from rev 430003, pyside2/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-12-01 13:48:29 UTC (rev 430004)
@@ -0,0 +1,63 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=pyside2
+_qtver=5.15.2
+pkgver=${_qtver/-/}
+pkgrel=4
+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=('b306504b0b8037079a8eab772ee774b9e877a2d84bab2dbefbe4fa6f83941418'
+ 'ae896a09d18ef215243175fce047d8c370ab4a2d77ed0022991ed70bd23a30d0')
+
+prepare() {
+ cd ${_pkgfqn}
+ patch -Np1 -i ../python310.patch
+}
+
+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/staging-x86_64/python310.patch (from rev 430003, pyside2/trunk/python310.patch)
===================================================================
--- staging-x86_64/python310.patch (rev 0)
+++ staging-x86_64/python310.patch 2021-12-01 13:48:29 UTC (rev 430004)
@@ -0,0 +1,23 @@
+diff -upr pyside-setup-opensource-src-5.15.2.orig/build_scripts/config.py pyside-setup-opensource-src-5.15.2/build_scripts/config.py
+--- pyside-setup-opensource-src-5.15.2.orig/build_scripts/config.py 2020-11-11 14:51:30.000000000 +0200
++++ pyside-setup-opensource-src-5.15.2/build_scripts/config.py 2021-12-01 15:36:17.120806984 +0200
+@@ -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
+diff -upr pyside-setup-opensource-src-5.15.2.orig/sources/pyside2/libpyside/feature_select.cpp pyside-setup-opensource-src-5.15.2/sources/pyside2/libpyside/feature_select.cpp
+--- pyside-setup-opensource-src-5.15.2.orig/sources/pyside2/libpyside/feature_select.cpp 2020-11-11 14:51:30.000000000 +0200
++++ pyside-setup-opensource-src-5.15.2/sources/pyside2/libpyside/feature_select.cpp 2021-12-01 15:39:40.356426568 +0200
+@@ -405,6 +405,8 @@ static inline PyObject *SelectFeatureSet
+ if (!SelectFeatureSetSubtype(sub_type, select_id))
+ break;
+ }
++ // PYSIDE-1436: Clear all caches for the type and subtypes.
++ PyType_Modified(type);
+ }
+ return type->tp_dict;
+ }
More information about the arch-commits
mailing list