Your message dated Thu, 23 Oct 2014 19:04:10 +0000
with message-id <[email protected]>
and subject line Bug#758286: fixed in nzbget 13.0+dfsg-1
has caused the Debian Bug report #758286,
regarding nzbget: diff for NMU version 12.0+dfsg-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.)


-- 
758286: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=758286
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: nzbget
Version: 12.0+dfsg-1
Severity: normal
Tags: patch pending

Dear maintainer,

I've prepared an NMU for nzbget (versioned as 12.0+dfsg-1.1) and
uploaded it to DELAYED/12. Please feel free to tell me if I
should delay it longer.

  * Rebuild against GnuTLS v3. Closes: #753137
  * 0010_unnecessary_gcryptdep.diff: Only link against gcrypt if
    gnutls << 2.12. Closes: #745958

cu Andreas
-- 
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'
diff -Nru nzbget-12.0+dfsg/debian/changelog nzbget-12.0+dfsg/debian/changelog
--- nzbget-12.0+dfsg/debian/changelog	2014-01-12 15:55:29.000000000 +0100
+++ nzbget-12.0+dfsg/debian/changelog	2014-08-16 11:53:34.000000000 +0200
@@ -1,3 +1,12 @@
+nzbget (12.0+dfsg-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Rebuild against GnuTLS v3. Closes: #753137
+  * 0010_unnecessary_gcryptdep.diff: Only link against gcrypt if
+    gnutls << 2.12. Closes: #745958
+
+ -- Andreas Metzler <[email protected]>  Sat, 16 Aug 2014 11:53:28 +0200
+
 nzbget (12.0+dfsg-1) unstable; urgency=low
 
   * New upstream release
diff -Nru nzbget-12.0+dfsg/debian/control nzbget-12.0+dfsg/debian/control
--- nzbget-12.0+dfsg/debian/control	2014-01-12 15:19:06.000000000 +0100
+++ nzbget-12.0+dfsg/debian/control	2014-08-15 18:21:56.000000000 +0200
@@ -4,7 +4,7 @@
 Maintainer: Andreas Moog <[email protected]>
 Build-Depends: debhelper (>= 9),
                dh-autoreconf,
-               libgnutls-dev,
+               libgnutls28-dev,
                libncurses5-dev,
                libpar2-dev (>= 0.3.1),
                libsigc++-2.0-dev,
diff -Nru nzbget-12.0+dfsg/debian/patches/0010_unnecessary_gcryptdep.diff nzbget-12.0+dfsg/debian/patches/0010_unnecessary_gcryptdep.diff
--- nzbget-12.0+dfsg/debian/patches/0010_unnecessary_gcryptdep.diff	1970-01-01 01:00:00.000000000 +0100
+++ nzbget-12.0+dfsg/debian/patches/0010_unnecessary_gcryptdep.diff	2014-08-16 12:01:45.000000000 +0200
@@ -0,0 +1,71 @@
+Description: Use pkg-config to locate GnuTLS, and only search for
+ and link against libgcrypt if GnuTLS is older than 2.12.
+Author: Andreas Metzler <[email protected]>
+Origin: vendor
+Forwarded: http://nzbget.net/forum/viewtopic.php?f=3&t=1229&p=8812#p8812
+Last-Update: 2014-08-16
+
+--- a/configure.ac
++++ b/configure.ac
+@@ -383,37 +383,32 @@ if test "$USETLS" = "yes"; then
+ 	fi
+ 	
+ 	if test "$TLSLIB" = "GnuTLS" -o "$TLSLIB" = ""; then
+-		INCVAL="${LIBPREF}/include"
+-		LIBVAL="${LIBPREF}/lib"
+-		AC_ARG_WITH(libgnutls_includes,
+-			[AS_HELP_STRING([--with-libgnutls-includes=DIR], [GnuTLS include directory])],
+-			[INCVAL="$withval"])
+-		CPPFLAGS="${CPPFLAGS} -I${INCVAL}"
+-		AC_ARG_WITH(libgnutls_libraries,
+-			[AS_HELP_STRING([--with-libgnutls-libraries=DIR], [GnuTLS library directory])],
+-			[LIBVAL="$withval"])
+-		LDFLAGS="${LDFLAGS} -L${LIBVAL}"
+-
+-		AC_CHECK_HEADER(gnutls/gnutls.h,
+-			FOUND=yes
+-			TLSHEADERS=yes,
+-			FOUND=no)
+-		if test "$FOUND" = "no" -a "$TLSLIB" = "GnuTLS"; then
+-			AC_MSG_ERROR([Couldn't find GnuTLS headers (gnutls.h)])
++		PKG_CHECK_MODULES([GnuTLS], [gnutls >= 2.12],
++			[LIBS="${LIBS} ${GnuTLS_LIBS}"]
++			[CPPFLAGS="${CPPFLAGS} ${GnuTLS_CFLAGS}"]
++			[FOUND=yes],
++			[FOUND=maybe])
++		if test "x$FOUND" = "xmaybe" ; then
++			PKG_CHECK_MODULES([legacy_GnuTLS], [gnutls],
++				[FOUND=legacy],
++				[FOUND=no])
+ 		fi
+-		if test "$FOUND" = "yes"; then
+-			AC_SEARCH_LIBS([gnutls_global_init], [gnutls],
+-				AC_SEARCH_LIBS([gcry_control], [gnutls gcrypt],
+-					FOUND=yes,
+-					FOUND=no),
+-				FOUND=no)
+-			if test "$FOUND" = "no" -a "$TLSLIB" = "GnuTLS"; then
+-				AC_MSG_ERROR([Couldn't find GnuTLS library])
+-			fi
+-			if test "$FOUND" = "yes"; then
+-				TLSLIB="GnuTLS"
+-				AC_DEFINE([HAVE_LIBGNUTLS],1,[Define to 1 to use GnuTLS library for TLS/SSL-support.])
++		AS_IF([test "x$FOUND" = "xlegacy"],
++			AC_MSG_NOTICE(["Found GnuTLS < 2.12. - we need libgcrypt."])
++			AC_SEARCH_LIBS([gcry_control], [gcrypt],
++				[FOUND=yes]
++				[LIBS="${LIBS} ${legacy_GnuTLS_LIBS}"]
++				[CPPFLAGS="${CPPFLAGS} ${legacy_GnuTLS_CFLAGS}"],
++				FOUND=no))
++
++		if test "x$FOUND" = "xno"; then
++			if test "x$TLSLIB" = "xGnuTLS"; then
++				AC_MSG_ERROR([Could not find GnuTLS])
+ 			fi
++		else
++			TLSLIB="GnuTLS"
++			AC_DEFINE([HAVE_LIBGNUTLS],1,
++				  [Define to 1 to use GnuTLS library for TLS/SSL-support.])
+ 		fi
+ 	fi
+ 	
diff -Nru nzbget-12.0+dfsg/debian/patches/series nzbget-12.0+dfsg/debian/patches/series
--- nzbget-12.0+dfsg/debian/patches/series	2014-01-12 15:19:06.000000000 +0100
+++ nzbget-12.0+dfsg/debian/patches/series	2014-08-16 11:50:00.000000000 +0200
@@ -1 +1,2 @@
 0001-dont-embed-libraries.patch
+0010_unnecessary_gcryptdep.diff

Attachment: signature.asc
Description: Digital signature


--- End Message ---
--- Begin Message ---
Source: nzbget
Source-Version: 13.0+dfsg-1

We believe that the bug you reported is fixed in the latest version of
nzbget, 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.
Andreas Moog <[email protected]> (supplier of updated nzbget 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: SHA256

Format: 1.8
Date: Sun, 12 Oct 2014 18:40:14 +0200
Source: nzbget
Binary: nzbget
Architecture: source amd64
Version: 13.0+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Andreas Moog <[email protected]>
Changed-By: Andreas Moog <[email protected]>
Description:
 nzbget     - command-line based binary newsgrabber for nzb files
Closes: 758286 763342
Changes:
 nzbget (13.0+dfsg-1) unstable; urgency=medium
 .
   * Acknowledge NMU (Closes: #758286)
     - Big thanks to Andreas Metzler for the upload
   * New upstream release (Closes: #763342)
   * debian/patches:
     - Refresh 0001-dont-embed-libraries.patch
     - Refresh 0010_unnecessary_gcryptdep.patch
     - Add 0011-fix-potential-buffer-overflow.patch to fix gcc warning
       about a potential buffer overflow.
   * debian/control:
     - Add dependency for libjs-raphael and -elycharts, needed for the web
       interface.
     - Run 'wrap-and-sort -s'
     - Update standards version, no further changes needed
   * debian/nzbget.links:
     - Also use system libjs-raphael and -elycharts libraries
   * debian/nzbget.conf
     - Update sample configuration file to include new options introduced by
       new upstream version.
   * debian/copyright
     - Update years
     - Include note about all javascript libraries that are excluded in the
       source tarball.
Checksums-Sha1:
 462d4ae3870c2dfc4b6088d4bb6e8df5c82bc0c0 1961 nzbget_13.0+dfsg-1.dsc
 e724fb3cc09b66fd1958b088128a764fda73971d 956245 nzbget_13.0+dfsg.orig.tar.gz
 1dc7f148511b3b74cca49e35e0823d9fcce59715 23816 nzbget_13.0+dfsg-1.debian.tar.xz
 d391f2f1e5584a6d4e6086de6a2baa61d08c0406 475940 nzbget_13.0+dfsg-1_amd64.deb
Checksums-Sha256:
 1e49c4736e42111e533311fee7533a8cae6348ba5828799fd77815e64a0b4a72 1961 
nzbget_13.0+dfsg-1.dsc
 66b4bd7631ed7555726536db477a35ac9e6812272cd6954ff3c790b18ba86610 956245 
nzbget_13.0+dfsg.orig.tar.gz
 e2ce90783676d185015a2e80d6437af5dfa26f6116c21edc3e2d4f8906a86fff 23816 
nzbget_13.0+dfsg-1.debian.tar.xz
 484484222e0cffdf180820765ed2de9a7883978e5ae9163547305487ce634904 475940 
nzbget_13.0+dfsg-1_amd64.deb
Files:
 00858c6a4c41d4a4b6576e996ee24b75 1961 net extra nzbget_13.0+dfsg-1.dsc
 d90eb2f0d5e35ded2f20883bdf817ab4 956245 net extra nzbget_13.0+dfsg.orig.tar.gz
 cb37fbf1e086bdd9bda5904cede47111 23816 net extra 
nzbget_13.0+dfsg-1.debian.tar.xz
 6313b212a4e534f02be6f31e341db6cd 475940 net extra nzbget_13.0+dfsg-1_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCAAGBQJUSU+aAAoJEGny/FFupxmT134QAJDSiTBUU2YOJzpri61yPTwL
ECzFfHkcQO3fAqH0/RHiE+d+/QnhYIGrIDd/YTX+9PtxUnCXBNx4LIc5M8G+n18b
tym66QPdZqZZYAifs9O8RNCNssA3/MOnHcgG/23AeGg1ex8vgpc221xzxWTbxIyP
9bRzV4Kryo7TnmrVhcGwXCwFP/bwF1sj4pHQbE4kQLyNIstVzJgIQrhlMqqtVyBk
VbGH55QKDaVXeACQsk8oSr2rWz8dBeXSuU560/7j982yBXVCBHnmYX4/JI6dpLmr
luFnRqgJhmysqjCUuOdV1kBhKFLhR2B3+z7q/2Qv/8d50fq9DsJkIv+hbAISKnkc
8/5duIa2mqsLlqMHXpqO17QhHNbQ1kOMb3SH1FULPUV0pr9b76P3oP0hppk7OQtb
QYKufyvNKw2L8FwhxuaAl66ZPk6ZBee/oAHXkmqUivchiPAvZXs0//rb29U/bi5h
hFJzS3ClxBaEjzcylRRh+ALAu0ns1i/NU44p8bfV4Yet52km5+LfLttmWr9PYLXs
gQYE6G77XMdoXhBbg81082/ORT6T+Dw/3oiTnmTvCwzAYYfVDkcqi62qbuMsskAJ
ZdwkseHHm2y2Z1mNh6QEiL40zwbYp+7sbq6kC27tYRdmsyZagjMQqhjDXauN/N2+
9gp4KsP92RbIxOQKf8E0
=mOoJ
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to