pyside2.git
3 years agoMerge pyside2 (5.15.2-2.3) import into refs/heads/workingbranch
Christian Marillat [Fri, 17 Jun 2022 15:49:37 +0000 (16:49 +0100)]
Merge pyside2 (5.15.2-2.3) import into refs/heads/workingbranch

3 years agoFind the build directory matching the current interpreter
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

3 years agoshiboken6: Adapt to LLVM 12.01
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

3 years agopy3.10-prep: Fix a very old refcounting error in time_test.py
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

3 years agopy3.10-prep: Finally support Python 3.10
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

3 years agopy3.10-prep: Fix parser.py for changed typing module
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

3 years agopy3.10-prep: reset the type cache after feature switching
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

3 years agoqApp: fix flag handling in Python 3.8+ and a Python 3.9 issue
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

3 years agoPass --reuse-build only to commands that use DistUtilsCommandMixin
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

3 years agoBlacklist failing tests
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

3 years agoFix spelling errors
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

3 years agoUpdate import of PyQt5 private sip module and remove Python 2/PyQt4 setapi calls
Kurt Kremitzki [Fri, 17 Jun 2022 15:49:37 +0000 (16:49 +0100)]
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

3 years agopyside2 (5.15.2-2.3) unstable; urgency=medium
Christian Marillat [Fri, 17 Jun 2022 15:49:37 +0000 (16:49 +0100)]
pyside2 (5.15.2-2.3) unstable; urgency=medium

  * Call "py3versions -d" instead of "py3versions -r" in tests.
  *

[dgit import unpatched pyside2 5.15.2-2.3]

3 years agoImport pyside2_5.15.2-2.3.debian.tar.xz
Christian Marillat [Fri, 17 Jun 2022 15:49:37 +0000 (16:49 +0100)]
Import pyside2_5.15.2-2.3.debian.tar.xz

[dgit import tarball pyside2 5.15.2-2.3 pyside2_5.15.2-2.3.debian.tar.xz]

4 years agoMerge pyside2 (5.15.2-2) import into refs/heads/workingbranch
Dmitry Shachnev [Tue, 16 Nov 2021 09:16:14 +0000 (09:16 +0000)]
Merge pyside2 (5.15.2-2) import into refs/heads/workingbranch

4 years agoFind the build directory matching the current interpreter
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

4 years agoshiboken6: Adapt to LLVM 12.01
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

4 years agopy3.10-prep: Fix a very old refcounting error in time_test.py
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

4 years agopy3.10-prep: Finally support Python 3.10
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

4 years agopy3.10-prep: Fix parser.py for changed typing module
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

4 years agopy3.10-prep: reset the type cache after feature switching
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

4 years agoqApp: fix flag handling in Python 3.8+ and a Python 3.9 issue
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

4 years agoPass --reuse-build only to commands that use DistUtilsCommandMixin
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

4 years agoBlacklist failing tests
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

4 years agoFix spelling errors
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

4 years agoUpdate import of PyQt5 private sip module and remove Python 2/PyQt4 setapi calls
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

4 years agopyside2 (5.15.2-2) unstable; urgency=medium
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]

4 years agoImport pyside2_5.15.2-2.debian.tar.xz
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]

4 years agoMerge pyside2 (5.15.2-1) import into refs/heads/workingbranch
Dmitry Shachnev [Sat, 26 Dec 2020 08:39:45 +0000 (08:39 +0000)]
Merge pyside2 (5.15.2-1) import into refs/heads/workingbranch

4 years agoqApp: fix flag handling in Python 3.8+ and a Python 3.9 issue
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

4 years agoPass --reuse-build only to commands that use DistUtilsCommandMixin
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

4 years agoBlacklist failing tests
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

4 years agoFix spelling errors
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

4 years agoUpdate import of PyQt5 private sip module and remove Python 2/PyQt4 setapi calls
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

4 years agopyside2 (5.15.2-1) unstable; urgency=medium
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]

