mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-08 03:59:40 +01:00
gnu: sdcc: Move to embedded.scm.
* gnu/packages/embedded.scm: Add sdcc from sdcc.scm. * gnu/packages/electronics.scm: Update #:use-module directive. * gnu/packages/sdcc.scm: Delete file. * gnu/local.mk: Remove it. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
25b2d83d00
commit
c626e281b4
4 changed files with 53 additions and 83 deletions
|
@ -495,7 +495,6 @@ GNU_SYSTEM_MODULES = \
|
||||||
%D%/packages/screen.scm \
|
%D%/packages/screen.scm \
|
||||||
%D%/packages/scribus.scm \
|
%D%/packages/scribus.scm \
|
||||||
%D%/packages/scsi.scm \
|
%D%/packages/scsi.scm \
|
||||||
%D%/packages/sdcc.scm \
|
|
||||||
%D%/packages/sdl.scm \
|
%D%/packages/sdl.scm \
|
||||||
%D%/packages/search.scm \
|
%D%/packages/search.scm \
|
||||||
%D%/packages/security-token.scm \
|
%D%/packages/security-token.scm \
|
||||||
|
|
|
@ -32,6 +32,7 @@
|
||||||
#:use-module (gnu packages check)
|
#:use-module (gnu packages check)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages documentation)
|
#:use-module (gnu packages documentation)
|
||||||
|
#:use-module (gnu packages embedded)
|
||||||
#:use-module (gnu packages gawk)
|
#:use-module (gnu packages gawk)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
#:use-module (gnu packages graphviz)
|
#:use-module (gnu packages graphviz)
|
||||||
|
@ -39,8 +40,7 @@
|
||||||
#:use-module (gnu packages libusb)
|
#:use-module (gnu packages libusb)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages qt)
|
#:use-module (gnu packages qt))
|
||||||
#:use-module (gnu packages sdcc))
|
|
||||||
|
|
||||||
(define-public libserialport
|
(define-public libserialport
|
||||||
(package
|
(package
|
||||||
|
|
|
@ -40,6 +40,7 @@
|
||||||
#:use-module (gnu packages autotools)
|
#:use-module (gnu packages autotools)
|
||||||
#:use-module ((gnu packages base) #:prefix base:)
|
#:use-module ((gnu packages base) #:prefix base:)
|
||||||
#:use-module (gnu packages bison)
|
#:use-module (gnu packages bison)
|
||||||
|
#:use-module (gnu packages boost)
|
||||||
#:use-module (gnu packages cross-base)
|
#:use-module (gnu packages cross-base)
|
||||||
#:use-module (gnu packages dejagnu)
|
#:use-module (gnu packages dejagnu)
|
||||||
#:use-module (gnu packages flex)
|
#:use-module (gnu packages flex)
|
||||||
|
@ -1461,3 +1462,53 @@ microcontrollers in the Atmel AVR; Intel MCS-51 (8051); Motorola 68HC08 and
|
||||||
6809; P1516; Padauk PDK13, PDK14 and PDK15; STMicroelectronics ST7 and STM8;
|
6809; P1516; Padauk PDK13, PDK14 and PDK15; STMicroelectronics ST7 and STM8;
|
||||||
and Zilog Z80 families, plus many of their variants.")
|
and Zilog Z80 families, plus many of their variants.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public sdcc
|
||||||
|
(package
|
||||||
|
(name "sdcc")
|
||||||
|
(version "3.7.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://sourceforge/sdcc/sdcc"
|
||||||
|
"/" version "/sdcc-src-" version ".tar.bz2"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"13llvx0j3v5qa7qd4fh7nix4j3alpd3ccprxvx163c4q8q4lfkc5"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
'(begin
|
||||||
|
;; Remove non-free source files
|
||||||
|
(delete-file-recursively "device/non-free")
|
||||||
|
;; Remove bundled μCsim source
|
||||||
|
(delete-file-recursively "sim")
|
||||||
|
#t))
|
||||||
|
(patches (search-patches "sdcc-disable-non-free-code.patch"))))
|
||||||
|
(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" "--disable-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 retargetable, 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+)))
|
||||||
|
|
|
@ -1,80 +0,0 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
|
||||||
;;; Copyright © 2016 David Craven <david@craven.ch>
|
|
||||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
|
||||||
;;;
|
|
||||||
;;; 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 <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
(define-module (gnu packages sdcc)
|
|
||||||
#:use-module (gnu packages)
|
|
||||||
#: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.7.0")
|
|
||||||
(source (origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (string-append
|
|
||||||
"mirror://sourceforge/sdcc/sdcc"
|
|
||||||
"/" version "/sdcc-src-" version ".tar.bz2"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"13llvx0j3v5qa7qd4fh7nix4j3alpd3ccprxvx163c4q8q4lfkc5"))
|
|
||||||
(modules '((guix build utils)))
|
|
||||||
(snippet
|
|
||||||
'(begin
|
|
||||||
;; Remove non-free source files
|
|
||||||
(delete-file-recursively "device/non-free")
|
|
||||||
;; Remove bundled μCsim source
|
|
||||||
(delete-file-recursively "sim")
|
|
||||||
#t))
|
|
||||||
(patches (search-patches "sdcc-disable-non-free-code.patch"))))
|
|
||||||
(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" "--disable-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 retargetable, 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+)))
|
|
Loading…
Add table
Reference in a new issue