;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 David Craven ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages sdcc) #:use-module (gnu packages bison) #:use-module (gnu packages boost) #:use-module (gnu packages flex) #:use-module (gnu packages python) #:use-module (gnu packages texinfo) #:use-module (guix build-system gnu) #:use-module (guix download) #:use-module (guix packages) #:use-module ((guix licenses) #:prefix license:)) (define-public sdcc (package (name "sdcc") (version "3.6.0") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/sdcc/sdcc" "/" version "/sdcc-src-" version ".tar.bz2")) (sha256 (base32 "0x53gh5yrrfjvlnkk29mjn8hq4v52alrsf7c8nsyzzq13sqwwpg8")))) (build-system gnu-build-system) (native-inputs `(("bison" ,bison) ("boost" ,boost) ("flex" ,flex) ("python-2" ,python-2) ("texinfo" ,texinfo))) (arguments `(;; gputils is required for PIC ports #:configure-flags '("--disable-pic14-port" "--disable-pic16-port" "--enable-ucsim") #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-makefile (lambda _ (substitute* (find-files "." "(\\.mk$|\\.in$)") (("/bin/sh") (which "sh"))) #t))))) (home-page "http://sdcc.sourceforge.net") (synopsis "Small devices C compiler") (description "SDCC is a retargettable, optimizing Standard C compiler suite that targets the Intel MCS51 based microprocessors (8031, 8032, 8051, 8052, ...), Maxim (formerly Dallas) DS80C390 variants, Freescale (formerly Motorola) HC08 based (hc08, s08), Zilog Z80 based MCUs (z80, z180, gbz80, Rabbit 2000/3000, Rabbit 3000A, TLCS-90) and STMicroelectronics STM8. Work is in progress on supporting the Microchip PIC16 and PIC18 targets. It can be retargeted for other microprocessors.") (license license:gpl2+))) 2-15 22:02:57 +0100'>2020-02-15gnu: readline: Update to 8.0.4....* gnu/packages/readline.scm (%patch-series-8.0): Add patches 2 through 4. Marius Bakke 2019-12-05gnu: readline: Update to 8.0.1....* gnu/packages/readline.scm (%patch-series-8.0): New variable. (readline)[version]: Adjust accordingly. [source](patches): Add %PATCH-SERIES-8.0. Marius Bakke 2019-12-05gnu: readline: Add a version parameter to patch procedures....* gnu/packages/readline.scm (patch-url, readline-patch, patch-series): Add VERSION parameter. (%patch-series-7.0): Pass "7.0" to PATCH-SERIES. Marius Bakke 2019-01-08gnu: readline: Update to 8.0....* gnu/packages/readline.scm (readline): Update to 8.0. [source]: Remove patch series %patch-series-7.0. (readline-7): New variable. Efraim Flashner 2018-07-21gnu: readline: Update to 7.0.5....* gnu/packages/readline.scm (%patch-series-7.0): Add patch 4 and 5. Marius Bakke 2018-01-19Merge branch 'master' into core-updatesMark H Weaver 2018-01-18gnu: rlwrap: Update to 0.43....* gnu/packages/readline.scm (rlwrap): Update to 0.43. [source, home-page]: Use new upstream URI. Tobias Geerinckx-Rice 2017-12-03gnu: readline: Remove obsolete post-install phase....The 'strip' phase does this unconditionally now. * gnu/packages/readline.scm (readline)[arguments]<#:phases>: Remove. Marius Bakke 2017-12-03gnu: readline: Update to 7.0.3....* gnu/packages/readline.scm (patch-url, readline-patch): New procedures. (patch-series): New macro. (%patch-series-7.0): New variable. (readline)[version]: Include patchlevel. [source](uri): Adjust to version suffix. [source](patches): Add %PATCH-SERIES-7.0. Marius Bakke 2017-03-30gnu: Use HTTPS for almost all gnu.org HOME-PAGEs....All HTTP gnu.org (and supported subdomain) HOME-PAGEs changed to HTTPS. Tobias Geerinckx-Rice