4 years agoImport pyside2_5.15.2-1.debian.tar.xz
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]

4 years agoImport pyside2_5.15.2.orig.tar.gz
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]

5 years agoMerge pyside2 (5.15.0-6) import into refs/heads/workingbranch
Dmitry Shachnev [Mon, 14 Dec 2020 17:31:39 +0000 (17:31 +0000)]
Merge pyside2 (5.15.0-6) import into refs/heads/workingbranch

5 years agosupport Python 3.9
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

5 years agoBlacklist failing tests
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

5 years agoupdate-patchelf
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

5 years agoFix spelling errors
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

5 years agopyside2 (5.15.0-6) unstable; urgency=medium
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]

5 years agoImport pyside2_5.15.0-6.debian.tar.xz
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]

5 years agoMerge pyside2 (5.15.0-5) import into refs/heads/workingbranch
Dmitry Shachnev [Mon, 19 Oct 2020 18:50:57 +0000 (19:50 +0100)]
Merge pyside2 (5.15.0-5) import into refs/heads/workingbranch

5 years agosupport Python 3.9
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

5 years agoRevert endl changes because incompatible with qt 5.14
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

5 years agoBlacklist failing tests
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

5 years agoupdate-patchelf
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

5 years agoFix spelling errors
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

5 years agopyside2 (5.15.0-5) unstable; urgency=medium
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]

5 years agoImport pyside2_5.15.0-5.debian.tar.xz
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]

5 years agoMerge pyside2 (5.15.0-3) import into refs/heads/workingbranch
Kurt Kremitzki [Sun, 5 Jul 2020 10:13:51 +0000 (11:13 +0100)]
Merge pyside2 (5.15.0-3) import into refs/heads/workingbranch

5 years agoPreload libGLX_mesa.so.0 in web_engine_initialize.py
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

5 years agoRevert endl changes because incompatible with qt 5.14
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

5 years agoBlacklist failing tests
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

5 years agoupdate-patchelf
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

5 years agoFix spelling errors
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

5 years agopyside2 (5.15.0-3) unstable; urgency=medium
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]

5 years agoImport pyside2_5.15.0-3.debian.tar.xz
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]

5 years agoMerge pyside2 (5.15.0-2) import into refs/heads/workingbranch
Dmitry Shachnev [Mon, 29 Jun 2020 12:26:26 +0000 (13:26 +0100)]
Merge pyside2 (5.15.0-2) import into refs/heads/workingbranch

5 years agoPreload libGLX_mesa.so.0 in web_engine_initialize.py
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

5 years agoRevert endl changes because incompatible with qt 5.14
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

5 years agoBlacklist failing tests
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

5 years agoupdate-patchelf
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

5 years agoFix spelling errors
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

5 years agopyside2 (5.15.0-2) unstable; urgency=medium
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]

5 years agoImport pyside2_5.15.0-2.debian.tar.xz
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]

5 years agoImport pyside2_5.15.0.orig.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]

5 years agoMerge pyside2 (5.13.2-2.2) import into refs/heads/workingbranch
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

5 years agoBlacklist other failing tests
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

5 years agoUse python3 by default
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

5 years agoAdd Python 3.8 in Programming Language
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

5 years agoupdate-patchelf
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

5 years agoDrop git requirement
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

5 years agoFix spelling errors
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

5 years agopyside2 (5.13.2-2.2) unstable; urgency=medium
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]

5 years agoImport pyside2_5.13.2-2.2.debian.tar.xz
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]

6 years agoImport pyside2_5.13.2.orig.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]

6 years agoMerge pyside2 (5.11.2-3) import into refs/heads/workingbranch
Sebastien Delafond [Wed, 16 Jan 2019 15:30:16 +0000 (15:30 +0000)]
Merge pyside2 (5.11.2-3) import into refs/heads/workingbranch

6 years agoremove-privacy-breach-in-doc
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

6 years agoupdate-patchelf
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

6 years agodrop-git-requirement
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

6 years agofix-spelling-errors
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

