Package Details: pyside2 5.15.13-2

Git Clone URL: https://aur.archlinux.org/pyside2.git (read-only, click to copy)
Package Base: pyside2
Description: Enables the use of Qt5 APIs in Python applications
Upstream URL: https://www.qt.io
Licenses: LGPL
Provides: qt5-python-bindings
Submitter: arojas
Maintainer: petronny
Last Packager: petronny
Votes: 11
Popularity: 0.85
First Submitted: 2024-04-16 07:05 (UTC)
Last Updated: 2024-05-09 14:32 (UTC)

Pinned Comments

petronny commented on 2024-05-10 05:47 (UTC)

Prebuilt binaries of this package can be found in the arch4edu repository.

Latest Comments

1 2 3 Next › Last »

iEscapedVim commented on 2024-08-08 20:28 (UTC) (edited on 2024-08-08 20:28 (UTC) by iEscapedVim)

if you are getting the following error manually installing clang17 from the aur should fix it.

error: target not found: clang=17.0.6
==> ERROR: 'pacman' failed to install missing dependencies.

kachelaqa commented on 2024-08-01 13:46 (UTC)

Both this package and the arch4edu binaries are broken. The pyside2 5.15 branch is closed for good and no longer supports python-3.12 (see PYSIDE-2388). This package should therefore depend on the python311 package so as to avoid all the python-3.12 bugs going forward. It's only useful for testing and as a legacy dependency anyway, so there's little point in trying to make it forwards-compatible any more.

PhotonX commented on 2024-07-21 17:14 (UTC)

I commented at clang17 to include a "provides" line. But maybe it is sufficient to depend on clang17 rather than on clang=17.0.6?

korimitsu commented on 2024-07-13 08:48 (UTC)

@petronny shiboken* is not longer offered.

Sir-Photch commented on 2024-07-08 08:37 (UTC)

clang=17.0.6 blocks clang updates. Is this still justified?

Ataraxy commented on 2024-06-08 13:47 (UTC)

==> Validating source files with sha256sums...
    pyside-setup-opensource-src-5.15.13.tar.xz ... FAILED

Inflame commented on 2024-05-18 10:30 (UTC) (edited on 2024-05-18 10:33 (UTC) by Inflame)

@vladimirov_georg This problem is due to censorship in Russia. You can download it via VPN.

NomAnor commented on 2024-05-16 22:01 (UTC) (edited on 2024-05-16 22:02 (UTC) by NomAnor)

I tried to run FreeCAD from source and got a segfault. Looks like there is another access to type->tp_dict that needs to be patched in pyside-setup-opensource-src-5.15.13/sources/pyside2/libpyside/pysideproperty.cpp:449.

I fixed it with these lines:

PyObject *dict = type->tp_dict;
if (dict == NULL) dict = PyType_GetDict(type);
attr = PyDict_GetItem(dict, name);