GNU bug report logs - #70523
[PATCH] gnu: slim: Update to 1.4.1.

Previous Next

Package: guix-patches;

Reported by: Feng Shu <tumashu <at> 163.com>

Date: Tue, 23 Apr 2024 00:10:01 UTC

Severity: normal

Tags: patch

Done: Z572 <zhengjunjie <at> iscas.ac.cn>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Z572 <zhengjunjie <at> iscas.ac.cn>
Cc: tracker <at> debbugs.gnu.org
Subject: bug#70523: closed ([PATCH] gnu: slim: Update to 1.4.1.)
Date: Tue, 23 Apr 2024 08:56:09 +0000
[Message part 1 (text/plain, inline)]
Your message dated Tue, 23 Apr 2024 16:55:00 +0800
with message-id <87plugjw63.fsf <at> iscas.ac.cn>
and subject line Re: [bug#70523] [PATCH] gnu: slim: Update to 1.4.1.
has caused the debbugs.gnu.org bug report #70523,
regarding [PATCH] gnu: slim: Update to 1.4.1.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)


-- 
70523: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=70523
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Feng Shu <tumashu <at> 163.com>
To: "guix-patches" <guix-patches <at> gnu.org>
Subject: [PATCH] gnu: slim: Update to 1.4.1.
Date: Tue, 23 Apr 2024 08:09:04 +0800
From ce899e40d18bd64f9f94bf549a235d17b3a874d7 Mon Sep 17 00:00:00 2001
From: Feng Shu <tumashu <at> 163.com>
Date: Tue, 23 Apr 2024 08:00:27 +0800
Subject: [PATCH] gnu: slim: Update to 1.4.1.

* gnu/packages/display-managers.scm (slim): Update to 1.4.1.
[arguments]: Do not install systemd files again.

Change-Id: Ida6ed99dad7293dc64d91eb4dec0870608afffbe
---
 gnu/packages/display-managers.scm | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/display-managers.scm b/gnu/packages/display-managers.scm
index e3381a1665..3ff8fa5b65 100644
--- a/gnu/packages/display-managers.scm
+++ b/gnu/packages/display-managers.scm
@@ -483,14 +483,14 @@ (define-public lightdm-gtk-greeter
 (define-public slim
   (package
     (name "slim")
-    (version "1.4.0")
+    (version "1.4.1")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "mirror://sourceforge/slim-fork/slim-" version
                            ".tar.gz"))
        (sha256
-        (base32 "011jfmksy0kgw4z0y70mc80bm5kmz5i1sgm6krrfj0h00zak22rm"))
+        (base32 "06r47ypf9lsy76jikrvihw8ka9j2wbrnn8g3sbxp819hcbqxg22z"))
        (patches (search-patches "slim-config.patch"
                                 "slim-login.patch"
                                 "slim-display.patch"))))
@@ -516,7 +516,11 @@ (define-public slim
             (lambda _
               (substitute* "CMakeLists.txt"
                 (("/etc")
-                 (string-append #$output "/etc"))))))
+                 (string-append #$output "/etc"))
+                (("install.*SYSTEMDDIR.*")
+                 ;; The build system's logic here is: if "Linux", then
+                 ;; "systemd".  Strip that.
+                 "")))))
       #:configure-flags
       #~(list "-DUSE_PAM=yes" "-DUSE_CONSOLEKIT=no")
       #:tests? #f))
-- 
2.39.2



-- 



[Message part 3 (message/rfc822, inline)]
From: Z572 <zhengjunjie <at> iscas.ac.cn>
To: Feng Shu <tumashu <at> 163.com>
Cc: 70523-done <at> debbugs.gnu.org
Subject: Re: [bug#70523] [PATCH] gnu: slim: Update to 1.4.1.
Date: Tue, 23 Apr 2024 16:55:00 +0800
[Message part 4 (text/plain, inline)]
Feng Shu <tumashu <at> 163.com> writes:

> From ce899e40d18bd64f9f94bf549a235d17b3a874d7 Mon Sep 17 00:00:00 2001
> From: Feng Shu <tumashu <at> 163.com>
> Date: Tue, 23 Apr 2024 08:00:27 +0800
> Subject: [PATCH] gnu: slim: Update to 1.4.1.
>
> * gnu/packages/display-managers.scm (slim): Update to 1.4.1.
> [arguments]: Do not install systemd files again.
>
> Change-Id: Ida6ed99dad7293dc64d91eb4dec0870608afffbe
> ---
>  gnu/packages/display-managers.scm | 10 +++++++---
>  1 file changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/display-managers.scm b/gnu/packages/display-managers.scm
> index e3381a1665..3ff8fa5b65 100644
> --- a/gnu/packages/display-managers.scm
> +++ b/gnu/packages/display-managers.scm
> @@ -483,14 +483,14 @@ (define-public lightdm-gtk-greeter
>  (define-public slim
>    (package
>      (name "slim")
> -    (version "1.4.0")
> +    (version "1.4.1")
>      (source
>       (origin
>         (method url-fetch)
>         (uri (string-append "mirror://sourceforge/slim-fork/slim-" version
>                             ".tar.gz"))
>         (sha256
> -        (base32 "011jfmksy0kgw4z0y70mc80bm5kmz5i1sgm6krrfj0h00zak22rm"))
> +        (base32 "06r47ypf9lsy76jikrvihw8ka9j2wbrnn8g3sbxp819hcbqxg22z"))
>         (patches (search-patches "slim-config.patch"
>                                  "slim-login.patch"
>                                  "slim-display.patch"))))
> @@ -516,7 +516,11 @@ (define-public slim
>              (lambda _
>                (substitute* "CMakeLists.txt"
>                  (("/etc")
> -                 (string-append #$output "/etc"))))))
> +                 (string-append #$output "/etc"))
> +                (("install.*SYSTEMDDIR.*")
> +                 ;; The build system's logic here is: if "Linux", then
> +                 ;; "systemd".  Strip that.
> +                 "")))))
>        #:configure-flags
>        #~(list "-DUSE_PAM=yes" "-DUSE_CONSOLEKIT=no")
>        #:tests? #f))
> -- 
> 2.39.2


LGTM, push. see https://git.savannah.gnu.org/cgit/guix.git/commit/?id=bb398fe6a923d6499092376b898e86bf7aa7006f
[signature.asc (application/pgp-signature, inline)]

This bug report was last modified 1 year and 30 days ago.

Previous Next


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