GNU bug report logs - #48465
[PATCHES 0/35] gnu: lxqt: Update to 0.17.0.

Previous Next

Package: guix-patches;

Reported by: Brendan Tildesley <btild <at> mailbox.org>

Date: Sun, 16 May 2021 14:05:01 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 48465 in the body.
You can then email your comments to 48465 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:05:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Brendan Tildesley <btild <at> mailbox.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 16 May 2021 14:05:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <btild <at> mailbox.org>
To: "guix-patches <at> gnu.org" <guix-patches <at> gnu.org>
Subject: [PATCHES 0/35] gnu: lxqt: Update to 0.17.0.
Date: Sun, 16 May 2021 16:04:42 +0200 (CEST)
[Message part 1 (text/plain, inline)]
I don't use lxqt but I tested it in a VM and it seems to work and look just like it did before.

list of packages updated:

lxqt
lxqt-connman-applet
lxqt-openssh-askpass
qps
compton-conf
lxqt-archiver
screengrab
qterminal
qtermwidget
pavucontrol-qt
obconf-qt
lximage-qt
pcmanfm-qt
lxqt-themes
lxqt-sudo
lxqt-session
lxqt-runner
lxqt-powermanagement
lxqt-policykit
lxqt-panel
lxqt-notificationd
lxqt-globalkeys
lxqt-config
lxqt-admin
lxqt-about
libsysstat
liblxqt
libqtxdg
lxqt-build-tools
lxqt-qtplugin
libfm-qt


Here is a VM that autologs in to lxqt

run: $(./pre-inst-env guix system vm ./lxqt-os.scm) -m 1G

(use-modules (gnu)
(srfi srfi-1))
(use-service-modules desktop xorg sddm)
(operating-system
(bootloader (grub-configuration))
(file-systems %base-file-systems)
(locale "en_AU.utf8")
(timezone "Australia/Hobart")
(keyboard-layout (keyboard-layout "us"  "qwerty"))
(host-name "jiu")
(users (cons* (user-account
(name "b")
(password (crypt "b" "$6$abc")) ;; password "b"
(comment "Brendan")
(group "users")
(home-directory "/home/b")
(supplementary-groups
'("wheel" "netdev" "audio" "video" "kvm")))
%base-user-accounts))
(packages
(append
(map specification->package '("nss-certs"))
%base-packages))
(services
(append
(list (set-xorg-configuration
(xorg-configuration
(keyboard-layout keyboard-layout))
sddm-service-type)

(service lxqt-desktop-service-type)
(service sddm-service-type (sddm-configuration
(auto-login-user "b")
(auto-login-session "lxqt.desktop"))))
(remove (lambda (s) (eqv? (service-kind s) gdm-service-type))
%desktop-services))))
[Message part 2 (text/html, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:07:02 GMT) Full text and rfc822 format available.

Message #8 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1.
Date: Mon, 17 May 2021 00:05:46 +1000
* gnu/packages/lxqt.scm (libfm-qt): Update to 0.17.1.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 20efba17b7..01d89079b8 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -973,14 +973,14 @@ for LXQt.")
 (define-public libfm-qt
   (package
     (name "libfm-qt")
-    (version "0.15.1")
+    (version "0.17.1")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "034kc8i571m31fksprih6iiykxj85j98fmm6nrkmlwql45kr6rvs"))))
+        (base32 "1991lm1gnw9s5wwn1yf3vba63bfmrrgsxc70h3nhdl9mh16qygxa"))))
     (build-system cmake-build-system)
     (arguments
      '(#:tests? #f))                    ; no tests
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:07:03 GMT) Full text and rfc822 format available.

Message #11 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 02/35] gnu: lxqt-qtplugin: Update to 0.17.0.
Date: Mon, 17 May 2021 00:05:47 +1000
* gnu/packages/lxqt.scm (lxqt-qtplugin): Update to 0.17.0.
---
 gnu/packages/lxqt.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 01d89079b8..6ca7b473dc 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -10,6 +10,7 @@
 ;;; Copyright © 2019, 2020 Reza Alizadeh Majd <r.majd <at> pantherx.org>
 ;;; Copyright © 2020 Fakhri Sajadi <f.sajadi <at> pantherx.org>
 ;;; Copyright © 2020 André Batista <nandre <at> riseup.net>
+;;; Copyright © 2021 Brendan Tildesley <mail <at> brendan.scot>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -735,14 +736,14 @@ when laptop batteries are low on power.")
 (define-public lxqt-qtplugin
   (package
     (name "lxqt-qtplugin")
-    (version "0.15.1")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "17kmpm3nn07xyxz21f86y3hqi6s0jvqyhsc703zy0463sc58vvys"))))
+        (base32 "14c6abxfg3vda333wrvb5lk45c45hnb66jclbs3vsmrjxdb13vv5"))))
     (build-system cmake-build-system)
     (inputs
      `(("libdbusmenu-qt" ,libdbusmenu-qt)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:07:03 GMT) Full text and rfc822 format available.

Message #14 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 03/35] gnu: lxqt-build-tools: Update to 0.9.0.
Date: Mon, 17 May 2021 00:05:48 +1000
* gnu/packages/lxqt.scm (lxqt-build-tools): Update to 0.9.0.
[propagated-inputs]: Add perl. dependent projects require it via the
CMake files.
---
 gnu/packages/lxqt.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 6ca7b473dc..2a603fc450 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -128,7 +128,7 @@ to statistics about the system on which it's run.")
 (define-public lxqt-build-tools
   (package
     (name "lxqt-build-tools")
-    (version "0.7.0")
+    (version "0.9.0")
     (source
      (origin
        (method url-fetch)
@@ -136,7 +136,7 @@ to statistics about the system on which it's run.")
                            "/download/" version
                            "/lxqt-build-tools-" version ".tar.xz"))
        (sha256
-        (base32 "147vdkc25mrlr0fy785yzwhm4gwjxa5xl3n3hljz4c97m531kzl5"))))
+        (base32 "0kayad5l72h8n90zkf3hy8fxy72n4b1mrkjglpa9dj0cdj6qg0lp"))))
     (build-system cmake-build-system)
     (arguments
      `(#:tests? #f                      ; no tests
@@ -151,6 +151,8 @@ to statistics about the system on which it's run.")
        ("glib" ,glib)))
     (inputs
      `(("qtbase" ,qtbase)))
+    (propagated-inputs
+     `(("perl" ,perl)))
     (synopsis "LXQt Build tools")
     (description
      "Lxqt-build-tools is providing several tools needed to build LXQt
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:07:04 GMT) Full text and rfc822 format available.

