[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/12: gnu: sdcc: Remove bundled μCsim.
From: |
guix-commits |
Subject: |
05/12: gnu: sdcc: Remove bundled μCsim. |
Date: |
Mon, 21 Dec 2020 11:48:32 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 25b2d83d007e83d980c39cd09c38c641120e4366
Author: Simon South <simon@simonsouth.net>
AuthorDate: Mon Dec 14 13:00:20 2020 -0500
gnu: sdcc: Remove bundled μCsim.
* gnu/packages/sdcc.scm (sdcc)[source]: Extend snippet to remove bundled
μCsim
source.
[arguments]<#:configure-flags>: Replace "--enable-ucsim" with
"--disable-ucsim".
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/sdcc.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/sdcc.scm b/gnu/packages/sdcc.scm
index aad2cf9..0ce71ed 100644
--- a/gnu/packages/sdcc.scm
+++ b/gnu/packages/sdcc.scm
@@ -46,6 +46,8 @@
'(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)
@@ -58,7 +60,7 @@
(arguments
`(;; gputils is required for PIC ports
#:configure-flags
- '("--disable-pic14-port" "--disable-pic16-port" "--enable-ucsim")
+ '("--disable-pic14-port" "--disable-pic16-port" "--disable-ucsim")
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-makefile
- branch master updated (5ecc0b1 -> 0127e68), guix-commits, 2020/12/21
- 04/12: gnu: Add μCsim., guix-commits, 2020/12/21
- 01/12: tests: Fix malformed JSON., guix-commits, 2020/12/21
- 08/12: gnu: sdcc: Revise synopsis and description., guix-commits, 2020/12/21
- 03/12: gnu: gnome-builder: Disable jedi plugin., guix-commits, 2020/12/21
- 02/12: tests: Check the effect of '--without-tests' on implicit inputs., guix-commits, 2020/12/21
- 10/12: gnu: sdcc: Expand comment regarding GPUTILS and PIC ports., guix-commits, 2020/12/21
- 07/12: gnu: sdcc: Specify complete set of licenses., guix-commits, 2020/12/21
- 09/12: gnu: sdcc: Correct name of phase., guix-commits, 2020/12/21
- 05/12: gnu: sdcc: Remove bundled μCsim.,
guix-commits <=
- 12/12: gnu: httpstat: Update to 1.3.0., guix-commits, 2020/12/21
- 06/12: gnu: sdcc: Move to embedded.scm., guix-commits, 2020/12/21
- 11/12: gnu: sdcc: Update to 4.0.0., guix-commits, 2020/12/21