[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/05: gnu: varnish-modules: Update to 0.17.0.
From: |
guix-commits |
Subject: |
05/05: gnu: varnish-modules: Update to 0.17.0. |
Date: |
Mon, 9 Nov 2020 16:16:39 -0500 (EST) |
mbakke pushed a commit to branch master
in repository guix.
commit 75a5bdbc988959750afc8ba5bfbfce7b0105131e
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Mon Nov 9 20:54:08 2020 +0100
gnu: varnish-modules: Update to 0.17.0.
* gnu/packages/web.scm (varnish-modules): Update to 0.17.0.
[source]: Switch to GIT-FETCH.
[native-inputs]: Add AUTOCONF, AUTOMAKE, LIBTOOL, and PYTHON-DOCUTILS.
---
gnu/packages/web.scm | 21 ++++++++++++++-------
1 file changed, 14 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 77b6142..071f98a 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -5844,18 +5844,25 @@ configuration language.")
(package
(name "varnish-modules")
(home-page "https://github.com/varnish/varnish-modules")
- (version "0.16.0")
+ (version "0.17.0")
(source (origin
- (method url-fetch)
- (uri (string-append "https://github.com/varnish/varnish-modules"
- "/releases/download/varnish-modules-" version
- "/varnish-modules-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference (url home-page) (commit version)))
+ (file-name (git-file-name name version))
(sha256
(base32
- "1ph5bplsip4rycql1c2hgbvmrwbgcrgv2ldgfp7saxxbsv5cpcds"))))
+ "0zg8y2sgkygdani70zp9rbx278431fmssj26d47c5qsiw939i519"))))
(build-system gnu-build-system)
(native-inputs
- `(("pkg-config" ,pkg-config)))
+ `(("pkg-config" ,pkg-config)
+
+ ;; For bootstrapping.
+ ("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("libtool" ,libtool)
+
+ ;; For generating manuals.
+ ("rst2man" ,python-docutils)))
(inputs
`(("python" ,python)
("varnish" ,varnish)))