diff mbox series

[bug#70518] gnu: lighttpd: Update to 1.4.76.

Message ID 20240422193827.21656-1-nandre@riseup.net
State New
Headers show
Series [bug#70518] gnu: lighttpd: Update to 1.4.76. | expand

Commit Message

André Batista April 22, 2024, 7:38 p.m. UTC
* gnu/packages/web.scm (lighttpd): Update to 1.4.76.
[native-inputs]: Add autoconf, automake, libtool, m4
and pcre.
---
 gnu/packages/web.scm | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)


base-commit: 2126dab4cd81db4cbde4566d8c638e45a4c0077c

Comments

Clément Lassieur April 23, 2024, 1:05 p.m. UTC | #1
On Mon, Apr 22 2024, André Batista wrote:

> * gnu/packages/web.scm (lighttpd): Update to 1.4.76.
> [native-inputs]: Add autoconf, automake, libtool, m4
> and pcre.
> ---
>  gnu/packages/web.scm | 12 +++++++++---
>  1 file changed, 9 insertions(+), 3 deletions(-)

Pushed without m4 and pcre because I believe they were useless.

Cheers,
Clément
diff mbox series

Patch

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 37fd63ed53..1f163cbb05 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -171,6 +171,7 @@  (define-module (gnu packages web)
   #:use-module (gnu packages lisp-xyz)
   #:use-module (gnu packages lsof)
   #:use-module (gnu packages lua)
+  #:use-module (gnu packages m4)
   #:use-module (gnu packages mail)
   #:use-module (gnu packages man)
   #:use-module (gnu packages markup)
@@ -1014,7 +1015,7 @@  (define-public nginx-module-vts
 (define-public lighttpd
   (package
     (name "lighttpd")
-    (version "1.4.73")
+    (version "1.4.76")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://download.lighttpd.net/lighttpd/"
@@ -1022,7 +1023,7 @@  (define-public lighttpd
                                   "lighttpd-" version ".tar.xz"))
               (sha256
                (base32
-                "1a2cx3di07wf8qii7dpk4yr5wvaz8c9na1x7523smc0lng81d241"))))
+                "04ahiyn622mgpkib8j20vj7wa1av1dv7ing9vz7d1kvkwfb45gwc"))))
     (build-system gnu-build-system)
     (arguments
      (list #:configure-flags
@@ -1068,7 +1069,12 @@  (define-public lighttpd
            pcre2
            zlib))
     (native-inputs
-     (list perl ; for tests
+     (list autoconf
+           automake
+           libtool
+           m4
+           pcre
+           perl ; for tests
            pkg-config which))
     (home-page "https://www.lighttpd.net/")
     (synopsis "Lightweight HTTP and reverse proxy server")