emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#58188: closed ([PATCH] gnu: bemenu: Update to 0.6.10, use new packag


From: GNU bug Tracking System
Subject: bug#58188: closed ([PATCH] gnu: bemenu: Update to 0.6.10, use new package style.)
Date: Fri, 14 Oct 2022 22:33:01 +0000

Your message dated Sat, 15 Oct 2022 00:32:50 +0200
with message-id <87bkqejast.fsf@gnu.org>
and subject line Re: bug#58188: [PATCH] gnu: bemenu: Update to 0.6.10, use new 
package style.
has caused the debbugs.gnu.org bug report #58188,
regarding [PATCH] gnu: bemenu: Update to 0.6.10, use new package style.
to be marked as done.

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


-- 
58188: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=58188
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: bemenu: Update to 0.6.10, use new package style. Date: Fri, 30 Sep 2022 03:10:50 -0400
* gnu/packages/xdisorg.scm (bemenu): Update to 0.6.10.
[arguments]: Use G-expressions. Use #$output instead of assoc-ref.
[inputs]: Remove labels.
---
 gnu/packages/xdisorg.scm | 39 ++++++++++++++++++++-------------------
 1 file changed, 20 insertions(+), 19 deletions(-)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 9908f29191..cc94cc0c95 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -313,7 +313,7 @@ (define-public autorandr
 (define-public bemenu
   (package
     (name "bemenu")
-    (version "0.6.4")
+    (version "0.6.10")
     (source
      (origin
        (method git-fetch)
@@ -322,27 +322,28 @@ (define-public bemenu
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "18vplvnymgc6576sdh84lm5rlwyb9d038plqpjs638hzskf4q577"))))
+        (base32 "0i2pv3qnb0l2ryvj9ycf9d5rng6yfk0kpjkq8hy6g956672wdzx6"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f
-       #:make-flags (list ,(string-append "CC=" (cc-for-target))
-                          "CFLAGS=-O2 -fPIC"
-                          (string-append "LDFLAGS=-Wl,-rpath="
-                                         (assoc-ref %outputs "out") "/lib")
-                          (string-append "PREFIX=" (assoc-ref %outputs "out")))
-       #:phases
-       (modify-phases %standard-phases
-         (delete 'configure))))         ; no configure script
+     (list
+      #:tests? #f
+      #:make-flags
+      #~(list (string-append "CC=" #$(cc-for-target))
+              "CFLAGS=-O2 -fPIC"
+              (string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib")
+              (string-append "PREFIX=" #$output))
+      #:phases
+      #~(modify-phases %standard-phases
+          (delete 'configure))))         ; no configure script
     (inputs
-     `(("cairo" ,cairo)
-       ("libx11" ,libx11)
-       ("libxkbcomon" ,libxkbcommon)
-       ("libxinerama" ,libxinerama)
-       ("ncurses" ,ncurses)
-       ("pango" ,pango)
-       ("wayland" ,wayland)
-       ("wayland-protocols" ,wayland-protocols)))
+     (list cairo
+           libx11
+           libxkbcommon
+           libxinerama
+           ncurses
+           pango
+           wayland
+           wayland-protocols))
     (native-inputs
      (list doxygen pkg-config))
     (home-page "https://github.com/Cloudef/bemenu";)

base-commit: 1ee2d117d8fa9e2e0d4ec46cc5555497bb5e6337
-- 
2.37.3




--- End Message ---
--- Begin Message --- Subject: Re: bug#58188: [PATCH] gnu: bemenu: Update to 0.6.10, use new package style. Date: Sat, 15 Oct 2022 00:32:50 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux)
kiasoc5 <kiasoc5@disroot.org> skribis:

> * gnu/packages/xdisorg.scm (bemenu): Update to 0.6.10.
> [arguments]: Use G-expressions. Use #$output instead of assoc-ref.
> [inputs]: Remove labels.

Applied, thanks!


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]