Your message dated Sat, 19 Jan 2008 09:47:02 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#458122: fixed in fnord 1.10-3
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: fnord
Version: 1.10-2
Severity: wishlist
Tags: patch, upstream

Hi,

It would be useful if fnord would not just ship fnord-idx and fnord-cgi,
but also fnord-cgi-idx.  That'd be the only way to have fnord supporting
both CGI and autogenerated directory-listings in one vhost.

Attached Makefile enables this.  Applying this:

--------

+++ fnord-1.10/debian/rules
@@ -39,6 +39,7 @@
        install -m0755 fnord '$(DIR)'/usr/sbin/fnord
        install -m0755 fnord-cgi '$(DIR)'/usr/sbin/fnord-cgi
        install -m0755 fnord-idx '$(DIR)'/usr/sbin/fnord-idx
+       install -m0755 fnord-cgi-idx '$(DIR)'/usr/sbin/fnord-cgi-idx
        install -m0755 fnord-conf '$(DIR)'/usr/sbin/fnord-conf
        # contributed
        install -m0755 debian/fnord-ssl-conf '$(DIR)'/usr/sbin/fnord-ssl-conf

--------

makes sure it is shipped and installed with the Debian package.

Thanks for maintaining fnord for Debian.

Bye,

Joost

CC=gcc
CXX=g++

#LIBOWFAT=../libowfat/
DIET=diet -Os

CFLAGS=-Os -fomit-frame-pointer
#CFLAGS=-g

all: fnord fnord-cgi fnord-idx fnord-cgi-idx

fnord: httpd
        cp -p $^ $@
        -strip -R .note -R .comment $@

httpd: httpd.o libowfat.a
        $(DIET) $(CC) -o $@ $^ $(CFLAGS)

fnord-cgi: httpd-cgi.o libowfat.a
        $(DIET) $(CC) -o $@ $^ $(CFLAGS)
        -strip -R .note -R .comment $@

fnord-idx: httpd-idx.o libowfat.a
        $(DIET) $(CC) -o $@ $^ $(CFLAGS)
        -strip -R .note -R .comment $@

fnord-cgi-idx: httpd-cgi-idx.o libowfat.a
        $(DIET) $(CC) -o $@ $^ $(CFLAGS)
        -strip -R .note -R .comment $@

libowfat.a: httpd.o buffer_1.o buffer_puts.o buffer_flush.o buffer_put.o \
buffer_putulong.o buffer_2.o buffer_putspace.o buffer_stubborn.o \
buffer_putflush.o str_copy.o fmt_ulong.o byte_diff.o byte_copy.o \
str_len.o str_diff.o str_chr.o str_diffn.o str_start.o scan_ulong.o
        ar cru $@ $^
        -ranlib $@

httpd.o: httpd.c
        $(DIET) $(CC) -pipe $(CFLAGS) -c $^ -DFNORD=\"fnord/$(shell head -n 1 
CHANGES|sed 's/://')\"

httpd-cgi.o: httpd.c
        $(DIET) $(CC) -pipe $(CFLAGS) -c httpd.c -o $@ -DCGI 
-DFNORD=\"fnord/$(shell head -n 1 CHANGES|sed 's/://')\"

httpd-idx.o: httpd.c
        $(DIET) $(CC) -pipe $(CFLAGS) -c httpd.c -o $@ -DDIR_LIST 
-DFNORD=\"fnord/$(shell head -n 1 CHANGES|sed 's/://')\"

httpd-cgi-idx.o: httpd.c
        $(DIET) $(CC) -pipe $(CFLAGS) -c httpd.c -o $@ -DCGI -DDIR_LIST 
-DFNORD=\"fnord/$(shell head -n 1 CHANGES|sed 's/://')\"

%.o: %.c
        $(DIET) $(CC) -pipe $(CFLAGS) -c $^

%.o: %.cpp
        $(DIET) $(CXX) -pipe $(CFLAGS) -c $^