Message #17 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 04/35] gnu: libqtxdg: Update to 3.7.1.
Date: Mon, 17 May 2021 00:05:49 +1000
* gnu/packages/lxqt.scm (libqtxdg): Update to 3.7.1.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 2a603fc450..8371088fbf 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -163,7 +163,7 @@ itself as well as other components maintained by the LXQt project.")
 (define-public libqtxdg
   (package
     (name "libqtxdg")
-    (version "3.5.0")
+    (version "3.7.1")
     (source
      (origin
        (method url-fetch)
@@ -171,7 +171,7 @@ itself as well as other components maintained by the LXQt project.")
              "https://github.com/lxqt/libqtxdg/releases/download/"
              version "/libqtxdg-" version ".tar.xz"))
        (sha256
-        (base32 "0g2mwipgl8737jhgqymjixvk745svh2rlini3qr92lrg60v9paa1"))))
+        (base32 "16wav2b948c837cpbvdr6hs1zifwrpdk3yjvbzzp2l1hndvbwz27"))))
     (build-system cmake-build-system)
     (arguments
      '(#:configure-flags
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:07:04 GMT) Full text and rfc822 format available.

Message #20 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 05/35] gnu: liblxqt: Update to 0.17.0.
Date: Mon, 17 May 2021 00:05:50 +1000
* gnu/packages/lxqt.scm (liblxqt): Update to 0.17.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 8371088fbf..74f26a8350 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -201,7 +201,7 @@ in Qt.")
 (define-public liblxqt
   (package
     (name "liblxqt")
-    (version "0.15.1")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
@@ -209,7 +209,7 @@ in Qt.")
              "https://github.com/lxqt/" name "/releases/download/"
              version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "0mg62gypjpmpjd3lr7rrvzmkkhli1vf5pri47hg76byz84vng4a9"))))
