From 304db09257b353a677440e3b3c94f08446015ed2 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 2 Jan 2019 23:33:12 +0100 Subject: gnu: http-parser: Download from git. * gnu/packages/web.scm (http-parser)[source]: Change to GIT-FETCH. --- gnu/packages/web.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gnu/packages/web.scm') diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index d1713c7a0d..52da99ce2b 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -5075,14 +5075,15 @@ into your tests. It automatically starts up a HTTP server in a separate thread (package (name "http-parser") (version "2.8.1") + (home-page "https://github.com/nodejs/http-parser") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/nodejs/http-parser/" - "archive/v" version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference (url home-page) + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "15ids8k2f0xhnnxh4m85w2f78pg5ndiwrpl24kyssznnp1l5yqai")))) + "0d2ni77pdw51n6qf0pq2gkc78i6yvnaw3nds6ldgmqqndzp2yv31")))) (build-system gnu-build-system) (arguments `(#:test-target "test" @@ -5093,7 +5094,6 @@ into your tests. It automatically starts up a HTTP server in a separate thread #:phases (modify-phases %standard-phases (delete 'configure)))) - (home-page "https://github.com/nodejs/http-parser") (synopsis "HTTP request/response parser for C") (description "This is a parser for HTTP messages written in C. It parses both requests and responses. The parser is designed to be used in -- cgit v1.2.3 From 48a51af9d2c14e46ee073c6925e0d1b68e3292c9 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 2 Jan 2019 23:34:06 +0100 Subject: gnu: http-parser: Update to 2.9.0. * gnu/packages/web.scm (http-parser): Update to 2.9.0. --- gnu/packages/web.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/web.scm') diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 52da99ce2b..1ea4333a90 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -5074,7 +5074,7 @@ into your tests. It automatically starts up a HTTP server in a separate thread (define-public http-parser (package (name "http-parser") - (version "2.8.1") + (version "2.9.0") (home-page "https://github.com/nodejs/http-parser") (source (origin (method git-fetch) @@ -5083,7 +5083,7 @@ into your tests. It automatically starts up a HTTP server in a separate thread (file-name (git-file-name name version)) (sha256 (base32 - "0d2ni77pdw51n6qf0pq2gkc78i6yvnaw3nds6ldgmqqndzp2yv31")))) + "1qa3rh9x4as2fc2p0y2hah83iqs7jr5106a8anv317359dgf3ssj")))) (build-system gnu-build-system) (arguments `(#:test-target "test" -- cgit v1.2.3 From b2e765de4c3d66d96d89cd0b7698f9d23a91de19 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sat, 12 Jan 2019 20:33:52 +0100 Subject: gnu: httpd: Update to 2.4.37. * gnu/packages/web.scm (httpd): Update to 2.4.37. --- gnu/packages/web.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/web.scm') diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 1ea4333a90..37f0adfb56 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -121,14 +121,14 @@ (define-public httpd (package (name "httpd") - (version "2.4.35") + (version "2.4.37") (source (origin (method url-fetch) (uri (string-append "mirror://apache/httpd/httpd-" version ".tar.bz2")) (sha256 (base32 - "0mlvwsm7hmpc7db6lfc2nx3v4cll3qljjxhjhgsw6aniskywc1r6")))) + "09npb7vlz5sizgj0nvl0bqxj9zig29ipkp07fgmw5ykjcxfdr61l")))) (build-system gnu-build-system) (native-inputs `(("pcre" ,pcre "bin"))) ;for 'pcre-config' (inputs `(("apr" ,apr) -- cgit v1.2.3