all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#70523] [PATCH] gnu: slim: Update to 1.4.1.
@ 2024-04-23  0:09 Feng Shu
  2024-04-23  8:55 ` bug#70523: " Z572
  2024-04-23  8:55 ` [bug#70523] " Z572
  0 siblings, 2 replies; 3+ messages in thread
From: Feng Shu @ 2024-04-23  0:09 UTC (permalink / raw)
  To: 70523


From ce899e40d18bd64f9f94bf549a235d17b3a874d7 Mon Sep 17 00:00:00 2001
From: Feng Shu <tumashu@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



-- 





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

* bug#70523: [PATCH] gnu: slim: Update to 1.4.1.
  2024-04-23  0:09 [bug#70523] [PATCH] gnu: slim: Update to 1.4.1 Feng Shu
@ 2024-04-23  8:55 ` Z572
  2024-04-23  8:55 ` [bug#70523] " Z572
  1 sibling, 0 replies; 3+ messages in thread
From: Z572 @ 2024-04-23  8:55 UTC (permalink / raw)
  To: Feng Shu; +Cc: 70523-done

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

Feng Shu <tumashu@163.com> writes:

> From ce899e40d18bd64f9f94bf549a235d17b3a874d7 Mon Sep 17 00:00:00 2001
> From: Feng Shu <tumashu@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

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

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

* [bug#70523] [PATCH] gnu: slim: Update to 1.4.1.
  2024-04-23  0:09 [bug#70523] [PATCH] gnu: slim: Update to 1.4.1 Feng Shu
  2024-04-23  8:55 ` bug#70523: " Z572
@ 2024-04-23  8:55 ` Z572
  1 sibling, 0 replies; 3+ messages in thread
From: Z572 @ 2024-04-23  8:55 UTC (permalink / raw)
  To: Feng Shu; +Cc: 70523-done

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

Feng Shu <tumashu@163.com> writes:

> From ce899e40d18bd64f9f94bf549a235d17b3a874d7 Mon Sep 17 00:00:00 2001
> From: Feng Shu <tumashu@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

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

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

end of thread, other threads:[~2024-04-23  8:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-23  0:09 [bug#70523] [PATCH] gnu: slim: Update to 1.4.1 Feng Shu
2024-04-23  8:55 ` bug#70523: " Z572
2024-04-23  8:55 ` [bug#70523] " Z572

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.