unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#48465] [PATCHES 0/35] gnu: lxqt: Update to 0.17.0.
@ 2021-05-16 14:04 Brendan Tildesley via Guix-patches via
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
  2021-05-29 18:17 ` bug#48465: [PATCHES 0/35] gnu: lxqt: Update to 0.17.0 Ludovic Courtès
  0 siblings, 2 replies; 38+ messages in thread
From: Brendan Tildesley via Guix-patches via @ 2021-05-16 14:04 UTC (permalink / raw)
  To: 48465

[-- Attachment #1: Type: text/plain, Size: 1561 bytes --]

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))))

[-- Attachment #2: Type: text/html, Size: 4577 bytes --]

^ permalink raw reply	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1.
  2021-05-16 14:04 [bug#48465] [PATCHES 0/35] gnu: lxqt: Update to 0.17.0 Brendan Tildesley via Guix-patches via
@ 2021-05-16 14:05 ` Brendan Tildesley
  2021-05-16 14:05   ` [bug#48465] [PATCH 02/35] gnu: lxqt-qtplugin: Update to 0.17.0 Brendan Tildesley
                     ` (33 more replies)
  2021-05-29 18:17 ` bug#48465: [PATCHES 0/35] gnu: lxqt: Update to 0.17.0 Ludovic Courtès
  1 sibling, 34 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:05 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 02/35] gnu: lxqt-qtplugin: Update to 0.17.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
@ 2021-05-16 14:05   ` Brendan Tildesley
  2021-05-16 14:05   ` [bug#48465] [PATCH 03/35] gnu: lxqt-build-tools: Update to 0.9.0 Brendan Tildesley
                     ` (32 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:05 UTC (permalink / raw)
  To: 48465

* 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@pantherx.org>
 ;;; Copyright © 2020 Fakhri Sajadi <f.sajadi@pantherx.org>
 ;;; Copyright © 2020 André Batista <nandre@riseup.net>
+;;; Copyright © 2021 Brendan Tildesley <mail@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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 03/35] gnu: lxqt-build-tools: Update to 0.9.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
  2021-05-16 14:05   ` [bug#48465] [PATCH 02/35] gnu: lxqt-qtplugin: Update to 0.17.0 Brendan Tildesley
@ 2021-05-16 14:05   ` Brendan Tildesley
  2021-05-29 18:18     ` [bug#48465] [PATCHES 0/35] gnu: lxqt: Update to 0.17.0 Ludovic Courtès
  2021-05-16 14:05   ` [bug#48465] [PATCH 04/35] gnu: libqtxdg: Update to 3.7.1 Brendan Tildesley
                     ` (31 subsequent siblings)
  33 siblings, 1 reply; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:05 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 04/35] gnu: libqtxdg: Update to 3.7.1.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
  2021-05-16 14:05   ` [bug#48465] [PATCH 02/35] gnu: lxqt-qtplugin: Update to 0.17.0 Brendan Tildesley
  2021-05-16 14:05   ` [bug#48465] [PATCH 03/35] gnu: lxqt-build-tools: Update to 0.9.0 Brendan Tildesley
@ 2021-05-16 14:05   ` Brendan Tildesley
  2021-05-16 14:05   ` [bug#48465] [PATCH 05/35] gnu: liblxqt: Update to 0.17.0 Brendan Tildesley
                     ` (30 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:05 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 05/35] gnu: liblxqt: Update to 0.17.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (2 preceding siblings ...)
  2021-05-16 14:05   ` [bug#48465] [PATCH 04/35] gnu: libqtxdg: Update to 3.7.1 Brendan Tildesley
@ 2021-05-16 14:05   ` Brendan Tildesley
  2021-05-16 14:05   ` [bug#48465] [PATCH 06/35] gnu: libsysstat: Update to 0.4.5 Brendan Tildesley
                     ` (29 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:05 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 06/35] gnu: libsysstat: Update to 0.4.5.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (3 preceding siblings ...)
  2021-05-16 14:05   ` [bug#48465] [PATCH 05/35] gnu: liblxqt: Update to 0.17.0 Brendan Tildesley
@ 2021-05-16 14:05   ` Brendan Tildesley
  2021-05-16 14:05   ` [bug#48465] [PATCH 07/35] gnu: lxqt-about: Update to 0.17.0 Brendan Tildesley
                     ` (28 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:05 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 07/35] gnu: lxqt-about: Update to 0.17.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (4 preceding siblings ...)
  2021-05-16 14:05   ` [bug#48465] [PATCH 06/35] gnu: libsysstat: Update to 0.4.5 Brendan Tildesley
@ 2021-05-16 14:05   ` Brendan Tildesley
  2021-05-16 14:05   ` [bug#48465] [PATCH 08/35] gnu: lxqt-admin: " Brendan Tildesley
                     ` (27 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:05 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 08/35] gnu: lxqt-admin: Update to 0.17.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (5 preceding siblings ...)
  2021-05-16 14:05   ` [bug#48465] [PATCH 07/35] gnu: lxqt-about: Update to 0.17.0 Brendan Tildesley
@ 2021-05-16 14:05   ` Brendan Tildesley
  2021-05-16 14:05   ` [bug#48465] [PATCH 09/35] gnu: lxqt-config: Update to 0.17.1 Brendan Tildesley
                     ` (26 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:05 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 09/35] gnu: lxqt-config: Update to 0.17.1.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (6 preceding siblings ...)
  2021-05-16 14:05   ` [bug#48465] [PATCH 08/35] gnu: lxqt-admin: " Brendan Tildesley
@ 2021-05-16 14:05   ` Brendan Tildesley
  2021-05-16 14:05   ` [bug#48465] [PATCH 10/35] gnu: lxqt-globalkeys: Update to 0.17.0 Brendan Tildesley
                     ` (25 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:05 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 10/35] gnu: lxqt-globalkeys: Update to 0.17.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (7 preceding siblings ...)
  2021-05-16 14:05   ` [bug#48465] [PATCH 09/35] gnu: lxqt-config: Update to 0.17.1 Brendan Tildesley
@ 2021-05-16 14:05   ` Brendan Tildesley
  2021-05-16 14:05   ` [bug#48465] [PATCH 11/35] gnu: lxqt-notificationd: " Brendan Tildesley
                     ` (24 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:05 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 11/35] gnu: lxqt-notificationd: Update to 0.17.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (8 preceding siblings ...)
  2021-05-16 14:05   ` [bug#48465] [PATCH 10/35] gnu: lxqt-globalkeys: Update to 0.17.0 Brendan Tildesley
@ 2021-05-16 14:05   ` Brendan Tildesley
  2021-05-16 14:05   ` [bug#48465] [PATCH 12/35] gnu: lxqt-panel: Update to 0.17.1 Brendan Tildesley
                     ` (23 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:05 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 12/35] gnu: lxqt-panel: Update to 0.17.1.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (9 preceding siblings ...)
  2021-05-16 14:05   ` [bug#48465] [PATCH 11/35] gnu: lxqt-notificationd: " Brendan Tildesley
@ 2021-05-16 14:05   ` Brendan Tildesley
  2021-05-16 14:05   ` [bug#48465] [PATCH 13/35] gnu: lxqt-policykit: Update to 0.17.0 Brendan Tildesley
                     ` (22 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:05 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 13/35] gnu: lxqt-policykit: Update to 0.17.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (10 preceding siblings ...)
  2021-05-16 14:05   ` [bug#48465] [PATCH 12/35] gnu: lxqt-panel: Update to 0.17.1 Brendan Tildesley
@ 2021-05-16 14:05   ` Brendan Tildesley
  2021-05-16 14:05   ` [bug#48465] [PATCH 14/35] gnu: lxqt-powermanagement: Update to 0.17.1 Brendan Tildesley
                     ` (21 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:05 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 14/35] gnu: lxqt-powermanagement: Update to 0.17.1.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (11 preceding siblings ...)
  2021-05-16 14:05   ` [bug#48465] [PATCH 13/35] gnu: lxqt-policykit: Update to 0.17.0 Brendan Tildesley
@ 2021-05-16 14:05   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 15/35] gnu: lxqt-runner: Update to 0.17.0 Brendan Tildesley
                     ` (20 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:05 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 15/35] gnu: lxqt-runner: Update to 0.17.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (12 preceding siblings ...)
  2021-05-16 14:05   ` [bug#48465] [PATCH 14/35] gnu: lxqt-powermanagement: Update to 0.17.1 Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 16/35] gnu: lxqt-session: Update to 0.17.1 Brendan Tildesley
                     ` (19 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 16/35] gnu: lxqt-session: Update to 0.17.1.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (13 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 15/35] gnu: lxqt-runner: Update to 0.17.0 Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 17/35] gnu: lxqt-sudo: Update to 0.17.0 Brendan Tildesley
                     ` (18 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 17/35] gnu: lxqt-sudo: Update to 0.17.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (14 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 16/35] gnu: lxqt-session: Update to 0.17.1 Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 18/35] gnu: lxqt-themes: " Brendan Tildesley
                     ` (17 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 18/35] gnu: lxqt-themes: Update to 0.17.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (15 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 17/35] gnu: lxqt-sudo: Update to 0.17.0 Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 19/35] gnu: pcmanfm-qt: " Brendan Tildesley
                     ` (16 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 19/35] gnu: pcmanfm-qt: Update to 0.17.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (16 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 18/35] gnu: lxqt-themes: " Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 20/35] gnu: lximage-qt: " Brendan Tildesley
                     ` (15 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 20/35] gnu: lximage-qt: Update to 0.17.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (17 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 19/35] gnu: pcmanfm-qt: " Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 21/35] gnu: obconf-qt: Update to 0.16.1 Brendan Tildesley
                     ` (14 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 21/35] gnu: obconf-qt: Update to 0.16.1.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (18 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 20/35] gnu: lximage-qt: " Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 22/35] gnu: pavucontrol-qt: Update to 0.17.0 Brendan Tildesley
                     ` (13 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 22/35] gnu: pavucontrol-qt: Update to 0.17.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (19 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 21/35] gnu: obconf-qt: Update to 0.16.1 Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 23/35] gnu: qtermwidget: " Brendan Tildesley
                     ` (12 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 23/35] gnu: qtermwidget: Update to 0.17.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (20 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 22/35] gnu: pavucontrol-qt: Update to 0.17.0 Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 24/35] gnu: qterminal: " Brendan Tildesley
                     ` (11 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 24/35] gnu: qterminal: Update to 0.17.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (21 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 23/35] gnu: qtermwidget: " Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 25/35] gnu: screengrab: Update to 2.2.0 Brendan Tildesley
                     ` (10 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 25/35] gnu: screengrab: Update to 2.2.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (22 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 24/35] gnu: qterminal: " Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 26/35] gnu: lxqt-archiver: Update to 0.4.0 Brendan Tildesley
                     ` (9 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 26/35] gnu: lxqt-archiver: Update to 0.4.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (23 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 25/35] gnu: screengrab: Update to 2.2.0 Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 27/35] gnu: compton-conf: Update to 0.16.0 Brendan Tildesley
                     ` (8 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 27/35] gnu: compton-conf: Update to 0.16.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (24 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 26/35] gnu: lxqt-archiver: Update to 0.4.0 Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 28/35] gnu: qps: Update to 2.3.0 Brendan Tildesley
                     ` (7 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 28/35] gnu: qps: Update to 2.3.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (25 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 27/35] gnu: compton-conf: Update to 0.16.0 Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 29/35] gnu: lxqt-openssh-askpass: Update to 0.17.0 Brendan Tildesley
                     ` (6 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 29/35] gnu: lxqt-openssh-askpass: Update to 0.17.0.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (26 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 28/35] gnu: qps: Update to 2.3.0 Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 30/35] gnu: lxqt-connman-applet: Update to 0.15-db1618d5 Brendan Tildesley
                     ` (5 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 30/35] gnu: lxqt-connman-applet: Update to 0.15-db1618d5.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (27 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 29/35] gnu: lxqt-openssh-askpass: Update to 0.17.0 Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 31/35] gnu: lxqt: Use the projects version number Brendan Tildesley
                     ` (4 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 31/35] gnu: lxqt: Use the projects version number.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (28 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 30/35] gnu: lxqt-connman-applet: Update to 0.15-db1618d5 Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 32/35] gnu: lxqt: Use picom instead of compton Brendan Tildesley
                     ` (3 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 32/35] gnu: lxqt: Use picom instead of compton.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (29 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 31/35] gnu: lxqt: Use the projects version number Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 33/35] gnu: lxqt-config: Move libkscreen to propagated-inputs Brendan Tildesley
                     ` (2 subsequent siblings)
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 33/35] gnu: lxqt-config: Move libkscreen to propagated-inputs.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (30 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 32/35] gnu: lxqt: Use picom instead of compton Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 34/35] gnu: Update lxqt home-page for all lxqt packages Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 35/35] doc: lxqt-desktop-service: Update lxqt homepage url Brendan Tildesley
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 34/35] gnu: Update lxqt home-page for all lxqt packages.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (31 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 33/35] gnu: lxqt-config: Move libkscreen to propagated-inputs Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  2021-05-16 14:06   ` [bug#48465] [PATCH 35/35] doc: lxqt-desktop-service: Update lxqt homepage url Brendan Tildesley
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCH 35/35] doc: lxqt-desktop-service: Update lxqt homepage url.
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
                     ` (32 preceding siblings ...)
  2021-05-16 14:06   ` [bug#48465] [PATCH 34/35] gnu: Update lxqt home-page for all lxqt packages Brendan Tildesley
@ 2021-05-16 14:06   ` Brendan Tildesley
  33 siblings, 0 replies; 38+ messages in thread
From: Brendan Tildesley @ 2021-05-16 14:06 UTC (permalink / raw)
  To: 48465

* 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





^ permalink raw reply related	[flat|nested] 38+ messages in thread

* bug#48465: [PATCHES 0/35] gnu: lxqt: Update to 0.17.0.
  2021-05-16 14:04 [bug#48465] [PATCHES 0/35] gnu: lxqt: Update to 0.17.0 Brendan Tildesley via Guix-patches via
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
@ 2021-05-29 18:17 ` Ludovic Courtès
  1 sibling, 0 replies; 38+ messages in thread
From: Ludovic Courtès @ 2021-05-29 18:17 UTC (permalink / raw)
  To: Brendan Tildesley; +Cc: 48465-done

Hi Brendan,

Brendan Tildesley <btild@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’.




^ permalink raw reply	[flat|nested] 38+ messages in thread

* [bug#48465] [PATCHES 0/35] gnu: lxqt: Update to 0.17.0.
  2021-05-16 14:05   ` [bug#48465] [PATCH 03/35] gnu: lxqt-build-tools: Update to 0.9.0 Brendan Tildesley
@ 2021-05-29 18:18     ` Ludovic Courtès
  0 siblings, 0 replies; 38+ messages in thread
From: Ludovic Courtès @ 2021-05-29 18:18 UTC (permalink / raw)
  To: Brendan Tildesley; +Cc: 48465

Brendan Tildesley <mail@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’.




^ permalink raw reply	[flat|nested] 38+ messages in thread

end of thread, other threads:[~2021-05-29 18:19 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-16 14:04 [bug#48465] [PATCHES 0/35] gnu: lxqt: Update to 0.17.0 Brendan Tildesley via Guix-patches via
2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 02/35] gnu: lxqt-qtplugin: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 03/35] gnu: lxqt-build-tools: Update to 0.9.0 Brendan Tildesley
2021-05-29 18:18     ` [bug#48465] [PATCHES 0/35] gnu: lxqt: Update to 0.17.0 Ludovic Courtès
2021-05-16 14:05   ` [bug#48465] [PATCH 04/35] gnu: libqtxdg: Update to 3.7.1 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 05/35] gnu: liblxqt: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 06/35] gnu: libsysstat: Update to 0.4.5 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 07/35] gnu: lxqt-about: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 08/35] gnu: lxqt-admin: " Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 09/35] gnu: lxqt-config: Update to 0.17.1 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 10/35] gnu: lxqt-globalkeys: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 11/35] gnu: lxqt-notificationd: " Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 12/35] gnu: lxqt-panel: Update to 0.17.1 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 13/35] gnu: lxqt-policykit: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 14/35] gnu: lxqt-powermanagement: Update to 0.17.1 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 15/35] gnu: lxqt-runner: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 16/35] gnu: lxqt-session: Update to 0.17.1 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 17/35] gnu: lxqt-sudo: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 18/35] gnu: lxqt-themes: " Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 19/35] gnu: pcmanfm-qt: " Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 20/35] gnu: lximage-qt: " Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 21/35] gnu: obconf-qt: Update to 0.16.1 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 22/35] gnu: pavucontrol-qt: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 23/35] gnu: qtermwidget: " Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 24/35] gnu: qterminal: " Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 25/35] gnu: screengrab: Update to 2.2.0 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 26/35] gnu: lxqt-archiver: Update to 0.4.0 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 27/35] gnu: compton-conf: Update to 0.16.0 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 28/35] gnu: qps: Update to 2.3.0 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 29/35] gnu: lxqt-openssh-askpass: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 30/35] gnu: lxqt-connman-applet: Update to 0.15-db1618d5 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 31/35] gnu: lxqt: Use the projects version number Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 32/35] gnu: lxqt: Use picom instead of compton Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 33/35] gnu: lxqt-config: Move libkscreen to propagated-inputs Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 34/35] gnu: Update lxqt home-page for all lxqt packages Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 35/35] doc: lxqt-desktop-service: Update lxqt homepage url Brendan Tildesley
2021-05-29 18:17 ` bug#48465: [PATCHES 0/35] gnu: lxqt: Update to 0.17.0 Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).