pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/bozohttpd update to bozohttpd 20201014. changes i...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/79a4c8ebac3e
branches:  trunk
changeset: 440669:79a4c8ebac3e
user:      mrg <mrg%pkgsrc.org@localhost>
date:      Thu Oct 15 04:42:05 2020 +0000

description:
update to bozohttpd 20201014.  changes include:

        o  also set -D_GNU_SOURCE in Makefile.boot.  from
           hadrien.lacour%posteo.net@localhost.
        o  fix array size botch (assertion, not exploitable.)  from
           martin%netbsd.org@localhost.
        o  also match %2F as well as %2f.  from leah%vuxu.org@localhost.
        o  many manual and help fixes.  clean ups for higher lint levels,
           consistency/style clean ups.  various option fixes including made
           -f imply -b.  from <henrik%gulbra.net@localhost> for freebsd.
        o  add .m4a and .m4v file extensions.
        o  make this work on sun2 by reducing mmap window there.
        o  fix SSL shutdown sequence.  from spz%netbsd.org@localhost.
        o  add readme support to directory indexing.  from jmcneill%netbsd.org@localhost
        o  add blocklist(8) support.  from jruoho%netbsd.org@localhost.

diffstat:

 www/bozohttpd/Makefile                    |   5 ++---
 www/bozohttpd/distinfo                    |  12 ++++++------
 www/bozohttpd/patches/patch-Makefile.boot |  14 ++++++++++++++
 www/bozohttpd/patches/patch-ab            |  14 --------------
 4 files changed, 22 insertions(+), 23 deletions(-)

diffs (69 lines):

diff -r ce690b08e48a -r 79a4c8ebac3e www/bozohttpd/Makefile
--- a/www/bozohttpd/Makefile    Thu Oct 15 04:33:56 2020 +0000
+++ b/www/bozohttpd/Makefile    Thu Oct 15 04:42:05 2020 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.94 2020/01/18 21:51:04 jperkin Exp $
+# $NetBSD: Makefile,v 1.95 2020/10/15 04:42:05 mrg Exp $
 #
 
-DISTNAME=      bozohttpd-20190228
-PKGREVISION=   1
+DISTNAME=      bozohttpd-20201014
 CATEGORIES=    www
 MASTER_SITES=  ${MASTER_SITE_LOCAL}
 EXTRACT_SUFX=  .tar.bz2
diff -r ce690b08e48a -r 79a4c8ebac3e www/bozohttpd/distinfo
--- a/www/bozohttpd/distinfo    Thu Oct 15 04:33:56 2020 +0000
+++ b/www/bozohttpd/distinfo    Thu Oct 15 04:42:05 2020 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.72 2019/06/11 09:41:01 mrg Exp $
+$NetBSD: distinfo,v 1.73 2020/10/15 04:42:05 mrg Exp $
 
-SHA1 (bozohttpd-20190228.tar.bz2) = 0174ea48550e84703c3b0795d9c6209a57d74feb
-RMD160 (bozohttpd-20190228.tar.bz2) = e313d40001f3d160ffe3ac70eab12c27bf041851
-SHA512 (bozohttpd-20190228.tar.bz2) = 8658695ad9248c9c013362d040981df5d18366e1ad0a6b80707841f93fe576c54631ff3810cc08062b1b28fb07884464bfc27fb71c37831446b2de67a6254f09
-Size (bozohttpd-20190228.tar.bz2) = 59460 bytes
-SHA1 (patch-ab) = a1a56a188084440ab907995c7728e435961c5fbd
+SHA1 (bozohttpd-20201014.tar.bz2) = a65afc85be106ab143c5f0f6ce3ec6e4dabdecf4
+RMD160 (bozohttpd-20201014.tar.bz2) = bb46e1d8b76a9c37e9ef181827132eef349cb53e
+SHA512 (bozohttpd-20201014.tar.bz2) = 07566202053af4fd1257532877d0444f867102edf7dfe6eb6881b81e92bfe461e27da22c18d2c9099f6220aa05cbdcb55084569b8db3e0612dc17d5dc75c9fec
+Size (bozohttpd-20201014.tar.bz2) = 76913 bytes
+SHA1 (patch-Makefile.boot) = cb3e6e1562f1a25a3b1aca86d77e2c7571e6b1d9
 SHA1 (patch-auth-bozo.c) = fb3fa40bee34d156cf91d615d905bb908eb70e4d
 SHA1 (patch-cgi-bozo.c) = 420f981575d7fa1a96ac7049116b9bf64de719df
diff -r ce690b08e48a -r 79a4c8ebac3e www/bozohttpd/patches/patch-Makefile.boot
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/bozohttpd/patches/patch-Makefile.boot Thu Oct 15 04:42:05 2020 +0000
@@ -0,0 +1,14 @@
+$NetBSD: patch-Makefile.boot,v 1.1 2020/10/15 04:42:06 mrg Exp $
+
+--- Makefile.boot.orig 2020-10-14 21:35:06.000000000 -0700
++++ Makefile.boot      2020-10-14 21:38:22.472223596 -0700
+@@ -5,7 +5,9 @@
+ 
+ CC=   cc
+ OPT=  -O
++OPT=
+ LARGE_CFLAGS= -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
++LARGE_CFLAGS=
+ LOCAL_CFLAGS= -DNO_LUA_SUPPORT -DNO_BLOCKLIST_SUPPORT -D_GNU_SOURCE
+ CFLAGS=       $(OPT) $(LARGE_CFLAGS) $(LOCAL_CFLAGS)
+ 
diff -r ce690b08e48a -r 79a4c8ebac3e www/bozohttpd/patches/patch-ab
--- a/www/bozohttpd/patches/patch-ab    Thu Oct 15 04:33:56 2020 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-$NetBSD: patch-ab,v 1.20 2014/01/02 09:02:22 mrg Exp $
-
---- Makefile.boot.orig 2014-01-01 23:59:54.000000000 -0800
-+++ Makefile.boot      2014-01-02 00:02:15.000000000 -0800
-@@ -5,7 +5,9 @@
- 
- CC=   cc
- OPT=  -O
-+OPT=
- LARGE_CFLAGS= -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
-+LARGE_CFLAGS=
- LOCAL_CFLAGS= -DNO_LUA_SUPPORT
- CFLAGS=       $(OPT) $(LARGE_CFLAGS) $(LOCAL_CFLAGS)
- 



Home | Main Index | Thread Index | Old Index