[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/21: gnu: xinetd: Don't hard-code tarball version.
From: |
Tobias Geerinckx-Rice |
Subject: |
06/21: gnu: xinetd: Don't hard-code tarball version. |
Date: |
Mon, 19 Feb 2018 00:07:25 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit 9c22b13136c52c2cd5ef4088a05d9c2a5ef28465
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Mon Feb 19 04:17:22 2018 +0100
gnu: xinetd: Don't hard-code tarball version.
* gnu/packages/web.scm (xinetd)[source]: Construct URI using VERSION.
---
gnu/packages/web.scm | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 9156655..553b1e3 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -4930,15 +4930,18 @@ deployments.")
(source
(origin
(method url-fetch)
- (uri
"https://github.com/xinetd-org/xinetd/archive/xinetd-2-3-15.tar.gz")
- (patches (search-patches "xinetd-CVE-2013-4342.patch"
"xinetd-fix-fd-leak.patch"))
+ (uri
+ (string-append "https://github.com/xinetd-org/xinetd/archive/xinetd-"
+ (string-join (string-split version #\.) "-") ".tar.gz"))
+ (patches (search-patches "xinetd-CVE-2013-4342.patch"
+ "xinetd-fix-fd-leak.patch"))
(sha256
(base32
"0k59x52cbzp5fw0n8zn0y54j1ps0x9b72y8k5grzswjdmgs2a2v2"))))
(build-system gnu-build-system)
(arguments
`(#:configure-flags '("--with-loadavg")
- #:tests? #f )) ; no tests
+ #:tests? #f)) ; no tests
(home-page "https://github.com/xinetd-org/xinetd")
(synopsis "Internet services daemon")
(description "@code{xinetd}, a more secure replacement for @code{inetd},
- branch master updated (2922852 -> 77659ff), Tobias Geerinckx-Rice, 2018/02/19
- 01/21: gnu: erlang: Use HTTPS home page., Tobias Geerinckx-Rice, 2018/02/19
- 02/21: gnu: libfilezilla: Update to 0.12.0., Tobias Geerinckx-Rice, 2018/02/19
- 04/21: gnu: knot: Update to 2.6.5., Tobias Geerinckx-Rice, 2018/02/19
- 07/21: gnu: perl-params-validationcompiler: Update to 0.27., Tobias Geerinckx-Rice, 2018/02/19
- 15/21: gnu: lsof: Remove build timestamp., Tobias Geerinckx-Rice, 2018/02/19
- 05/21: gnu: ncftp: Update to 3.2.6., Tobias Geerinckx-Rice, 2018/02/19
- 08/21: gnu: perl-importer: Update to 0.025., Tobias Geerinckx-Rice, 2018/02/19
- 17/21: gnu: ccache: Update to 3.4.1., Tobias Geerinckx-Rice, 2018/02/19
- 06/21: gnu: xinetd: Don't hard-code tarball version.,
Tobias Geerinckx-Rice <=
- 20/21: gnu: iverilog: Update to 10.2., Tobias Geerinckx-Rice, 2018/02/19
- 09/21: gnu: perl-xml-sax: Update to 1.00., Tobias Geerinckx-Rice, 2018/02/19
- 10/21: gnu: dvdstyler: Update to 3.0.4., Tobias Geerinckx-Rice, 2018/02/19
- 14/21: gnu: lsof: Update phase style., Tobias Geerinckx-Rice, 2018/02/19
- 11/21: gnu: lsof: Replace dead mirror., Tobias Geerinckx-Rice, 2018/02/19
- 21/21: gnu: iverilog: Use Texinfo in description., Tobias Geerinckx-Rice, 2018/02/19
- 13/21: gnu: lsof: Make perl a native input., Tobias Geerinckx-Rice, 2018/02/19
- 03/21: gnu: awscli: Update to 1.14.41., Tobias Geerinckx-Rice, 2018/02/19
- 19/21: gnu: nyacc: Update to 0.83.3., Tobias Geerinckx-Rice, 2018/02/19
- 18/21: gnu: nasm: Update to 2.13.03., Tobias Geerinckx-Rice, 2018/02/19