From 43675ac77ad7708814f4152e5bce25fe453b8f4f Mon Sep 17 00:00:00 2001 From: Andy Tai Date: Tue, 21 May 2019 22:29:46 -0700 Subject: gnu: Add libjit. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/assembly.scm (libjit): Add at 0.1.4 Co-authored-by: Ludovic Courtès --- gnu/packages/assembly.scm | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm index 05c1a3f3de..8cf5bcdaf5 100644 --- a/gnu/packages/assembly.scm +++ b/gnu/packages/assembly.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2016 Efraim Flashner ;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice ;;; Copyright © 2019 Guy Fleury Iteriteka +;;; Copyright © 2019 Andy Tai ;;; ;;; This file is part of GNU Guix. ;;; @@ -24,11 +25,20 @@ (define-module (gnu packages assembly) #:use-module (guix build-system gnu) #:use-module (guix download) + #:use-module (guix git-download) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (gnu packages) + #:use-module (gnu packages admin) + #:use-module (gnu packages autotools) + #:use-module (gnu packages base) + #:use-module (gnu packages bison) #:use-module (gnu packages compression) + #:use-module (gnu packages flex) + #:use-module (gnu packages gettext) + #:use-module (gnu packages man) #:use-module (gnu packages perl) + #:use-module (gnu packages pkg-config) #:use-module (gnu packages texinfo) #:use-module (gnu packages python) #:use-module (gnu packages xml) @@ -202,3 +212,36 @@ assembler, a C compiler and a linker. The assembler uses Intel syntax (home-page "https://github.com/jbruchon/dev86") (supported-systems '("i686-linux" "x86_64-linux")) (license license:gpl2+))) + +(define-public libjit + (let ((commit "554c9f5c750daa6e13a6a5cd416873c81c7b8226")) + (package + (name "libjit") + (version "0.1.4") + (source (origin + (method git-fetch) + (uri (git-reference + (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 "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+)))) -- cgit v1.2.3 te to 1.4g....Tobias Geerinckx-Rice 2019-02-04gnu: autossh: Use HTTPS home page....Tobias Geerinckx-Rice 2019-01-17gnu: OpenSSH: Fix CVE-2018-20685....Leo Famulari 2019-01-15gnu: Separate Python core packages from the rest....Ricardo Wurmus 2019-01-14gnu: guile-ssh: Use 'git-fetch'....Ludovic Courtès 2019-01-14gnu: libssh: Update to 0.8.6....Ludovic Courtès 2018-11-14Merge branch 'master' into core-updatesMarius Bakke 2018-11-13gnu: libssh: Fetch source over HTTPS....Leo Famulari 2018-11-05Merge branch 'master' into core-updatesMarius Bakke 2018-11-05gnu: libssh: Update to 0.7.7....Marius Bakke 2018-10-23gnu: libssh: Fetch the source code more efficiently....Leo Famulari 2018-10-22Merge branch 'master' into core-updatesMarius Bakke 2018-10-21gnu: OpenSSH: Update to 7.9p1....Leo Famulari 2018-10-21Merge branch 'master' into core-updatesMarius Bakke 2018-10-18gnu: libssh: Update to 0.7.6 [fixes CVE-2018-10933]....Leo Famulari 2018-09-13Merge branch 'master' into core-updatesLeo Famulari 2018-09-13gnu: Add ClusterShell....Manuel Graf 2018-09-03Merge branch 'master' into core-updatesMarius Bakke 2018-08-28gnu: dropbear: Fix CVE-2018-15599....Leo Famulari 2018-08-25Merge branch 'staging' into core-updatesMarius Bakke 2018-08-24gnu: OpenSSH: Update to 7.8p1....Leo Famulari 2018-08-21gnu: guile-ssh: Don't build libguile-ssh.a....Ludovic Courtès 2018-08-21gnu: libssh2: MIPS workaround no longer is....Marius Bakke 2018-08-21gnu: openssh: Don't allow remote username enumeration [fixes CVE-2018-15473]....Leo Famulari 2018-08-20gnu: guile-ssh: Update to 0.11.3....Ludovic Courtès 2018-07-30gnu: openssh: Update home-page....Efraim Flashner 2018-06-22gnu: corkscrew: Clean up dead code....Tobias Geerinckx-Rice 2018-06-22gnu: corkscrew: Deduplicate documentation directories....Tobias Geerinckx-Rice 2018-06-22gnu: corkscrew: Return #t from all phases....Tobias Geerinckx-Rice 2018-06-22gnu: guile-ssh: Return #t from all phases....Tobias Geerinckx-Rice 2018-05-28gnu: libssh2: Fix build on MIPS systems....Mark H Weaver 2018-05-06Merge branch 'master' into core-updatesMarius Bakke 2018-05-01gnu: liboop: Update to 1.0.1....Tobias Geerinckx-Rice 2018-04-30Merge branch 'master' into core-updatesMark H Weaver 2018-04-25gnu: guile-ssh: Move files from bin to examples directory....Roel Janssen 2018-04-10Merge branch 'master' into core-updatesMark H Weaver 2018-04-05gnu: openssh: Update to 7.7p1....Leo Famulari 2018-03-29Merge branch 'master' into core-updatesMarius Bakke 2018-03-25gnu: autossh: Update to 1.4f....Tobias Geerinckx-Rice 2018-03-23gnu: openssh: Use invoke....Mark H Weaver 2018-03-23gnu: libssh2: Use invoke....Mark H Weaver 2018-03-20Merge branch 'master' into core-updatesMark H Weaver 2018-03-20Correct name and Email for ng0....ng0 2018-03-16gnu: All snippets report errors using exceptions, else return #t....Mark H Weaver 2018-02-28gnu: dropbear: Update to 2018.76....Tobias Geerinckx-Rice 2018-02-06gnu: libssh: Update to commit 239d0f7 of branch 'v0-7'....Ludovic Courtès 2017-12-24gnu: pdsh: Update to 2.33....ng0