[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/06: gnu: subversion: Add serf to inputs.
From: |
Mark H. Weaver |
Subject: |
05/06: gnu: subversion: Add serf to inputs. |
Date: |
Thu, 07 May 2015 09:06:43 +0000 |
mhw pushed a commit to branch master
in repository guix.
commit 46138f3e226c983452766bf237a0aa86af4184f5
Author: Mark H Weaver <address@hidden>
Date: Thu May 7 04:51:26 2015 -0400
gnu: subversion: Add serf to inputs.
This is a followup to d5e9f3809dc7d521874cfad0a242ab664f6c19bc, which
upgraded
subversion to 1.8.x. Previously we used 'neon' to support http access
methods, but subversion 1.8 drops support for 'neon' in favor of 'serf'.
* gnu/packages/version-control.scm (subversion)[inputs]: Add 'serf' and
remove
'neon'.
[arguments]: Fix typo in phase name.
---
gnu/packages/version-control.scm | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index fbe2c74..d211392 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -49,6 +49,7 @@
#:use-module (gnu packages ncurses)
#:use-module (gnu packages openssl)
#:use-module (gnu packages ssh)
+ #:use-module (gnu packages web)
#:use-module (gnu packages perl)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
@@ -574,7 +575,7 @@ property manipulation.")
(substitute* "libtool"
(("\\\\`ls") (string-append "\\`" coreutils
"/bin/ls")))))
(alist-cons-after
- 'install 'instal-perl-bindings
+ 'install 'install-perl-bindings
(lambda* (#:key outputs #:allow-other-keys)
;; Follow the instructions from
;; 'subversion/bindings/swig/INSTALL'.
@@ -603,7 +604,7 @@ property manipulation.")
(inputs
`(("apr" ,apr)
("apr-util" ,apr-util)
- ("neon" ,neon-0.29.6)
+ ("serf" ,serf)
("perl" ,perl)
("python" ,python-2) ; incompatible with Python 3 (print syntax)
("sqlite" ,sqlite)
- branch master updated (669786d -> 6e6e9f2), Mark H. Weaver, 2015/05/07
- 01/06: gnu: apr: Update to 1.5.2., Mark H. Weaver, 2015/05/07
- 02/06: gnu: apr-util: Use system expat library., Mark H. Weaver, 2015/05/07
- 05/06: gnu: subversion: Add serf to inputs.,
Mark H. Weaver <=
- 04/06: gnu: Add serf., Mark H. Weaver, 2015/05/07
- 03/06: gnu: scons: Update to 2.3.4., Mark H. Weaver, 2015/05/07
- 06/06: gnu: Remove neon-0.29.6., Mark H. Weaver, 2015/05/07