From warp at aehallh.com Tue Oct 1 03:40:45 2024 From: warp at aehallh.com (Elizabeth Loss-Cutler-Hull) Date: Mon, 30 Sep 2024 19:40:45 -0700 Subject: Bug#1083074: xdg-mime: query filetype broken on Plasma 6. Message-ID: Package: xdg-utils Version: 1.1.3-4.1 xdg-mime query filetype simply exits when the detected desktop is KDE, and KDE_SESSION_VERSION is set to anything other than 4 or 5. This is a slight problem when it is set to 6, as is the case with plasma 6 from experimental. Of course, given that plasma 6 is still in experimental, not sid, that means that this isn't a complete surprise, but it definitely breaks things like wl-copy. From ed.ylles1997 at gmail.com Tue Oct 1 18:43:45 2024 From: ed.ylles1997 at gmail.com (Edgar Yllescas) Date: Tue, 01 Oct 2024 11:43:45 -0600 Subject: Bug#1019244: xdg-utils: xdg-screensaver cannot lock screen with xss-lock References: <166244778021.20295.13822243435169150412.reportbug@Pro.edhome.io> Message-ID: <172780462556.16347.11858776197810153546.reportbug@Pro> Package: xdg-utils Version: 1.1.3-4.1 Followup-For: Bug #1019244 hi dear maintainer, going back to this here's a more proper patch containing the commits from the upstream merge request https://gitlab.freedesktop.org/xdg/xdg-utils/-/merge_requests/118 that altho green lit has no defined turnaround time for merging nor for the next upstream release, if you want a squash of the commits in the patch feel free to answer and i will provide one. -- Package-specific info: Desktop environment: XDG_CURRENT_DESKTOP=awesome -- System Information: Distributor ID: Devuan Description: Devuan GNU/Linux 6 (excalibur/ceres) Release: 6 Codename: excalibur ceres Architecture: x86_64 Kernel: Linux 6.9.8-amd64 (SMP w/8 CPU threads; PREEMPT) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US:en Shell: /bin/sh linked to /usr/bin/dash Init: sysvinit (via /sbin/init) LSM: AppArmor: enabled xdg-utils depends on no packages. Versions of packages xdg-utils recommends: ii libfile-mimeinfo-perl 0.35-1 ii libnet-dbus-perl 1.2.0-2+b2 ii libx11-protocol-perl 0.56-9 ii x11-utils 7.7+6+b1 ii x11-xserver-utils 7.7+10+b1 xdg-utils suggests no packages. -- no debconf information -------------- next part -------------- >From 915033b3a0743b5b1adcb3d229037881b80e8f7f Mon Sep 17 00:00:00 2001 From: Teemu Ikonen Date: Mon, 26 Nov 2018 12:40:00 +0200 Subject: [PATCH 1/4] adds support for xss-lock xss-lock runs a user specified locker in response to X server screen saver events (also some systemd events). xss-lock would otherwise work fine with the 'screensaver_xserver' code in current xdg-screensaver, but there is no support for the 'lock' subcommand in screensaver_xserver, so some power managers (at least xfce4-power-manager) fail to lock the screen when suspending. Also, the desktop environment detection code could cause xdg-screensaver to use a code path for some other screen saver than screensaver_xserver, while xss-lock is running. This patch detects a running xss-lock program and runs the appropriate actions, that is, it runs screensaver_xserver and replaces the 'lock' subcommand with 'activate'. --- scripts/xdg-screensaver.in | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/scripts/xdg-screensaver.in b/scripts/xdg-screensaver.in index e70942f..db57368 100644 --- a/scripts/xdg-screensaver.in +++ b/scripts/xdg-screensaver.in @@ -119,6 +119,14 @@ perform_action() xautolock_screensaver "$1" ;; + xss-lock_screensaver) + if [ "$1" = "lock" ]; then + screensaver_xserver "activate" + else + screensaver_xserver "$1" + fi + ;; + xfce) [ -n "$DISPLAY" ] && screensaver_xserver "$1" ;; @@ -885,6 +893,8 @@ dbus-send --print-reply --dest=org.freedesktop.DBus /org/freedesktop/DBus org.fr dbus-send --print-reply --dest=org.freedesktop.DBus /org/freedesktop/DBus org.freedesktop.DBus.GetNameOwner string:org.cinnamon.ScreenSaver > /dev/null 2>&1 && DE="cinnamon" # Consider "xautolock" a separate DE xautolock -enable > /dev/null 2>&1 && DE="xautolock_screensaver" +# Consider "xss-lock" a separate DE +xss-lock --version > /dev/null 2>&1 && ps x -o cmd | grep -q '^xss-lock' && DE="xss-lock_screensaver" if [ "$action" = "resume" ] ; then do_resume -- GitLab >From 15edd4a1faba35a7378edcff746cf1212e248c54 Mon Sep 17 00:00:00 2001 From: eylles Date: Sun, 14 Jul 2024 22:54:42 -0600 Subject: [PATCH 2/4] force explicit session id in xss-lock this is the only clean, or as clean as it gets way to detect that xss-lock is running on the current session, this will force every user of xss-lock to closely follow the example from /usr/share/doc/xss-lock/xss-lock.service and explicitly run xss-lock on their system with the -s or --session flag so that xdg-screensaver can detect the program is running on the current session. in regards of reliability, if the $XDG_SESSION_ID variable is not present on the current session that means it was malformed and issues ARE going to EXIST regardless. --- scripts/xdg-screensaver.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/xdg-screensaver.in b/scripts/xdg-screensaver.in index db57368..91b9b69 100644 --- a/scripts/xdg-screensaver.in +++ b/scripts/xdg-screensaver.in @@ -894,7 +894,7 @@ dbus-send --print-reply --dest=org.freedesktop.DBus /org/freedesktop/DBus org.fr # Consider "xautolock" a separate DE xautolock -enable > /dev/null 2>&1 && DE="xautolock_screensaver" # Consider "xss-lock" a separate DE -xss-lock --version > /dev/null 2>&1 && ps x -o cmd | grep -q '^xss-lock' && DE="xss-lock_screensaver" +xss-lock --version > /dev/null 2>&1 && ps x -o cmd | grep '^xss-lock' | grep -q "\-s ${XDG_SESSION_ID}\|--session=${XDG_SESSION_ID}" && DE="xss-lock_screensaver" if [ "$action" = "resume" ] ; then do_resume -- GitLab >From 9b5f8366120f7bd93a6b4637e69c2f295f828228 Mon Sep 17 00:00:00 2001 From: eylles Date: Fri, 30 Aug 2024 18:46:15 -0600 Subject: [PATCH 3/4] avoid an unnecessary binary execution --- scripts/xdg-screensaver.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/xdg-screensaver.in b/scripts/xdg-screensaver.in index 91b9b69..b890d4c 100644 --- a/scripts/xdg-screensaver.in +++ b/scripts/xdg-screensaver.in @@ -894,7 +894,7 @@ dbus-send --print-reply --dest=org.freedesktop.DBus /org/freedesktop/DBus org.fr # Consider "xautolock" a separate DE xautolock -enable > /dev/null 2>&1 && DE="xautolock_screensaver" # Consider "xss-lock" a separate DE -xss-lock --version > /dev/null 2>&1 && ps x -o cmd | grep '^xss-lock' | grep -q "\-s ${XDG_SESSION_ID}\|--session=${XDG_SESSION_ID}" && DE="xss-lock_screensaver" +command -v xss-lock > /dev/null 2>&1 && ps x -o cmd | grep '^xss-lock' | grep -q "\-s ${XDG_SESSION_ID}\|--session=${XDG_SESSION_ID}" && DE="xss-lock_screensaver" if [ "$action" = "resume" ] ; then do_resume -- GitLab >From 78c203cf6bc554ed693379978cd0d34ea0896065 Mon Sep 17 00:00:00 2001 From: eylles Date: Sat, 31 Aug 2024 03:07:22 -0600 Subject: [PATCH 4/4] Use multiple patterns as fixed strings Avoid turning the variable XDG_SESSION_ID into a regex when it is not intended to be a regex by using the -F flag. Use the -e flag to specify the two possible patterns that will be searched and interpreted as fixed strings. POSIX grep spec: https://pubs.opengroup.org/onlinepubs/9799919799/utilities/grep.html --- scripts/xdg-screensaver.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/xdg-screensaver.in b/scripts/xdg-screensaver.in index b890d4c..a9ddc51 100644 --- a/scripts/xdg-screensaver.in +++ b/scripts/xdg-screensaver.in @@ -894,7 +894,7 @@ dbus-send --print-reply --dest=org.freedesktop.DBus /org/freedesktop/DBus org.fr # Consider "xautolock" a separate DE xautolock -enable > /dev/null 2>&1 && DE="xautolock_screensaver" # Consider "xss-lock" a separate DE -command -v xss-lock > /dev/null 2>&1 && ps x -o cmd | grep '^xss-lock' | grep -q "\-s ${XDG_SESSION_ID}\|--session=${XDG_SESSION_ID}" && DE="xss-lock_screensaver" +command -v xss-lock > /dev/null 2>&1 && ps x -o cmd | grep '^xss-lock' | grep -qF -e "-s ${XDG_SESSION_ID}" -e "--session=${XDG_SESSION_ID}" && DE="xss-lock_screensaver" if [ "$action" = "resume" ] ; then do_resume -- GitLab From juan.sithole7 at gmail.com Tue Oct 15 13:08:58 2024 From: juan.sithole7 at gmail.com (Hoffman Proppe) Date: Tue, 15 Oct 2024 05:08:58 -0700 Subject: Viable Requests Message-ID: <54ff9583d4e4c09f262889110490f81d847169c209a2f0a73ee024c63a55b3bb@mx.google.com> Attn. pkg-freedesktop-maintainers I am Barr. Hoffman Proppe from Arnold and Porter Law Firm. British Petroleum (BP) has requested your company's involvement in our upcoming Vendor/Contractor Partnership registration projects for 2024/2025. These initiatives are accessible to companies worldwide. If you wish to take part, kindly indicate your interest by requesting the Vendor Questionnaire and EOI. A timely reply would be valuable in expediting the vendor/contractor selection process. We are excited about the opportunity to collaborate with you! Best Regards, Hoffman Proppe. From ftpmaster at ftp-master.debian.org Wed Oct 23 09:07:46 2024 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Wed, 23 Oct 2024 08:07:46 +0000 Subject: Processing of poppler_24.08.0-3_source.changes Message-ID: poppler_24.08.0-3_source.changes uploaded successfully to localhost along with the files: poppler_24.08.0-3.dsc poppler_24.08.0.orig.tar.xz poppler_24.08.0-3.debian.tar.xz poppler_24.08.0-3_source.buildinfo Greetings, Your Debian queue daemon (running on host usper.debian.org) From ftpmaster at ftp-master.debian.org Wed Oct 23 09:38:02 2024 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Wed, 23 Oct 2024 08:38:02 +0000 Subject: poppler_24.08.0-3_source.changes ACCEPTED into unstable Message-ID: Thank you for your contribution to Debian. Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Format: 1.8 Date: Wed, 23 Oct 2024 09:35:17 +0200 Source: poppler Architecture: source Version: 24.08.0-3 Distribution: unstable Urgency: medium Maintainer: Debian freedesktop.org maintainers Changed-By: Emilio Pozuelo Monfort Changes: poppler (24.08.0-3) unstable; urgency=medium . [ John Scott ] * Enable the GnuPG/gpgsm PDF signature backend. Checksums-Sha1: 56ecbbba9e6ce38b5f76bc2925d985011cf4bb63 3810 poppler_24.08.0-3.dsc 2f32390a3bb7f6666aca6d981a2c2717be6a4401 1912592 poppler_24.08.0.orig.tar.xz a6725dcd52495f0f2a47ac1716c8dd5025cab52a 38836 poppler_24.08.0-3.debian.tar.xz 8d08b78e6b0ebeb9d674a179a0cbebb841227568 7907 poppler_24.08.0-3_source.buildinfo Checksums-Sha256: b95c54c966fb4558c163162153fa9dabee3f860d85870c80025f4212c17693b0 3810 poppler_24.08.0-3.dsc 97453fbddf0c9a9eafa0ea45ac710d3d49bcf23a62e864585385d3c0b4403174 1912592 poppler_24.08.0.orig.tar.xz cbebf9c6a93073d9ab93d7b8cc6b37257121d84c2a4c29caf076420260c5d96c 38836 poppler_24.08.0-3.debian.tar.xz cb0d6e8d7ceb3066cab64040b25197555c00f2f221a22eee4f6f5e377789012d 7907 poppler_24.08.0-3_source.buildinfo Files: 4a11468dad91ff94d24b4911c0e68de7 3810 devel optional poppler_24.08.0-3.dsc 5edd19a7ef270793374a3a5599bf872f 1912592 devel optional poppler_24.08.0.orig.tar.xz 8008f1cbbc0a601006f3947526e129aa 38836 devel optional poppler_24.08.0-3.debian.tar.xz d3206ed81f3b3e8351de96215a05226f 7907 devel optional poppler_24.08.0-3_source.buildinfo -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEcJymx+vmJZxd92Q+nUbEiOQ2gwIFAmcYq+cACgkQnUbEiOQ2 gwLdkA/+PwSH3CAG4NjjiihWGnWKfzLE094tVc++pp0Vgk3zr+O5PxxXSM6GurW4 ML6pRLAwXuXD6TXYddPBqoNOJDZGL1boIRODqBadRbsjeH2LqAI6OQ9wq093zDgM dUWUdopnoXP9bRiqa6iX4cW4/VDfbj6I34lWHWMSDRKfu9I930dfLZT4OBpYCQ6/ IzS+eSygUJ7EqBQobhJiMRlz4ViScvxsSWcSJ3Ks+oMVBy4yokvvWbyEH93RNI84 H9g0TZYkEwTmACWgjZuj44g1SYT3SHD7BztzJzHhrzbA5wAKfhZMG33t9dZP5TRh qCJsqkdGL07VZP5kM0llFHV1MMSnV58eeCHvw+SYC94FEJWtYkPh5cBRCZCvQh2z /sCt0WQ/Svz2zZYBG1Oue1oFqgyf1hSK1eFid58rzjDZcvegi7VtXfCFKkiI/i9d BkNegajV0RBOSROn9b8QOOzQp6Hd5gHIKBgce00oeMhbj05htnLbQzD0z00VWlyc FZmv+InRLgQXZ+kFwTeE6FieU10FTfmI7iBpichl7i0WeO3IjB5hb0aAIAVhyVt8 N71+bEVDyC1fotLa0nIdcVhAgYbnbyJdxobq0CYEgv11xjqUEw0gUAmS6AiwANAo M09a0SKbp5j693zXLun3wesUkwbBh7qbLeB6t5Ip5QokqL2J1zg= =9Ixh -----END PGP SIGNATURE----- -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 228 bytes Desc: not available URL: From noreply at release.debian.org Sun Oct 27 04:39:17 2024 From: noreply at release.debian.org (Debian testing watch) Date: Sun, 27 Oct 2024 04:39:17 +0000 Subject: poppler 24.08.0-3 MIGRATED to testing Message-ID: FYI: The status of the poppler source package in Debian's testing distribution has changed. Previous version: 24.08.0-2 Current version: 24.08.0-3 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See https://release.debian.org/testing-watch/ for more information. From vtrsewilliam at gmail.com Mon Oct 28 05:49:16 2024 From: vtrsewilliam at gmail.com (EDISON CARDONA) Date: Mon, 28 Oct 2024 05:49:16 +0000 Subject: Request for quotation Message-ID: An HTML attachment was scrubbed... URL: From info at giabatg.org Wed Oct 30 13:43:05 2024 From: info at giabatg.org (info at giabatg.org) Date: 30 Oct 2024 06:43:05 -0700 Subject: Interested in your product Message-ID: <20241030064304.CB5A3B4CB4285909@giabatg.org> An HTML attachment was scrubbed... URL: From boutil at debian.org Wed Oct 30 21:17:54 2024 From: boutil at debian.org (=?utf-8?Q?C=C3=A9dric?= Boutillier) Date: Wed, 30 Oct 2024 22:17:54 +0100 Subject: Bug#1083074: xdg-mime: query filetype broken on Plasma 6. References: Message-ID: Package: xdg-utils Version: 1.1.3-4.1 Followup-For: Bug #1083074 I believe that the following patch solves the problem, as KDE6 uses kde-open, like KDE4. Best wishes, C?dric -------------- next part -------------- A non-text attachment was scrubbed... Name: kde6.patch Type: text/x-diff Size: 536 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 228 bytes Desc: not available URL: From owner at bugs.debian.org Wed Oct 30 21:21:01 2024 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 30 Oct 2024 21:21:01 +0000 Subject: Processed: tagging 1083074 References: <1730323151-2560-bts-boutil@debian.org> Message-ID: Processing commands for control at bugs.debian.org: > tags 1083074 + patch Bug #1083074 [xdg-utils] xdg-mime: query filetype broken on Plasma 6. Added tag(s) patch. > thanks Stopping processing here. Please contact me if you need assistance. -- 1083074: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1083074 Debian Bug Tracking System Contact owner at bugs.debian.org with problems