* [PATCH] gnu: Add sdcc.
@ 2016-09-27 17:40 David Craven
2016-09-27 18:01 ` Leo Famulari
0 siblings, 1 reply; 4+ messages in thread
From: David Craven @ 2016-09-27 17:40 UTC (permalink / raw)
To: guix-devel
* gnu/packages/sdcc.scm (sdcc): New variable.
---
gnu/packages/sdcc.scm | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 70 insertions(+)
create mode 100644 gnu/packages/sdcc.scm
diff --git a/gnu/packages/sdcc.scm b/gnu/packages/sdcc.scm
new file mode 100644
index 0000000..b08479a
--- /dev/null
+++ b/gnu/packages/sdcc.scm
@@ -0,0 +1,70 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2016 David Craven <david@craven.ch>
+;;;
+;;; 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 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/files/sdcc"
+ "/" version "/sdcc-src-" version ".tar.bz2"
+ "/download"))
+ (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")
+ #: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.9.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] gnu: Add sdcc.
2016-09-27 17:40 [PATCH] gnu: Add sdcc David Craven
@ 2016-09-27 18:01 ` Leo Famulari
2016-09-27 18:15 ` David Craven
0 siblings, 1 reply; 4+ messages in thread
From: Leo Famulari @ 2016-09-27 18:01 UTC (permalink / raw)
To: David Craven; +Cc: guix-devel
On Tue, Sep 27, 2016 at 07:40:26PM +0200, David Craven wrote:
> * gnu/packages/sdcc.scm (sdcc): New variable.
> + (uri (string-append
> + "mirror://sourceforge/sdcc/files/sdcc"
> + "/" version "/sdcc-src-" version ".tar.bz2"
> + "/download"))
This URL returns 404.
Otherwise, not having built the package, the package defintion looks
good to me in general.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] gnu: Add sdcc.
2016-09-27 18:01 ` Leo Famulari
@ 2016-09-27 18:15 ` David Craven
2016-09-27 18:45 ` Leo Famulari
0 siblings, 1 reply; 4+ messages in thread
From: David Craven @ 2016-09-27 18:15 UTC (permalink / raw)
To: Leo Famulari; +Cc: guix-devel
> This URL returns 404.
thanks! missed that due to caching - again.
is it ok in it's own file? or should that file be renamed to
microcontroller.scm?
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] gnu: Add sdcc.
2016-09-27 18:15 ` David Craven
@ 2016-09-27 18:45 ` Leo Famulari
0 siblings, 0 replies; 4+ messages in thread
From: Leo Famulari @ 2016-09-27 18:45 UTC (permalink / raw)
To: David Craven; +Cc: guix-devel
On Tue, Sep 27, 2016 at 08:15:33PM +0200, David Craven wrote:
> > This URL returns 404.
>
> thanks! missed that due to caching - again.
>
> is it ok in it's own file? or should that file be renamed to
> microcontroller.scm?
If we don't already have an appropriate module, then it's a matter of
taste :)
microcontroller sounds like a useful module name.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-09-27 18:45 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-27 17:40 [PATCH] gnu: Add sdcc David Craven
2016-09-27 18:01 ` Leo Famulari
2016-09-27 18:15 ` David Craven
2016-09-27 18:45 ` Leo Famulari
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).