Your message dated Mon, 19 Dec 2016 20:00:11 +0000
with message-id <e1cj46v-000cqh...@fasolo.debian.org>
and subject line Bug#846917: fixed in lighttpd 1.4.43+git20161216-1
has caused the Debian Bug report #846917,
regarding fix debian packaging for lighttpd 1.4.43
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
846917: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=846917
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: lighttpd
Version: 1.4.43-1
Severity: serious

Hi,

the debian package for 1.4.43 is in a very sad state (one could say
similar to the upstream release itself...).

See attached patch for what we're using to build packages for
https://debian.lighttpd.net/

- debian stable doesn't know default-libmysqlclient-dev
- add new dependencies
- init script still present, no need for systemd: #846299
- don't recommend php5-cgi - should not get installed automatically imho
- new packages for new modules

Sadly ldap and mysql mod_authn_* modules are required as soon as you
load mod_auth in 1.4.43; this is fixed in git head.

Overall I'd recommend waiting for 1.4.44 or picking some fixes from git
head; there are some quite severe bugs in 1.4.43.

Also we're using the .tar.xz - maybe update the watch file; and https
should work on download.lighttpd.net/ too.

regards,
Stefan
diff -urN lighttpd-1.4.43/debian/control new/debian/control
--- lighttpd-1.4.43/debian/control	2016-11-26 06:09:35.000000000 +0100
+++ new/debian/control	2016-12-04 10:33:00.249171410 +0100
@@ -18,7 +18,8 @@
  libbz2-dev,
  libattr1-dev,
  libpcre3-dev,
- default-libmysqlclient-dev,
+ libmemcached-dev,
+ default-libmysqlclient-dev | libmysqlclient-dev,
  libfam-dev,
  libldap2-dev,
  libfcgi-dev,
@@ -29,6 +30,7 @@
  libsqlite3-dev,
  libxml2-dev,
  libkrb5-dev,
+ libgeoip-dev,
  perl,
  libcgi-pm-perl,
 Vcs-Git: git://anonscm.debian.org/pkg-lighttpd/lighttpd.git
@@ -41,11 +43,11 @@
 # That's a false positive these days
 Pre-Depends: ${misc:Pre-Depends}
 Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends},
- lsb-base (>= 3.0-6), systemd (>= 29.1), mime-support,
+ lsb-base (>= 3.0-6) | systemd (>= 29.1), mime-support,
  libterm-readline-perl-perl
 Provides: httpd, httpd-cgi
-Suggests: openssl, rrdtool, apache2-utils, lighttpd-doc
-Recommends: spawn-fcgi, php5-cgi
+Suggests: openssl, rrdtool, apache2-utils, lighttpd-doc, php5-cgi
+Recommends: spawn-fcgi
 Description: fast webserver with minimal memory footprint
  lighttpd is a small webserver and fast webserver developed with
  security in mind and a lot of features.
@@ -126,3 +128,34 @@
   MKCOL
   DELETE
   PUT
