Your message dated Thu, 18 Jul 2013 16:18:53 +0000
with message-id <[email protected]>
and subject line Bug#669895: fixed in mod-gnutls 0.5.10-2
has caused the Debian Bug report #669895,
regarding mod-gnutls: diff for NMU version 0.5.10-1.1
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 [email protected]
immediately.)


-- 
669895: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=669895
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: mod-gnutls
Version: 0.5.10-1
Severity: normal
Tags: patch pending

Dear maintainer,

I've prepared an NMU for mod-gnutls (versioned as 0.5.10-1.1) and uploaded it 
to DELAYED/7. Please feel free to tell me if I should delay it longer.

Regards.
diff -Nru mod-gnutls-0.5.10/debian/changelog mod-gnutls-0.5.10/debian/changelog
--- mod-gnutls-0.5.10/debian/changelog  2011-07-19 18:39:42.000000000 +0200
+++ mod-gnutls-0.5.10/debian/changelog  2012-04-21 09:11:35.000000000 +0200
@@ -1,3 +1,16 @@
+mod-gnutls (0.5.10-1.1) unstable; urgency=low
+
+  [ Bastiaan Franciscus van den Dikkenberg ]
+  * Non-maintainer upload.
+  * Fix "default-tls file for apache" Added default-tls file
+    (Closes: #558232)
+  * Fix "configure: *** memcache library not found."
+    added build-depensie to libapr-memcache-dev (Closes: #497097)
+  * apache2-dev is releplaced by apache2-threaded-dev (Closes: #667626)
+  * DEP-5 url changed in copyright file to new standard
+
+ -- Bastiaan Franciscus van den Dikkenberg <[email protected]>  Sat, 
+ 21 Apr 2012 09:10:49 +0200
+
 mod-gnutls (0.5.10-1) unstable; urgency=low
 
   * New upstream release (Closes: #602957) diff -Nru 
mod-gnutls-0.5.10/debian/control mod-gnutls-0.5.10/debian/control
--- mod-gnutls-0.5.10/debian/control    2011-07-19 18:43:32.000000000 +0200
+++ mod-gnutls-0.5.10/debian/control    2012-04-20 22:34:26.000000000 +0200
@@ -2,7 +2,7 @@
 Section: httpd
 Priority: extra
 Maintainer: Jack Bates <[email protected]>
-Build-Depends: debhelper (>= 8.0.0), autotools-dev, apache2-dev, libgnutls-dev 
(>= 2.4.0), pkg-config
+Build-Depends: debhelper (>= 8.0.0), autotools-dev, 
+apache2-threaded-dev, libgnutls-dev (>= 2.4.0), pkg-config, 
+libapr-memcache-dev
 Standards-Version: 3.9.2
 Homepage: http://www.outoforder.cc/projects/apache/mod_gnutls/
 Vcs-Browser: https://github.com/jablko/debian/tree/master/mod-gnutls
diff -Nru mod-gnutls-0.5.10/debian/copyright mod-gnutls-0.5.10/debian/copyright
--- mod-gnutls-0.5.10/debian/copyright  2011-07-19 19:31:25.000000000 +0200
+++ mod-gnutls-0.5.10/debian/copyright  2012-04-20 12:43:18.000000000 +0200
@@ -1,4 +1,4 @@
-Format: http://dep.debian.net/deps/dep5
+Format: 
+http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: mod_gnutls
 Source: http://www.outoforder.cc/projects/apache/mod_gnutls/
 
diff -Nru mod-gnutls-0.5.10/debian/default-tls 
mod-gnutls-0.5.10/debian/default-tls
--- mod-gnutls-0.5.10/debian/default-tls        1970-01-01 01:00:00.000000000 
+0100
+++ mod-gnutls-0.5.10/debian/default-tls        2012-04-21 09:13:02.000000000 
+0200
@@ -0,0 +1,34 @@
+<IfModule mod_gnutls.c>
+<VirtualHost _default_:443>
+       ServerAdmin webmaster@localhost
+       DocumentRoot /var/www/
+       <Directory />
+               Options FollowSymLinks
+               AllowOverride None
+       </Directory>
+       <Directory /var/www/>
+               Options Indexes FollowSymLinks MultiViews
+               AllowOverride None
+               Order allow,deny
+               allow from all
+       </Directory>
+       ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
+       <Directory "/usr/lib/cgi-bin">
+               AllowOverride None
+               Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
+               Order allow,deny
+               Allow from all
+       </Directory>
+       ErrorLog ${APACHE_LOG_DIR}/error.log
+       # Possible values include: debug, info, notice, warn, error, crit, 
alert, emerg.
+       LogLevel warn
+       CustomLog ${APACHE_LOG_DIR}/ssl_access.log combined
+       #   GnuTLS Switch: Enable/Disable SSL/TLS for this virtual host.
+       GnuTLSEnable On
+       #   A self-signed (snakeoil) certificate can be created by installing 
the ssl-cert package. See /usr/share/doc/apache2.2-common/README.Debian.gz for 
more info.
+       GnuTLSCertificateFile   /etc/ssl/certs/ssl-cert-snakeoil.pem
+       GnuTLSKeyFile /etc/ssl/private/ssl-cert-snakeoil.key
+       #   See 
http://www.outoforder.cc/projects/apache/mod_gnutls/docs/#GnuTLSPriorities
+       GnuTLSPriorities NORMAL
+</VirtualHost>
+</IfModule>
diff -Nru mod-gnutls-0.5.10/debian/rules mod-gnutls-0.5.10/debian/rules
--- mod-gnutls-0.5.10/debian/rules      2010-07-13 02:34:00.000000000 +0200
+++ mod-gnutls-0.5.10/debian/rules      2012-04-20 12:23:07.000000000 +0200
@@ -15,6 +15,7 @@
 
 override_dh_install:
        dh_install debian/gnutls.conf debian/gnutls.load 
etc/apache2/mods-available
+       dh_install debian/default-tls etc/apache2/sites-available/
 
 override_dh_installdocs:
        dh_installdocs README README.ENV



--- End Message ---
--- Begin Message ---
Source: mod-gnutls
Source-Version: 0.5.10-2

We believe that the bug you reported is fixed in the latest version of
mod-gnutls, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Barry deFreese <[email protected]> (supplier of updated mod-gnutls 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.8
Date: Wed, 17 Jul 2013 21:28:51 -0400
Source: mod-gnutls
Binary: libapache2-mod-gnutls
Architecture: source i386
Version: 0.5.10-2
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group <[email protected]>
Changed-By: Barry deFreese <[email protected]>
Description: 
 libapache2-mod-gnutls - Apache module for SSL and TLS encryption with GnuTLS
Closes: 666831 669895
Changes: 
 mod-gnutls (0.5.10-2) unstable; urgency=low
 .
   * QA upload.
   * Set maintainer to Debian QA Group <[email protected]>.
   * Acknowledge NMU. (Closes: #669895).
   * Build with Apache2.4. (Closes: #666831).
     + Remove libapache2-threaded-dev b-d.
     + Add dh-apache2 and apache2-dev b-d.
   * Bump debhelper build-dep and compat to 9.
   * Bump Standards Version to 3.9.4.
Checksums-Sha1: 
 fa86b82e403fed545a8f481b07e9a0a2d45a7094 1351 mod-gnutls_0.5.10-2.dsc
 f655859d42d06fab54ae66145430f6c22b75e255 4854 mod-gnutls_0.5.10-2.debian.tar.gz
 d746dade580289b4984af54d881d56bb17b22316 32534 
libapache2-mod-gnutls_0.5.10-2_i386.deb
Checksums-Sha256: 
 edc58a8b5ddb797d6fc9e61d89eae9aaec1be78bc295abd21e3946a359f34d5f 1351 
mod-gnutls_0.5.10-2.dsc
 63563e3c39f07a7149280d8237849882a16a03d79788f2f271426f87581d5b08 4854 
mod-gnutls_0.5.10-2.debian.tar.gz
 8034d94ad6c3d1b0b902092afed16e0ef46a0435a29ed564ad26c50cea17c2b3 32534 
libapache2-mod-gnutls_0.5.10-2_i386.deb
Files: 
 a8bc85b7d19586aa865fca70afcfcfe3 1351 httpd extra mod-gnutls_0.5.10-2.dsc
 603e4d563b0246345dbfa4ec15595a83 4854 httpd extra 
mod-gnutls_0.5.10-2.debian.tar.gz
 bd9b382386f1d8decd78d71703192a75 32534 httpd extra 
libapache2-mod-gnutls_0.5.10-2_i386.deb

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

iEYEARECAAYFAlHoDtkACgkQ5ItltUs5T348YwCfevg5RJ2P6/IMpIr8tY4lEq2q
6wEAoOD/twjkCoZ2nAW0/qd/Ft8fNqJs
=iyBI
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to