gnu: libmicrohttpd: Update to 0.9.31.

* gnu/packages/gnunet.scm (libmicrohttpd): Update to 0.9.31,
    synchronise the description with GNU SRC.
master
Andreas Enge 2013-10-30 23:07:50 +01:00
parent 4e9b38ebf7
commit dce1722739
1 changed files with 9 additions and 6 deletions

View File

@ -91,14 +91,14 @@ tool to extract metadata from a file and print the results.")
(define-public libmicrohttpd (define-public libmicrohttpd
(package (package
(name "libmicrohttpd") (name "libmicrohttpd")
(version "0.9.30") (version "0.9.31")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://gnu/libmicrohttpd/libmicrohttpd-" (uri (string-append "mirror://gnu/libmicrohttpd/libmicrohttpd-"
version ".tar.gz")) version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0v30w90qx8wpg5ksy97f5r4acpwd4q7q2v508mcss00vzj18rx40")))) "06sxxial1794589k0ahi7nhhyfp14jf4jwirf6bkxqhs138pghfa"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs (inputs
`(("curl" ,curl) `(("curl" ,curl)
@ -106,13 +106,16 @@ tool to extract metadata from a file and print the results.")
("libgcrypt" ,libgcrypt) ("libgcrypt" ,libgcrypt)
("openssl" ,openssl) ("openssl" ,openssl)
("zlib" ,zlib))) ("zlib" ,zlib)))
(arguments
`(#:parallel-tests? #f))
(synopsis "C library implementing an HTTP 1.1 server") (synopsis "C library implementing an HTTP 1.1 server")
(description (description
"Libmicrohttpd is a small, embeddable HTTP server implemented as a C "GNU libmicrohttpd is a small, embeddable HTTP server implemented as a
library. It makes it easy to run an HTTP server as part of another C library. It makes it easy to run an HTTP server as part of another
application. The library is fully HTTP 1.1 compliant. It can listen on application. The library is fully HTTP 1.1 compliant. It can listen on
multiple ports, supports four different threading models, and supports IPv6. multiple ports, supports four different threading models, and supports
It also features security features such as basic and digest authentication IPv6. It
also features security features such as basic and digest authentication
and support for SSL3 and TLS.") and support for SSL3 and TLS.")
(license license:lgpl2.1+) (license license:lgpl2.1+)
(home-page "http://www.gnu.org/software/libmicrohttpd/"))) (home-page "http://www.gnu.org/software/libmicrohttpd/")))