+
+Package: lighttpd-mod-authn-gssapi
+Architecture: any
+Depends: lighttpd (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
+Description: GGSAPI authentication for lighttpd
+ This package contains the authn_gssapi module for lighttpd. With
+ this module, it is possible to perform GSSAPI authentication.
+
+Package: lighttpd-mod-authn-ldap
+Architecture: any
+Depends: lighttpd (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
+Description: LDAP authentication for lighttpd
+ This package contains the authn_ldap module for lighttpd. With
+ this module, it is possible to perform authentication against an LDAP
+ server.
+
+Package: lighttpd-mod-authn-mysql
+Architecture: any
+Depends: lighttpd (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
+Description: MySQL authentication for lighttpd
+ This package contains the authn_mysql module for lighttpd. With
+ this module, it is possible to perform authentication using a MySQL
+ table.
+
+Package: lighttpd-mod-geoip
+Architecture: any
+Depends: lighttpd (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
+Description: GeoIP restrictions for lighttpd
+ This package contains the geoip module for lighttpd. With
+ this module, it is possible to distinguish users based on the location
+ using a GeoIP database.
diff -urN lighttpd-1.4.43/debian/lighttpd.install new/debian/lighttpd.install
--- lighttpd-1.4.43/debian/lighttpd.install	2016-11-26 06:09:35.000000000 +0100
+++ new/debian/lighttpd.install	2016-12-04 10:31:51.431727218 +0100
@@ -4,8 +4,10 @@
 debian/tmp/usr/lib/lighttpd/mod_accesslog.so
 debian/tmp/usr/lib/lighttpd/mod_alias.so
 debian/tmp/usr/lib/lighttpd/mod_auth.so
+debian/tmp/usr/lib/lighttpd/mod_authn_file.so
 debian/tmp/usr/lib/lighttpd/mod_cgi.so
 debian/tmp/usr/lib/lighttpd/mod_compress.so
+debian/tmp/usr/lib/lighttpd/mod_deflate.so
 debian/tmp/usr/lib/lighttpd/mod_dirlisting.so
 debian/tmp/usr/lib/lighttpd/mod_evasive.so
 debian/tmp/usr/lib/lighttpd/mod_evhost.so
@@ -25,6 +27,7 @@
 debian/tmp/usr/lib/lighttpd/mod_ssi.so
 debian/tmp/usr/lib/lighttpd/mod_staticfile.so
 debian/tmp/usr/lib/lighttpd/mod_status.so
+debian/tmp/usr/lib/lighttpd/mod_uploadprogress.so
 debian/tmp/usr/lib/lighttpd/mod_userdir.so
 debian/tmp/usr/lib/lighttpd/mod_usertrack.so
 debian/lighttpd.conf                        /etc/lighttpd
diff -urN lighttpd-1.4.43/debian/lighttpd-mod-authn-gssapi.install new/debian/lighttpd-mod-authn-gssapi.install
--- lighttpd-1.4.43/debian/lighttpd-mod-authn-gssapi.install	1970-01-01 01:00:00.000000000 +0100
+++ new/debian/lighttpd-mod-authn-gssapi.install	2016-10-31 11:31:01.000000000 +0100
@@ -0,0 +1 @@
+debian/tmp/usr/lib/lighttpd/mod_authn_gssapi.so
diff -urN lighttpd-1.4.43/debian/lighttpd-mod-authn-ldap.install new/debian/lighttpd-mod-authn-ldap.install
--- lighttpd-1.4.43/debian/lighttpd-mod-authn-ldap.install	1970-01-01 01:00:00.000000000 +0100
+++ new/debian/lighttpd-mod-authn-ldap.install	2016-10-31 11:30:58.000000000 +0100
@@ -0,0 +1 @@
+debian/tmp/usr/lib/lighttpd/mod_authn_ldap.so
diff -urN lighttpd-1.4.43/debian/lighttpd-mod-authn-mysql.install new/debian/lighttpd-mod-authn-mysql.install
--- lighttpd-1.4.43/debian/lighttpd-mod-authn-mysql.install	1970-01-01 01:00:00.000000000 +0100
+++ new/debian/lighttpd-mod-authn-mysql.install	2016-10-31 11:30:52.000000000 +0100
@@ -0,0 +1 @@
+debian/tmp/usr/lib/lighttpd/mod_authn_mysql.so
diff -urN lighttpd-1.4.43/debian/lighttpd-mod-geoip.install new/debian/lighttpd-mod-geoip.install
--- lighttpd-1.4.43/debian/lighttpd-mod-geoip.install	1970-01-01 01:00:00.000000000 +0100
+++ new/debian/lighttpd-mod-geoip.install	2016-10-31 11:30:49.000000000 +0100
@@ -0,0 +1 @@
+debian/tmp/usr/lib/lighttpd/mod_geoip.so
diff -urN lighttpd-1.4.43/debian/NEWS new/debian/NEWS
--- lighttpd-1.4.43/debian/NEWS	2016-11-26 06:08:10.000000000 +0100
+++ new/debian/NEWS	2016-10-31 13:38:11.000000000 +0100
@@ -1,3 +1,10 @@
+lighttpd (1.4.42-0.2) unstable; urgency=high
+  The authentication modules have been split into submodules; LDAP and
+  the new GSSAPI and MySQL authentication modules are now in separate
+  packages.
+
+ -- Stefan Bühler <stbueh...@web.de>  Mon, 31 Oct 2016 11:38:33 +0100
+
 lighttpd (1.4.31-4) unstable; urgency=high
 
   The default Debian configuration file for PHP invoked from FastCGI was
diff -urN lighttpd-1.4.43/debian/rules new/debian/rules
--- lighttpd-1.4.43/debian/rules	2016-11-26 06:08:10.000000000 +0100
+++ new/debian/rules	2016-12-04 10:35:13.369059377 +0100
@@ -17,15 +17,16 @@
                 --with-attr \
                 --with-fam \
                 --with-gdbm \
-                --with-kerberos5 \
+                --with-krb5 \
                 --with-ldap \
                 --with-lua=lua5.1 \
-                --with-memcache \
+                --with-memcached \
                 --with-mysql \
                 --with-openssl \
                 --with-pcre \
                 --with-webdav-locks \
                 --with-webdav-props \
+                --with-geoip \
 		$(shell dpkg-buildflags --export=configure)
 
 override_dh_fixperms:

--- End Message ---
--- Begin Message ---
Source: lighttpd
Source-Version: 1.4.43+git20161216-1

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

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 846...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Gilbert <mgilb...@debian.org> (supplier of updated lighttpd 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 ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Mon, 19 Dec 2016 00:04:25 +0000
Source: lighttpd
Binary: lighttpd lighttpd-doc lighttpd-mod-mysql-vhost 
lighttpd-mod-trigger-b4-dl lighttpd-mod-cml lighttpd-mod-magnet 
lighttpd-mod-webdav lighttpd-mod-authn-gssapi lighttpd-mod-authn-ldap 
lighttpd-mod-authn-mysql lighttpd-mod-geoip
Architecture: source amd64 all
Version: 1.4.43+git20161216-1
Distribution: unstable
Urgency: medium
Maintainer: Debian lighttpd maintainers 
<pkg-lighttpd-maintain...@lists.alioth.debian.org>
Changed-By: Michael Gilbert <mgilb...@debian.org>
Description:
 lighttpd   - fast webserver with minimal memory footprint
 lighttpd-doc - documentation for lighttpd
 lighttpd-mod-authn-gssapi - GGSAPI authentication for lighttpd
 lighttpd-mod-authn-ldap - LDAP authentication for lighttpd
 lighttpd-mod-authn-mysql - MySQL authentication for lighttpd
 lighttpd-mod-cml - cache meta language module for lighttpd
 lighttpd-mod-geoip - GeoIP restrictions for lighttpd
 lighttpd-mod-magnet - control the request handling module for lighttpd
 lighttpd-mod-mysql-vhost - MySQL-based virtual host configuration for lighttpd
 lighttpd-mod-trigger-b4-dl - anti-deep-linking module for lighttpd
 lighttpd-mod-webdav - WebDAV module for lighttpd
Closes: 751957 808921 846299 846917
Changes:
 lighttpd (1.4.43+git20161216-1) unstable; urgency=medium
 .
   * New upstream snapshot (closes: #846917).
   * Remove unneeed perl dependencies.
   * Update debian/copyright to format 1.0.
   * Ship NEWS file as upstream's changelog.
   * Remove systemd dependency (closes: #846299).
   * Suggest php5-cgi instead of recommending it.
   * Update watch file to look for upstream's xz tarball.
   * Fix incorrect bug number in previous changelog entry.
   * Make a mod_rewrite conf file available (closes: #751957).
   * Point to /var/www/html from the placeholder page (closes: #808921).
   * Add new packages for LDAP, GSSAPI, MySQL, and GeoIP modules.
     - Thanks to Stefan Bühler.
   * Fix build hardening flags.
     - Thanks to Stefan Bühler.
Checksums-Sha1:
 0b2b58c61becaf9a601250ec081c14d1180db500 3927 lighttpd_1.4.43+git20161216-1.dsc
 4a47544883de453a808410366841e5ad4fb7dce6 410236 
lighttpd_1.4.43+git20161216.orig.tar.xz
 941a355538516f5b83a7b843a5af14ef8dc27c0b 46392 
lighttpd_1.4.43+git20161216-1.debian.tar.xz
 1d98d5bfb140e30b178a77ff64a92ad77c73d7a1 996426 
lighttpd-dbgsym_1.4.43+git20161216-1_amd64.deb
 51533f6f2d6bbdffe3ab85df5aade632b3eb41c6 62032 
lighttpd-doc_1.4.43+git20161216-1_all.deb
 4780bc172332adef6e574aec167269cc86946c77 28128 
lighttpd-mod-authn-gssapi-dbgsym_1.4.43+git20161216-1_amd64.deb
 d8ed77869a10ef2166971cc32c13b9bba076ac6c 23226 
lighttpd-mod-authn-gssapi_1.4.43+git20161216-1_amd64.deb
 5b855e8f7343a296d6232335c8fd3b44621d1b0a 21054 
lighttpd-mod-authn-ldap-dbgsym_1.4.43+git20161216-1_amd64.deb
 fcf1253dbbb599192b6f5b52161df89491dc566f 20956 
lighttpd-mod-authn-ldap_1.4.43+git20161216-1_amd64.deb
 a2c46a39b1c41102453f865d69d1906f45214364 25236 
lighttpd-mod-authn-mysql-dbgsym_1.4.43+git20161216-1_amd64.deb
 456823ab2d050a03a06caf87579bc65e2742f63e 20966 
lighttpd-mod-authn-mysql_1.4.43+git20161216-1_amd64.deb
 c6384dc3a732a0e65f8c830350f0bca6b41f9d40 40106 
lighttpd-mod-cml-dbgsym_1.4.43+git20161216-1_amd64.deb
 827b9bc26ebe31538152b858daaf5f48d6baecad 23916 
lighttpd-mod-cml_1.4.43+git20161216-1_amd64.deb
 fee5153bc52a7e3292f22feddacfa083b5352769 19956 
lighttpd-mod-geoip-dbgsym_1.4.43+git20161216-1_amd64.deb
 536710567e9a5065b8592f65045ac82bd7650672 19766 
lighttpd-mod-geoip_1.4.43+git20161216-1_amd64.deb
 f15bd6d37d3269b7d04b6ad76ad5a3c2d4267862 35958 
lighttpd-mod-magnet-dbgsym_1.4.43+git20161216-1_amd64.deb
 05b83516bb4bd387cc98af35025175f796ae63dd 24918 
lighttpd-mod-magnet_1.4.43+git20161216-1_amd64.deb
 cd07e57041289dc7d30c7d229d15881a73be55c6 22936 
lighttpd-mod-mysql-vhost-dbgsym_1.4.43+git20161216-1_amd64.deb
 7e91dd989c6eebabde8dc55a24bd2a0b6bbcfbf5 20220 
lighttpd-mod-mysql-vhost_1.4.43+git20161216-1_amd64.deb
 aab6f2acc36e19a7752da540bed0f65c433f6ebb 23596 
lighttpd-mod-trigger-b4-dl-dbgsym_1.4.43+git20161216-1_amd64.deb
 1aa6de8a844e77976d680f945c1892a8239979ba 21836 
lighttpd-mod-trigger-b4-dl_1.4.43+git20161216-1_amd64.deb
 ec7223ce6ac368799966a2d2cd78bd92137fe87d 58756 
lighttpd-mod-webdav-dbgsym_1.4.43+git20161216-1_amd64.deb
 62d4c7a4aeb2d9903e7fe2c4610f1dc00439c1ff 32300 
lighttpd-mod-webdav_1.4.43+git20161216-1_amd64.deb
 8d0d624eb2c3614e5e1871e2d628f9aae65d57a3 13602 
lighttpd_1.4.43+git20161216-1_amd64.buildinfo
 63028fe5a687da8fc80e891788c65dc1cb01a9ff 281374 
lighttpd_1.4.43+git20161216-1_amd64.deb
Checksums-Sha256:
 f9d52e688b3b349821d4edcf355aec73db40f02e3c0fe848401eaef8300ce687 3927 
lighttpd_1.4.43+git20161216-1.dsc
 281c4161632a5bbc1014b71f34aeaddde8b149c2a1a114dd24a6052681943fa3 410236 
lighttpd_1.4.43+git20161216.orig.tar.xz
 89a0ebd221e56dc933e793015011285d2e55134eb3f83e2a29d8594186b7d831 46392 
lighttpd_1.4.43+git20161216-1.debian.tar.xz
 6f5f85e2a2e5e6b47f91daa7c6060498713b14d119279c3f630ee44eab0b5c2b 996426 
lighttpd-dbgsym_1.4.43+git20161216-1_amd64.deb
 6f813d55271f669a7bde874b2eb1ab1fa1fed5683a078da0ab6ae6f68a9ba0e9 62032 
lighttpd-doc_1.4.43+git20161216-1_all.deb
 2aa4cd20c752b9bb723adf86675c01c15460b926ec5d5d93eb0faba9c64c943e 28128 
lighttpd-mod-authn-gssapi-dbgsym_1.4.43+git20161216-1_amd64.deb
 3e79a65043de1b2016911f6f1360cd7e16de4367c13e2f9a44b66c060a9dd021 23226 
lighttpd-mod-authn-gssapi_1.4.43+git20161216-1_amd64.deb
 4d8cf236994d1019212adbf2f7ac5320d1aee4864efd863c6c6950e17760d734 21054 
lighttpd-mod-authn-ldap-dbgsym_1.4.43+git20161216-1_amd64.deb
 d0933a8e6593491f3e49a36f58ea5773e8b00fbf8a50900adfa9ddcc3e012a53 20956 
lighttpd-mod-authn-ldap_1.4.43+git20161216-1_amd64.deb
 810fe91ad1456974da80ccaa075e7695b9dcd2c5e48308a5c4c94af197c0da51 25236 
lighttpd-mod-authn-mysql-dbgsym_1.4.43+git20161216-1_amd64.deb
 c36c19989196f0251dcf994ad8ec988d283a526b79c7f5eff2a9082022cdcb1d 20966 
lighttpd-mod-authn-mysql_1.4.43+git20161216-1_amd64.deb
 17448a79deca34c433d65388bae6fb7aa4ebf15e1fdae3b78ae5fa7fdc8a6a45 40106 
lighttpd-mod-cml-dbgsym_1.4.43+git20161216-1_amd64.deb
 d20fe0a8069d99bbbc47d733c4ae104420a1e9bc465141271ce36437bee6b49b 23916 
lighttpd-mod-cml_1.4.43+git20161216-1_amd64.deb
 ccf2c7c7e81f6f50de30aaa516cba3b579618afc0b166475bf302cea225f8d5d 19956 
lighttpd-mod-geoip-dbgsym_1.4.43+git20161216-1_amd64.deb
 5658cddd2b6ec4599af8fa09ca77bf48b12518653c221ea64c9b9d7462b2a6ae 19766 
lighttpd-mod-geoip_1.4.43+git20161216-1_amd64.deb
 802c24ae483e5a19afb3517afe6218fb9ba6ca9139dc521e056c4aad5da91d4a 35958 
lighttpd-mod-magnet-dbgsym_1.4.43+git20161216-1_amd64.deb
 823390269fb4c508269cd87ab1ccfd4e1467a6c31e059a75ba36284c04f5b14f 24918 
lighttpd-mod-magnet_1.4.43+git20161216-1_amd64.deb
 0df0716099d1719a87e88b0e9f9770eb8ec9fe9d7e80a6db8ab2009a320286d2 22936 
lighttpd-mod-mysql-vhost-dbgsym_1.4.43+git20161216-1_amd64.deb
 15c316930dbaa81547e2d6ded34a007fe730a1c5d8d5fdda2352ae2bea37c2b8 20220 
lighttpd-mod-mysql-vhost_1.4.43+git20161216-1_amd64.deb
 a04e9c8b59cf684c74711f9742caf41f74cd296e8f4a89aa100d9926c0be999f 23596 
lighttpd-mod-trigger-b4-dl-dbgsym_1.4.43+git20161216-1_amd64.deb
 60f46c6ce0933d851df6f8d3514cd10efe01344132eac77f5b6a9c848a988851 21836 
lighttpd-mod-trigger-b4-dl_1.4.43+git20161216-1_amd64.deb
 823e146f508ca0af51528049ef1920dd584f7509bd47fa7daaa868425e4f5c8e 58756 
lighttpd-mod-webdav-dbgsym_1.4.43+git20161216-1_amd64.deb
 e0af2b64e81d6bdd9d666593e613ae94964f31179b9c2c3838ee140419716f53 32300 
lighttpd-mod-webdav_1.4.43+git20161216-1_amd64.deb
 d652eac67378219ebcfd9f1dccd0da9383208b7b09e6aeb9e5d09da539158a39 13602 
lighttpd_1.4.43+git20161216-1_amd64.buildinfo
 c0c2812ffe79979c628792f08c3c16eac6dc40f7c93b476434f92939c50d644f 281374 
lighttpd_1.4.43+git20161216-1_amd64.deb
Files:
 0d38fdc0bdc06996a09a72f69e20076a 3927 httpd optional 
lighttpd_1.4.43+git20161216-1.dsc
 cb81c404ead6098c77d02ebcff924901 410236 httpd optional 
lighttpd_1.4.43+git20161216.orig.tar.xz
 844a0b6aacf5e5eb17338e5a248d8e56 46392 httpd optional 
lighttpd_1.4.43+git20161216-1.debian.tar.xz
 4c9ffd9d4fa6eee96d6af03fcab11040 996426 debug extra 
lighttpd-dbgsym_1.4.43+git20161216-1_amd64.deb
 e16bbf4ce2e570720e7730b7f5f72c94 62032 doc optional 
lighttpd-doc_1.4.43+git20161216-1_all.deb
 ddcb89e60d5d081c71f7679eb2acfe9e 28128 debug extra 
lighttpd-mod-authn-gssapi-dbgsym_1.4.43+git20161216-1_amd64.deb
 c2186ae140e031b0bb4b898733cf91f1 23226 httpd optional 
lighttpd-mod-authn-gssapi_1.4.43+git20161216-1_amd64.deb
 c65b8bbf26713d5fcfe8ea606f13ab9d 21054 debug extra 
lighttpd-mod-authn-ldap-dbgsym_1.4.43+git20161216-1_amd64.deb
 fecb2a571b28f59d2fb267324e30896e 20956 httpd optional 
lighttpd-mod-authn-ldap_1.4.43+git20161216-1_amd64.deb
 552542e4680f8b74904dca8e8d672fcf 25236 debug extra 
lighttpd-mod-authn-mysql-dbgsym_1.4.43+git20161216-1_amd64.deb
 a23a43a4a6282f185869bbe0c9ef4fcd 20966 httpd optional 
lighttpd-mod-authn-mysql_1.4.43+git20161216-1_amd64.deb
 29313942e089576d3b0739ce25f0f9a0 40106 debug extra 
lighttpd-mod-cml-dbgsym_1.4.43+git20161216-1_amd64.deb
 915569a9d87ebe7bb6495b3a049c3ad2 23916 httpd optional 
lighttpd-mod-cml_1.4.43+git20161216-1_amd64.deb
 574d241cb13041ba55c722c4cc78e4bc 19956 debug extra 
lighttpd-mod-geoip-dbgsym_1.4.43+git20161216-1_amd64.deb
 67a7e927539a4310d04fc79e796850fc 19766 httpd optional 
lighttpd-mod-geoip_1.4.43+git20161216-1_amd64.deb
 7351581c81aab6a3e6a5a50467fc0879 35958 debug extra 
lighttpd-mod-magnet-dbgsym_1.4.43+git20161216-1_amd64.deb
 ef8fe995209a29e0e93d49e18d7c799a 24918 httpd optional 
lighttpd-mod-magnet_1.4.43+git20161216-1_amd64.deb
 590d3f962ace1460d9d0f3705ce2d3b8 22936 debug extra 
lighttpd-mod-mysql-vhost-dbgsym_1.4.43+git20161216-1_amd64.deb
 b7524769d2c8381e6063a6742bc5a07b 20220 httpd optional 
lighttpd-mod-mysql-vhost_1.4.43+git20161216-1_amd64.deb
 d474c3ec7dc3a07250d4881b1ab2a142 23596 debug extra 
lighttpd-mod-trigger-b4-dl-dbgsym_1.4.43+git20161216-1_amd64.deb
 9ec3726ec8bfda2a43bafa2fbb57c95f 21836 httpd optional 
lighttpd-mod-trigger-b4-dl_1.4.43+git20161216-1_amd64.deb
 60d4403b764dbb1c43148df56661ea99 58756 debug extra 
lighttpd-mod-webdav-dbgsym_1.4.43+git20161216-1_amd64.deb
 a2da3ee91e6c441b9218ca88a5baacfc 32300 httpd optional 
lighttpd-mod-webdav_1.4.43+git20161216-1_amd64.deb
 4adef14188b9e9049b92986a4b3038f1 13602 httpd optional 
lighttpd_1.4.43+git20161216-1_amd64.buildinfo
 63d94bfe08eb9f888e7a353bb20e8cd2 281374 httpd optional 
lighttpd_1.4.43+git20161216-1_amd64.deb

-----BEGIN PGP SIGNATURE-----

iQQzBAEBCgAdFiEEluhy7ASCBulP9FUWuNayzQLW9HMFAlhXRrwACgkQuNayzQLW
9HPA/B/+JNvGZxc9et7PhrCaOQCiQyV8pCzQNQQhLxawwb1pR0JWRPhplBMt07n7
ZItV3FLEp0P9RD5cysmx92ueVWOIeOBRuWtXDvuJ2GnPlQhEJ+Sf918oN7pf2NP5
T6ddPCaN7oFSnzku69upwPJhVQivX5GHDcMCyLX04nI6RcUbzPPxaFKYSbU0RUtR
zuWq1AIqK1ILHOVvlD7JzMHRBwcCQCusBfLahCatD5gl12naLhtnM6adz2BDPXeZ
IyN/12t2OwPSfp5tkam3Wh4c5sb7akAx42wYm/+17BDqI/29UZauqwTaKTasaoeH
JD/jocto8rAlJqgQl8AqeMG/tyTLNaXRqA1rzYVxCymZxdFuJdtH049lLMPy8jmU
OoPJrHQp65Suh61dQrF66gZul/3Q/OwoyMdEKQsoLuS8d2FcNiaP6RC/QiOA4Kji
4CIGPSrt4fqayMry7efoDLIt+dZ/P23J39NOYZ9nVdnLaWByXCHmmCw36RxW6o91
JJAVrkcubHUanyrB+5CUdsE45ZDJ/6pXZYE0UznFu1//ttAnmvAhNIibnLc9jApv
cqD8kxBptwUv3h3vL+19m6OHiGdwoL6yAQ58MThzjgBAPuReFu/vQ+suTqeCAN4M
F+jWLGvRRmUgEmXJDZYjVwMRBMiTRJ+prX+d02ut4BxUx7iLKshXIAaScvq2v5y/
y+VwOhF8+q/u3sn/sBKc47KDqZejTFnsNqZBH0KPpDrQl3ZthPUr02ohDgnDDpQ1
V6pOPqYJS9YOMROQoRq5zXJSZXCq2cIhxSdYgx8uZedk91LpKosWTnw6jnOG++EF
wat+mC+I9M8TgqV8GoteFEjSuz/glU2GWsdS3cm5yp/Uf2bB64D1iYa8kieiF5sW
aL5LxQyKlKBNMs71F+HnD736hlNt3g1iMjxvfBjXmvSAJciUnyZsv7pUyl2IBhk/
6YNiASvYPNrFnqKqa/9huv0dxvTwcDKoLTM3VuDJ4kwu+v9BLv7CHst3WN9Qf1U4
sxAlxhCgADPFPmuW0REE3pyeuiSYps1YcoqcgloOCPOTvnFlgZe6MzmCRHRt52VJ
tkXLy4rWX4hWOmUA3cyvR2NzdTY6AYaktPuex8eT1KaE4kBFxMPsV6sNDZu28Gyj
VZXitryiFl+xXxkzhBmyBZB1nes09kK9EBG7bEl5gnPk56d3p1EWU//rMxF70Jcg
KxE//9FAo7sqfWSYb/QcZga77+dmepVvdnq1F0oPqGITZJFE5DexWKD1soi2zgJc
wuETCFF1vcMm4VDm9l/Yt6zE9P5vT7BaRa5E//1zE/wWucKhcQhUNTcEnI/rEmtS
iaL7BIGIE7OP2Lw+MLmlOzapDuPRiw==
=Ru7L
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to