guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#35788: [PATCH] gnu: assembly: Add libjit


From: Ludovic Courtès
Subject: bug#35788: [PATCH] gnu: assembly: Add libjit
Date: Fri, 24 May 2019 17:52:18 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux)

Hi,

address@hidden skribis:

> From: Andy Tai <address@hidden>
>
> * gnu/packages/assembly.scm (libjit): Add at 0.1.4

Applied with the tiny changes below (synopsis suggested by ‘guix lint’,
URL fixed, and indentation adjusted).

Thanks!

Ludo’.

diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm
index 8d65eb9f0e..8cf5bcdaf5 100644
--- a/gnu/packages/assembly.scm
+++ b/gnu/packages/assembly.scm
@@ -5,6 +5,7 @@
 ;;; Copyright © 2016 Efraim Flashner <address@hidden>
 ;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <address@hidden>
 ;;; Copyright © 2019 Guy Fleury Iteriteka <address@hidden>
+;;; Copyright © 2019 Andy Tai <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -215,32 +216,32 @@ assembler, a C compiler and a linker.  The assembler uses 
Intel syntax
 (define-public libjit
   (let ((commit "554c9f5c750daa6e13a6a5cd416873c81c7b8226"))
     (package
-    (name "libjit")
-    (version "0.1.4")
+      (name "libjit")
+      (version "0.1.4")
       (source (origin
                 (method git-fetch)
                 (uri (git-reference
-                      (url "http://git.savannah.gnu.org/cgit/libjit.git";)
+                      (url "https://git.savannah.gnu.org/r/libjit.git";)
                       (commit commit)))
                 (file-name (string-append name "-" version "-checkout"))
                 (sha256
                  (base32
                   "0p6wklslkkp3s4aisj3w5a53bagqn5fy4m6088ppd4fcfxgqkrcd"))))
-    (build-system gnu-build-system)
-    (native-inputs
-     `(("autoconf" ,autoconf)
-       ("automake" ,automake)
-       ("bison" ,bison)
-       ("flex" ,flex)
-       ("help2man" ,help2man)
-       ("gettext" ,gettext-minimal)
-       ("libtool" ,libtool)
-       ("makeinfo" ,texinfo)
-       ("pkg-config" ,pkg-config)))
-    (home-page "https://www.gnu.org/software/libjit/";)
-    (synopsis "Generic Just-In-Time compiler library")
-    (description
-     "GNU libjit is a library that provides generic Just-In-Time compiler
+      (build-system gnu-build-system)
+      (native-inputs
+       `(("autoconf" ,autoconf)
+         ("automake" ,automake)
+         ("bison" ,bison)
+         ("flex" ,flex)
+         ("help2man" ,help2man)
+         ("gettext" ,gettext-minimal)
+         ("libtool" ,libtool)
+         ("makeinfo" ,texinfo)
+         ("pkg-config" ,pkg-config)))
+      (home-page "https://www.gnu.org/software/libjit/";)
+      (synopsis "Just-In-Time compilation library")
+      (description
+       "GNU libjit is a library that provides generic Just-In-Time compiler
 functionality independent of any particular bytecode, language, or
 runtime")
-    (license license:lgpl2.1+))))
+      (license license:lgpl2.1+))))

reply via email to

[Prev in Thread] Current Thread [Next in Thread]