From 1eedf3b6d24f421ccdb8798b053ee718d1051651 Mon Sep 17 00:00:00 2001 From: Dale Mellor Date: Mon, 13 Apr 2020 11:42:39 +0100 Subject: project: banish need for C compiler MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch gets rid of the thin veneer that we currently have around the three executables. This was done for historical reasons (circa 2003 Guile couldnʼt deal with process signals and forks). In fact these problems were fixed many moons ago, and there is now no need for it. The project becomes 100% Guile! Many files are affected; interested coders should use the GIT repository to understand the details of all the changes. --- build-aux/guix.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'build-aux') diff --git a/build-aux/guix.scm b/build-aux/guix.scm index ae253ec..3c57bf1 100644 --- a/build-aux/guix.scm +++ b/build-aux/guix.scm @@ -32,16 +32,16 @@ '(".git" "autom4te" "Makefile.in" ".go" ".log" "stamp-vti" ".dirstamp")) (any (λ (str) (string-suffix? str file)) - '("trs""configure" "Makefile" "config.status" "pre-inst-env" - "aclocal.m4" "bin/cron" "bin/mcron" "bin/crontab" "config.cache" - "guix.scm"))))) + '("trs" "configure" "Makefile" "config.status" "pre-inst-env" + "aclocal.m4" "bin/cron" "bin/mcron" "bin/crontab" + "config.cache" "guix.scm"))))) (define %srcdir (or (current-source-directory) ".")) (package (inherit (specification->package "mcron")) - (version "1.1.4") + (version "1.1.4+") (source (local-file (dirname %srcdir) #:recursive? #t #:select? keep-mcron-file?)) (inputs -- cgit v1.2.3