[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/10: gnu: cvs-fast-export: Update to 1.44.
From: |
Tobias Geerinckx-Rice |
Subject: |
07/10: gnu: cvs-fast-export: Update to 1.44. |
Date: |
Wed, 15 Aug 2018 14:21:08 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 6ae35fea74002811bef8badca0abce0a771b2e19
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Wed Aug 15 15:45:58 2018 +0200
gnu: cvs-fast-export: Update to 1.44.
* gnu/packages/version-control.scm (cvs-fast-export): Update to 1.44.
[arguments]: Add ‘fix-setpython-PATH’ phase to do just that.
Remove obsolete python3 work-around from ‘remove-optimizations’ phase.
---
gnu/packages/version-control.scm | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 97e64a7..1410e0d 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1262,27 +1262,32 @@ RCS, PRCS, and Aegis packages.")
(define-public cvs-fast-export
(package
(name "cvs-fast-export")
- (version "1.43")
+ (version "1.44")
(source (origin
(method url-fetch)
(uri (string-append "http://www.catb.org/~esr/"
name "/" name "-" version ".tar.gz"))
(sha256
(base32
- "17xp5q4cxmd6z0ii1fdr4j1djb9mz1qv7hzr6fawdapjzahi65m3"))))
+ "1l7hlys4vw4zk4ikdjiig5vzgv5dv48mbm8bdqgvgkyyxb2j0dm0"))))
(build-system gnu-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
(delete 'configure)
+ (add-before 'check 'fix-setpython-PATH
+ (lambda _
+ ;; The Makefile does try to add the current working directory to
+ ;; $PATH, but this fails for some reason in 1.44. Hack around it.
+ (substitute* "tests/Makefile"
+ (("setpython" command)
+ (string-append "./" command)))
+ #t))
(add-after 'unpack 'remove-optimizations
(lambda _
;; Don't optimize for a specific processor architecture.
(substitute* "Makefile"
(("CFLAGS \\+= -march=native") ""))
- ;; This code runs with Python2 or Python3
- (substitute* "cvsreduce"
- (("python3") "python"))
#t)))
#:parallel-build? #f ; parallel a2x commands fail spectacularly
#:make-flags
- branch master updated (44d085b -> c2f6c9b), Tobias Geerinckx-Rice, 2018/08/15
- 03/10: gnu: tremc: Fix shebang., Tobias Geerinckx-Rice, 2018/08/15
- 01/10: gnu: subversion: Update to 1.10.2., Tobias Geerinckx-Rice, 2018/08/15
- 05/10: gnu: inxi: Update to 3.0.20-1., Tobias Geerinckx-Rice, 2018/08/15
- 06/10: gnu: python-txamqp: Update to 0.8.2., Tobias Geerinckx-Rice, 2018/08/15
- 02/10: gnu: python-lzstring: Update to 1.0.4., Tobias Geerinckx-Rice, 2018/08/15
- 04/10: gnu: tremc: Update to 0.9.1., Tobias Geerinckx-Rice, 2018/08/15
- 07/10: gnu: cvs-fast-export: Update to 1.44.,
Tobias Geerinckx-Rice <=
- 10/10: gnu: aubio: Use HTTPS home page., Tobias Geerinckx-Rice, 2018/08/15
- 09/10: gnu: acpid: Update to 2.0.30., Tobias Geerinckx-Rice, 2018/08/15
- 08/10: gnu: ghc-setlocale: Update to 1.0.0.6., Tobias Geerinckx-Rice, 2018/08/15