Aurélien COUDERC [Sun, 8 Jun 2025 12:42:29 +0000 (14:42 +0200)]
Merge kf6-kio (6.13.0-6) import into refs/heads/workingbranch
Akseli Lahtinen [Thu, 22 May 2025 14:35:24 +0000 (17:35 +0300)]
[PATCH] Fix dialog modality settings
By default all dialogs are ApplicationModal, thus they block clicking
on any other app while the dialog is open.
Set them to WindowModal so they only block the parent window.
BUG: 504608
Gbp-Pq: Name upstream_9143fc2a_Fix-dialog-modality-settings.patch
Efe Çiftci [Fri, 16 May 2025 17:50:21 +0000 (20:50 +0300)]
[PATCH] Fix incorrect usage percentage in Properties dialog for virtual filesystems
The Properties dialog for filesystems such as `/proc/` or `/sys/` shows an
incorrect usage percentage (i.e., "-2,147,483,648% used"). This commit fixes
that issue by avoiding a divbyzero: if the `size` variable is `0`, the
`percentUsed` variable is set to `0`.
Gbp-Pq: Name upstream_81ca0e2c_Fix-incorrect-usage-percentage-in-Properties-dialog-for-virtual-filesystems.patch
Akseli Lahtinen [Tue, 13 May 2025 10:01:07 +0000 (13:01 +0300)]
[PATCH] Avoid unnecessary sequencing jobs in PreviewGenerator
Currently we keep constantly asking if the current item has sequences
support or not.
By sequences we mean things like hovering mouse over a folder thumbnail
and it goes through the files in it.
This MR will always run for the first sequence (the initial thumbnail)
but for the rest, then toggles a flag for the node with
Qt::DecorationPropertyRole. If the propertyrole is false, it skips any
further updates to avoid any unnecessary previewjob runs.
Gbp-Pq: Name upstream_c747fa0f_Avoid-unnecessary-sequencing-jobs-in-PreviewGenerator.patch
Akseli Lahtinen [Wed, 7 May 2025 13:35:19 +0000 (16:35 +0300)]
[PATCH] KFileWidget: Fix key navigation escaping in save dialogs
In save dialogs the keyboard navigation would escape during file
highlighting, since the fileHighlight sets the focus for fileName bar
for mouse operations.
This makes sure the user has to press Tab to explicitly escape the
keyboard navigation mode. For clicking the items, it should not affect
at all.
CCBUG: 466206
FIXED-IN: 6.14
(cherry picked from commit
8e4e84f045b7459c0b02b1b1b51a9df73cea068a)
Gbp-Pq: Name upstream_719e0b00_KFileWidget-Fix-key-navigation-escaping-in-save-dialogs.patch
Kai Uwe Broulik [Thu, 1 May 2025 17:02:48 +0000 (19:02 +0200)]
[PATCH] KFilePlacesView: Show busy indicator while emptying trash
Provide some feedback to the user in case it's taking a bit.
Gbp-Pq: Name upstream_3e6175e4_KFilePlacesView-Show-busy-indicator-while-emptying-trash.patch
Kai Uwe Broulik [Thu, 1 May 2025 17:01:23 +0000 (19:01 +0200)]
[PATCH] DeleteOrTrashJob: Add started signal
It's emitted when the user has confirmed emptying trash and
it will actually commence emptying it.
Gbp-Pq: Name upstream_17cd1c9b_DeleteOrTrashJob-Add-started-signal.patch
Kai Uwe Broulik [Sun, 20 Apr 2025 10:48:58 +0000 (12:48 +0200)]
[PATCH] CopyJob: Inhibit suspend during copy operation
Avoids the system going to sleep during a lengthy copy operation.
BUG: 362542
Gbp-Pq: Name upstream_60191c04_CopyJob-Inhibit-suspend-during-copy-operation.patch
Kai Uwe Broulik [Sun, 20 Apr 2025 10:48:26 +0000 (12:48 +0200)]
[PATCH] core: Add infrastructure for inhibiting suspend in jobs
This calls the freedesktop Inhibit interface on DBus which will
inhibit suspend (but not display power management/screensaver).
When inside a sandbox it instead calls the XDG Desktop Portal
Inhibit interface.
When a job is destroyed or gets suspended, the inhibition is lifted.
When a job is resumed, `doInhibitSuspend` is called again to re-instate
the inhibition.
It is the job's responsibility to call `doInhibitSuspend` at
the appropriate time (e.g. in doStart/slotStart).
Gbp-Pq: Name upstream_3c3d5904_core-Add-infrastructure-for-inhibiting-suspend-in-jobs.patch
Balló György [Fri, 4 Apr 2025 06:08:31 +0000 (08:08 +0200)]
[PATCH] KProcessRunner: Fix launching actions without executable
If D-Bus activation is possible, it's not needed to have an executable,
since everything is done via D-Bus. Therefore look for the matching action
name instead of the exec value when launching an action. The specification
allows to omit the "Exec" key if "DBusActivatable" is true.
Most applications specify the Exec parameter for compatibility reasons, but
if the action's "Exec" line got removed from a D-Bus activatable desktop
file, then KIO just activates the application rather than calling the
requested action. This change fixes that issue.
Gbp-Pq: Name upstream_31806c51_KProcessRunner-Fix-launching-actions-without-executable.patch
Akseli Lahtinen [Thu, 17 Apr 2025 08:43:26 +0000 (08:43 +0000)]
[PATCH] KFileWidget: Do not override filename with folder name if edited
If the filename input has been modified, do not override it with
the name of the folder when selecting a folder.
BUG: 502794
FIXED-IN: 6.14
Gbp-Pq: Name upstream_cd0810f8_KFileWidget-Do-not-override-filename-with-folder-name-if-edited.patch
Akseli Lahtinen [Fri, 4 Apr 2025 20:00:59 +0000 (20:00 +0000)]
[PATCH] KUrlNavigatorButton: Use arrow as separators
Due to the feedback of regular separator not being good enough for
separating folders, use an arrow separator instead.
This also refactors bunch of code around the button, so it should
be easier to tweak over time.
Remove icons due to the added clutter. They would work with full height chevrons but those are not technically feasible at this time.
BUG: 501587
BUG: 501575
BUG: 501582
BUG: 501589
BUG: 501706
BUG: 501803
FIXED-IN: 6.14
Gbp-Pq: Name upstream_KUrlNavigatorButton.patch
Akseli Lahtinen [Wed, 9 Apr 2025 07:57:20 +0000 (07:57 +0000)]
[PATCH] Show single-click selection emblem when using single-click mouse mode
In open/save dialog, we had no way to select items when using single-click mouse mode. (Except holding down control key).
This adds the same emblem that Dolphin uses for its selections.
It is shown in both treeviews and listviews, but only when single-click mode is active and the filewidget allows selecting multiple items.
BUG: 185793
FIXED-IN: 6.14
Gbp-Pq: Name upstream_d8441b7b_Show-single-click-selection-emblem-when-using-single-click-mouse-mode.patch
Maximiliano Curia [Wed, 28 Aug 2019 14:50:33 +0000 (11:50 -0300)]
Use CXX_FLAGS for moc_predefs.h
Last-Updated: 2024-12-04
Gbp-Pq: Name Use-CXX_FLAGS-for-moc_predefs.h.patch
Pino Toscano [Sun, 8 Jun 2025 12:42:29 +0000 (14:42 +0200)]
On Hurd, do not look for functions unimplemented in libc
Last-Update: 2024-05-09
Forwarded: not-needed
The check_function_exists() function of cmake does not keep into account the
defines that glibc provides for the stubs (i.e. unimplemented functions that
always return ENOSYS), so some functions are detected as available.
Unfortunately, due to --fatal-warnings for the linker, linking will fail.
Hence, do not attempt to look for functions that are currently unimplemented
on GNU/Hurd's libc.
Gbp-Pq: Name hurd_disable_unimplemented.diff
Debian/Kubuntu Qt/KDE Maintainers [Thu, 31 Mar 2016 13:38:43 +0000 (15:38 +0200)]
report_error_removing_dirs
Last-Updated: 2024-12-04
===================================================================
Gbp-Pq: Name report_error_removing_dirs
Aurélien COUDERC [Sun, 8 Jun 2025 12:42:29 +0000 (14:42 +0200)]
kf6-kio (6.13.0-6) unstable; urgency=medium
[ Aurélien COUDERC ]
* Correctly suffix symbols introduced in 6.13.0-4, thanks Sebastinas
for the clarification.
[dgit import unpatched kf6-kio 6.13.0-6]
Aurélien COUDERC [Sun, 8 Jun 2025 12:42:29 +0000 (14:42 +0200)]
Import kf6-kio_6.13.0-6.debian.tar.xz
[dgit import tarball kf6-kio 6.13.0-6 kf6-kio_6.13.0-6.debian.tar.xz]
Patrick Franz [Fri, 25 Apr 2025 20:41:52 +0000 (22:41 +0200)]
Merge kf6-kio (6.13.0-3) import into refs/heads/workingbranch
Maximiliano Curia [Wed, 28 Aug 2019 14:50:33 +0000 (11:50 -0300)]
Use CXX_FLAGS for moc_predefs.h
Last-Updated: 2024-12-04
Gbp-Pq: Name Use-CXX_FLAGS-for-moc_predefs.h.patch
Pino Toscano [Fri, 25 Apr 2025 20:41:52 +0000 (22:41 +0200)]
On Hurd, do not look for functions unimplemented in libc
Last-Update: 2024-05-09
Forwarded: not-needed
The check_function_exists() function of cmake does not keep into account the
defines that glibc provides for the stubs (i.e. unimplemented functions that
always return ENOSYS), so some functions are detected as available.
Unfortunately, due to --fatal-warnings for the linker, linking will fail.
Hence, do not attempt to look for functions that are currently unimplemented
on GNU/Hurd's libc.
Gbp-Pq: Name hurd_disable_unimplemented.diff
Debian/Kubuntu Qt/KDE Maintainers [Thu, 31 Mar 2016 13:38:43 +0000 (15:38 +0200)]
report_error_removing_dirs
Last-Updated: 2024-12-04
===================================================================
Gbp-Pq: Name report_error_removing_dirs
Akseli Lahtinen [Fri, 4 Apr 2025 20:00:59 +0000 (20:00 +0000)]
[PATCH] KUrlNavigatorButton: Use arrow as separators
Due to the feedback of regular separator not being good enough for
separating folders, use an arrow separator instead.
This also refactors bunch of code around the button, so it should
be easier to tweak over time.
Remove icons due to the added clutter. They would work with full height chevrons but those are not technically feasible at this time.
BUG: 501587
BUG: 501575
BUG: 501582
BUG: 501589
BUG: 501706
BUG: 501803
FIXED-IN: 6.14
Gbp-Pq: Name upstream_KUrlNavigatorButton.patch
Patrick Franz [Fri, 25 Apr 2025 20:41:52 +0000 (22:41 +0200)]
kf6-kio (6.13.0-3) unstable; urgency=medium
[ Patrick Franz ]
* Backport patch to use an arrow separator for separating folders.
[dgit import unpatched kf6-kio 6.13.0-3]
Patrick Franz [Fri, 25 Apr 2025 20:41:52 +0000 (22:41 +0200)]
Import kf6-kio_6.13.0-3.debian.tar.xz
[dgit import tarball kf6-kio 6.13.0-3 kf6-kio_6.13.0-3.debian.tar.xz]
Pino Toscano [Sun, 13 Apr 2025 07:16:12 +0000 (09:16 +0200)]
Merge kf6-kio (6.13.0-2) import into refs/heads/workingbranch
Maximiliano Curia [Wed, 28 Aug 2019 14:50:33 +0000 (11:50 -0300)]
Use CXX_FLAGS for moc_predefs.h
Last-Updated: 2024-12-04
Gbp-Pq: Name Use-CXX_FLAGS-for-moc_predefs.h.patch
Pino Toscano [Sun, 13 Apr 2025 07:16:12 +0000 (09:16 +0200)]
On Hurd, do not look for functions unimplemented in libc
Last-Update: 2024-05-09
Forwarded: not-needed
The check_function_exists() function of cmake does not keep into account the
defines that glibc provides for the stubs (i.e. unimplemented functions that
always return ENOSYS), so some functions are detected as available.
Unfortunately, due to --fatal-warnings for the linker, linking will fail.
Hence, do not attempt to look for functions that are currently unimplemented
on GNU/Hurd's libc.
Gbp-Pq: Name hurd_disable_unimplemented.diff
Debian/Kubuntu Qt/KDE Maintainers [Thu, 31 Mar 2016 13:38:43 +0000 (15:38 +0200)]
report_error_removing_dirs
Last-Updated: 2024-12-04
===================================================================
Gbp-Pq: Name report_error_removing_dirs
Pino Toscano [Sun, 13 Apr 2025 07:16:12 +0000 (09:16 +0200)]
kf6-kio (6.13.0-2) unstable; urgency=medium
* Team upload.
* Update symbols files from the logs of buildds.
[dgit import unpatched kf6-kio 6.13.0-2]
Pino Toscano [Sun, 13 Apr 2025 07:16:12 +0000 (09:16 +0200)]
Import kf6-kio_6.13.0-2.debian.tar.xz
[dgit import tarball kf6-kio 6.13.0-2 kf6-kio_6.13.0-2.debian.tar.xz]
Patrick Franz [Sat, 12 Apr 2025 17:37:26 +0000 (19:37 +0200)]
Import kf6-kio_6.13.0.orig.tar.xz
[dgit import orig kf6-kio_6.13.0.orig.tar.xz]
Aurélien COUDERC [Sat, 15 Feb 2025 16:24:36 +0000 (17:24 +0100)]
Merge kf6-kio (6.11.0-1) import into refs/heads/workingbranch
Maximiliano Curia [Wed, 28 Aug 2019 14:50:33 +0000 (11:50 -0300)]
Use CXX_FLAGS for moc_predefs.h
Last-Updated: 2024-12-04
Gbp-Pq: Name Use-CXX_FLAGS-for-moc_predefs.h.patch
Pino Toscano [Sat, 15 Feb 2025 16:24:36 +0000 (17:24 +0100)]
On Hurd, do not look for functions unimplemented in libc
Last-Update: 2024-05-09
Forwarded: not-needed
The check_function_exists() function of cmake does not keep into account the
defines that glibc provides for the stubs (i.e. unimplemented functions that
always return ENOSYS), so some functions are detected as available.
Unfortunately, due to --fatal-warnings for the linker, linking will fail.
Hence, do not attempt to look for functions that are currently unimplemented
on GNU/Hurd's libc.
Gbp-Pq: Name hurd_disable_unimplemented.diff
Debian/Kubuntu Qt/KDE Maintainers [Thu, 31 Mar 2016 13:38:43 +0000 (15:38 +0200)]
report_error_removing_dirs
Last-Updated: 2024-12-04
===================================================================
Gbp-Pq: Name report_error_removing_dirs
Aurélien COUDERC [Sat, 15 Feb 2025 16:24:36 +0000 (17:24 +0100)]
kf6-kio (6.11.0-1) unstable; urgency=medium
[ Aurélien COUDERC ]
* New upstream release (6.11.0).
* Update build-deps and deps with the info from cmake.
* Update the list of installed files.
* Update symbols from build for 6.11.0.
[dgit import unpatched kf6-kio 6.11.0-1]
Aurélien COUDERC [Sat, 15 Feb 2025 16:24:36 +0000 (17:24 +0100)]
Import kf6-kio_6.11.0.orig.tar.xz
[dgit import orig kf6-kio_6.11.0.orig.tar.xz]
Aurélien COUDERC [Sat, 15 Feb 2025 16:24:36 +0000 (17:24 +0100)]
Import kf6-kio_6.11.0-1.debian.tar.xz
[dgit import tarball kf6-kio 6.11.0-1 kf6-kio_6.11.0-1.debian.tar.xz]
Aurélien COUDERC [Fri, 10 Jan 2025 22:25:32 +0000 (23:25 +0100)]
Merge kf6-kio (6.10.0-1) import into refs/heads/workingbranch
Maximiliano Curia [Wed, 28 Aug 2019 14:50:33 +0000 (11:50 -0300)]
Use CXX_FLAGS for moc_predefs.h
Last-Updated: 2024-12-04
Gbp-Pq: Name Use-CXX_FLAGS-for-moc_predefs.h.patch
Pino Toscano [Fri, 10 Jan 2025 22:25:32 +0000 (23:25 +0100)]
On Hurd, do not look for functions unimplemented in libc
Last-Update: 2024-05-09
Forwarded: not-needed
The check_function_exists() function of cmake does not keep into account the
defines that glibc provides for the stubs (i.e. unimplemented functions that
always return ENOSYS), so some functions are detected as available.
Unfortunately, due to --fatal-warnings for the linker, linking will fail.
Hence, do not attempt to look for functions that are currently unimplemented
on GNU/Hurd's libc.
Gbp-Pq: Name hurd_disable_unimplemented.diff
Debian/Kubuntu Qt/KDE Maintainers [Thu, 31 Mar 2016 13:38:43 +0000 (15:38 +0200)]
report_error_removing_dirs
Last-Updated: 2024-12-04
===================================================================
Gbp-Pq: Name report_error_removing_dirs
Aurélien COUDERC [Fri, 10 Jan 2025 22:25:32 +0000 (23:25 +0100)]
kf6-kio (6.10.0-1) unstable; urgency=medium
[ Aurélien COUDERC ]
* New upstream release (6.9.0).
* Update build-deps and deps with the info from cmake.
* New upstream release (6.10.0).
* Update build-deps and deps with the info from cmake.
* Drop backported commit, now part of the upstream release.
[dgit import unpatched kf6-kio 6.10.0-1]
Aurélien COUDERC [Fri, 10 Jan 2025 22:25:32 +0000 (23:25 +0100)]
Import kf6-kio_6.10.0.orig.tar.xz
[dgit import orig kf6-kio_6.10.0.orig.tar.xz]
Aurélien COUDERC [Fri, 10 Jan 2025 22:25:32 +0000 (23:25 +0100)]
Import kf6-kio_6.10.0-1.debian.tar.xz
[dgit import tarball kf6-kio 6.10.0-1 kf6-kio_6.10.0-1.debian.tar.xz]
Aurélien COUDERC [Thu, 5 Dec 2024 09:17:23 +0000 (10:17 +0100)]
Merge kf6-kio (6.8.0-1) import into refs/heads/workingbranch
Sune Vuorela [Thu, 5 Dec 2024 08:54:02 +0000 (09:54 +0100)]
[PATCH] StandardThumbnailJob is internal, header not installed
Gbp-Pq: Name upstream_1766_standardthumbnailjob-is-internal-header-not-installed.patch
Maximiliano Curia [Wed, 28 Aug 2019 14:50:33 +0000 (11:50 -0300)]
Use CXX_FLAGS for moc_predefs.h
Last-Updated: 2024-12-04
Gbp-Pq: Name Use-CXX_FLAGS-for-moc_predefs.h.patch
Pino Toscano [Thu, 5 Dec 2024 09:17:23 +0000 (10:17 +0100)]
On Hurd, do not look for functions unimplemented in libc
Last-Update: 2024-05-09
Forwarded: not-needed
The check_function_exists() function of cmake does not keep into account the
defines that glibc provides for the stubs (i.e. unimplemented functions that
always return ENOSYS), so some functions are detected as available.
Unfortunately, due to --fatal-warnings for the linker, linking will fail.
Hence, do not attempt to look for functions that are currently unimplemented
on GNU/Hurd's libc.
Gbp-Pq: Name hurd_disable_unimplemented.diff
Debian/Kubuntu Qt/KDE Maintainers [Thu, 31 Mar 2016 13:38:43 +0000 (15:38 +0200)]
report_error_removing_dirs
Last-Updated: 2024-12-04
===================================================================
Gbp-Pq: Name report_error_removing_dirs
Aurélien COUDERC [Thu, 5 Dec 2024 09:17:23 +0000 (10:17 +0100)]
kf6-kio (6.8.0-1) unstable; urgency=medium
[ Aurélien COUDERC ]
* New upstream release (6.8.0).
* Update build-deps and deps with the info from cmake.
* Refresh patches.
* Backport upstream MR 1766: StandardThumbnailJob is internal, header
not installed.
* Update symbols from build for 6.8.0.
* Release to unstable.
[dgit import unpatched kf6-kio 6.8.0-1]
Aurélien COUDERC [Thu, 5 Dec 2024 09:17:23 +0000 (10:17 +0100)]
Import kf6-kio_6.8.0.orig.tar.xz
[dgit import orig kf6-kio_6.8.0.orig.tar.xz]
Aurélien COUDERC [Thu, 5 Dec 2024 09:17:23 +0000 (10:17 +0100)]
Import kf6-kio_6.8.0-1.debian.tar.xz
[dgit import tarball kf6-kio 6.8.0-1 kf6-kio_6.8.0-1.debian.tar.xz]
Aurélien COUDERC [Fri, 6 Sep 2024 21:12:57 +0000 (23:12 +0200)]
Merge kf6-kio (6.6.0-1) import into refs/heads/workingbranch
Maximiliano Curia [Wed, 28 Aug 2019 14:50:33 +0000 (11:50 -0300)]
Use CXX_FLAGS for moc_predefs.h
Last-Updated: 2024-05-09
Gbp-Pq: Name Use-CXX_FLAGS-for-moc_predefs.h.patch
Pino Toscano [Fri, 6 Sep 2024 21:12:57 +0000 (23:12 +0200)]
On Hurd, do not look for functions unimplemented in libc
Last-Update: 2024-05-09
Forwarded: not-needed
The check_function_exists() function of cmake does not keep into account the
defines that glibc provides for the stubs (i.e. unimplemented functions that
always return ENOSYS), so some functions are detected as available.
Unfortunately, due to --fatal-warnings for the linker, linking will fail.
Hence, do not attempt to look for functions that are currently unimplemented
on GNU/Hurd's libc.
Gbp-Pq: Name hurd_disable_unimplemented.diff
Debian/Kubuntu Qt/KDE Maintainers [Thu, 31 Mar 2016 13:38:43 +0000 (15:38 +0200)]
report_error_removing_dirs
===================================================================
Gbp-Pq: Name report_error_removing_dirs
Aurélien COUDERC [Fri, 6 Sep 2024 21:12:57 +0000 (23:12 +0200)]
kf6-kio (6.6.0-1) unstable; urgency=medium
[ Aurélien COUDERC ]
* New upstream release (6.6.0).
* Update build-deps and deps with the info from cmake.
* Drop backported commits now part of upstream release.
* Update symbols from build for 6.6.0.
[dgit import unpatched kf6-kio 6.6.0-1]
Aurélien COUDERC [Fri, 6 Sep 2024 21:12:57 +0000 (23:12 +0200)]
Import kf6-kio_6.6.0.orig.tar.xz
[dgit import orig kf6-kio_6.6.0.orig.tar.xz]
Aurélien COUDERC [Fri, 6 Sep 2024 21:12:57 +0000 (23:12 +0200)]
Import kf6-kio_6.6.0-1.debian.tar.xz
[dgit import tarball kf6-kio 6.6.0-1 kf6-kio_6.6.0-1.debian.tar.xz]
Pino Toscano [Mon, 26 Aug 2024 04:44:17 +0000 (06:44 +0200)]
Merge kf6-kio (6.5.0-2) import into refs/heads/workingbranch
Maximiliano Curia [Wed, 28 Aug 2019 14:50:33 +0000 (11:50 -0300)]
Use CXX_FLAGS for moc_predefs.h
Last-Updated: 2024-05-09
Gbp-Pq: Name Use-CXX_FLAGS-for-moc_predefs.h.patch
Pino Toscano [Mon, 26 Aug 2024 04:44:17 +0000 (06:44 +0200)]
On Hurd, do not look for functions unimplemented in libc
Last-Update: 2024-05-09
Forwarded: not-needed
The check_function_exists() function of cmake does not keep into account the
defines that glibc provides for the stubs (i.e. unimplemented functions that
always return ENOSYS), so some functions are detected as available.
Unfortunately, due to --fatal-warnings for the linker, linking will fail.
Hence, do not attempt to look for functions that are currently unimplemented
on GNU/Hurd's libc.
Gbp-Pq: Name hurd_disable_unimplemented.diff
Debian/Kubuntu Qt/KDE Maintainers [Thu, 31 Mar 2016 13:38:43 +0000 (15:38 +0200)]
report_error_removing_dirs
===================================================================
Gbp-Pq: Name report_error_removing_dirs
Pino Toscano [Sat, 24 Aug 2024 15:34:46 +0000 (17:34 +0200)]
[PATCH] Consistently use WITH_QTDBUS instead of USE_DBUS
USE_DBUS still uses an hardcoded list of architectures, whereas there
is already WITH_QTDBUS defined in case the D-Bus support is available.
Followup of commit
6bdab62068c89b61796246508813ae63aa3ef872.
Gbp-Pq: Name upstream_Consistently-use-WITH_QTDBUS-instead-of-USE_DBUS.patch
Pino Toscano [Mon, 26 Aug 2024 04:44:17 +0000 (06:44 +0200)]
kf6-kio (6.5.0-2) unstable; urgency=medium
* Team upload.
* CI: update/simplify configuration.
* Pass -DWITH_WAYLAND=OFF to cmake on non-Linux architectures to disable the
Wayland support, as it is Linux-specific.
* Backport upstream commit
5718fdce324b247b9f3e8c618be30973c93c10b7 to
properly enable D-Bus on OSes other than Linux and FreeBSD that can use it;
patch upstream_Consistently-use-WITH_QTDBUS-instead-of-USE_DBUS.patch.
* Update symbols files from the logs of buildds.
* Mark Linux-only symbols as such.
[dgit import unpatched kf6-kio 6.5.0-2]
Pino Toscano [Mon, 26 Aug 2024 04:44:17 +0000 (06:44 +0200)]
Import kf6-kio_6.5.0-2.debian.tar.xz
[dgit import tarball kf6-kio 6.5.0-2 kf6-kio_6.5.0-2.debian.tar.xz]
Aurélien COUDERC [Sat, 10 Aug 2024 21:22:10 +0000 (23:22 +0200)]
Import kf6-kio_6.5.0.orig.tar.xz
[dgit import orig kf6-kio_6.5.0.orig.tar.xz]
Aurélien COUDERC [Sun, 18 Jun 2023 14:08:43 +0000 (15:08 +0100)]
Merge kio (5.107.0-1) import into refs/heads/workingbranch
Maximiliano Curia [Wed, 28 Aug 2019 14:50:33 +0000 (11:50 -0300)]
Use CXX_FLAGS for moc_predefs.h
Gbp-Pq: Name Use-CXX_FLAGS-for-moc_predefs.h.patch
Pino Toscano [Sun, 18 Jun 2023 14:08:43 +0000 (15:08 +0100)]
On Hurd, do not look for functions unimplemented in libc
Last-Update: 2022-02-22
Forwarded: not-needed
The check_function_exists() function of cmake does not keep into account the
defines that glibc provides for the stubs (i.e. unimplemented functions that
always return ENOSYS), so some functions are detected as available.
Unfortunately, due to --fatal-warnings for the linker, linking will fail.
Hence, do not attempt to look for functions that are currently unimplemented
on GNU/Hurd's libc.
Gbp-Pq: Name hurd_disable_unimplemented.diff
Debian/Kubuntu Qt/KDE Maintainers [Thu, 31 Mar 2016 13:38:43 +0000 (15:38 +0200)]
report_error_removing_dirs
===================================================================
Gbp-Pq: Name report_error_removing_dirs
Aurélien COUDERC [Sun, 18 Jun 2023 14:08:43 +0000 (15:08 +0100)]
kio (5.107.0-1) unstable; urgency=medium
[ Aurélien COUDERC ]
* New upstream release (5.105.0).
* Update build-deps and deps with the info from cmake.
* Update symbols from build for 5.105.0.
* New upstream release (5.107.0).
* Update build-deps and deps with the info from cmake.
* Release to unstable.
[dgit import unpatched kio 5.107.0-1]
Aurélien COUDERC [Sun, 18 Jun 2023 14:08:43 +0000 (15:08 +0100)]
Import kio_5.107.0.orig.tar.xz
[dgit import orig kio_5.107.0.orig.tar.xz]
Aurélien COUDERC [Sun, 18 Jun 2023 14:08:43 +0000 (15:08 +0100)]
Import kio_5.107.0-1.debian.tar.xz
[dgit import tarball kio 5.107.0-1 kio_5.107.0-1.debian.tar.xz]
Aurélien COUDERC [Sun, 12 Feb 2023 20:44:31 +0000 (20:44 +0000)]
Merge kio (5.103.0-1) import into refs/heads/workingbranch
Maximiliano Curia [Wed, 28 Aug 2019 14:50:33 +0000 (11:50 -0300)]
Use CXX_FLAGS for moc_predefs.h
Gbp-Pq: Name Use-CXX_FLAGS-for-moc_predefs.h.patch
Pino Toscano [Sun, 12 Feb 2023 20:44:31 +0000 (20:44 +0000)]
On Hurd, do not look for functions unimplemented in libc
Last-Update: 2022-02-22
Forwarded: not-needed
The check_function_exists() function of cmake does not keep into account the
defines that glibc provides for the stubs (i.e. unimplemented functions that
always return ENOSYS), so some functions are detected as available.
Unfortunately, due to --fatal-warnings for the linker, linking will fail.
Hence, do not attempt to look for functions that are currently unimplemented
on GNU/Hurd's libc.
Gbp-Pq: Name hurd_disable_unimplemented.diff
Debian/Kubuntu Qt/KDE Maintainers [Thu, 31 Mar 2016 13:38:43 +0000 (15:38 +0200)]
report_error_removing_dirs
===================================================================
Gbp-Pq: Name report_error_removing_dirs
Aurélien COUDERC [Sun, 12 Feb 2023 20:44:31 +0000 (20:44 +0000)]
kio (5.103.0-1) unstable; urgency=medium
[ Aurélien COUDERC ]
* New upstream release (5.103.0).
* Update build-deps and deps with the info from cmake.
* Refresh lintian overrides.
* Update symbols from build for 5.103.0.
[dgit import unpatched kio 5.103.0-1]
Aurélien COUDERC [Sun, 12 Feb 2023 20:44:31 +0000 (20:44 +0000)]
Import kio_5.103.0.orig.tar.xz
[dgit import orig kio_5.103.0.orig.tar.xz]
Aurélien COUDERC [Sun, 12 Feb 2023 20:44:31 +0000 (20:44 +0000)]
Import kio_5.103.0-1.debian.tar.xz
[dgit import tarball kio 5.103.0-1 kio_5.103.0-1.debian.tar.xz]
Aurélien COUDERC [Sun, 22 Jan 2023 20:35:09 +0000 (20:35 +0000)]
Merge kio (5.102.0-1) import into refs/heads/workingbranch
Maximiliano Curia [Wed, 28 Aug 2019 14:50:33 +0000 (11:50 -0300)]
Use CXX_FLAGS for moc_predefs.h
Gbp-Pq: Name Use-CXX_FLAGS-for-moc_predefs.h.patch
Pino Toscano [Sun, 22 Jan 2023 20:35:09 +0000 (20:35 +0000)]
On Hurd, do not look for functions unimplemented in libc
Last-Update: 2022-02-22
Forwarded: not-needed
The check_function_exists() function of cmake does not keep into account the
defines that glibc provides for the stubs (i.e. unimplemented functions that
always return ENOSYS), so some functions are detected as available.
Unfortunately, due to --fatal-warnings for the linker, linking will fail.
Hence, do not attempt to look for functions that are currently unimplemented
on GNU/Hurd's libc.
Gbp-Pq: Name hurd_disable_unimplemented.diff
Debian/Kubuntu Qt/KDE Maintainers [Thu, 31 Mar 2016 13:38:43 +0000 (15:38 +0200)]
report_error_removing_dirs
===================================================================
Gbp-Pq: Name report_error_removing_dirs
Aurélien COUDERC [Sun, 22 Jan 2023 20:35:09 +0000 (20:35 +0000)]
kio (5.102.0-1) unstable; urgency=medium
[ Aurélien COUDERC ]
* New upstream release (5.102.0).
* Update build-deps and deps with the info from cmake.
* Bump Standards-Version to 4.6.2, no change required.
* Update symbols from build for 5.102.0.
[dgit import unpatched kio 5.102.0-1]
Aurélien COUDERC [Sun, 22 Jan 2023 20:35:09 +0000 (20:35 +0000)]
Import kio_5.102.0.orig.tar.xz
[dgit import orig kio_5.102.0.orig.tar.xz]
Aurélien COUDERC [Sun, 22 Jan 2023 20:35:09 +0000 (20:35 +0000)]
Import kio_5.102.0-1.debian.tar.xz
[dgit import tarball kio 5.102.0-1 kio_5.102.0-1.debian.tar.xz]
Pino Toscano [Thu, 15 Dec 2022 20:53:23 +0000 (20:53 +0000)]
Merge kio (5.101.0-2) import into refs/heads/workingbranch
Maximiliano Curia [Wed, 28 Aug 2019 14:50:33 +0000 (11:50 -0300)]
Use CXX_FLAGS for moc_predefs.h
Gbp-Pq: Name Use-CXX_FLAGS-for-moc_predefs.h.patch
Pino Toscano [Thu, 15 Dec 2022 20:53:23 +0000 (20:53 +0000)]
On Hurd, do not look for functions unimplemented in libc
Last-Update: 2022-02-22
Forwarded: not-needed
The check_function_exists() function of cmake does not keep into account the
defines that glibc provides for the stubs (i.e. unimplemented functions that
always return ENOSYS), so some functions are detected as available.
Unfortunately, due to --fatal-warnings for the linker, linking will fail.
Hence, do not attempt to look for functions that are currently unimplemented
on GNU/Hurd's libc.
Gbp-Pq: Name hurd_disable_unimplemented.diff
Debian/Kubuntu Qt/KDE Maintainers [Thu, 31 Mar 2016 13:38:43 +0000 (15:38 +0200)]
report_error_removing_dirs
===================================================================
Gbp-Pq: Name report_error_removing_dirs
Pino Toscano [Thu, 15 Dec 2022 20:53:23 +0000 (20:53 +0000)]
kio (5.101.0-2) unstable; urgency=medium
* Team upload.
* Update the symbols files from the logs of buildds.
[dgit import unpatched kio 5.101.0-2]
Pino Toscano [Thu, 15 Dec 2022 20:53:23 +0000 (20:53 +0000)]
Import kio_5.101.0-2.debian.tar.xz
[dgit import tarball kio 5.101.0-2 kio_5.101.0-2.debian.tar.xz]
Aurélien COUDERC [Tue, 13 Dec 2022 06:40:34 +0000 (06:40 +0000)]
Import kio_5.101.0.orig.tar.xz
[dgit import orig kio_5.101.0.orig.tar.xz]
Pino Toscano [Mon, 21 Nov 2022 08:13:21 +0000 (08:13 +0000)]
Merge kio (5.100.0-2) import into refs/heads/workingbranch
Maximiliano Curia [Wed, 28 Aug 2019 14:50:33 +0000 (11:50 -0300)]
Use CXX_FLAGS for moc_predefs.h
Gbp-Pq: Name Use-CXX_FLAGS-for-moc_predefs.h.patch
Pino Toscano [Mon, 21 Nov 2022 08:13:21 +0000 (08:13 +0000)]
On Hurd, do not look for functions unimplemented in libc
Last-Update: 2022-02-22
Forwarded: not-needed
The check_function_exists() function of cmake does not keep into account the
defines that glibc provides for the stubs (i.e. unimplemented functions that
always return ENOSYS), so some functions are detected as available.
Unfortunately, due to --fatal-warnings for the linker, linking will fail.
Hence, do not attempt to look for functions that are currently unimplemented
on GNU/Hurd's libc.
Gbp-Pq: Name hurd_disable_unimplemented.diff