[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/09: gnu: fcgiwrap: Update to 1.1.0-1.2870d27, change source.
From: |
guix-commits |
Subject: |
01/09: gnu: fcgiwrap: Update to 1.1.0-1.2870d27, change source. |
Date: |
Wed, 13 Mar 2024 09:00:47 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit b6dd1271044d1830b4f8ff605c1011ef44f58cd1
Author: 宋文武 <iyzsong@member.fsf.org>
AuthorDate: Tue Mar 12 13:48:28 2024 +0000
gnu: fcgiwrap: Update to 1.1.0-1.2870d27, change source.
* gnu/packages/web.scm (fcgiwrap): Update to 1.1.0-1.2870d27.
[source]: Switch to https://github.com/flu0r1ne/fcgiwrap.
Reviewed-by: Dale Mellor <guix-devel-0brg6b@rdmp.org>
Signed-off-by: Christopher Baines <mail@cbaines.net>
Change-Id: Ia9e7b911a0c8bde50924e3398f915f945cf955a6
---
gnu/packages/web.scm | 68 +++++++++++++++++++++++++++-------------------------
1 file changed, 36 insertions(+), 32 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index ddc673896b..f163802a60 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -1109,40 +1109,44 @@ APIs.")
(license (license:non-copyleft "file://LICENSE.TERMS"))))
(define-public fcgiwrap
- (package
- (name "fcgiwrap")
- (version "1.1.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/gnosek/fcgiwrap")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "1ryw66h9aazi83amk8l7ha8k5g0c7qvk5g6jv376a1ws9xk2qw6f"))))
- (build-system gnu-build-system)
- (arguments
- `(#:tests? #f ; no tests included
- #:make-flags (list "CC=gcc")
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'fix-CFLAGS
- ;; Remove broken options unconditionally added to CFLAGS.
- (lambda _
- (substitute* "configure.ac"
- ((" -Werror") ""))
- #t)))))
- (native-inputs
- (list autoconf automake pkg-config))
- (inputs
- (list fcgi))
- (home-page "https://nginx.localdomain.pl/wiki/FcgiWrap")
- (synopsis "Simple server for running CGI applications over FastCGI")
- (description "Fcgiwrap is a simple server for running CGI applications
+ (let ((commit "2870d2729a3930988f0041e2d78fec672e69afac")
+ (revision "1"))
+ (package
+ (name "fcgiwrap")
+ (version (git-version "1.1.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ ;; Upstream last updated in 2015, this forked version has better
+ ;; socket cleanup.
+ (url "https://github.com/flu0r1ne/fcgiwrap")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0rkpp4apfhdcrmym3pcpqlncd0r4fyr3pa45i8g6x4p38b4azmmm"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; no tests included
+ #:make-flags (list "CC=gcc")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'fix-CFLAGS
+ ;; Remove broken options unconditionally added to CFLAGS.
+ (lambda _
+ (substitute* "configure.ac"
+ ((" -Werror") ""))
+ #t)))))
+ (native-inputs
+ (list autoconf automake pkg-config))
+ (inputs
+ (list fcgi))
+ (home-page "https://nginx.localdomain.pl/wiki/FcgiWrap")
+ (synopsis "Simple server for running CGI applications over FastCGI")
+ (description "Fcgiwrap is a simple server for running CGI applications
over FastCGI. It hopes to provide clean CGI support to Nginx (and other web
servers that may need it).")
- (license license:expat)))
+ (license license:expat))))
(define-public starman
(package
- branch master updated (bcc5ba6358 -> 7b5c030684), guix-commits, 2024/03/13
- 09/09: gnu: cl-nodgui: Update to 0.6.0.2., guix-commits, 2024/03/13
- 06/09: gnu: zig-zls: Update to 0.10.0., guix-commits, 2024/03/13
- 03/09: gnu: swig-next: Update to 4.2.1., guix-commits, 2024/03/13
- 01/09: gnu: fcgiwrap: Update to 1.1.0-1.2870d27, change source.,
guix-commits <=
- 02/09: gnu: vcmi: Update to 1.4.5., guix-commits, 2024/03/13
- 08/09: gnu: cni-plugins: Update to 1.4.1., guix-commits, 2024/03/13
- 04/09: gnu: rpi-imager: Update to version 1.8.5., guix-commits, 2024/03/13
- 07/09: gnu: slib: Update to 3c1., guix-commits, 2024/03/13
- 05/09: gnu: diffoscope: Update to 260., guix-commits, 2024/03/13