6 years agopyside2 (5.11.2-3) unstable; urgency=medium
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]

6 years agoImport pyside2_5.11.2-3.debian.tar.xz
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]

6 years agoMerge pyside2 (5.11.2-2) import into refs/heads/workingbranch
Sebastien Delafond [Thu, 10 Jan 2019 08:21:43 +0000 (08:21 +0000)]
Merge pyside2 (5.11.2-2) import into refs/heads/workingbranch

6 years agoremove-privacy-breach-in-doc
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

6 years agoupdate-patchelf
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

6 years agodrop-git-requirement
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

6 years agofix-spelling-errors
Debian Qt/KDE Maintainers [Thu, 10 Jan 2019 08:21:43 +0000 (08:21 +0000)]
fix-spelling-errors

Gbp-Pq: Name fix-spelling-errors.patch

6 years agopyside2 (5.11.2-2) unstable; urgency=medium
Sebastien Delafond [Thu, 10 Jan 2019 08:21:43 +0000 (08:21 +0000)]
pyside2 (5.11.2-2) unstable; urgency=medium

  [ Sébastien Delafond ]
  * Add myself to uploaders
  * Do not build-depends on patchelf on mips64el (Closes: #917200)

[dgit import unpatched pyside2 5.11.2-2]

6 years agoImport pyside2_5.11.2-2.debian.tar.xz
Sebastien Delafond [Thu, 10 Jan 2019 08:21:43 +0000 (08:21 +0000)]
Import pyside2_5.11.2-2.debian.tar.xz

[dgit import tarball pyside2 5.11.2-2 pyside2_5.11.2-2.debian.tar.xz]

7 years agoImport pyside2_5.11.2.orig.tar.xz
Raphaël Hertzog [Fri, 28 Sep 2018 13:09:34 +0000 (14:09 +0100)]
Import pyside2_5.11.2.orig.tar.xz

[dgit import orig pyside2_5.11.2.orig.tar.xz]

7 years agoremove-privacy-breach-in-doc
Debian Qt/KDE Maintainers [Fri, 28 Sep 2018 13:09:34 +0000 (14:09 +0100)]
remove-privacy-breach-in-doc

Gbp-Pq: Name remove-privacy-breach-in-doc.patch

7 years agoupdate-patchelf
Debian Qt/KDE Maintainers [Fri, 28 Sep 2018 13:09:34 +0000 (14:09 +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

7 years agodrop-git-requirement
Debian Qt/KDE Maintainers [Fri, 28 Sep 2018 13:09:34 +0000 (14:09 +0100)]
drop-git-requirement

Gbp-Pq: Name drop-git-requirement.patch

7 years agofix-spelling-errors
Debian Qt/KDE Maintainers [Fri, 28 Sep 2018 13:09:34 +0000 (14:09 +0100)]
fix-spelling-errors

Gbp-Pq: Name fix-spelling-errors.patch

7 years agopyside2 (5.11.2-1) unstable; urgency=medium
Raphaël Hertzog [Fri, 28 Sep 2018 13:09:34 +0000 (14:09 +0100)]
pyside2 (5.11.2-1) unstable; urgency=medium

  [ Raphaël Hertzog ]
  * New upstream version 5.11.2
  * Remove patches merged upstream
  * Merge fix-PAGESIZE.patch into update-patchelf.patch
  * Add patchelf to Build-Depends
  * Bump Standards-Version to 4.2.1

  [ Frédéric Bonnard ]
  * Fix hardcoded PAGESIZE for patchelf.cc. Closes: #909265

[dgit import unpatched pyside2 5.11.2-1]

7 years agoImport pyside2_5.11.2-1.debian.tar.xz
Raphaël Hertzog [Fri, 28 Sep 2018 13:09:34 +0000 (14:09 +0100)]
Import pyside2_5.11.2-1.debian.tar.xz

[dgit import tarball pyside2 5.11.2-1 pyside2_5.11.2-1.debian.tar.xz]