[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/09: gnu: autotools: Add version 2.70.
From: |
guix-commits |
Subject: |
02/09: gnu: autotools: Add version 2.70. |
Date: |
Tue, 8 Dec 2020 17:00:13 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 4a9873529758f07869aede8057099a0f23144f8b
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Tue Dec 8 22:28:00 2020 +0100
gnu: autotools: Add version 2.70.
* gnu/packages/autotools.scm (autoconf): Rename to...
(autoconf-2.69): ... this.
(autoconf): Define as an alias for AUTOCONF-2.69.
(autoconf-2.70): New variable.
---
gnu/packages/autotools.scm | 35 ++++++++++++++++++++++++++++++++++-
1 file changed, 34 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm
index 775576f..203f1bf 100644
--- a/gnu/packages/autotools.scm
+++ b/gnu/packages/autotools.scm
@@ -43,7 +43,7 @@
#:use-module (ice-9 match)
#:export (autoconf-wrapper))
-(define-public autoconf
+(define-public autoconf-2.69
(package
(name "autoconf")
(version "2.69")
@@ -103,6 +103,39 @@ scripts are self-contained and portable, freeing the user
from needing to
know anything about Autoconf or M4.")
(license gpl3+))) ; some files are under GPLv2+
+(define-public autoconf-2.70
+ (package
+ (inherit autoconf-2.69)
+ (version "2.70")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnu/autoconf/autoconf-"
+ version ".tar.xz"))
+ (sha256
+ (base32
+ "1ipckz0wr2mvhj9n3ys54fmf2aksin6bhqvzl304bn6rc1w257ps"))))
+ (arguments
+ (substitute-keyword-arguments (package-arguments autoconf-2.69)
+ ((#:tests? _ #f)
+ ;; FIXME: To run the test suite, fix all the instances where scripts
+ ;; generates "#! /bin/sh" shebangs.
+ #f)
+ ((#:phases phases '%standard-phases)
+ `(modify-phases ,phases
+ (add-before 'check 'prepare-tests
+ (lambda _
+ (for-each patch-shebang
+ (append (find-files "tests"
+ (lambda (file stat)
+ (executable-file? file)))
+ (find-files "bin"
+ (lambda (file stat)
+ (executable-file? file)))))
+ #t))))))))
+
+(define-public autoconf autoconf-2.69)
+
(define-public autoconf-2.68
(package (inherit autoconf)
(version "2.68")
- branch master updated (20e5658 -> 799f066), guix-commits, 2020/12/08
- 06/09: daemon: Run 'guix substitute --substitute' as an agent., guix-commits, 2020/12/08
- 09/09: import: opam: Adjust test to latest 'opam->guix-package' changes., guix-commits, 2020/12/08
- 04/09: daemon: Use 'Agent' to spawn 'guix substitute --query'., guix-commits, 2020/12/08
- 05/09: daemon: Factorize substituter agent spawning., guix-commits, 2020/12/08
- 01/09: database: Remove unnecessary module imports., guix-commits, 2020/12/08
- 08/09: daemon: Raise an error if substituter doesn't send the expected hash., guix-commits, 2020/12/08
- 07/09: substitute: Cache and reuse connections while substituting., guix-commits, 2020/12/08
- 03/09: daemon: 'Agent' constructor takes a list of environment variables., guix-commits, 2020/12/08
- 02/09: gnu: autotools: Add version 2.70.,
guix-commits <=