Peter Michael Green [Wed, 24 Nov 2021 08:46:19 +0000 (08:46 +0000)]
Manual merge of version 5.15.2-1+rpi1 and 5.15.2-2 to produce 5.15.2-2+rpi1
Dmitry Shachnev [Tue, 16 Nov 2021 09:16:14 +0000 (09:16 +0000)]
Merge pyside2 (5.15.2-2) import into refs/heads/workingbranch
Dmitry Shachnev [Sun, 14 Nov 2021 18:08:50 +0000 (21:08 +0300)]
Find the build directory matching the current interpreter
This is needed to allow us to run tests with all supported Python versions.
Without this patch, the latest build directory will be always picked, no
matter what the current interpreter is.
Gbp-Pq: Name test-with-current-interpreter.patch
Friedemann Kleint [Tue, 12 Oct 2021 07:33:53 +0000 (09:33 +0200)]
shiboken6: Adapt to LLVM 12.01
The identifier for anonymous enums has been changed, causing
shiboken to no longer recognize them.
(cherry picked from commit
1948a1b6f9a3547ba9fba9b8c525eb6e1c6b4f13)
Gbp-Pq: Name shiboken6-Adapt-to-LLVM-12.01.patch
Christian Tismer [Fri, 20 Aug 2021 16:18:57 +0000 (18:18 +0200)]
py3.10-prep: Fix a very old refcounting error in time_test.py
Since 2012-03-08, there was a refcounting error in
the typesystem_sample.xml file at <value-type name="Time">.
The boolean function results were not refcounted.
(Commit
7b731d702c64d172e192aa1876e4a6fade6c38d7)
This bug was hard to find because nobody expects a failure in the
testing code, and the error shows up at the very end in the
finalization code, totally unrelated to the error location.
In order to find it, the setting `PYTHONMALLOC=malloc` was needed,
because otherwise we got a Python memory dump but no traceback.
Then, Python was modified and code was inserted in the various
involved `code_dealloc`, `tupledealloc` and `object_dealloc`
functions that printed the involved refcounts and types before
performing the actual deallocation.
This bug actually was of no harm since only the wrong test was
involved. It was very misleading because there were quite some
changes to the `datetime` module in Python 3.10. But the bug
was nothing but a dormant refcounting error.
(cherry picked from commit
2af6ac20de365116b52b65c6c34cfd6c536c23df)
Gbp-Pq: Name py3.10-prep-Fix-a-very-old-refcounting-error-in-time_test.patch
Christian Tismer [Sat, 8 May 2021 14:06:23 +0000 (16:06 +0200)]
py3.10-prep: Finally support Python 3.10
After the major problems are solved in
py3.10-prep: re-implement zip import
py3.10-prep: reset the type cache after feature switching
py3.10-prep: Fix parser.py for changed typing module
, there are only some minor changes left to do. One thing
is still not clear:
* Unsolved: In time_test.py, the last two tests work but
crash at shutdown.
It is not yet clear if this is a PySide or Python error.
This will crash Python 3.10 if not solved until the release.
(cherry picked from commit
81e9cff884d6b03cdf64a5dd6ec6564d99177e0c)
Gbp-Pq: Name py3.10-prep-Finally-support-Python-3.10.patch
Christian Tismer [Sat, 8 May 2021 14:06:23 +0000 (16:06 +0200)]
py3.10-prep: Fix parser.py for changed typing module
The typing module has subtle changes that are not even
documented: Typing types now have a __name__ attribute.
That confused the parser of the pyi generator because
suddenly stingizing
Callable[..., Optional[str]]
resulted in
Callable[..., Optional]
because of special rules that return the generic name
of a typing type, which was very unexpected. Finding this bug
took a lot of debugging of the recursive `_resolve_type`
function.
(cherry picked from commit
2530cb3f165ac02b8f7132e3f5ab4f7f6896dbd9)
Gbp-Pq: Name py3.10-prep-Fix-parser.py-for-changed-typing-module.patch
Christian Tismer [Sat, 8 May 2021 14:06:23 +0000 (16:06 +0200)]
py3.10-prep: reset the type cache after feature switching
When using feature switching in Python 3.10, there were
funny effects where switched and un-switched versions appeared
to co-exist.
It turned out that we were hit by function caching that
is now implemented for the LOAD_ATTR opcode.
It was not known that caching would happen at all for
PySide classes because we don't use Py_TPFLAGS_VALID_VERSION_TAG.
But actually, this flag is used internally by Python to do some
optimizations, and we just have to notify the interpreter of
type changes by PyType_Modified().
(cherry picked from commit
3a2b7c6f88bba04d8b7ddb571163d23c15c36a4f)
Gbp-Pq: Name py3.10-prep-reset-the-type-cache-after-feature-switching.patch
Christian Tismer [Wed, 23 Dec 2020 11:28:16 +0000 (13:28 +0200)]
qApp: fix flag handling in Python 3.8+ and a Python 3.9 issue
This is an old problem that was solved for Python 2.7.
From Python 3.8 on, the behavior is the same with Python 3.
The fix finally was to extend a Python 2.7 patch to Python 3
as well. See the Jira issue for details.
This patch includes also a small patch that was mentioned as
necessary for Python 3.9: Python issue 40217. I have seen no
effect of this change yet but applied the patch, anyway.
Origin: https://codereview.qt-project.org/c/pyside/pyside-setup/+/328046
Gbp-Pq: Name qApp-fix-flag-handling.patch
Dmitry Shachnev [Wed, 16 Dec 2020 17:26:18 +0000 (20:26 +0300)]
Pass --reuse-build only to commands that use DistUtilsCommandMixin
This is a concatenation of two upstream commits:
- https://code.qt.io/cgit/pyside/pyside-setup.git/commit/?id=
ed0571df854a232e
- https://code.qt.io/cgit/pyside/pyside-setup.git/commit/?id=
3f00c2adad2e38b0
Gbp-Pq: Name fix-reuse-build.patch
Sophie Brun [Fri, 22 Nov 2019 12:24:54 +0000 (13:24 +0100)]
Blacklist failing tests
Forwarded:
https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-1146?filter=allopenissues
Gbp-Pq: Name blacklist-failing-tests.patch
Sophie Brun [Tue, 5 Nov 2019 09:39:14 +0000 (10:39 +0100)]
Fix spelling errors
Last-Update: 2018-07-12
Gbp-Pq: Name fix-spelling-errors.patch
Kurt Kremitzki [Tue, 16 Nov 2021 09:16:14 +0000 (09:16 +0000)]
Update import of PyQt5 private sip module and remove Python 2/PyQt4 setapi calls
Last-Updated: 2020-12-20
Gbp-Pq: Name update-sip-import.patch
Dmitry Shachnev [Tue, 16 Nov 2021 09:16:14 +0000 (09:16 +0000)]
pyside2 (5.15.2-2) unstable; urgency=medium
* Backport upstream patches for Python 3.10 support (closes: #999369).
* Backport upstream patch to adapt for LLVM 12.01.
* Run build-time tests with all supported Python versions.
- Add a patch to make the tests find the matching build directory.
[dgit import unpatched pyside2 5.15.2-2]
Dmitry Shachnev [Tue, 16 Nov 2021 09:16:14 +0000 (09:16 +0000)]
Import pyside2_5.15.2-2.debian.tar.xz
[dgit import tarball pyside2 5.15.2-2 pyside2_5.15.2-2.debian.tar.xz]
Raspbian automatic forward porter [Fri, 1 Jan 2021 14:16:25 +0000 (14:16 +0000)]
Merge version 5.15.0-6+rpi1 and 5.15.2-1 to produce 5.15.2-1+rpi1
Dmitry Shachnev [Sat, 26 Dec 2020 08:39:45 +0000 (08:39 +0000)]
Merge pyside2 (5.15.2-1) import into refs/heads/workingbranch
Christian Tismer [Wed, 23 Dec 2020 11:28:16 +0000 (13:28 +0200)]
qApp: fix flag handling in Python 3.8+ and a Python 3.9 issue
This is an old problem that was solved for Python 2.7.
From Python 3.8 on, the behavior is the same with Python 3.
The fix finally was to extend a Python 2.7 patch to Python 3
as well. See the Jira issue for details.
This patch includes also a small patch that was mentioned as
necessary for Python 3.9: Python issue 40217. I have seen no
effect of this change yet but applied the patch, anyway.
Origin: https://codereview.qt-project.org/c/pyside/pyside-setup/+/328046
Gbp-Pq: Name qApp-fix-flag-handling.patch
Dmitry Shachnev [Wed, 16 Dec 2020 17:26:18 +0000 (20:26 +0300)]
Pass --reuse-build only to commands that use DistUtilsCommandMixin
This is a concatenation of two upstream commits:
- https://code.qt.io/cgit/pyside/pyside-setup.git/commit/?id=
ed0571df854a232e
- https://code.qt.io/cgit/pyside/pyside-setup.git/commit/?id=
3f00c2adad2e38b0
Gbp-Pq: Name fix-reuse-build.patch
Sophie Brun [Fri, 22 Nov 2019 12:24:54 +0000 (13:24 +0100)]
Blacklist failing tests
Forwarded:
https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-1146?filter=allopenissues
Gbp-Pq: Name blacklist-failing-tests.patch
Sophie Brun [Tue, 5 Nov 2019 09:39:14 +0000 (10:39 +0100)]
Fix spelling errors
Last-Update: 2018-07-12
Gbp-Pq: Name fix-spelling-errors.patch
Kurt Kremitzki [Sat, 26 Dec 2020 08:39:45 +0000 (08:39 +0000)]
Update import of PyQt5 private sip module and remove Python 2/PyQt4 setapi calls
Last-Updated: 2020-12-20
Gbp-Pq: Name update-sip-import.patch
Dmitry Shachnev [Sat, 26 Dec 2020 08:39:45 +0000 (08:39 +0000)]
pyside2 (5.15.2-1) unstable; urgency=medium
* Team upload.
* Add missing dependencies to make the autopkgtest pass again.
* Backport proposed upstream patch to fix qApp flags handling.
- Unblacklist QtWidgets::bug_307 test, it should not fail anymore.
[dgit import unpatched pyside2 5.15.2-1]
Dmitry Shachnev [Sat, 26 Dec 2020 08:39:45 +0000 (08:39 +0000)]
Import pyside2_5.15.2-1.debian.tar.xz
[dgit import tarball pyside2 5.15.2-1 pyside2_5.15.2-1.debian.tar.xz]
Kurt Kremitzki [Sat, 19 Dec 2020 20:26:09 +0000 (20:26 +0000)]
Import pyside2_5.15.2.orig.tar.gz
[dgit import orig pyside2_5.15.2.orig.tar.gz]
Raspbian automatic forward porter [Fri, 18 Dec 2020 18:57:53 +0000 (18:57 +0000)]
Merge version 5.15.0-5+rpi1 and 5.15.0-6 to produce 5.15.0-6+rpi1
Dmitry Shachnev [Mon, 14 Dec 2020 17:31:39 +0000 (17:31 +0000)]
Merge pyside2 (5.15.0-6) import into refs/heads/workingbranch
Christian Tismer [Thu, 18 Jun 2020 12:11:14 +0000 (14:11 +0200)]
support Python 3.9
Thanks Cristian for adding cosmetic changes which should already
have been applied in Python 3.8 or earlier.
(cherry picked from commit
401f4ff22833f2be900d9a6d8887e7dae7b07011)
Gbp-Pq: Name python3.9.patch
Sophie Brun [Fri, 22 Nov 2019 12:24:54 +0000 (13:24 +0100)]
Blacklist failing tests
Forwarded:
https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-1146?filter=allopenissues
Gbp-Pq: Name blacklist-failing-tests.patch
Debian Qt/KDE Maintainers [Tue, 5 Nov 2019 09:39:14 +0000 (10:39 +0100)]
update-patchelf
Update patchelf to current git version
The current version fixes a bug which broke the ability to strip
binaries with debug symbols:
https://github.com/NixOS/patchelf/pull/117
With the former version of patchelf, I would get "not enough room for
program headers, try linking with -N" when trying to strip the binaries.
This patch brings patchelf in sync with the commit
27ffe8ae871e7a186018d66020ef3f6162c12c69 of patchelf's git
repository.
Also update patchelf's build process to match the logic in upstream's
automake files (thanks to Frédéric Bonnard for the patch to properly use
getconf PAGESIZE).
Bug: https://bugreports.qt.io/browse/PYSIDE-740
Last-Update: 2018-07-09
Gbp-Pq: Name update-patchelf.patch
Sophie Brun [Tue, 5 Nov 2019 09:39:14 +0000 (10:39 +0100)]
Fix spelling errors
Last-Update: 2018-07-12
Last-Update: 2018-07-12
Gbp-Pq: Name fix-spelling-errors.patch
Dmitry Shachnev [Mon, 14 Dec 2020 17:31:39 +0000 (17:31 +0000)]
pyside2 (5.15.0-6) unstable; urgency=medium
* Team upload.
[ Debian Janitor ]
* Apply multi-arch hints.
+ python-pyside2-doc, shiboken2-doc: Add Multi-Arch: foreign.
+ libshiboken2-dev, python3-pyside2.qt*: Add Multi-Arch: same.
[ Dmitry Shachnev ]
* Drop ftbfs-old-qt.patch. Not needed since Debian has Qt 5.15.
* Stop hardcoding py3.8 in debian/shiboken2-doc.docs (closes: #976900).
* Blacklist QtWidgets::bug_307 test for now (closes: #976516).
[dgit import unpatched pyside2 5.15.0-6]
Dmitry Shachnev [Mon, 14 Dec 2020 17:31:39 +0000 (17:31 +0000)]
Import pyside2_5.15.0-6.debian.tar.xz
[dgit import tarball pyside2 5.15.0-6 pyside2_5.15.0-6.debian.tar.xz]
Peter Michael Green [Sat, 31 Oct 2020 13:39:33 +0000 (13:39 +0000)]
Manual merge of version 5.15.0-3+rpi1 and 5.15.0-5 to produce 5.15.0-5+rpi1
Dmitry Shachnev [Mon, 19 Oct 2020 18:50:57 +0000 (19:50 +0100)]
Merge pyside2 (5.15.0-5) import into refs/heads/workingbranch
Christian Tismer [Thu, 18 Jun 2020 12:11:14 +0000 (14:11 +0200)]
support Python 3.9
Thanks Cristian for adding cosmetic changes which should already
have been applied in Python 3.8 or earlier.
(cherry picked from commit
401f4ff22833f2be900d9a6d8887e7dae7b07011)
Gbp-Pq: Name python3.9.patch
Gianfranco Costamagna [Mon, 19 Oct 2020 18:50:57 +0000 (19:50 +0100)]
Revert endl changes because incompatible with qt 5.14
Last-Update: 2020-06-06
Gbp-Pq: Name ftbfs-old-qt.patch
Sophie Brun [Fri, 22 Nov 2019 12:24:54 +0000 (13:24 +0100)]
Blacklist failing tests
Forwarded:
https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-1146?filter=allopenissues
Gbp-Pq: Name blacklist-failing-tests.patch
Debian Qt/KDE Maintainers [Tue, 5 Nov 2019 09:39:14 +0000 (10:39 +0100)]
update-patchelf
Update patchelf to current git version
The current version fixes a bug which broke the ability to strip
binaries with debug symbols:
https://github.com/NixOS/patchelf/pull/117
With the former version of patchelf, I would get "not enough room for
program headers, try linking with -N" when trying to strip the binaries.
This patch brings patchelf in sync with the commit
27ffe8ae871e7a186018d66020ef3f6162c12c69 of patchelf's git
repository.
Also update patchelf's build process to match the logic in upstream's
automake files (thanks to Frédéric Bonnard for the patch to properly use
getconf PAGESIZE).
Bug: https://bugreports.qt.io/browse/PYSIDE-740
Last-Update: 2018-07-09
Gbp-Pq: Name update-patchelf.patch
Sophie Brun [Tue, 5 Nov 2019 09:39:14 +0000 (10:39 +0100)]
Fix spelling errors
Last-Update: 2018-07-12
Last-Update: 2018-07-12
Gbp-Pq: Name fix-spelling-errors.patch
Dmitry Shachnev [Mon, 19 Oct 2020 18:50:57 +0000 (19:50 +0100)]
pyside2 (5.15.0-5) unstable; urgency=medium
* Team upload.
* Run tests with QSG_NO_DEPTH_BUFFER=1 on mips64el (see #868745).
[dgit import unpatched pyside2 5.15.0-5]
Dmitry Shachnev [Mon, 19 Oct 2020 18:50:57 +0000 (19:50 +0100)]
Import pyside2_5.15.0-5.debian.tar.xz
[dgit import tarball pyside2 5.15.0-5 pyside2_5.15.0-5.debian.tar.xz]
Raspbian automatic forward porter [Fri, 17 Jul 2020 08:34:31 +0000 (09:34 +0100)]
Merge version 5.15.0-2+rpi1 and 5.15.0-3 to produce 5.15.0-3+rpi1
Kurt Kremitzki [Sun, 5 Jul 2020 10:13:51 +0000 (11:13 +0100)]
Merge pyside2 (5.15.0-3) import into refs/heads/workingbranch
Dmitry Shachnev [Mon, 29 Jun 2020 12:08:42 +0000 (15:08 +0300)]
Preload libGLX_mesa.so.0 in web_engine_initialize.py
We need to load this library before loading QtWebEngine, because
otherwise loading it will fail on arm64 with the following error:
/usr/lib/aarch64-linux-gnu/libglapi.so.0: cannot allocate memory in static TLS block
Gbp-Pq: Name preload-libglx-mesa.patch
Gianfranco Costamagna [Sun, 5 Jul 2020 10:13:51 +0000 (11:13 +0100)]
Revert endl changes because incompatible with qt 5.14
Last-Update: 2020-06-06
Gbp-Pq: Name ftbfs-old-qt.patch
Sophie Brun [Fri, 22 Nov 2019 12:24:54 +0000 (13:24 +0100)]
Blacklist failing tests
Forwarded:
https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-1146?filter=allopenissues
Gbp-Pq: Name blacklist-failing-tests.patch
Debian Qt/KDE Maintainers [Tue, 5 Nov 2019 09:39:14 +0000 (10:39 +0100)]
update-patchelf
Update patchelf to current git version
The current version fixes a bug which broke the ability to strip
binaries with debug symbols:
https://github.com/NixOS/patchelf/pull/117
With the former version of patchelf, I would get "not enough room for
program headers, try linking with -N" when trying to strip the binaries.
This patch brings patchelf in sync with the commit
27ffe8ae871e7a186018d66020ef3f6162c12c69 of patchelf's git
repository.
Also update patchelf's build process to match the logic in upstream's
automake files (thanks to Frédéric Bonnard for the patch to properly use
getconf PAGESIZE).
Bug: https://bugreports.qt.io/browse/PYSIDE-740
Last-Update: 2018-07-09
Gbp-Pq: Name update-patchelf.patch
Sophie Brun [Tue, 5 Nov 2019 09:39:14 +0000 (10:39 +0100)]
Fix spelling errors
Last-Update: 2018-07-12
Last-Update: 2018-07-12
Gbp-Pq: Name fix-spelling-errors.patch
Kurt Kremitzki [Sun, 5 Jul 2020 10:13:51 +0000 (11:13 +0100)]
pyside2 (5.15.0-3) unstable; urgency=medium
[ Dmitry Shachnev ]
* Bump Qt build-dependencies to 5.14. As most Qt packages have a
Build-Depends-Package field in their symbols files, dpkg-shlibdeps will
use that information and generate a runtime dependency on a new enough
Qt version (closes: #963983).
[ Kurt Kremitzki ]
* Remove Freexian folks and add myself to Uploaders
* Correct libshiboken2 CMake include path (Closes: #964201)
[dgit import unpatched pyside2 5.15.0-3]
Kurt Kremitzki [Sun, 5 Jul 2020 10:13:51 +0000 (11:13 +0100)]
Import pyside2_5.15.0-3.debian.tar.xz
[dgit import tarball pyside2 5.15.0-3 pyside2_5.15.0-3.debian.tar.xz]
Peter Michael Green [Sat, 4 Jul 2020 20:11:00 +0000 (20:11 +0000)]
Manual merge of version 5.13.2-3+rpi1 and 5.15.0-2 to produce 5.15.0-2+rpi1
Dmitry Shachnev [Mon, 29 Jun 2020 12:26:26 +0000 (13:26 +0100)]
Merge pyside2 (5.15.0-2) import into refs/heads/workingbranch
Dmitry Shachnev [Mon, 29 Jun 2020 12:08:42 +0000 (15:08 +0300)]
Preload libGLX_mesa.so.0 in web_engine_initialize.py
We need to load this library before loading QtWebEngine, because
otherwise loading it will fail on arm64 with the following error:
/usr/lib/aarch64-linux-gnu/libglapi.so.0: cannot allocate memory in static TLS block
Gbp-Pq: Name preload-libglx-mesa.patch
Gianfranco Costamagna [Mon, 29 Jun 2020 12:26:26 +0000 (13:26 +0100)]
Revert endl changes because incompatible with qt 5.14
Last-Update: 2020-06-06
Gbp-Pq: Name ftbfs-old-qt.patch
Sophie Brun [Fri, 22 Nov 2019 12:24:54 +0000 (13:24 +0100)]
Blacklist failing tests
Forwarded:
https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-1146?filter=allopenissues
Gbp-Pq: Name blacklist-failing-tests.patch
Debian Qt/KDE Maintainers [Tue, 5 Nov 2019 09:39:14 +0000 (10:39 +0100)]
update-patchelf
Update patchelf to current git version
The current version fixes a bug which broke the ability to strip
binaries with debug symbols:
https://github.com/NixOS/patchelf/pull/117
With the former version of patchelf, I would get "not enough room for
program headers, try linking with -N" when trying to strip the binaries.
This patch brings patchelf in sync with the commit
27ffe8ae871e7a186018d66020ef3f6162c12c69 of patchelf's git
repository.
Also update patchelf's build process to match the logic in upstream's
automake files (thanks to Frédéric Bonnard for the patch to properly use
getconf PAGESIZE).
Bug: https://bugreports.qt.io/browse/PYSIDE-740
Last-Update: 2018-07-09
Gbp-Pq: Name update-patchelf.patch
Sophie Brun [Tue, 5 Nov 2019 09:39:14 +0000 (10:39 +0100)]
Fix spelling errors
Last-Update: 2018-07-12
Last-Update: 2018-07-12
Gbp-Pq: Name fix-spelling-errors.patch
Dmitry Shachnev [Mon, 29 Jun 2020 12:26:26 +0000 (13:26 +0100)]
pyside2 (5.15.0-2) unstable; urgency=medium
* Team upload.
* Preload libGLX_mesa.so.0 in web_engine_initialize.py, to work around
test failure on arm64 (closes: #963709).
[dgit import unpatched pyside2 5.15.0-2]
Dmitry Shachnev [Mon, 29 Jun 2020 12:26:26 +0000 (13:26 +0100)]
Import pyside2_5.15.0-2.debian.tar.xz
[dgit import tarball pyside2 5.15.0-2 pyside2_5.15.0-2.debian.tar.xz]
Gianfranco Costamagna [Sat, 6 Jun 2020 12:48:45 +0000 (13:48 +0100)]
Import pyside2_5.15.0.orig.tar.xz
[dgit import orig pyside2_5.15.0.orig.tar.xz]
Peter Michael Green [Mon, 25 May 2020 21:10:06 +0000 (21:10 +0000)]
Disable testsuite.
Peter Michael Green [Sun, 24 May 2020 10:42:11 +0000 (10:42 +0000)]
Manual merge of version 5.13.2-2.2+rpi1 and 5.13.2-3 to produce 5.13.2-3+rpi1
Kurt Kremitzki [Mon, 18 May 2020 01:27:01 +0000 (02:27 +0100)]
Merge pyside2 (5.13.2-3) import into refs/heads/workingbranch
looooo [Sun, 12 Jan 2020 14:01:24 +0000 (15:01 +0100)]
[PATCH 3/3] make compilation work after backporting
Gbp-Pq: Name 0004-make-compilation-work-after-backporting.patch
Christian Tismer [Thu, 5 Dec 2019 10:08:50 +0000 (11:08 +0100)]
[PATCH 2/3] Optimize the Python 3.8 refcount fix a tiny bit
This change uses the fact that our workaround to temporarily remove
the Py_TPFLAGS_METHOD_DESCRIPTOR flag uses the "mro" function
of PyType_Type, which never will change.
Therefore, the static keyword makes sure that this function lookup
happens only once.
Change-Id: I44b74556da1fac2596c81339af30cb66218276e2
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Gbp-Pq: Name 0003-Optimize-the-Python-3.8-refcount-fix-a-tiny-bit.patch
Christian Tismer [Tue, 26 Nov 2019 10:54:37 +0000 (11:54 +0100)]
[PATCH 1/3] Fix Python 3.8 problems
This patch fixes some refcounting problems with Python 3.8 .
One incompatible change was announced in the what's new
document, but actually there were two more problems which
were not explicitly mentioned but took much time to sort out.
The patch is compatible with the limited API changes
(tested with debug build and API error disabled).
It is also independent of the Python version which is
full Limited API support.
For more info, see the documentation mentioned below.
The flag error is circumvented now! We either find a better
solution or leave it as it is. For now this is ok.
Fixes: PYSIDE-939
Change-Id: Iff4a9816857a6ebe86efd4b654d8921e4e464939
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Gbp-Pq: Name 0002-Fix-Python-3.8-problems.patch
Sophie Brun [Fri, 22 Nov 2019 12:24:54 +0000 (13:24 +0100)]
Blacklist other failing tests
Forwarded:
https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-1145?filter=allopenissues
https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-1146?filter=allopenissues
Gbp-Pq: Name blacklist-failing-tests.patch
Sophie Brun [Thu, 7 Nov 2019 15:07:02 +0000 (16:07 +0100)]
Use python3 by default
Last-Update: 2019-11-07
Gbp-Pq: Name use-python3.patch
Sophie Brun [Tue, 5 Nov 2019 13:13:31 +0000 (14:13 +0100)]
Add Python 3.8 in Programming Language
Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=942753
Last-Update: 2019-11-05
Gbp-Pq: Name add-python3.8.patch
Debian Qt/KDE Maintainers [Tue, 5 Nov 2019 09:39:14 +0000 (10:39 +0100)]
update-patchelf
Update patchelf to current git version
The current version fixes a bug which broke the ability to strip
binaries with debug symbols:
https://github.com/NixOS/patchelf/pull/117
With the former version of patchelf, I would get "not enough room for
program headers, try linking with -N" when trying to strip the binaries.
This patch brings patchelf in sync with the commit
27ffe8ae871e7a186018d66020ef3f6162c12c69 of patchelf's git
repository.
Also update patchelf's build process to match the logic in upstream's
automake files (thanks to Frédéric Bonnard for the patch to properly use
getconf PAGESIZE).
Bug: https://bugreports.qt.io/browse/PYSIDE-740
Last-Update: 2018-07-09
Gbp-Pq: Name update-patchelf.patch
Sophie Brun [Tue, 5 Nov 2019 09:39:14 +0000 (10:39 +0100)]
Drop git requirement
Last-Update: 2018-07-06
Only to allow local build without git.
Last-Update: 2018-07-06
Gbp-Pq: Name drop-git-requirement.patch
Sophie Brun [Tue, 5 Nov 2019 09:39:14 +0000 (10:39 +0100)]
Fix spelling errors
Last-Update: 2018-07-12
Last-Update: 2018-07-12
Gbp-Pq: Name fix-spelling-errors.patch
Kurt Kremitzki [Mon, 18 May 2020 01:27:01 +0000 (02:27 +0100)]
pyside2 (5.13.2-3) unstable; urgency=medium
* Add patches for Python 3.8 (Closes: #950129)
* Add test dep python3-distro
* Update shiboken2 doc path
* Add CMake sed for pyside2 include path
* Add CMake sed for multi-Python version support
* Add python3-all to autopkgtest deps (Closes: #950127)
* Remove Freexian folks from Uploaders
[dgit import unpatched pyside2 5.13.2-3]
Kurt Kremitzki [Mon, 18 May 2020 01:27:01 +0000 (02:27 +0100)]
Import pyside2_5.13.2-3.debian.tar.xz
[dgit import tarball pyside2 5.13.2-3 pyside2_5.13.2-3.debian.tar.xz]
Peter Michael Green [Sun, 12 Jan 2020 16:29:03 +0000 (16:29 +0000)]
Replace 64 with ?? in debian/shiboken2-doc.docs to fix arch all build
on 32-bit architectures.
Peter Michael Green [Sat, 11 Jan 2020 11:04:20 +0000 (11:04 +0000)]
Remove armhf from another qtwebengine architecture list.
Peter Michael Green [Fri, 10 Jan 2020 22:17:52 +0000 (22:17 +0000)]
Manual merge of version 5.11.2-3+rpi1 and 5.13.2-2.2 to produce 5.13.2-2.2+rpi1
Gianfranco Costamagna [Sun, 29 Dec 2019 21:44:55 +0000 (21:44 +0000)]
Merge pyside2 (5.13.2-2.2) import into refs/heads/workingbranch
Sophie Brun [Fri, 22 Nov 2019 12:24:54 +0000 (13:24 +0100)]
Blacklist other failing tests
Forwarded:
https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-1145?filter=allopenissues
https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-1146?filter=allopenissues
Gbp-Pq: Name blacklist-failing-tests.patch
Sophie Brun [Thu, 7 Nov 2019 15:07:02 +0000 (16:07 +0100)]
Use python3 by default
Last-Update: 2019-11-07
Gbp-Pq: Name use-python3.patch
Sophie Brun [Tue, 5 Nov 2019 13:13:31 +0000 (14:13 +0100)]
Add Python 3.8 in Programming Language
Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=942753
Last-Update: 2019-11-05
Gbp-Pq: Name add-python3.8.patch
Debian Qt/KDE Maintainers [Tue, 5 Nov 2019 09:39:14 +0000 (10:39 +0100)]
update-patchelf
Update patchelf to current git version
The current version fixes a bug which broke the ability to strip
binaries with debug symbols:
https://github.com/NixOS/patchelf/pull/117
With the former version of patchelf, I would get "not enough room for
program headers, try linking with -N" when trying to strip the binaries.
This patch brings patchelf in sync with the commit
27ffe8ae871e7a186018d66020ef3f6162c12c69 of patchelf's git
repository.
Also update patchelf's build process to match the logic in upstream's
automake files (thanks to Frédéric Bonnard for the patch to properly use
getconf PAGESIZE).
Bug: https://bugreports.qt.io/browse/PYSIDE-740
Last-Update: 2018-07-09
Gbp-Pq: Name update-patchelf.patch
Sophie Brun [Tue, 5 Nov 2019 09:39:14 +0000 (10:39 +0100)]
Drop git requirement
Last-Update: 2018-07-06
Only to allow local build without git.
Last-Update: 2018-07-06
Gbp-Pq: Name drop-git-requirement.patch
Sophie Brun [Tue, 5 Nov 2019 09:39:14 +0000 (10:39 +0100)]
Fix spelling errors
Last-Update: 2018-07-12
Last-Update: 2018-07-12
Gbp-Pq: Name fix-spelling-errors.patch
Gianfranco Costamagna [Sun, 29 Dec 2019 21:44:55 +0000 (21:44 +0000)]
pyside2 (5.13.2-2.2) unstable; urgency=medium
* Non-maintainer upload
* Update cmake paths for new locations
[dgit import unpatched pyside2 5.13.2-2.2]
Gianfranco Costamagna [Sun, 29 Dec 2019 21:44:55 +0000 (21:44 +0000)]
Import pyside2_5.13.2-2.2.debian.tar.xz
[dgit import tarball pyside2 5.13.2-2.2 pyside2_5.13.2-2.2.debian.tar.xz]
Sophie Brun [Fri, 15 Nov 2019 09:15:57 +0000 (09:15 +0000)]
Import pyside2_5.13.2.orig.tar.xz
[dgit import orig pyside2_5.13.2.orig.tar.xz]
Raspbian automatic forward porter [Thu, 24 Jan 2019 17:32:39 +0000 (17:32 +0000)]
Merge version 5.11.2-1+rpi1 and 5.11.2-3 to produce 5.11.2-3+rpi1
Sebastien Delafond [Wed, 16 Jan 2019 15:30:16 +0000 (15:30 +0000)]
Merge pyside2 (5.11.2-3) import into refs/heads/workingbranch
Debian Qt/KDE Maintainers [Wed, 16 Jan 2019 15:30:16 +0000 (15:30 +0000)]
remove-privacy-breach-in-doc
Gbp-Pq: Name remove-privacy-breach-in-doc.patch
Debian Qt/KDE Maintainers [Wed, 16 Jan 2019 15:30:16 +0000 (15:30 +0000)]
update-patchelf
Update patchelf to current git version
The current version fixes a bug which broke the ability to strip
binaries with debug symbols:
https://github.com/NixOS/patchelf/pull/117
With the former version of patchelf, I would get "not enough room for
program headers, try linking with -N" when trying to strip the binaries.
This patch brings patchelf in sync with the commit
27ffe8ae871e7a186018d66020ef3f6162c12c69 of patchelf's git
repository.
Also update patchelf's build process to match the logic in upstream's
automake files (thanks to Frédéric Bonnard for the patch to properly use
getconf PAGESIZE).
Bug: https://bugreports.qt.io/browse/PYSIDE-740
Last-Update: 2018-07-09
Gbp-Pq: Name update-patchelf.patch
Debian Qt/KDE Maintainers [Wed, 16 Jan 2019 15:30:16 +0000 (15:30 +0000)]
drop-git-requirement
Gbp-Pq: Name drop-git-requirement.patch
Debian Qt/KDE Maintainers [Wed, 16 Jan 2019 15:30:16 +0000 (15:30 +0000)]
fix-spelling-errors
Gbp-Pq: Name fix-spelling-errors.patch
Sebastien Delafond [Wed, 16 Jan 2019 15:30:16 +0000 (15:30 +0000)]
pyside2 (5.11.2-3) unstable; urgency=medium
[ Sébastien Delafond ]
* Do not build-depends on patchelf on mips and mipsel (Closes: #917199)
[dgit import unpatched pyside2 5.11.2-3]
Sebastien Delafond [Wed, 16 Jan 2019 15:30:16 +0000 (15:30 +0000)]
Import pyside2_5.11.2-3.debian.tar.xz
[dgit import tarball pyside2 5.11.2-3 pyside2_5.11.2-3.debian.tar.xz]
Sebastien Delafond [Thu, 10 Jan 2019 08:21:43 +0000 (08:21 +0000)]
Merge pyside2 (5.11.2-2) import into refs/heads/workingbranch
Debian Qt/KDE Maintainers [Thu, 10 Jan 2019 08:21:43 +0000 (08:21 +0000)]
remove-privacy-breach-in-doc
Gbp-Pq: Name remove-privacy-breach-in-doc.patch
Debian Qt/KDE Maintainers [Thu, 10 Jan 2019 08:21:43 +0000 (08:21 +0000)]
update-patchelf
Update patchelf to current git version
The current version fixes a bug which broke the ability to strip
binaries with debug symbols:
https://github.com/NixOS/patchelf/pull/117
With the former version of patchelf, I would get "not enough room for
program headers, try linking with -N" when trying to strip the binaries.
This patch brings patchelf in sync with the commit
27ffe8ae871e7a186018d66020ef3f6162c12c69 of patchelf's git
repository.
Also update patchelf's build process to match the logic in upstream's
automake files (thanks to Frédéric Bonnard for the patch to properly use
getconf PAGESIZE).
Bug: https://bugreports.qt.io/browse/PYSIDE-740
Last-Update: 2018-07-09
Gbp-Pq: Name update-patchelf.patch
Debian Qt/KDE Maintainers [Thu, 10 Jan 2019 08:21:43 +0000 (08:21 +0000)]
drop-git-requirement
Gbp-Pq: Name drop-git-requirement.patch