[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/09: gnu: cagebreak: Update to 2.1.2.
From: |
guix-commits |
Subject: |
08/09: gnu: cagebreak: Update to 2.1.2. |
Date: |
Sat, 20 May 2023 19:17:12 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 9f5f9ebc92aa197301eff1808733e968813c0a2d
Author: Feng Shu <tumashu@163.com>
AuthorDate: Tue May 9 15:37:49 2023 +0800
gnu: cagebreak: Update to 2.1.2.
* gnu/packages/wm.scm (cagebreak): Update to 2.1.2.
Explicitly disable tests and substitute "/usr/share/".
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/wm.scm | 23 ++++++++++++++---------
1 file changed, 14 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 24dda94dab..e760ff4aa2 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -2748,7 +2748,7 @@ shows a notification for the user on the screen.")
(define-public cagebreak
(package
(name "cagebreak")
- (version "2.0.1")
+ (version "2.1.2")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -2757,16 +2757,21 @@ shows a notification for the user on the screen.")
(file-name (git-file-name name version))
(sha256
(base32
- "0fxfmxl7p63l07lqb83q5lx16hm0rixcidghx00gp08x2yrgr4x9"))))
+ "09ky8wili3ym8qi4dasckdcdcvn4g6ak08dg0yccnwmnlwxiyps6"))))
(build-system meson-build-system)
(arguments
- `(#:configure-flags '("-Dxwayland=true")
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'fix-data-dir
- (lambda* (#:key outputs #:allow-other-keys)
- (substitute* "meson.build"
- (("/etc/") (string-append (assoc-ref outputs "out")
"/etc"))))))))
+ (list
+ #:configure-flags #~(list "-Dxwayland=true")
+ ;; XXX: Running cagebreak tests need more tools, such as: clang-format,
+ ;; shellcheck, git, gnupg ...
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'fix-data-dir
+ (lambda _
+ (substitute* '("cagebreak.c" "meson.build")
+ (("/etc/") (string-append #$output "/etc/"))
+ (("/usr/share/") (string-append #$output "/usr/share/"))))))))
(native-inputs (list pandoc pkg-config))
(inputs (list libevdev pango wlroots))
(home-page "https://github.com/project-repo/cagebreak")
- branch master updated (bd7b795aeb -> 7ddc239fc3), guix-commits, 2023/05/20
- 04/09: services: root-file-system: Remove reference to 'stop-logging'., guix-commits, 2023/05/20
- 01/09: doc: Clarify instructions for hibernation on a swap file., guix-commits, 2023/05/20
- 02/09: system: pam: Change 'stop' method to return #f., guix-commits, 2023/05/20
- 07/09: gnu: guile-dsv: Update to 0.6.0., guix-commits, 2023/05/20
- 05/09: services: Transient inetd services inherit requirements., guix-commits, 2023/05/20
- 06/09: gnu: guile-netlink: Update to 1.1.2., guix-commits, 2023/05/20
- 08/09: gnu: cagebreak: Update to 2.1.2.,
guix-commits <=
- 09/09: gnu: Add labwc., guix-commits, 2023/05/20
- 03/09: services: agetty: 'stop' method does nothing when running is 'idle., guix-commits, 2023/05/20