GNU bug report logs - #56181
[PATCH] gnu: packages: qbe: Update to 1.0.

Previous Next

Package: guix-patches;

Reported by: "(" <paren <at> disroot.org>

Date: Fri, 24 Jun 2022 06:05:01 UTC

Severity: normal

Tags: patch

Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 56181 in the body.
You can then email your comments to 56181 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#56181; Package guix-patches. (Fri, 24 Jun 2022 06:05:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to "(" <paren <at> disroot.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 24 Jun 2022 06:05:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: "(" <paren <at> disroot.org>
To: guix-patches <at> gnu.org
Cc: "\(" <paren <at> disroot.org>
Subject: [PATCH] gnu: packages: qbe: Update to 1.0.
Date: Fri, 24 Jun 2022 07:04:11 +0100
* gnu/packages/c.scm (qbe): Update to 1.0.
---
 gnu/packages/c.scm | 72 ++++++++++++++++++++++------------------------
 1 file changed, 35 insertions(+), 37 deletions(-)

diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm
index 3e49539473..2dc8adb895 100644
--- a/gnu/packages/c.scm
+++ b/gnu/packages/c.scm
@@ -147,44 +147,42 @@ (define-public pcc
     (license (list license:bsd-2 license:bsd-3))))
 
 (define-public qbe
-  (let ((commit "2caa26e388b1c904d2f12fb09f84df7e761d8331")
-        (revision "1"))
-    (package
-      (name "qbe")
-      (version (git-version "0.0" 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
-                  "1gv03ym0gqrl4wkbhysa82025xwrkr1fg44z814b6vnggwlqgljc"))))
-      (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))))))
-                 (add-after 'allow-cross-compilation 'use-$CC-for-tests
-                   (lambda _
-                     (substitute* "tools/test.sh"
-                       (("cc=\"cc -no-pie\"") "cc=\"${CC} -no-pie\""))))
-                 (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
+  (package
+   (name "qbe")
+   (version "1.0")
+   (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
+              "0qx4a3fjjrp2m4dsn19rpbjf89k9w7w7l09s96jx8vv15vzsdgis"))))
+   (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))))))
+              (add-after 'allow-cross-compilation 'use-$CC-for-tests
+                (lambda _
+                  (substitute* "tools/test.sh"
+                    (("cc=\"cc -no-pie\"") "cc=\"${CC} -no-pie\""))))
+              (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
-- 
2.36.1





Information forwarded to guix-patches <at> gnu.org:
bug#56181; Package guix-patches. (Fri, 24 Jun 2022 06:18:01 GMT) Full text and rfc822 format available.

Message #8 received at 56181 <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> ist.tugraz.at>
To: "(" <paren <at> disroot.org>, 56181 <at> debbugs.gnu.org
Subject: Re: [PATCH] gnu: packages: qbe: Update to 1.0.
Date: Fri, 24 Jun 2022 08:17:19 +0200
Am Freitag, dem 24.06.2022 um 07:04 +0100 schrieb (:
> * gnu/packages/c.scm (qbe): Update to 1.0.
> ---
>  gnu/packages/c.scm | 72 ++++++++++++++++++++++------------------------
>  1 file changed, 35 insertions(+), 37 deletions(-)
> 
> diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm
> index 3e49539473..2dc8adb895 100644
> --- a/gnu/packages/c.scm
> +++ b/gnu/packages/c.scm
> @@ -147,44 +147,42 @@ (define-public pcc
>      (license (list license:bsd-2 license:bsd-3))))
>  
>  (define-public qbe
> -  (let ((commit "2caa26e388b1c904d2f12fb09f84df7e761d8331")
> -        (revision "1"))
> -    (package
> -      (name "qbe")
> -      (version (git-version "0.0" 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
> -                 
> "1gv03ym0gqrl4wkbhysa82025xwrkr1fg44z814b6vnggwlqgljc"))))
> -      (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))))))
> -                 (add-after 'allow-cross-compilation 'use-$CC-for-
> tests
> -                   (lambda _
> -                     (substitute* "tools/test.sh"
> -                       (("cc=\"cc -no-pie\"") "cc=\"${CC} -no-
> pie\""))))
> -                 (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
> +  (package
> +   (name "qbe")
> +   (version "1.0")
> +   (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
> +             
> "0qx4a3fjjrp2m4dsn19rpbjf89k9w7w7l09s96jx8vv15vzsdgis"))))
> +   (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))))))
> +              (add-after 'allow-cross-compilation 'use-$CC-for-tests
> +                (lambda _
> +                  (substitute* "tools/test.sh"
> +                    (("cc=\"cc -no-pie\"") "cc=\"${CC} -no-pie\""))))
I'm pretty sure you can drop this phase as of [1].  Nice to know that
Gentoo folk have our back.
> +              (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)))
Otherwise LGTM.