+        (base32 "0ay3j6zdgffw3mzaq3wdq96la7fnn2dw52ij6987slv31563nknl"))))
     (build-system cmake-build-system)
     (arguments
      `(#:tests? #f                      ; no tests
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:07:04 GMT) Full text and rfc822 format available.

Message #23 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 06/35] gnu: libsysstat: Update to 0.4.5.
Date: Mon, 17 May 2021 00:05:51 +1000
* gnu/packages/lxqt.scm (libsysstat): Update to 0.4.5.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 74f26a8350..5a023d8c3d 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -247,14 +247,14 @@ components of the LXQt desktop environment.")
 (define-public libsysstat
   (package
     (name "libsysstat")
-    (version "0.4.3")
+    (version "0.4.5")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "1s5s7skzy3sh4rlnfy7r0cg3r1scvp35ldd28bhnqjya99m7ip37"))))
+        (base32 "1ljy5ggvqvpm3k6kfy03dn47ygr9lzi8hmqws4dcqfc9sx86b6zi"))))
     (build-system cmake-build-system)
     (arguments '(#:tests? #f))          ; no tests
     (inputs
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:07:05 GMT) Full text and rfc822 format available.

Message #26 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 07/35] gnu: lxqt-about: Update to 0.17.0.
Date: Mon, 17 May 2021 00:05:52 +1000
* gnu/packages/lxqt.scm (lxqt-about): Update to 0.17.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 5a023d8c3d..4c905e7210 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -273,14 +273,14 @@ and memory usage or network traffic.")
 (define-public lxqt-about
   (package
     (name "lxqt-about")
-    (version "0.15.0")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "0p24z1vykyp8dkhwaxxi4hw5150yv9a2ncc55vbwx4c6bmmibmsh"))))
+        (base32 "04riqf2xgbcnq67l5zb0dfnnmc4a2zljx8zfn3jlvxirnd73l0zm"))))
     (build-system cmake-build-system)
     (inputs
      `(("kwindowsystem" ,kwindowsystem)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:07:05 GMT) Full text and rfc822 format available.

Message #29 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 08/35] gnu: lxqt-admin: Update to 0.17.0.
Date: Mon, 17 May 2021 00:05:53 +1000
* gnu/packages/lxqt.scm (lxqt-admin): Update to 0.17.0.
[arguments]: Patch another Polkit file install path.
---
 gnu/packages/lxqt.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 4c905e7210..296381d3bc 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -316,14 +316,14 @@ LXQt and the system it's running on.")
 (define-public lxqt-admin
   (package
     (name "lxqt-admin")
-    (version "0.15.0")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "1zal37hyzqimwsymmi3w15n1iq78g53754s8abc9ylkzc236xpfc"))))
+        (base32 "07fkn3zmpfxjzzsv1hyv50sx0359n10lxjil35qn266nz165wj43"))))
     (build-system cmake-build-system)
     (inputs
      `(("kwindowsystem" ,kwindowsystem)
@@ -341,7 +341,8 @@ LXQt and the system it's running on.")
        (modify-phases %standard-phases
          (add-after 'unpack 'patch-source
            (lambda _
-             (substitute* "lxqt-admin-user/CMakeLists.txt"
+             (substitute* '("lxqt-admin-user/CMakeLists.txt"
+                            "lxqt-admin-time/CMakeLists.txt")
                (("DESTINATION \"\\$\\{POLKITQT-1_POLICY_FILES_INSTALL_DIR\\}")
                 "DESTINATION \"share/polkit-1/actions"))
              #t))
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:07:06 GMT) Full text and rfc822 format available.

Message #32 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 09/35] gnu: lxqt-config: Update to 0.17.1.
Date: Mon, 17 May 2021 00:05:54 +1000
* gnu/packages/lxqt.scm (lxqt-config): Update to 0.17.1.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 296381d3bc..518bbb3d01 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -363,14 +363,14 @@ the operating system LXQt is running on.")
 (define-public lxqt-config
   (package
     (name "lxqt-config")
-    (version "0.15.0")
+    (version "0.17.1")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "18fagd6ynmx74qw0pjkkg2n3v6s18n6lcsbj7lvfd4lkbcfnzqpb"))))
+        (base32 "0nr43d6fyc5zg4b3iwpca2cy58ry8q0rahrk6ixm7wrvmaiwkh93"))))
     (build-system cmake-build-system)
     (inputs
      `(("eudev" ,eudev)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:07:07 GMT) Full text and rfc822 format available.

Message #35 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 10/35] gnu: lxqt-globalkeys: Update to 0.17.0.
Date: Mon, 17 May 2021 00:05:55 +1000
* gnu/packages/lxqt.scm (lxqt-globalkeys): Update to 0.17.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 518bbb3d01..11462192a8 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -432,7 +432,7 @@ configuration of both LXQt and the underlying operating system.")
 (define-public lxqt-globalkeys
   (package
     (name "lxqt-globalkeys")
-    (version "0.15.0")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
@@ -440,7 +440,7 @@ configuration of both LXQt and the underlying operating system.")
                            "releases/download/" version "/"
                            "lxqt-globalkeys-" version ".tar.xz"))
        (sha256
-        (base32 "1wfvpvy32p60j7xibfa30skzxx2187qrsqxm1npabj1y5bva2m6f"))))
+        (base32 "0pnyqiqhaawrnyvw3ljp850d911abaalnl4rgvl2xyzybvlhki4h"))))
     (build-system cmake-build-system)
     (inputs
      `(("kwindowsystem" ,kwindowsystem)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:02 GMT) Full text and rfc822 format available.

Message #38 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 11/35] gnu: lxqt-notificationd: Update to 0.17.0.
Date: Mon, 17 May 2021 00:05:56 +1000
* gnu/packages/lxqt.scm (lxqt-notificationd): Update to 0.17.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 11462192a8..d161ec383b 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -481,14 +481,14 @@ as a whole and are not limited to distinct applications.")
 (define-public lxqt-notificationd
   (package
     (name "lxqt-notificationd")
-    (version "0.15.0")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "01fva6q2vb0aframxgm0jslvb3z0dcwmhz0yr239bskvdwpn885w"))))
+        (base32 "1dyal7brmfnydfgb6lpxnqww8fj5gzixs7s3wf5nn2ihsz1wm4nk"))))
     (build-system cmake-build-system)
     (inputs
      `(("kwindowsystem" ,kwindowsystem)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:03 GMT) Full text and rfc822 format available.

Message #41 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 13/35] gnu: lxqt-policykit: Update to 0.17.0.
Date: Mon, 17 May 2021 00:05:58 +1000
* gnu/packages/lxqt.scm (lxqt-policykit): Update to 0.17.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 79d89c2047..3724ca115a 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -641,14 +641,14 @@ of other programs.")
 (define-public lxqt-policykit
   (package
     (name "lxqt-policykit")
-    (version "0.15.0")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "0kzc9mxl47bz6mifmk4xi9sxh7jl31d55j7cq8vijqg3w1yb5rp2"))))
+        (base32 "119bjhx208g7wxmr8r0ajb3wl6vagq1aks6zz07df4bgjs3nnpli"))))
     (build-system cmake-build-system)
     (inputs
      `(("kwindowsystem" ,kwindowsystem)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:03 GMT) Full text and rfc822 format available.

Message #44 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 14/35] gnu: lxqt-powermanagement: Update to 0.17.1.
Date: Mon, 17 May 2021 00:05:59 +1000
* gnu/packages/lxqt.scm (lxqt-powermanagement): Update to 0.17.1.
[inputs]: Add lxqt-globalkeys.
---
 gnu/packages/lxqt.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 3724ca115a..e8fefa7119 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -690,20 +690,21 @@ LXQt.")
 (define-public lxqt-powermanagement
   (package
     (name "lxqt-powermanagement")
-    (version "0.15.0")
+    (version "0.17.1")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "1kal7w6ngs9yrg309p4wacmabpynsrysmbpfkpphg158z548wwl0"))))
+        (base32 "00njx8a8cs0zzpz798qc9j16k7i4y0ydy1xmmcq9yv0wawh4gqck"))))
     (build-system cmake-build-system)
     (inputs
      `(("kidletime" ,kidletime)
        ("kwindowsystem" ,kwindowsystem)
        ("liblxqt" ,liblxqt)
        ("libqtxdg" ,libqtxdg)
+       ("lxqt-globalkeys" ,lxqt-globalkeys)
        ("qtbase" ,qtbase)
        ("qtsvg" ,qtsvg)
        ("qtx11extras" ,qtx11extras)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:03 GMT) Full text and rfc822 format available.

Message #47 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 15/35] gnu: lxqt-runner: Update to 0.17.0.
Date: Mon, 17 May 2021 00:06:00 +1000
* gnu/packages/lxqt.scm (lxqt-runner): Update to 0.17.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index e8fefa7119..3dffc9d41f 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -778,14 +778,14 @@ Qt with LXQt.")
 (define-public lxqt-runner
   (package
     (name "lxqt-runner")
-    (version "0.15.0")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "02xxpflhh6a8qpnjhl5mrl07ikzl5x21mf0rj8nmm0v28rpkqjk1"))))
+        (base32 "0n53jbvkmp4vgi21a720gsvi407m4ybqk8xrpnm5f48yjr88r9i4"))))
     (build-system cmake-build-system)
     (inputs
      `(("kwindowsystem" ,kwindowsystem)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:04 GMT) Full text and rfc822 format available.

Message #50 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 16/35] gnu: lxqt-session: Update to 0.17.1.
Date: Mon, 17 May 2021 00:06:01 +1000
* gnu/packages/lxqt.scm (lxqt-session): Update to 0.17.1.
---
 gnu/packages/lxqt.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 3dffc9d41f..b2c32315f8 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -827,20 +827,21 @@ allows for launching applications or shutting down the system.")
 (define-public lxqt-session
   (package
     (name "lxqt-session")
-    (version "0.15.0")
+    (version "0.17.1")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "17y6l1l2m2hzxlzvr7wbixnldbr7waky97vj6lx72r81l45wqkz4"))))
+        (base32 "0iwwfyngpbhs2dwvbw0cci0bf3qbqcpjjw7h5vm46nimvgp8q1fr"))))
     (build-system cmake-build-system)
     (inputs
      `(("eudev" ,eudev)
        ("kwindowsystem" ,kwindowsystem)
        ("liblxqt" ,liblxqt)
        ("libqtxdg" ,libqtxdg)
+       ("procps" ,procps)
        ("qtbase" ,qtbase)
        ("qtsvg" ,qtsvg)
        ("qtx11extras" ,qtx11extras)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:04 GMT) Full text and rfc822 format available.

Message #53 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 12/35] gnu: lxqt-panel: Update to 0.17.1.
Date: Mon, 17 May 2021 00:05:57 +1000
* gnu/packages/lxqt.scm (lxqt-panel): Update to 0.17.1.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index d161ec383b..79d89c2047 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -566,14 +566,14 @@ of other programs.")
 (define-public lxqt-panel
   (package
     (name "lxqt-panel")
-    (version "0.15.1")
+    (version "0.17.1")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "1b40l9p31nz96q38vwgd1zj142xcwqnjwljsird4nnzs2smjn1c6"))))
+        (base32 "1k2cfs1mhad486kh93vbxma3jpjksp4hzjv1xmp1g5alb5dgnc0q"))))
     (build-system cmake-build-system)
     (inputs
      `(("alsa-lib" ,alsa-lib)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:05 GMT) Full text and rfc822 format available.

Message #56 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 17/35] gnu: lxqt-sudo: Update to 0.17.0.
Date: Mon, 17 May 2021 00:06:02 +1000
* gnu/packages/lxqt.scm (lxqt-sudo): Update to 0.17.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index b2c32315f8..d6b0e23090 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -899,14 +899,14 @@ for the LXQt desktop environment.")
 (define-public lxqt-sudo
   (package
     (name "lxqt-sudo")
-    (version "0.15.0")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "1v4gzmld3zqi3y9pdy3hb8lq81jwbgi4ia00lbzccg8cm0m8n55w"))))
+        (base32 "02s38m0ywp0gjkjczvrc4r1ignshbajlj084xd61d3rcm7vahhic"))))
     (build-system cmake-build-system)
     (inputs
      `(("kwindowsystem" ,kwindowsystem)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:05 GMT) Full text and rfc822 format available.

Message #59 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 18/35] gnu: lxqt-themes: Update to 0.17.0.
Date: Mon, 17 May 2021 00:06:03 +1000
* gnu/packages/lxqt.scm (lxqt-themes): Update to 0.17.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index d6b0e23090..383885303d 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -941,14 +941,14 @@ permissions of other users including root.")
 (define-public lxqt-themes
   (package
     (name "lxqt-themes")
-    (version "0.15.0")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "1dzv60q1dhi666ajh218smkp3ybh5vl2mxyvlbyc9zwvhgx3f0d1"))))
+        (base32 "0kmvcz6rxghxxgb0m264zbvycc1zjma8mr4cpwg5kyrzb47rdw9z"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("lxqt-build-tools" ,lxqt-build-tools)))
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:05 GMT) Full text and rfc822 format available.

