Skip to content
Snippets Groups Projects
Unverified Commit 5d0bd1fb authored by Tobias Geerinckx-Rice's avatar Tobias Geerinckx-Rice
Browse files

gnu: tcc: Update to 0.9.27.

* gnu/packages/c.scm (tcc): Update to 0.9.27.
[license]: Add a comment about attempted Expat re-licencing.
parent b7cbcee5
No related branches found
No related tags found
No related merge requests found
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2016 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
...@@ -34,14 +35,14 @@ (define-module (gnu packages c) ...@@ -34,14 +35,14 @@ (define-module (gnu packages c)
(define-public tcc (define-public tcc
(package (package
(name "tcc") ;aka. "tinycc" (name "tcc") ;aka. "tinycc"
(version "0.9.26") (version "0.9.27")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://savannah/tinycc/tcc-" (uri (string-append "mirror://savannah/tinycc/tcc-"
version ".tar.bz2")) version ".tar.bz2"))
(sha256 (sha256
(base32 (base32
"0wbdbdq6090ayw8bxnbikiv989kykff3m5rzbia05hrnwhd707jj")))) "177bdhwzrnqgyrdv1dwvpd04fcxj68s5pm1dzwny6359ziway8yy"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs `(("perl" ,perl) (native-inputs `(("perl" ,perl)
("texinfo" ,texinfo))) ("texinfo" ,texinfo)))
...@@ -71,6 +72,8 @@ (define-public tcc ...@@ -71,6 +72,8 @@ (define-public tcc
written in C. It supports ANSI C with GNU and extensions and most of the C99 written in C. It supports ANSI C with GNU and extensions and most of the C99
standard.") standard.")
(home-page "http://www.tinycc.org/") (home-page "http://www.tinycc.org/")
;; An attempt to re-licence tcc under the Expat licence is underway but not
;; (if ever) complete. See the RELICENSING file for more information.
(license license:lgpl2.1+))) (license license:lgpl2.1+)))
(define-public tcc-wrapper (define-public tcc-wrapper
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment