[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/09: gnu: sdcc: Adjust format.
From: |
guix-commits |
Subject: |
07/09: gnu: sdcc: Adjust format. |
Date: |
Sat, 30 Sep 2023 05:35:15 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit 5605e4db17d6a9fd786b1d390c88d541e54b5fd7
Author: Simon South <simon@simonsouth.net>
AuthorDate: Thu Sep 28 16:14:46 2023 -0400
gnu: sdcc: Adjust format.
* gnu/packages/embedded.scm (sdcc): Move arguments above inputs; punctuate
comments consistently.
[arguments]<#:configure-flags>: Move comment regarding GPUTILS to associated
flags; add comment for "--disable-ucsim".
[home-page]: Add trailing slash to URL.
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/embedded.scm | 30 ++++++++++++++++++------------
1 file changed, 18 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm
index 8de3c9c630..630f2b37e0 100644
--- a/gnu/packages/embedded.scm
+++ b/gnu/packages/embedded.scm
@@ -1649,24 +1649,26 @@ PicoBlaze; and Zilog Z80 families, plus many of their
variants.")
(modules '((guix build utils)))
(snippet
#~(begin
- ;; Remove non-free source files
+ ;; Remove non-free source files.
(delete-file-recursively "device/non-free")
- ;; Remove bundled μCsim source
+ ;; Remove bundled μCsim source.
(delete-file-recursively "sim")))
(patches (search-patches "sdcc-disable-non-free-code.patch"))))
(build-system gnu-build-system)
- (inputs
- (list readline))
- (native-inputs
- (list bison boost flex python-2 texinfo zlib))
(arguments
(list
- ;; GPUTILS is required for the PIC ports, but the licensing status of
- ;; some of the files contained in its distribution is unclear (see
- ;; https://issues.guix.gnu.org/44557). For this reason it is not yet
- ;; available as a package in Guix.
#:configure-flags
- #~(list "--disable-pic14-port" "--disable-pic16-port" "--disable-ucsim")
+ #~(list
+ ;; GPUTILS is required for the PIC ports, but the licensing status of
+ ;; some of the files contained in its distribution is unclear (see
+ ;; https://issues.guix.gnu.org/44557). For this reason it is not yet
+ ;; available as a package in Guix.
+ "--disable-pic14-port"
+ "--disable-pic16-port"
+
+ ;; Do not build or install the bundled copy of μCsim, for which Guix
+ ;; has its own package.
+ "--disable-ucsim")
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'patch-makefiles
@@ -1679,7 +1681,11 @@ PicoBlaze; and Zilog Z80 families, plus many of their
variants.")
(string-append line "\n"
"TARGETS += sdcc-misc\n"
"PKGS += $(SDCC_MISC)"))))))))
- (home-page "https://sdcc.sourceforge.net")
+ (inputs
+ (list readline))
+ (native-inputs
+ (list bison boost flex python-2 texinfo zlib))
+ (home-page "https://sdcc.sourceforge.net/")
(synopsis "C compiler suite for 8-bit microcontrollers")
(description "SDCC is a retargetable, optimizing Standard C compiler suite
that targets 8-bit microcontrollers in the Intel MCS-51 (8051); MOS Technology
- branch master updated (b268842ec4 -> ee5de9cdf2), guix-commits, 2023/09/30
- 03/09: gnu: picard: Update to 2.9.2., guix-commits, 2023/09/30
- 02/09: gnu: font-sarasa-gothic: Update to 0.42.0., guix-commits, 2023/09/30
- 05/09: gnu: utfcpp: Update to 3.2.5., guix-commits, 2023/09/30
- 09/09: gnu: sdcc: Update to 4.3.0., guix-commits, 2023/09/30
- 01/09: gnu: hdf-eos5: Update to 2.0., guix-commits, 2023/09/30
- 07/09: gnu: sdcc: Adjust format.,
guix-commits <=
- 04/09: gnu: libglvnd: Update to 1.7.0., guix-commits, 2023/09/30
- 06/09: gnu: sdcc: Update package style., guix-commits, 2023/09/30
- 08/09: gnu: sdcc: Embed absolute reference to μCsim., guix-commits, 2023/09/30