mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: Add neon.
* gnu/packages/version-control.scm (neon): New variable.
This commit is contained in:
parent
dc91c10f2b
commit
fc1e45160e
1 changed files with 52 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
|
;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
|
||||||
;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
|
;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
|
||||||
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2013, 2014 Andreas Enge <andreas@enge.fr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -26,13 +26,15 @@ (define-module (gnu packages version-control)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
#:use-module (guix build utils)
|
#:use-module (guix build utils)
|
||||||
#:use-module (gnu packages gettext)
|
|
||||||
#:use-module (gnu packages apr)
|
#:use-module (gnu packages apr)
|
||||||
#:use-module (gnu packages curl)
|
#:use-module (gnu packages curl)
|
||||||
#:use-module (gnu packages ed)
|
#:use-module (gnu packages ed)
|
||||||
|
#:use-module (gnu packages gettext)
|
||||||
|
;; #:use-module (gnu packages gnutls)
|
||||||
#:use-module (gnu packages nano)
|
#:use-module (gnu packages nano)
|
||||||
#:use-module (gnu packages openssl)
|
#:use-module (gnu packages openssl)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages sqlite)
|
#:use-module (gnu packages sqlite)
|
||||||
#:use-module (gnu packages admin)
|
#:use-module (gnu packages admin)
|
||||||
|
@ -216,6 +218,54 @@ (define-public mercurial
|
||||||
and offers an easy and intuitive interface.")
|
and offers an easy and intuitive interface.")
|
||||||
(license gpl2+)))
|
(license gpl2+)))
|
||||||
|
|
||||||
|
(define-public neon
|
||||||
|
(package
|
||||||
|
(name "neon")
|
||||||
|
(version "0.30.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://www.webdav.org/neon/neon-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1hlhg5w505jxdvaf7bq17057f6a48dry981g7lp2gwrhbp5wyqi9"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("perl" ,perl)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("libxml2" ,libxml2)
|
||||||
|
("openssl" ,openssl)
|
||||||
|
("zlib" ,zlib)))
|
||||||
|
(arguments
|
||||||
|
`(;; FIXME: Add tests once reverse address lookup is fixed in glibc, see
|
||||||
|
;; https://sourceware.org/bugzilla/show_bug.cgi?id=16475
|
||||||
|
#:tests? #f
|
||||||
|
#:configure-flags '("--enable-shared"
|
||||||
|
;; requires libgnutils-config, deprecated
|
||||||
|
;; in gnutls 2.8.
|
||||||
|
; "--with-ssl=gnutls")))
|
||||||
|
"--with-ssl=openssl")))
|
||||||
|
(home-page "http://www.webdav.org/neon/")
|
||||||
|
(synopsis "HTTP and WebDAV client library")
|
||||||
|
(description "Neon is an HTTP and WebDAV client library, with a
|
||||||
|
C interface. Features:
|
||||||
|
High-level wrappers for common HTTP and WebDAV operations (GET, MOVE,
|
||||||
|
DELETE, etc.);
|
||||||
|
low-level interface to the HTTP request/response engine, allowing the use
|
||||||
|
of arbitrary HTTP methods, headers, etc.;
|
||||||
|
authentication support including Basic and Digest support, along with
|
||||||
|
GSSAPI-based Negotiate on Unix, and SSPI-based Negotiate/NTLM on Win32;
|
||||||
|
SSL/TLS support using OpenSSL or GnuTLS, exposing an abstraction layer for
|
||||||
|
verifying server certificates, handling client certificates, and examining
|
||||||
|
certificate properties, smartcard-based client certificates are also
|
||||||
|
supported via a PKCS#11 wrapper interface;
|
||||||
|
abstract interface to parsing XML using libxml2 or expat, and wrappers for
|
||||||
|
simplifying handling XML HTTP response bodies;
|
||||||
|
WebDAV metadata support, wrappers for PROPFIND and PROPPATCH to simplify
|
||||||
|
property manipulation.")
|
||||||
|
(license gpl2+))) ; for documentation and tests; source under lgpl2.0+
|
||||||
|
|
||||||
(define-public subversion
|
(define-public subversion
|
||||||
(package
|
(package
|
||||||
(name "subversion")
|
(name "subversion")
|
||||||
|
|
Loading…
Reference in a new issue