unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#67739] [PATCH 1/2] gnu: qbe: Update to d023bdaa6.
@ 2023-12-10  7:11 Timmy Douglas via Guix-patches via
  2023-12-10  7:11 ` [bug#67740] [PATCH 2/2] gnu: Add hare Timmy Douglas via Guix-patches via
  0 siblings, 1 reply; 2+ messages in thread
From: Timmy Douglas via Guix-patches via @ 2023-12-10  7:11 UTC (permalink / raw)
  To: 67739; +Cc: Timmy Douglas

* gnu/packages/c.scm (qbe): Update to d023bdaa6.

Change-Id: I71c03bd49d7acb91a34837e48e5dd088763d1353
---
 gnu/packages/c.scm | 67 +++++++++++++++++++++++++---------------------
 1 file changed, 36 insertions(+), 31 deletions(-)

diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm
index ac83336ba5..a7e63a16e0 100644
--- a/gnu/packages/c.scm
+++ b/gnu/packages/c.scm
@@ -21,6 +21,7 @@
 ;;; Copyright © 2023 zamfofex <zamfofex@twdb.moe>
 ;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com>
 ;;; Copyright © 2023 David Elsing <david.elsing@posteo.net>
+;;; Copyright © 2023 Timmy Douglas <mail@timmydouglas.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -324,38 +325,42 @@ (define-public pcc
     (license (list license:bsd-2 license:bsd-3))))
 
 (define-public qbe
-  (package
-    (name "qbe")
-    (version "1.1")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "git://c9x.me/qbe")
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "07nl1kdgpz7hwfkng0yy4xihk0fmv1a2hq9bxzgvhy3vk9r7fmn8"))))
-    (build-system gnu-build-system)
-    (arguments
-     (list #:make-flags
-           #~(list (string-append "CC=" #$(cc-for-target))
-                   (string-append "PREFIX=" #$output))
-           #:phases
-           #~(modify-phases %standard-phases
-               (add-after 'unpack 'allow-cross-compilation
-                 (lambda _
-                   (substitute* "Makefile"
-                     (("`uname -m`") #$(or (%current-target-system)
-                                           (%current-system))))))
-               (delete 'configure))))
-    (supported-systems (list "x86_64-linux" "aarch64-linux" "riscv64-linux"))
-    (synopsis "Simple compiler backend")
-    (description
-     "QBE is a small compiler backend using an SSA-based intermediate
+  (let ((revision "1")
+        (commit "d023bdaa6b493686f7e9be7ac200ee4ac37d351f"))
+    (package
+      (name "qbe")
+      (version (git-version "1.1.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "git://c9x.me/qbe")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "11flr6mmxglidp4fr7whfzhwr1bjkiz0rcvpy541xmwm2isj5znm"))))
+      (build-system gnu-build-system)
+      (arguments
+       (list
+        #:make-flags #~(list (string-append "CC="
+                                            #$(cc-for-target))
+                             (string-append "PREFIX="
+                                            #$output))
+        #:phases #~(modify-phases %standard-phases
+                     (add-after 'unpack 'allow-cross-compilation
+                       (lambda _
+                         (substitute* "Makefile"
+                           (("`uname -m`")
+                            #$(or (%current-target-system)
+                                  (%current-system))))))
+                     (delete 'configure))))
+      (supported-systems (list "x86_64-linux" "aarch64-linux" "riscv64-linux"))
+      (synopsis "Simple compiler backend")
+      (description
+       "QBE is a small compiler backend using an SSA-based intermediate
 language as input.")
-    (home-page "https://c9x.me/compile/")
-    (license license:expat)))
+      (home-page "https://c9x.me/compile/")
+      (license license:expat))))
 
 (define-public python-pcpp
   (package

base-commit: 2e11caff39d502775d7c652972a441f5da3d9eec
-- 
2.41.0





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

end of thread, other threads:[~2023-12-10  7:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-10  7:11 [bug#67739] [PATCH 1/2] gnu: qbe: Update to d023bdaa6 Timmy Douglas via Guix-patches via
2023-12-10  7:11 ` [bug#67740] [PATCH 2/2] gnu: Add hare Timmy Douglas via Guix-patches via

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).