Message #62 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 19/35] gnu: pcmanfm-qt: Update to 0.17.0.
Date: Mon, 17 May 2021 00:06:04 +1000
* gnu/packages/lxqt.scm (pcmanfm-qt): Update to 0.17.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 383885303d..b8b09e2fbe 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -1012,14 +1012,14 @@ components to build desktop file managers which belongs to LXDE.")
 (define-public pcmanfm-qt
   (package
     (name "pcmanfm-qt")
-    (version "0.15.1")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "1izc60hrc16sv2ig9psr3br9iq8nln6a2ycfspzycgpk8rh0f6jd"))))
+        (base32 "1axs7dnh2z08ygy28iipfbgfck15k2i2pwlf0v8d8axjrmavzb3l"))))
     (build-system cmake-build-system)
     (inputs
      `(("libfm-qt" ,libfm-qt)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:06 GMT) Full text and rfc822 format available.

Message #65 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 20/35] gnu: lximage-qt: Update to 0.17.0.
Date: Mon, 17 May 2021 00:06:05 +1000
* gnu/packages/lxqt.scm (lximage-qt): Update to 0.17.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index b8b09e2fbe..7b61a2386a 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -1089,14 +1089,14 @@ manager Compton.")
 (define-public lximage-qt
   (package
     (name "lximage-qt")
-    (version "0.15.0")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "02iyymb8ywlzvv69lga5a86b7kh4v78zw6qzq5kcnjp1rpj2rjrk"))))
+        (base32 "0g6hs41xfw2ghhwpj0rqr2ciri0x9v984689yrnmnvah88zlya1f"))))
     (build-system cmake-build-system)
     (inputs
      `(("libexif" ,libexif)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:06 GMT) Full text and rfc822 format available.

Message #68 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 21/35] gnu: obconf-qt: Update to 0.16.1.
Date: Mon, 17 May 2021 00:06:06 +1000
* gnu/packages/lxqt.scm (obconf-qt): Update to 0.16.1.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 7b61a2386a..66c662f48f 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -1119,14 +1119,14 @@ image viewer.")
 (define-public obconf-qt
   (package
     (name "obconf-qt")
-    (version "0.15.0")
+    (version "0.16.1")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "1vcv2y54hgxcf76cr775632kajmvz3v4x1q3r6p1lzs9s7lmrh6q"))))
+        (base32 "0hlbivdbiw7wjhwrp8qfmq50ks19v0q21m3pyjj0k2na7nv9d3a5"))))
     (build-system cmake-build-system)
     (inputs
      `(("imlib2" ,imlib2)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:07 GMT) Full text and rfc822 format available.

Message #71 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 22/35] gnu: pavucontrol-qt: Update to 0.17.0.
Date: Mon, 17 May 2021 00:06:07 +1000
* gnu/packages/lxqt.scm (pavucontrol-qt): Update to 0.17.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 66c662f48f..73e74c2bcd 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -1154,14 +1154,14 @@ window manager OpenBox.")
 (define-public pavucontrol-qt
   (package
     (name "pavucontrol-qt")
-    (version "0.15.0")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "15wknwmb4640r5fm4wiq6xa70qa2djay2806wyvajh11xjmqy566"))))
+        (base32 "0w51dpjayav78lmhw966fz3gvypkmv64xgsd7x5rqs8am39lq9vc"))))
     (build-system cmake-build-system)
     (inputs
      `(("glib" ,glib)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:07 GMT) Full text and rfc822 format available.

Message #74 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 23/35] gnu: qtermwidget: Update to 0.17.0.
Date: Mon, 17 May 2021 00:06:08 +1000
* gnu/packages/lxqt.scm (qtermwidget): Update to 0.17.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 73e74c2bcd..c7da073e21 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -1214,14 +1214,14 @@ processes currently in existence, much like code{top} or code{ps}.")
 (define-public qtermwidget
   (package
     (name "qtermwidget")
-    (version "0.15.0")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "1vn3bbc99py0ak7z9s6p71n9cacpckz57a1p97iwb0p23g4zgjkf"))))
+        (base32 "10lv475qj0x3c3vl4yhjyr6y10qj5pq8n5pal5k24f6pf7xv412f"))))
     (build-system cmake-build-system)
     (inputs
      `(("qtbase" ,qtbase)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:07 GMT) Full text and rfc822 format available.

Message #77 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 24/35] gnu: qterminal: Update to 0.17.0.
Date: Mon, 17 May 2021 00:06:09 +1000
* gnu/packages/lxqt.scm (qterminal): Update to 0.17.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index c7da073e21..b069332a34 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -1239,14 +1239,14 @@ processes currently in existence, much like code{top} or code{ps}.")
 (define-public qterminal
   (package
     (name "qterminal")
-    (version "0.15.0")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "0r7xmwjpak47ayj7cj37bwrdlv1mx5nhqpccb5pbn2fh8slp8zsm"))))
+        (base32 "0rfv7a6ncm8fs8aicinh9l29w4636gxzcqz735jmch2r41v9i1d9"))))
     (build-system cmake-build-system)
     (inputs
      `(("qtbase" ,qtbase)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:08 GMT) Full text and rfc822 format available.

Message #80 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 25/35] gnu: screengrab: Update to 2.2.0.
Date: Mon, 17 May 2021 00:06:10 +1000
* gnu/packages/lxqt.scm (screengrab): Update to 2.2.0.
[native-inputs]: Add perl.
---
 gnu/packages/lxqt.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index b069332a34..b0742c63ae 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -1266,14 +1266,14 @@ QTermWidget.")
 (define-public screengrab
   (package
     (name "screengrab")
-    (version "2.0.1")
+    (version "2.2.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/screengrab/releases/download/"
                            version "/screengrab-" version ".tar.xz"))
        (sha256
-        (base32 "14znjw3d3gw02fsmhrjcj86l173m2ypl1x8hhba9ld23icr1gqwf"))))
+        (base32 "0cilzw7rz5m2klzpax7rrs5rr6whfda2svwzsn2jvmrirmh5by7r"))))
     (build-system cmake-build-system)
     (inputs
      `(("kwindowsystem" ,kwindowsystem)
@@ -1283,6 +1283,7 @@ QTermWidget.")
        ("qtx11extras" ,qtx11extras)))
     (native-inputs
      `(("pkg-config" ,pkg-config)
+       ("perl" ,perl)
        ("qttools" ,qttools)))
     (arguments
      '(#:tests? #f))                    ; no tests
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:08 GMT) Full text and rfc822 format available.

