From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:48188) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jRsew-000677-TP for guix-patches@gnu.org; Fri, 24 Apr 2020 03:22:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jRsew-000555-FO for guix-patches@gnu.org; Fri, 24 Apr 2020 03:22:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:44785) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jRsew-000550-3B for guix-patches@gnu.org; Fri, 24 Apr 2020 03:22:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jRsev-0001eV-V0 for guix-patches@gnu.org; Fri, 24 Apr 2020 03:22:01 -0400 Subject: [bug#40812] [PATCH] gnu: herbstluftwm: update to 0.8.1 Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:47554) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jRseE-0005k5-I4 for guix-patches@gnu.org; Fri, 24 Apr 2020 03:21:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jRseD-0003IK-Bi for guix-patches@gnu.org; Fri, 24 Apr 2020 03:21:18 -0400 Received: from mail-lj1-x241.google.com ([2a00:1450:4864:20::241]:32913) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jRseC-0003Dl-Um for guix-patches@gnu.org; Fri, 24 Apr 2020 03:21:17 -0400 Received: by mail-lj1-x241.google.com with SMTP id w20so8913583ljj.0 for ; Fri, 24 Apr 2020 00:21:16 -0700 (PDT) From: "Boris A. Dekshteyn" Date: Fri, 24 Apr 2020 19:21:06 +1200 Message-Id: <20200424072106.32741-1-boris.dekshteyn@google.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40812@debbugs.gnu.org Cc: "Boris A. Dekshteyn" --- gnu/packages/wm.scm | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 82f11d13fa..cd26607b27 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -149,7 +149,7 @@ the leaves of a full binary tree.") (define-public herbstluftwm (package (name "herbstluftwm") - (version "0.7.2") + (version "0.8.1") (source (origin (method url-fetch) @@ -157,9 +157,9 @@ the leaves of a full binary tree.") version ".tar.gz")) (sha256 (base32 - "1kc18aj9j3nfz6fj4qxg9s3gg4jvn6kzi3ii24hfm0vqdpy17xnz")) + "0c1lf82z6a56g8asin91cmqhzk3anw0xwc44b31bpjixadmns57y")) (file-name (string-append "herbstluftwm-" version ".tar.gz")))) - (build-system gnu-build-system) + (build-system cmake-build-system) (inputs `(("dzen" ,dzen) ("dmenu" ,dmenu) @@ -169,13 +169,21 @@ the leaves of a full binary tree.") ("xsetroot" ,xsetroot) ("libx11" ,libx11) ("libxext" ,libxext) - ("libxinerama" ,libxinerama))) + ("libxrandr" ,libxrandr) + ("libxinerama" ,libxinerama) + ("bash" ,bash))) (native-inputs - `(("pkg-config" ,pkg-config))) + `(("pkg-config" ,pkg-config) + ("asciidoc" ,asciidoc))) (arguments - '(#:phases + '(#:tests? #f + #:configure-flags + (let ((out (assoc-ref %outputs "out"))) + (list "-DCC=gcc" + (string-append "-DCMAKE_INSTALL_SYSCONF_PREFIX=" out "/etc") + (string-append "-DBASHCOMPLETIONDIR=" out "/etc/bash_completion.d"))) + #:phases (modify-phases %standard-phases - (delete 'configure) ; no configure script (add-after 'install 'install-xsession (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) @@ -190,17 +198,7 @@ the leaves of a full binary tree.") Comment=Manual tiling window manager~@ Exec=~a/bin/herbstluftwm~@ Type=XSession~%" out))) - #t)))) - #:tests? #f - #:make-flags - (let ((out (assoc-ref %outputs "out"))) - (list "CC=gcc" - (string-append "PREFIX=''") - (string-append "DESTDIR=" out) - (string-append "FISHCOMPLETIONDIR=" - "/share/fish/vendor_completions.d") - (string-append "BASHCOMPLETIONDIR=" out - "/etc/bash_completion.d"))))) + #t)))))) (synopsis "Tiling window manager for X11") (description "herbstluftwm is a manual tiling window manager for X11 using Xlib and GLib. Its main features are: -- 2.26.1