Cheers

[1]
https://c9x.me/git/qbe.git/commit/?id=2b451a28d8e98d5919e94dd611a8d9c66a9396af




Information forwarded to guix-patches <at> gnu.org:
bug#56181; Package guix-patches. (Fri, 24 Jun 2022 15:51:01 GMT) Full text and rfc822 format available.

Message #11 received at 56181 <at> debbugs.gnu.org (full text, mbox):

From: "(" <paren <at> disroot.org>
To: "Liliana Marie Prikler" <liliana.prikler <at> ist.tugraz.at>,
 <56181 <at> debbugs.gnu.org>
Subject: Re: [PATCH] gnu: packages: qbe: Update to 1.0.
Date: Fri, 24 Jun 2022 16:50:40 +0100
On Fri Jun 24, 2022 at 7:17 AM BST, Liliana Marie Prikler wrote:
> I'm pretty sure you can drop this phase as of [1].  Nice to know that
> Gentoo folk have our back.

Oh, nice catch!

    -- (




Information forwarded to guix-patches <at> gnu.org:
bug#56181; Package guix-patches. (Sat, 25 Jun 2022 14:34:02 GMT) Full text and rfc822 format available.

Message #14 received at 56181 <at> debbugs.gnu.org (full text, mbox):

From: "(" <paren <at> disroot.org>
To: 56181 <at> debbugs.gnu.org
Cc: "\(" <paren <at> disroot.org>
Subject: [PATCH v2] gnu: packages: qbe: Update to 1.0.
Date: Sat, 25 Jun 2022 15:33:28 +0100
* gnu/packages/c.scm (qbe): Update to 1.0.
---
 gnu/packages/c.scm | 68 +++++++++++++++++++++-------------------------
 1 file changed, 31 insertions(+), 37 deletions(-)

diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm
index 3e49539473..8cf7122fcc 100644
--- a/gnu/packages/c.scm
+++ b/gnu/packages/c.scm
@@ -147,44 +147,38 @@ (define-public pcc
     (license (list license:bsd-2 license:bsd-3))))
 
 (define-public qbe
-  (let ((commit "2caa26e388b1c904d2f12fb09f84df7e761d8331")
-        (revision "1"))
-    (package
-      (name "qbe")
-      (version (git-version "0.0" 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
-                  "1gv03ym0gqrl4wkbhysa82025xwrkr1fg44z814b6vnggwlqgljc"))))
-      (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))))))
-                 (add-after 'allow-cross-compilation 'use-$CC-for-tests
-                   (lambda _
-                     (substitute* "tools/test.sh"
-                       (("cc=\"cc -no-pie\"") "cc=\"${CC} -no-pie\""))))
-                 (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
+  (package
+   (name "qbe")
+   (version "1.0")
+   (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
+              "0qx4a3fjjrp2m4dsn19rpbjf89k9w7w7l09s96jx8vv15vzsdgis"))))
+   (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
-- 
2.36.1





Reply sent to Liliana Marie Prikler <liliana.prikler <at> gmail.com>:
You have taken responsibility. (Sat, 25 Jun 2022 18:21:02 GMT) Full text and rfc822 format available.

Notification sent to "(" <paren <at> disroot.org>:
bug acknowledged by developer. (Sat, 25 Jun 2022 18:21:02 GMT) Full text and rfc822 format available.

Message #19 received at 56181-done <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: "(" <paren <at> disroot.org>, 56181-done <at> debbugs.gnu.org
Subject: Re: [PATCH v2] gnu: packages: qbe: Update to 1.0.
Date: Sat, 25 Jun 2022 20:20:37 +0200
Am Samstag, dem 25.06.2022 um 15:33 +0100 schrieb (:
> * gnu/packages/c.scm (qbe): Update to 1.0.
> ---
Fixed up indentation and pushed.

Thanks




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 24 Jul 2022 11:24:09 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 266 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.