.PHONY: rename clean install server
server: fnord
        tcpserver -v -RHl localhost 0 8000 ./fnord

clean:
        rm -f *.[oa] httpd fnord fnord-cgi fnord-idx fnord-cgi-idx

install:
        test -d /command || mkdir /command

CURNAME=$(notdir $(shell pwd))
VERSION=fnord-$(shell head -n 1 CHANGES|sed 's/://')

tar: rename
        cd .. && tar cvvf $(VERSION).tar.bz2 --use=bzip2 --exclude CVS 
--exclude bin-* --exclude .cvsignore --exclude default $(VERSION)

rename:
        if test $(CURNAME) != $(VERSION); then cd .. && mv $(CURNAME) 
$(VERSION); fi

Attachment: signature.asc
Description: Digital signature


--- End Message ---
--- Begin Message ---
Source: fnord
Source-Version: 1.10-3

We believe that the bug you reported is fixed in the latest version of
fnord, which is due to be installed in the Debian FTP archive:

fnord_1.10-3.diff.gz
  to pool/main/f/fnord/fnord_1.10-3.diff.gz
fnord_1.10-3.dsc
  to pool/main/f/fnord/fnord_1.10-3.dsc
fnord_1.10-3_powerpc.deb
  to pool/main/f/fnord/fnord_1.10-3_powerpc.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Gerrit Pape <[EMAIL PROTECTED]> (supplier of updated fnord package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sat, 19 Jan 2008 09:30:31 +0000
Source: fnord
Binary: fnord
Architecture: source powerpc
Version: 1.10-3
Distribution: unstable
Urgency: low
Maintainer: Gerrit Pape <[EMAIL PROTECTED]>
Changed-By: Gerrit Pape <[EMAIL PROTECTED]>
Description: 
 fnord      - yet another small httpd
Closes: 412154 436846 458122
Changes: 
 fnord (1.10-3) unstable; urgency=low
 .
   * debian/diff/0001-*..0005-*: new; from upstream cvs.
   * debian/diff/fnord-conf-fix.diff, mime-x-debian-package.diff,
     nokeepalive.diff, pollhup.diff, redirectdir-colf-combined.diff,
     timezone.diff, vhost-log-host.diff: redo with git as 0006-*..0012-*.
   * debian/rules: apply diffs with patch -p1, not -p0.
   * debian/control: add Vcs-Git: http://smarden.org/git/fnord.git/.
   * debian/fnord-ssl-conf: fix usage output; make supervise subdirectories
     (dangling) symlinks pointing into /var/run/; put log directory into
     /var/log/, and link back to log/main (thx Martin Rudat, #412154).
   * debian/diff/0006-fnord-conf-create-service-directory-using-tcpsvd-sv.diff:
     adapt: make supervise subdirectories (dangling) symlinks pointing into
     /var/run/; put log directory into /var/log/, and link back to log/main
     (thx Martin Rudat, closes: #412154).
   * debian/diff/0013-Makefile-make-program-to-strip-binaries-configurable.diff:
     new; Makefile: make program to strip binaries configurable.
   * debian/rules: support DEB_BUILD_OPTIONS=nostrip to not strip binaries
     (closes: #436846).
   * debian/diff/0014-Makefile-build-a-fnord-cgi-idx-program.diff: new;
     Makefile: build a fnord-cgi-idx program (patch by Joost van Baal).
   * debian/rules: install the fnord-cgi-idx program (patch by Joost van Baal,
     closes: #458122).
Files: 
 d643d3d149bb1460967092f3baca9102 584 web optional fnord_1.10-3.dsc
 5aa6cded29570b39caff0a35e3c7d291 13099 web optional fnord_1.10-3.diff.gz
 703cfdd489837a68ef011bc8bf54e304 44868 web optional fnord_1.10-3_powerpc.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFHkcT7GJoyQbxwpv8RAgybAJ9no1cWscI+t2X2HjgWOP0ClDVvwACggEsV
9bQ+MoteQMVbpHZya+eMUF8=
=fzyj
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to