Message #83 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 26/35] gnu: lxqt-archiver: Update to 0.4.0.
Date: Mon, 17 May 2021 00:06:11 +1000
* gnu/packages/lxqt.scm (lxqt-archiver): Update to 0.4.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index b0742c63ae..e64977270e 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -1297,14 +1297,14 @@ easily publishing them on internet image hosting services.")
 (define-public lxqt-archiver
   (package
     (name "lxqt-archiver")
-    (version "0.2.0")
+    (version "0.4.0")
     (source
       (origin
         (method url-fetch)
         (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
         (sha256
-          (base32 "1i725zaah0wv18j5fchg6isbh4b601filx549cq2hkzf2sylh9ff"))))
+          (base32 "0fzgq7cyr7hx8qmq84xfgbsdx04mc1r7vzq5mz79j7bp2ysh134z"))))
     (build-system cmake-build-system)
     (inputs
       `(("glib" ,glib)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:09 GMT) Full text and rfc822 format available.

Message #86 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 27/35] gnu: compton-conf: Update to 0.16.0.
Date: Mon, 17 May 2021 00:06:12 +1000
* gnu/packages/lxqt.scm (compton-conf): Update to 0.16.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index e64977270e..c3aae4dd4a 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -1054,14 +1054,14 @@ LXDE.")
 (define-public compton-conf
   (package
     (name "compton-conf")
-    (version "0.15.0")
+    (version "0.16.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "1ii1bans7wdafm9rmxvsdqp3ad4cj0pa8kf92plbmbm3nycpf1q9"))))
+        (base32 "0haarzhndjp0wndfhcdy6zl2whpdn3w0qzr3rr137kfqibc58lvx"))))
     (build-system cmake-build-system)
     (inputs
      `(("libconfig" ,libconfig)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:09 GMT) Full text and rfc822 format available.

Message #89 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 28/35] gnu: qps: Update to 2.3.0.
Date: Mon, 17 May 2021 00:06:13 +1000
* gnu/packages/lxqt.scm (qps): Update to 2.3.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index c3aae4dd4a..84d3b12ebc 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -1184,14 +1184,14 @@ window manager OpenBox.")
 (define-public qps
   (package
     (name "qps")
-    (version "2.1.0")
+    (version "2.3.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "0yym1bpglz8vha28x7k21fxx1vlsq19m3fyhk2cq3pwq3nqijwp7"))))
+        (base32 "0zg0czrh3dlbnl5smxamhkdbj1g0szm47w1c0fwpaplgc1vv5lfq"))))
     (build-system cmake-build-system)
     (inputs
      `(("kwindowsystem" ,kwindowsystem)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:09 GMT) Full text and rfc822 format available.

Message #92 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 29/35] gnu: lxqt-openssh-askpass: Update to 0.17.0.
Date: Mon, 17 May 2021 00:06:14 +1000
* gnu/packages/lxqt.scm (lxqt-openssh-askpass): Update to 0.17.0.
---
 gnu/packages/lxqt.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 84d3b12ebc..b759a266db 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -527,14 +527,14 @@ according to the Desktop Notifications Specification.")
 (define-public lxqt-openssh-askpass
   (package
     (name "lxqt-openssh-askpass")
-    (version "0.15.0")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
                            version "/" name "-" version ".tar.xz"))
        (sha256
-        (base32 "1h8nhj4ig8419kfdqjsig16ayf2byrzgrk698aiym544n5ayjwak"))))
+        (base32 "0gdcy8c21sbfrlfz9c3zqw4dvdwf309flkjgqanwwl9i8hr26chr"))))
     (build-system cmake-build-system)
     (inputs
      `(("kwindowsystem" ,kwindowsystem)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:10 GMT) Full text and rfc822 format available.

Message #95 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 30/35] gnu: lxqt-connman-applet: Update to 0.15-db1618d5.
Date: Mon, 17 May 2021 00:06:15 +1000
* gnu/packages/lxqt.scm (lxqt-connman-applet): Update to
0.15-db1618d5 (translation updates).
Untabify.
---
 gnu/packages/lxqt.scm | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index b759a266db..aa7ef680e1 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -1328,7 +1328,7 @@ like @command{tar} and @command{zip}.")
 (define-public lxqt-connman-applet
   ;; since the main developers didn't release any version yet,  their 
   ;; latest commit on `master` branch at the moment used for this version.
-  (let ((commit "8a6cc14371a2f18f963e6a2996446082bb60f17d")
+  (let ((commit "db1618d58fd3439142c4e44b24cba0dbb68b7141")
         (revision "0"))
     (package
       (name "lxqt-connman-applet")
@@ -1340,7 +1340,8 @@ like @command{tar} and @command{zip}.")
             (url (string-append "https://github.com/lxqt/" name))
             (commit commit)))
           (file-name (git-file-name name version))
-          (sha256 (base32 "0br4bxfrl8k7lq84aq4grznlk8xzzjgkmd19bf9mwjr0a87gg72v"))))
+          (sha256
+           (base32 "087641idpg7n8yhh5biis4wv52ayw3rddirwqb34bf5fwj664pw9"))))
       (build-system cmake-build-system)
       (inputs
         `(("kwindowsystem" ,kwindowsystem)
@@ -1364,13 +1365,13 @@ like @command{tar} and @command{zip}.")
                                     "/share/lxqt/translations"))
                     (("\\$\\{LXQT_ETC_XDG_DIR\\}") "etc/xdg"))
                   #t))
-	      (add-after 'unpack 'remove-definitions
-		(lambda _
-		  (substitute* "CMakeLists.txt"
-		    (("include\\(LXQtCompilerSettings NO_POLICY_SCOPE\\)")
-		     "include(LXQtCompilerSettings NO_POLICY_SCOPE)
+              (add-after 'unpack 'remove-definitions
+                (lambda _
+                  (substitute* "CMakeLists.txt"
+                    (("include\\(LXQtCompilerSettings NO_POLICY_SCOPE\\)")
+                     "include(LXQtCompilerSettings NO_POLICY_SCOPE)
 remove_definitions(-DQT_NO_CAST_TO_ASCII -DQT_NO_CAST_FROM_ASCII)"))
-		  #t)))))
+                  #t)))))
       (home-page "https://github.com/lxqt/lxqt-connman-applet")
       (synopsis "System-tray applet for connman")
       (description "This package provides a Qt-based system-tray applet for
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:10 GMT) Full text and rfc822 format available.

Message #98 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 31/35] gnu: lxqt: Use the projects version number.
Date: Mon, 17 May 2021 00:06:16 +1000
* gnu/packages/lxqt.scm (lxqt): Use the projects version number.
---
 gnu/packages/lxqt.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index aa7ef680e1..3437e17d4f 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -1384,7 +1384,7 @@ desktop.")
 (define-public lxqt
   (package
     (name "lxqt")
-    (version (package-version lxqt-session))
+    (version "17.0")
     (source #f)
     (build-system trivial-build-system)
     (arguments '(#:builder (begin (mkdir %output) #t)))
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:11 GMT) Full text and rfc822 format available.

Message #101 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 32/35] gnu: lxqt: Use picom instead of compton.
Date: Mon, 17 May 2021 00:06:17 +1000
* gnu/packages/lxqt.scm (lxqt):
[inputs]: Use picom instead of compton. Remove deprecated compton-conf.
---
 gnu/packages/lxqt.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 3437e17d4f..c3b073ee13 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -1415,8 +1415,7 @@ desktop.")
        ("lxqt-themes" ,lxqt-themes)
        ("pcmanfm-qt" ,pcmanfm-qt)
        ;; Extra
-       ("compton" ,compton)
-       ("compton-conf" ,compton-conf)
+       ("picom" ,picom)
        ("font-dejavu" ,font-dejavu)
        ("lximage-qt" ,lximage-qt)
        ("obconf-qt" ,obconf-qt)
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:11 GMT) Full text and rfc822 format available.

Message #104 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 33/35] gnu: lxqt-config: Move libkscreen to propagated-inputs.
Date: Mon, 17 May 2021 00:06:18 +1000
* gnu/packages/lxqt.scm (lxqt-config): Move libkscreen to
propagated-inputs. Kscreen is a runtime dependency. lxqt-config-monitor
will not open without it available.
---
 gnu/packages/lxqt.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index c3b073ee13..f8d93faaef 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -375,7 +375,6 @@ the operating system LXQt is running on.")
     (inputs
      `(("eudev" ,eudev)
        ("kwindowsystem" ,kwindowsystem)
-       ("libkscreen" ,libkscreen)
        ("liblxqt" ,liblxqt)
        ("libqtxdg" ,libqtxdg)
        ("libxcursor" ,libxcursor)
@@ -391,6 +390,10 @@ the operating system LXQt is running on.")
      `(("pkg-config" ,pkg-config)
        ("lxqt-build-tools" ,lxqt-build-tools)
        ("qttools" ,qttools)))
+    ;; XXX: This is a workaround so libkscreen can find the backends as we
+    ;; dont have a way specify them. We may want to  patch like Nix does.
+    (propagated-inputs
+     `(("libkscreen" ,libkscreen)))
     (arguments
      '(#:tests? #f                      ; no tests
        #:phases
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:11 GMT) Full text and rfc822 format available.

Message #107 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 34/35] gnu: Update lxqt home-page for all lxqt packages.
Date: Mon, 17 May 2021 00:06:19 +1000
* gnu/packages/lxqt.scm: Replace all lxqt.github.io with
lxqt-project.org, where it redirects to.
---
 gnu/packages/lxqt.scm | 58 +++++++++++++++++++++----------------------
 1 file changed, 29 insertions(+), 29 deletions(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index f8d93faaef..53ef8a7c00 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -157,7 +157,7 @@ to statistics about the system on which it's run.")
     (description
      "Lxqt-build-tools is providing several tools needed to build LXQt
 itself as well as other components maintained by the LXQt project.")
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (license license:lgpl2.1+)))
 
 (define-public libqtxdg
@@ -238,7 +238,7 @@ in Qt.")
     (native-inputs
      `(("lxqt-build-tools" ,lxqt-build-tools)
        ("qttools" ,qttools)))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "Core utility library for all LXQt components")
     (description "liblxqt provides the basic libraries shared by the
 components of the LXQt desktop environment.")
@@ -261,7 +261,7 @@ components of the LXQt desktop environment.")
      `(("qtbase" ,qtbase)))
     (native-inputs
      `(("lxqt-build-tools" ,lxqt-build-tools)))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "Library used to query system info and statistics")
     (description "libsysstat is a library to query system information like CPU
 and memory usage or network traffic.")
@@ -307,7 +307,7 @@ and memory usage or network traffic.")
                 (string-append (assoc-ref outputs "out")
                                "/share/lxqt/translations")))
              #t)))))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "Provides information about LXQt and the system")
     (description "lxqt-about is a dialogue window providing information about
 LXQt and the system it's running on.")
@@ -354,7 +354,7 @@ LXQt and the system it's running on.")
                 (string-append (assoc-ref outputs "out")
                                "/share/lxqt/translations")))
              #t)))))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "LXQt system administration tool")
     (description "lxqt-admin is providing two GUI tools to adjust settings of
 the operating system LXQt is running on.")
@@ -426,7 +426,7 @@ the operating system LXQt is running on.")
                 (string-append (assoc-ref outputs "out")
                                "/share/lxqt/translations")))
              #t)))))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "Tools to configure LXQt and the underlying operating system")
     (description "lxqt-config is providing several tools involved in the
 configuration of both LXQt and the underlying operating system.")
@@ -474,7 +474,7 @@ configuration of both LXQt and the underlying operating system.")
                 (string-append (assoc-ref outputs "out")
                                "/share/lxqt/translations")))
              #t)))))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "Daemon used to register global keyboard shortcuts")
     (description "lxqt-globalkeys is providing tools to set global keyboard
 shortcuts in LXQt sessions, that is shortcuts which apply to the LXQt session
@@ -521,7 +521,7 @@ as a whole and are not limited to distinct applications.")
                 (string-append (assoc-ref outputs "out")
                                "/share/lxqt/translations")))
              #t)))))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "The LXQt notification daemon")
     (description "lxqt-notificationd is LXQt's implementation of a daemon
 according to the Desktop Notifications Specification.")
@@ -560,7 +560,7 @@ according to the Desktop Notifications Specification.")
                 (string-append (assoc-ref outputs "out")
                                "/share/lxqt/translations")))
              #t)))))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "GUI to query passwords on behalf of SSH agents")
     (description "lxqt-openssh-askpass is a GUI to query credentials on behalf
 of other programs.")
@@ -636,7 +636,7 @@ of other programs.")
                       (("/usr/share/X11/xkb/rules/evdev.xml")
                        (string-append xkb "/share/X11/xkb/rules/evdev.xml")))
                   #t))))))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "The LXQt desktop panel")
     (description "lxqt-panel represents the taskbar of LXQt.")
     (license license:lgpl2.1+)))
@@ -684,7 +684,7 @@ of other programs.")
                 (string-append (assoc-ref outputs "out")
                                "/share/lxqt/translations")))
              #t)))))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "The LXQt PolicyKit agent")
     (description "lxqt-policykit is the polkit authentication agent of
 LXQt.")
@@ -733,7 +733,7 @@ LXQt.")
                 (string-append (assoc-ref outputs "out")
                                "/share/lxqt/translations")))
              #t)))))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "Power management module for LXQt")
     (description "lxqt-powermanagement is providing tools to monitor power
 management events and optionally trigger actions like e. g. shut down a system
@@ -772,7 +772,7 @@ when laptop batteries are low on power.")
                (("DESTINATION \"\\$\\{QT_PLUGINS_DIR\\}")
                 "DESTINATION \"lib/qt5/plugins"))
              #t)))))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "LXQt Qt platform integration plugin")
     (description "lxqt-qtplugin is providing a library libqtlxqt to integrate
 Qt with LXQt.")
@@ -821,7 +821,7 @@ Qt with LXQt.")
                 (string-append (assoc-ref outputs "out")
                                "/share/lxqt/translations")))
              #t)))))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "Tool used to launch programs quickly by typing their names")
     (description "lxqt-runner provides a GUI that comes up on the desktop and
 allows for launching applications or shutting down the system.")
@@ -893,7 +893,7 @@ allows for launching applications or shutting down the system.")
                  `("XDG_CONFIG_DIRS" ":" suffix ("/run/current-system/profile/share"
                                                  "/run/current-system/profile/share/pcmanfm-qt")))
                #t))))))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "Session manager for LXQt")
     (description "lxqt-session provides the standard session manager
 for the LXQt desktop environment.")
@@ -934,7 +934,7 @@ for the LXQt desktop environment.")
                 (string-append (assoc-ref outputs "out")
                                "/share/lxqt/translations")))
              #t)))))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "GUI frontend for sudo/su")
     (description "lxqt-sudo is a graphical front-end of commands sudo and su
 respectively.  As such it enables regular users to launch applications with
@@ -968,7 +968,7 @@ permissions of other users including root.")
                (("DESTINATION \"\\$\\{LXQT_SHARE_DIR\\}")
                 "DESTINATION \"share/lxqt"))
              #t)))))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "Themes, graphics and icons for LXQt")
     (description "This package comprises a number of graphic files and themes
 for LXQt.")
@@ -1006,7 +1006,7 @@ for LXQt.")
      `(("pkg-config" ,pkg-config)
        ("lxqt-build-tools" ,lxqt-build-tools)
        ("qttools" ,qttools)))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "Qt binding for libfm")
     (description "libfm-qt is the Qt port of libfm, a library providing
 components to build desktop file managers which belongs to LXDE.")
@@ -1045,7 +1045,7 @@ components to build desktop file managers which belongs to LXDE.")
                (("@LXQT_SHARE_DIR@")
                 "/run/current-system/profile/share/lxqt" ))
              #t)))))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "File manager and desktop icon manager")
     (description "PCManFM-Qt is the Qt port of PCManFM, the file manager of
 LXDE.")
@@ -1083,7 +1083,7 @@ LXDE.")
                (("DESTINATION \"\\$\\{LXQT_ETC_XDG_DIR\\}")
                 "DESTINATION \"etc/xdg"))
              #t)))))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "GUI configuration tool for compton X composite manager")
     (description "@code{compton-conf} is a configuration tool for X composite
 manager Compton.")
@@ -1113,7 +1113,7 @@ manager Compton.")
        ("qttools" ,qttools)))
     (arguments
      '(#:tests? #f))                    ; no tests
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "The image viewer and screenshot tool for lxqt")
     (description "LXImage-Qt is the Qt port of LXImage, a simple and fast
 image viewer.")
@@ -1148,7 +1148,7 @@ image viewer.")
        ("qttools" ,qttools)))
     (arguments
      '(#:tests? #f))                    ; no tests
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "Openbox configuration tool")
     (description "ObConf-Qt is a Qt port of ObConf, a configuration editor for
 window manager OpenBox.")
@@ -1178,7 +1178,7 @@ window manager OpenBox.")
        ("qttools" ,qttools)))
     (arguments
      '(#:tests? #f))                    ; no tests
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "Pulseaudio mixer in Qt")
     (description "@code{pavucontrol-qt} is the Qt port of volume control
 @code{pavucontrol} of sound server @code{PulseAudio}.")
@@ -1208,7 +1208,7 @@ window manager OpenBox.")
        ("qttools" ,qttools)))
     (arguments
      '(#:tests? #f))                    ; no tests
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "Qt-based visual process status monitor")
     (description "@code{qps} is a monitor that displays the status of the
 processes currently in existence, much like code{top} or code{ps}.")
@@ -1234,7 +1234,7 @@ processes currently in existence, much like code{top} or code{ps}.")
        ("qttools" ,qttools)))
     (arguments
      '(#:tests? #f))                    ; no tests
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "The terminal widget for QTerminal")
     (description "QTermWidget is a terminal emulator widget for Qt 5.")
     (license license:gpl2+)))
@@ -1260,7 +1260,7 @@ processes currently in existence, much like code{top} or code{ps}.")
        ("qttools" ,qttools)))
     (arguments
      '(#:tests? #f))                      ; no tests
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "Lightweight Qt-based terminal emulator")
     (description "QTerminal is a lightweight Qt terminal emulator based on
 QTermWidget.")
@@ -1290,7 +1290,7 @@ QTermWidget.")
        ("qttools" ,qttools)))
     (arguments
      '(#:tests? #f))                    ; no tests
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "Crossplatform tool for fast making screenshots")
     (description "ScreenGrab is a program for fast creating screenshots, and
 easily publishing them on internet image hosting services.")
@@ -1321,7 +1321,7 @@ easily publishing them on internet image hosting services.")
         ("qttools" ,qttools)))
     (arguments
       '(#:tests? #f))
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (synopsis "Simple & lightweight desktop-agnostic Qt file archiver")
     (description
      "This package provides a Qt graphical interface to archiving programs
@@ -1429,5 +1429,5 @@ desktop.")
        ("qterminal" ,qterminal)))
     (synopsis "The Lightweight Qt Desktop Environment")
     (description "LXQt is a lightweight Qt desktop environment.")
-    (home-page "https://lxqt.github.io")
+    (home-page "https://lxqt-project.org")
     (license license:gpl2+)))
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sun, 16 May 2021 14:08:12 GMT) Full text and rfc822 format available.

Message #110 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Brendan Tildesley <mail <at> brendan.scot>
To: 48465 <at> debbugs.gnu.org
Subject: [PATCH 35/35] doc: lxqt-desktop-service: Update lxqt homepage url.
Date: Mon, 17 May 2021 00:06:20 +1000
* doc/guix.texi: Replace lxqt.github.io with lxqt-project.org.
---
 doc/guix.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/guix.texi b/doc/guix.texi
index 0947b9f028..ad0e00df3b 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -19127,7 +19127,7 @@ The MATE package to use.
 @end deftp
 
 @deffn {Scheme Variable} lxqt-desktop-service-type
-This is the type of the service that runs the @uref{https://lxqt.github.io,
+This is the type of the service that runs the @uref{https://lxqt-project.org,
 LXQt desktop environment}.  Its value is a @code{lxqt-desktop-configuration}
 object (see below).
 
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#48465; Package guix-patches. (Sat, 29 May 2021 18:19:02 GMT) Full text and rfc822 format available.

Message #113 received at 48465 <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Brendan Tildesley <mail <at> brendan.scot>
Cc: 48465 <at> debbugs.gnu.org
Subject: Re: bug#48465: [PATCHES 0/35] gnu: lxqt: Update to 0.17.0.
Date: Sat, 29 May 2021 20:18:43 +0200
Brendan Tildesley <mail <at> brendan.scot> skribis:

> * gnu/packages/lxqt.scm (lxqt-build-tools): Update to 0.9.0.
> [propagated-inputs]: Add perl. dependent projects require it via the
> CMake files.

[...]

> +    (propagated-inputs
> +     `(("perl" ,perl)))

I copied the explanation from the commit log as a comment here.

Ludo’.




Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Sat, 29 May 2021 18:19:02 GMT) Full text and rfc822 format available.

Notification sent to Brendan Tildesley <btild <at> mailbox.org>:
bug acknowledged by developer. (Sat, 29 May 2021 18:19:03 GMT) Full text and rfc822 format available.

Message #118 received at 48465-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Brendan Tildesley <btild <at> mailbox.org>
Cc: 48465-done <at> debbugs.gnu.org
Subject: Re: bug#48465: [PATCHES 0/35] gnu: lxqt: Update to 0.17.0.
Date: Sat, 29 May 2021 20:17:53 +0200
Hi Brendan,

Brendan Tildesley <btild <at> mailbox.org> skribis:

> I don't use lxqt but I tested it in a VM and it seems to work and look just like it did before.

I applied the whole patch set and tested in a VM using the config you
gave.  It appears to all work as expected!

I noticed that “Lock Screen” from the menu at the bottom doesn’t work
due to missing ‘xdg-screensaver’—probably not a regression, but would be
nice to fix.

Pushed as 338f012d8b0437d5a17ac4b46c5d8fb618e2c8df, thanks!

Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 27 Jun 2021 11:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 303 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.