GNU bug report logs - #42367
[PATCH] gnu: windowmaker: Update to 0.95.9.

Previous Next

Package: guix-patches;

Reported by: Kei Kebreau <kkebreau <at> posteo.net>

Date: Wed, 15 Jul 2020 14:51:01 UTC

Severity: normal

Tags: patch

Done: Kei Kebreau <kkebreau <at> posteo.net>

Bug is archived. No further changes may be made.

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

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

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


Report forwarded to guix-patches <at> gnu.org:
bug#42367; Package guix-patches. (Wed, 15 Jul 2020 14:51:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Kei Kebreau <kkebreau <at> posteo.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 15 Jul 2020 14:51:01 GMT) Full text and rfc822 format available.

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

From: Kei Kebreau <kkebreau <at> posteo.net>
To: guix-patches <at> gnu.org
Cc: Kei Kebreau <kkebreau <at> posteo.net>
Subject: [PATCH] gnu: windowmaker: Update to 0.95.9.
Date: Wed, 15 Jul 2020 10:49:53 -0400
* gnu/packages/gnustep.scm (windowmaker): Update to 0.95.9.
[source]: Update URI.
[home-page]: Use HTTPS URL.
---
 gnu/packages/gnustep.scm | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)

diff --git a/gnu/packages/gnustep.scm b/gnu/packages/gnustep.scm
index 7a8a39eee3..0dcd0bee0d 100644
--- a/gnu/packages/gnustep.scm
+++ b/gnu/packages/gnustep.scm
@@ -67,16 +67,16 @@ to easily create cross-compiled binaries.")
 (define-public windowmaker
   (package
     (name "windowmaker")
-    (version "0.95.8")
+    (version "0.95.9")
     (synopsis "NeXTSTEP-like window manager")
     (source (origin
               (method url-fetch)
               (uri (string-append
-                    "http://windowmaker.org/pub/source/release/WindowMaker-"
-                    version ".tar.gz"))
+                    "https://github.com/window-maker/wmaker/releases/download/"
+                    "wmaker-" version "/WindowMaker-" version ".tar.gz"))
               (sha256
                (base32
-                "12p8kljqgx5hnic0zvs5mxwp7kg21sb6qjagb2qw8ydvf5amrgwx"))))
+                "055pqvlkhipyjn7m6bb3fs4zz9rd1ynzl0mmwbhp05ihc3zmh8zj"))))
     (build-system gnu-build-system)
     (arguments
      `(#:modules ((guix build gnu-build-system)
@@ -113,26 +113,26 @@ to easily create cross-compiled binaries.")
                (call-with-output-file
                    (string-append xsessions "/windowmaker.desktop")
                  (lambda (port)
-                  (format port "~
+                   (format port "~
                     [Desktop Entry]~@
                     Name=Window Maker~@
                     Comment=~a~@
                     Exec=~a/bin/wmaker~@
                     Type=Application~%"
-                          (string-map (match-lambda
-                                        (#\newline #\space)
-                                        (chr chr))
-                                      ,synopsis) out))))
+                           (string-map (match-lambda
+                                         (#\newline #\space)
+                                         (chr chr))
+                                       ,synopsis) out))))
              #t))
          (add-after 'install-xsession 'wrap
-            (lambda* (#:key outputs #:allow-other-keys)
-              (let* ((out (assoc-ref outputs "out"))
-                     (bin (string-append out "/bin")))
-                ;; In turn, 'wmaker.inst' wants to invoke 'wmmenugen'
-                ;; etc., so make sure everything is in $PATH.
-                (wrap-program (string-append bin "/wmaker.inst")
-                  `("PATH" ":" prefix (,bin)))
-                #t))))))
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (bin (string-append out "/bin")))
+               ;; In turn, 'wmaker.inst' wants to invoke 'wmmenugen'
+               ;; etc., so make sure everything is in $PATH.
+               (wrap-program (string-append bin "/wmaker.inst")
+                 `("PATH" ":" prefix (,bin)))
+               #t))))))
     (inputs
      `(("libxmu" ,libxmu)
        ("libxft" ,libxft)
@@ -145,7 +145,7 @@ to easily create cross-compiled binaries.")
        ("libtiff" ,libtiff)))
     (native-inputs
      `(("pkg-config" ,pkg-config)))
-    (home-page "http://windowmaker.org/")
+    (home-page "https://windowmaker.org/")
     (description
      "Window Maker is an X11 window manager originally designed to provide
 integration support for the GNUstep Desktop Environment.  In every way
-- 
2.27.0





Reply sent to Kei Kebreau <kkebreau <at> posteo.net>:
You have taken responsibility. (Sat, 18 Jul 2020 01:01:01 GMT) Full text and rfc822 format available.

Notification sent to Kei Kebreau <kkebreau <at> posteo.net>:
bug acknowledged by developer. (Sat, 18 Jul 2020 01:01:01 GMT) Full text and rfc822 format available.

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

From: Kei Kebreau <kkebreau <at> posteo.net>
To: 42367-done <at> debbugs.gnu.org
Subject: Re: [bug#42367] [PATCH] gnu: windowmaker: Update to 0.95.9.
Date: Fri, 17 Jul 2020 21:00:16 -0400
Self-checked on another machine.

Pushed to master as commit 4b3d54e73.

Kei Kebreau <kkebreau <at> posteo.net> writes:

> * gnu/packages/gnustep.scm (windowmaker): Update to 0.95.9.
> [source]: Update URI.
> [home-page]: Use HTTPS URL.
> ---
>  gnu/packages/gnustep.scm | 36 ++++++++++++++++++------------------
>  1 file changed, 18 insertions(+), 18 deletions(-)
>
> diff --git a/gnu/packages/gnustep.scm b/gnu/packages/gnustep.scm
> index 7a8a39eee3..0dcd0bee0d 100644
> --- a/gnu/packages/gnustep.scm
> +++ b/gnu/packages/gnustep.scm
> @@ -67,16 +67,16 @@ to easily create cross-compiled binaries.")
>  (define-public windowmaker
>    (package
>      (name "windowmaker")
> -    (version "0.95.8")
> +    (version "0.95.9")
>      (synopsis "NeXTSTEP-like window manager")
>      (source (origin
>                (method url-fetch)
>                (uri (string-append
> -                    "http://windowmaker.org/pub/source/release/WindowMaker-"
> -                    version ".tar.gz"))
> +                    "https://github.com/window-maker/wmaker/releases/download/"
> +                    "wmaker-" version "/WindowMaker-" version ".tar.gz"))
>                (sha256
>                 (base32
> -                "12p8kljqgx5hnic0zvs5mxwp7kg21sb6qjagb2qw8ydvf5amrgwx"))))
> +                "055pqvlkhipyjn7m6bb3fs4zz9rd1ynzl0mmwbhp05ihc3zmh8zj"))))
>      (build-system gnu-build-system)
>      (arguments
>       `(#:modules ((guix build gnu-build-system)
> @@ -113,26 +113,26 @@ to easily create cross-compiled binaries.")
>                 (call-with-output-file
>                     (string-append xsessions "/windowmaker.desktop")
>                   (lambda (port)
> -                  (format port "~
> +                   (format port "~
>                      [Desktop Entry]~@
>                      Name=Window Maker~@
>                      Comment=~a~@
>                      Exec=~a/bin/wmaker~@
>                      Type=Application~%"
> -                          (string-map (match-lambda
> -                                        (#\newline #\space)
> -                                        (chr chr))
> -                                      ,synopsis) out))))
> +                           (string-map (match-lambda
> +                                         (#\newline #\space)
> +                                         (chr chr))
> +                                       ,synopsis) out))))
>               #t))
>           (add-after 'install-xsession 'wrap
> -            (lambda* (#:key outputs #:allow-other-keys)
> -              (let* ((out (assoc-ref outputs "out"))
> -                     (bin (string-append out "/bin")))
> -                ;; In turn, 'wmaker.inst' wants to invoke 'wmmenugen'
> -                ;; etc., so make sure everything is in $PATH.
> -                (wrap-program (string-append bin "/wmaker.inst")
> -                  `("PATH" ":" prefix (,bin)))
> -                #t))))))
> +           (lambda* (#:key outputs #:allow-other-keys)
> +             (let* ((out (assoc-ref outputs "out"))
> +                    (bin (string-append out "/bin")))
> +               ;; In turn, 'wmaker.inst' wants to invoke 'wmmenugen'
> +               ;; etc., so make sure everything is in $PATH.
> +               (wrap-program (string-append bin "/wmaker.inst")
> +                 `("PATH" ":" prefix (,bin)))
> +               #t))))))
>      (inputs
>       `(("libxmu" ,libxmu)
>         ("libxft" ,libxft)
> @@ -145,7 +145,7 @@ to easily create cross-compiled binaries.")
>         ("libtiff" ,libtiff)))
>      (native-inputs
>       `(("pkg-config" ,pkg-config)))
> -    (home-page "http://windowmaker.org/")
> +    (home-page "https://windowmaker.org/")
>      (description
>       "Window Maker is an X11 window manager originally designed to provide
>  integration support for the GNUstep Desktop Environment.  In every way




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 15 Aug 2020 11:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 3 years and 253 days ago.

Previous Next


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