all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#71544] [PATCH 0/2] drawterm update and drawterm-wayland package
@ 2024-06-14  4:25 iyzsong--- via Guix-patches via
  2024-06-14  4:27 ` [bug#71544] [PATCH 1/2] gnu: drawterm: Update to 20240523-1.8391a9e iyzsong--- via Guix-patches via
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: iyzsong--- via Guix-patches via @ 2024-06-14  4:25 UTC (permalink / raw)
  To: 71544; +Cc: 宋文武

From: 宋文武 <iyzsong@member.fsf.org>


Sou Bunnbu (宋文武) (2):
  gnu: drawterm: Update to 20240523-1.8391a9e.
  gnu: Add drawterm-wayland.

 gnu/packages/plan9.scm | 24 +++++++++++++++++++++---
 1 file changed, 21 insertions(+), 3 deletions(-)


base-commit: b8bbc186f04085a1721e9f7a4730d8a4291b1079
-- 
2.41.0





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

* [bug#71544] [PATCH 1/2] gnu: drawterm: Update to 20240523-1.8391a9e.
  2024-06-14  4:25 [bug#71544] [PATCH 0/2] drawterm update and drawterm-wayland package iyzsong--- via Guix-patches via
@ 2024-06-14  4:27 ` iyzsong--- via Guix-patches via
  2024-06-14  4:27 ` [bug#71544] [PATCH 2/2] gnu: Add drawterm-wayland iyzsong--- via Guix-patches via
  2024-06-14 11:51 ` [bug#71544] [PATCH] gnu: simde: Update to 0.8.2 iyzsong--- via Guix-patches via
  2 siblings, 0 replies; 5+ messages in thread
From: iyzsong--- via Guix-patches via @ 2024-06-14  4:27 UTC (permalink / raw)
  To: 71544; +Cc: 宋文武

From: 宋文武 <iyzsong@member.fsf.org>

* gnu/packages/plan9.scm (drawterm): Update to 20240523-1.8391a9e.

Change-Id: I0d9ccff72263addbc61cde2fca745abca8eb28d5
---
 gnu/packages/plan9.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/plan9.scm b/gnu/packages/plan9.scm
index b2d8d75471..34df16c369 100644
--- a/gnu/packages/plan9.scm
+++ b/gnu/packages/plan9.scm
@@ -33,10 +33,10 @@ (define-module (gnu packages plan9)
 
 (define-public drawterm
   (let ((revision "1")
-        (commit "c97fe4693f6112504d6f13fab46f7cc8b27685c1"))
+        (commit "8391a9e364622cb7d85e128b427fb96c75e18265"))
     (package
       (name "drawterm")
-      (version (git-version "20210628" revision commit))
+      (version (git-version "20240523" revision commit))
       (source
        (origin
          (method git-fetch)
@@ -45,7 +45,7 @@ (define-public drawterm
                (commit commit)))
          (file-name (git-file-name name version))
          (sha256
-          (base32 "059sl60ap6c9lz8k91k6bd34694a290wm0s93b2vfszzzv683spw"))))
+          (base32 "1s6k3f5xal3ncgvz1f3gszl1m1dpd6b7m6vjfsrb97w2a392hyb0"))))
       (build-system gnu-build-system)
       (arguments
        `(#:make-flags (list "CONF=unix"
-- 
2.41.0





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

* [bug#71544] [PATCH 2/2] gnu: Add drawterm-wayland.
  2024-06-14  4:25 [bug#71544] [PATCH 0/2] drawterm update and drawterm-wayland package iyzsong--- via Guix-patches via
  2024-06-14  4:27 ` [bug#71544] [PATCH 1/2] gnu: drawterm: Update to 20240523-1.8391a9e iyzsong--- via Guix-patches via
@ 2024-06-14  4:27 ` iyzsong--- via Guix-patches via
  2024-06-14 11:51 ` [bug#71544] [PATCH] gnu: simde: Update to 0.8.2 iyzsong--- via Guix-patches via
  2 siblings, 0 replies; 5+ messages in thread
From: iyzsong--- via Guix-patches via @ 2024-06-14  4:27 UTC (permalink / raw)
  To: 71544; +Cc: 宋文武

From: 宋文武 <iyzsong@member.fsf.org>

* gnu/packages/plan9.scm (drawterm-wayland): New variable.

Change-Id: Ice435f5a0d44df61974bf2e028fe364e98a89d80
---
 gnu/packages/plan9.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/plan9.scm b/gnu/packages/plan9.scm
index 34df16c369..584b25a3c8 100644
--- a/gnu/packages/plan9.scm
+++ b/gnu/packages/plan9.scm
@@ -28,7 +28,11 @@ (define-module (gnu packages plan9)
   #:use-module (gnu packages bash)
   #:use-module (gnu packages commencement)
   #:use-module (gnu packages fontutils)
+  #:use-module (gnu packages freedesktop)
+  #:use-module (gnu packages linux)
   #:use-module (gnu packages perl)
+  #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages xdisorg)
   #:use-module (gnu packages xorg))
 
 (define-public drawterm
@@ -71,6 +75,20 @@ (define-public drawterm
 reconstruct a Plan 9 terminal-like experience from a non-Plan 9 system.")
       (license license:expat))))
 
+(define-public drawterm-wayland
+  (package
+    (inherit drawterm)
+    (name "drawterm-wayland")
+    (arguments
+     (substitute-keyword-arguments (package-arguments drawterm)
+       ((#:make-flags _)
+        `(list "CONF=linux"
+               ,(string-append "CC=" (cc-for-target))))))
+    (native-inputs
+     (list pkg-config))
+    (inputs
+     (list libxkbcommon pipewire wayland wayland-protocols wlr-protocols))))
+
 (define-public plan9port
   ;; no releases
   (let ((commit "f8681acb374fa0d5ed1568dbedb00a4abe1ca6f1")
-- 
2.41.0





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

* [bug#71544] [PATCH] gnu: simde: Update to 0.8.2.
  2024-06-14  4:25 [bug#71544] [PATCH 0/2] drawterm update and drawterm-wayland package iyzsong--- via Guix-patches via
  2024-06-14  4:27 ` [bug#71544] [PATCH 1/2] gnu: drawterm: Update to 20240523-1.8391a9e iyzsong--- via Guix-patches via
  2024-06-14  4:27 ` [bug#71544] [PATCH 2/2] gnu: Add drawterm-wayland iyzsong--- via Guix-patches via
@ 2024-06-14 11:51 ` iyzsong--- via Guix-patches via
  2024-06-20  6:53   ` bug#71549: " jgart via Guix-patches via
  2 siblings, 1 reply; 5+ messages in thread
From: iyzsong--- via Guix-patches via @ 2024-06-14 11:51 UTC (permalink / raw)
  To: 71544; +Cc: 宋文武, iyzsong

From: 宋文武 <iyzsong@member.fsf.org>

* gnu/packages/assembly.scm (simde): Update to 0.8.2.

Change-Id: I07f8323ded34bb855fe2315f8d9c7822efe26719
---
 gnu/packages/assembly.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm
index 3f1db2b67a..daeeafd603 100644
--- a/gnu/packages/assembly.scm
+++ b/gnu/packages/assembly.scm
@@ -223,7 +223,7 @@ (define-public lightning
 (define-public simde
   (package
     (name "simde")
-    (version "0.7.2")
+    (version "0.8.2")
     (source
      (origin
        (method git-fetch)
@@ -232,7 +232,7 @@ (define-public simde
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0xkf21gbkgz6zlxabkmgwvy7py6cdnfqx9aplj90gz25gzrr1mkb"))))
+        (base32 "0giijq5n3q1nv8c5skfq2dar70rgbsm7yk0gdj22wpsa58fc624a"))))
     (build-system meson-build-system)
     ;; We really want this for the headers, and the tests require a bundled library.
     (arguments '(#:configure-flags '("-Dtests=false")))

base-commit: 0beb0dbfe036763e7b5d6c999fe2b3fc89faa6cb
-- 
2.45.1





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

* bug#71549: [PATCH] gnu: simde: Update to 0.8.2.
  2024-06-14 11:51 ` [bug#71544] [PATCH] gnu: simde: Update to 0.8.2 iyzsong--- via Guix-patches via
@ 2024-06-20  6:53   ` jgart via Guix-patches via
  0 siblings, 0 replies; 5+ messages in thread
From: jgart via Guix-patches via @ 2024-06-20  6:53 UTC (permalink / raw)
  To: 71549-done; +Cc: Sou Bunnbu

Thanks!

applied,

jgart




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

end of thread, other threads:[~2024-06-20  6:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-14  4:25 [bug#71544] [PATCH 0/2] drawterm update and drawterm-wayland package iyzsong--- via Guix-patches via
2024-06-14  4:27 ` [bug#71544] [PATCH 1/2] gnu: drawterm: Update to 20240523-1.8391a9e iyzsong--- via Guix-patches via
2024-06-14  4:27 ` [bug#71544] [PATCH 2/2] gnu: Add drawterm-wayland iyzsong--- via Guix-patches via
2024-06-14 11:51 ` [bug#71544] [PATCH] gnu: simde: Update to 0.8.2 iyzsong--- via Guix-patches via
2024-06-20  6:53   ` bug#71549: " jgart via Guix-patches via

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.