Bug#857701: nmu: lzo2_2.08-1.2

2017-03-13 Thread Carlos Maddela
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: binnmu

Hello,

Trying to link against this library in Sid fails with this message:

> /usr/bin/ld: 
> /usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/liblzo2.a(lzo1x_1.o):
>  relocation R_X86_64_PC32 against symbol `memset@@GLIBC_2.2.5' can not be 
> used when making a shared object; recompile with -fPIC

Rebuilding the package without any changes fixes the problem.

nmu lzo2_2.08-1.2 . ANY . unstable . -m "Rebuild with -fPIC"

Thanks.

-- System Information:
Debian Release: 9.0
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)



Bug#857697: unblock: netcat-openbsd/1.130-3

2017-03-13 Thread Guilhem Moulin
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package netcat-openbsd

Since 1.110 nc(1) no longer shutdown network sockets when stdin closes.
This is a deliberate upstream decision, which can be reverted with the
new ‘-N’ flag [0].

For better compatibility with GNU netcat we've added a quit timer
(defaulting to -q0 since 1.89-4) to quit immediately after EOF.  However
our patch wasn't modified properly, and the upstream's new behavior with
respect to shutdown(2) lead to a regression in 1.130-1 and 1.130-2.

I'd like to upload 1.130-3 to Stretch as the regression affects libvirt
and QEMU users which use nc(1) to talk to remote hypervisor sockets, cf.
#854292.  Since 1.130-3 nc(1) defaults to ‘-q-1’ (matching upstream's
behavior), and ‘-q0’ is a mere alias for ‘-N’ (it was a no-op before).
Furthermore the new patch is also simpler, so we're reducing our delta
with upstream :-).  Debdiff enclosed.

unblock netcat-openbsd/1.130-3

-- 
Guilhem.

[0] 
http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin/nc/netcat.c?rev=1.111=text/x-cvsweb-markup
[1] 
https://anonscm.debian.org/cgit/collab-maint/netcat-openbsd.git/tree/debian/patches/0005-quit-timer.patch
diff -Nru netcat-openbsd-1.130/debian/changelog 
netcat-openbsd-1.130/debian/changelog
--- netcat-openbsd-1.130/debian/changelog   2017-01-26 09:51:13.0 
+0100
+++ netcat-openbsd-1.130/debian/changelog   2017-03-06 09:48:36.0 
+0100
@@ -1,3 +1,12 @@
+netcat-openbsd (1.130-3) unstable; urgency=medium
+
+  * Change defaults from "-q0" to "-q-1" to match upstream defaults since the
+introduction of flag "-N" in version 1.110.  Passing a non-negative value
+to "-q" now implies "-N"; in particular, "-q0" is now a mere alias for
+"-N". (Closes: #854292)
+
+ -- Guilhem Moulin   Fri, 03 Mar 2017 20:32:55 +0100
+
 netcat-openbsd (1.130-2) unstable; urgency=medium
 
   * Fix handling of delayed exit option (Closes: #849192, LP: #1656785)
diff -Nru netcat-openbsd-1.130/debian/patches/0005-quit-timer.patch 
netcat-openbsd-1.130/debian/patches/0005-quit-timer.patch
--- netcat-openbsd-1.130/debian/patches/0005-quit-timer.patch   2017-01-26 
09:51:13.0 +0100
+++ netcat-openbsd-1.130/debian/patches/0005-quit-timer.patch   2017-03-06 
09:45:02.0 +0100
@@ -19,14 +19,19 @@
  .Op Fl s Ar source
  .Op Fl T Ar toskeyword
  .Op Fl V Ar rtable
-@@ -171,6 +172,10 @@ Proxy authentication is only supported for HTTP CONNECT 
proxies at present.
+@@ -171,6 +172,15 @@ Proxy authentication is only supported for HTTP CONNECT 
proxies at present.
  Specifies the source port
  .Nm
  should use, subject to privilege restrictions and availability.
 +.It Fl q Ar seconds
-+after EOF on stdin, wait the specified number of seconds and then quit. If
++after EOF on stdin, wait the specified number of
 +.Ar seconds
-+is negative, wait forever.
++and then quit. If
++.Ar seconds
++is negative, wait forever (default).  Specifying a non-negative
++.Ar seconds
++implies
++.Fl N .
  .It Fl r
  Specifies that source and/or destination ports should be chosen randomly
  instead of sequentially within a range or in the order that the system
@@ -38,21 +43,20 @@
  int   nflag;  /* Don't do name look up */
  char   *Pflag;/* Proxy username */
  char   *pflag;/* Localport flag */
-+int qflag = 0; /* Quit after some secs */
++intqflag = -1;/* Quit after some secs */
  int   rflag;  /* Random ports flag */
  char   *sflag;/* Source Address */
  int   tflag;  /* Telnet Emulation */
-@@ -171,6 +172,9 @@ ssize_t fillbuf(int, unsigned char *, size_t *);
+@@ -171,6 +172,8 @@ ssize_t fillbuf(int, unsigned char *, size_t *);
  static int connect_with_timeout(int fd, const struct sockaddr *sa,
  socklen_t salen, int ctimeout);
  
-+int   quit_fd = -1;
 +static void quit();
 +
  int
  main(int argc, char *argv[])
  {
-@@ -195,7 +199,7 @@ main(int argc, char *argv[])
+@@ -195,7 +198,7 @@ main(int argc, char *argv[])
signal(SIGPIPE, SIG_IGN);
  
while ((ch = getopt(argc, argv,
@@ -61,7 +65,7 @@
switch (ch) {
case '4':
family = AF_INET;
-@@ -248,6 +252,11 @@ main(int argc, char *argv[])
+@@ -248,6 +251,13 @@ main(int argc, char *argv[])
case 'p':
pflag = optarg;
break;
@@ -69,49 +73,43 @@
 +  qflag = strtonum(optarg, INT_MIN, INT_MAX, );
 +  if (errstr)
 +  errx(1, "quit timer %s: %s", errstr, optarg);
++  if (qflag >= 0)
++  Nflag = 1;
 +  

Bug#857696: unblock: opendmarc/1.3.2-1

2017-03-13 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package opendmarc

I would like to update opendmarc in stretch for two reasons.  One, I think,
good and the other, so so.  The good reason is that the package documentation
has issues significant enough that people are filing bugs at the RC level
because they think it is broken and they can't figure out how to set it up.  I
think that needs to be fixed.  The so so reason is to bump from a 1.3.2 beta
release to the final.  It's primarily patch to source conversion and a bit of
additional bug fixing.  I think we're better off shipping the final.

In order to make this easier to review, in addition to the full debdiff, I am
including a patches applied upstream only diff to more clearly show the
minimal changes in the upstream code.  I think the risk of updating is
negligible both based on the diff and the lack of issues reported on the
generally very active upstream mailing list (I have waited a bit for this
request to give others a chance to find any problems).

Since it's not clear how much of this the release team will agree is
appropriate, I have not uploaded to unstable, but I have a package that
exactly matches the debdiff built and ready to dput if approved.

unblock opendmarc/1.3.2-1
diff -Nru opendmarc-1.3.2~Beta1/configure opendmarc-1.3.2/configure
--- opendmarc-1.3.2~Beta1/configure	2016-12-18 04:49:44.0 -0500
+++ opendmarc-1.3.2/configure	2017-03-04 08:28:59.0 -0500
@@ -3074,7 +3074,7 @@
 #
 # library version, passed to libtool
 #
-LIBOPENDMARC_VERSION_INFO=$(printf %d:%d:%d 2 1 0)
+LIBOPENDMARC_VERSION_INFO=$(printf %d:%d:%d 2 2 0)
 
 
 #
diff -Nru opendmarc-1.3.2~Beta1/configure.ac opendmarc-1.3.2/configure.ac
--- opendmarc-1.3.2~Beta1/configure.ac	2016-12-18 04:48:45.0 -0500
+++ opendmarc-1.3.2/configure.ac	2017-03-04 08:28:39.0 -0500
@@ -1,7 +1,7 @@
 #   -*- Autoconf -*-
 # Process this file with autoconf to produce a configure script.
 #
-# Copyright (c) 2012-2016, The Trusted Domain Project.  All rights reserved.
+# Copyright (c) 2012-2017, The Trusted Domain Project.  All rights reserved.
 
 # Acceptable arguments to configure are:
 # 	The usual CC= etc.
@@ -33,7 +33,7 @@
 #
 
 m4_define([LIBVERSION_CURRENT], 2)
-m4_define([LIBVERSION_REVISION], 1)
+m4_define([LIBVERSION_REVISION], 2)
 m4_define([LIBVERSION_AGE], 0)
 
 #
diff -Nru opendmarc-1.3.2~Beta1/contrib/init/generic/Makefile.in opendmarc-1.3.2/contrib/init/generic/Makefile.in
--- opendmarc-1.3.2~Beta1/contrib/init/generic/Makefile.in	2016-12-18 04:49:46.0 -0500
+++ opendmarc-1.3.2/contrib/init/generic/Makefile.in	2017-03-04 08:28:57.0 -0500
@@ -289,9 +289,9 @@
 	  exit 1;; \
 	  esac; \
 	done; \
-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu contrib/init/generic/Makefile'; \
+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign contrib/init/generic/Makefile'; \
 	$(am__cd) $(top_srcdir) && \
-	  $(AUTOMAKE) --gnu contrib/init/generic/Makefile
+	  $(AUTOMAKE) --foreign contrib/init/generic/Makefile
 .PRECIOUS: Makefile
 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 	@case '$?' in \
diff -Nru opendmarc-1.3.2~Beta1/contrib/init/redhat/Makefile.in opendmarc-1.3.2/contrib/init/redhat/Makefile.in
--- opendmarc-1.3.2~Beta1/contrib/init/redhat/Makefile.in	2016-12-18 04:49:46.0 -0500
+++ opendmarc-1.3.2/contrib/init/redhat/Makefile.in	2017-03-04 08:28:57.0 -0500
@@ -289,9 +289,9 @@
 	  exit 1;; \
 	  esac; \
 	done; \
-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu contrib/init/redhat/Makefile'; \
+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign contrib/init/redhat/Makefile'; \
 	$(am__cd) $(top_srcdir) && \
-	  $(AUTOMAKE) --gnu contrib/init/redhat/Makefile
+	  $(AUTOMAKE) --foreign contrib/init/redhat/Makefile
 .PRECIOUS: Makefile
 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 	@case '$?' in \
diff -Nru opendmarc-1.3.2~Beta1/contrib/Makefile.in opendmarc-1.3.2/contrib/Makefile.in
--- opendmarc-1.3.2~Beta1/contrib/Makefile.in	2016-12-18 04:49:45.0 -0500
+++ opendmarc-1.3.2/contrib/Makefile.in	2017-03-04 08:28:57.0 -0500
@@ -350,9 +350,9 @@
 	  exit 1;; \
 	  esac; \
 	done; \
-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu contrib/Makefile'; \
+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign contrib/Makefile'; \
 	$(am__cd) $(top_srcdir) && \
-	  $(AUTOMAKE) --gnu contrib/Makefile
+	  $(AUTOMAKE) --foreign contrib/Makefile
 .PRECIOUS: Makefile
 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 	@case '$?' in \
diff -Nru opendmarc-1.3.2~Beta1/contrib/rddmarc/Makefile.in opendmarc-1.3.2/contrib/rddmarc/Makefile.in
--- opendmarc-1.3.2~Beta1/contrib/rddmarc/Makefile.in	2016-12-18 04:49:46.0 -0500
+++ opendmarc-1.3.2/contrib/rddmarc/Makefile.in	2017-03-04 08:28:57.0 -0500
@@ -294,9 +294,9 @@
 	  exit 1;; \
 	  esac; \
 	

Bug#857684: marked as done (unblock: ksirk/4:16.04.0-1.1)

2017-03-13 Thread Debian Bug Tracking System
Your message dated Mon, 13 Mar 2017 22:36:51 +
with message-id 
and subject line unblock ksirk
has caused the Debian Bug report #857684,
regarding unblock: ksirk/4:16.04.0-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 ow...@bugs.debian.org
immediately.)


-- 
857684: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=857684
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
Tags: patch
User: release.debian@packages.debian.org
Usertags: unblock

Hi!

ksirk 4:16.04.0-1.1 contains a trivial patch which fixes the
FTBFS of ksirk on all architectures where char is unsigned
by default.

Thanks,
Adrian

unblock ksirk/4:16.04.0-1.1

-- System Information:
Debian Release: 9.0
  APT prefers buildd-unstable
  APT policy: (500, 'buildd-unstable'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru ksirk-16.04.0/debian/changelog ksirk-16.04.0/debian/changelog
--- ksirk-16.04.0/debian/changelog  2016-05-21 23:36:29.0 +0200
+++ ksirk-16.04.0/debian/changelog  2017-03-06 10:44:11.0 +0100
@@ -1,3 +1,11 @@
+ksirk (4:16.04.0-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Add patch: fix-signage-of-tbl-array.diff to fix FTBFS on
+architectures where 'char' is unsigned. (Closes: #856904)
+
+ -- John Paul Adrian Glaubitz   Mon, 06 Mar 2017 
10:44:11 +0100
+
 ksirk (4:16.04.0-1) unstable; urgency=medium
 
   [ Automatic packaging ]
diff -Nru ksirk-16.04.0/debian/patches/fix-signage-of-tbl-array.diff 
ksirk-16.04.0/debian/patches/fix-signage-of-tbl-array.diff
--- ksirk-16.04.0/debian/patches/fix-signage-of-tbl-array.diff  1970-01-01 
01:00:00.0 +0100
+++ ksirk-16.04.0/debian/patches/fix-signage-of-tbl-array.diff  2017-03-06 
10:41:34.0 +0100
@@ -0,0 +1,15 @@
+Description: Fix signage of tbl array in XMPP code
+Author: John Paul Adrian Glaubitz 
+Last-Update: 2017-03-06
+
+--- ksirk-16.04.0.orig/ksirk/iris/src/xmpp/base64/base64.cpp
 ksirk-16.04.0/ksirk/iris/src/xmpp/base64/base64.cpp
+@@ -45,7 +45,7 @@ QByteArray Base64::decode(const QString&
+   // 64 specifies eof
+   // everything else specifies data
+ 
+-  char tbl[] = {
++  signed char tbl[] = {
+   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
+   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
+   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,62,-1,-1,-1,63,
diff -Nru ksirk-16.04.0/debian/patches/series 
ksirk-16.04.0/debian/patches/series
--- ksirk-16.04.0/debian/patches/series 1970-01-01 01:00:00.0 +0100
+++ ksirk-16.04.0/debian/patches/series 2017-03-06 10:44:09.0 +0100
@@ -0,0 +1 @@
+fix-signage-of-tbl-array.diff
--- End Message ---
--- Begin Message ---
Unblocked ksirk.--- End Message ---


Bug#857684: unblock: ksirk/4:16.04.0-1.1

2017-03-13 Thread John Paul Adrian Glaubitz
Package: release.debian.org
Severity: normal
Tags: patch
User: release.debian@packages.debian.org
Usertags: unblock

Hi!

ksirk 4:16.04.0-1.1 contains a trivial patch which fixes the
FTBFS of ksirk on all architectures where char is unsigned
by default.

Thanks,
Adrian

unblock ksirk/4:16.04.0-1.1

-- System Information:
Debian Release: 9.0
  APT prefers buildd-unstable
  APT policy: (500, 'buildd-unstable'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru ksirk-16.04.0/debian/changelog ksirk-16.04.0/debian/changelog
--- ksirk-16.04.0/debian/changelog  2016-05-21 23:36:29.0 +0200
+++ ksirk-16.04.0/debian/changelog  2017-03-06 10:44:11.0 +0100
@@ -1,3 +1,11 @@
+ksirk (4:16.04.0-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Add patch: fix-signage-of-tbl-array.diff to fix FTBFS on
+architectures where 'char' is unsigned. (Closes: #856904)
+
+ -- John Paul Adrian Glaubitz   Mon, 06 Mar 2017 
10:44:11 +0100
+
 ksirk (4:16.04.0-1) unstable; urgency=medium
 
   [ Automatic packaging ]
diff -Nru ksirk-16.04.0/debian/patches/fix-signage-of-tbl-array.diff 
ksirk-16.04.0/debian/patches/fix-signage-of-tbl-array.diff
--- ksirk-16.04.0/debian/patches/fix-signage-of-tbl-array.diff  1970-01-01 
01:00:00.0 +0100
+++ ksirk-16.04.0/debian/patches/fix-signage-of-tbl-array.diff  2017-03-06 
10:41:34.0 +0100
@@ -0,0 +1,15 @@
+Description: Fix signage of tbl array in XMPP code
+Author: John Paul Adrian Glaubitz 
+Last-Update: 2017-03-06
+
+--- ksirk-16.04.0.orig/ksirk/iris/src/xmpp/base64/base64.cpp
 ksirk-16.04.0/ksirk/iris/src/xmpp/base64/base64.cpp
+@@ -45,7 +45,7 @@ QByteArray Base64::decode(const QString&
+   // 64 specifies eof
+   // everything else specifies data
+ 
+-  char tbl[] = {
++  signed char tbl[] = {
+   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
+   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
+   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,62,-1,-1,-1,63,
diff -Nru ksirk-16.04.0/debian/patches/series 
ksirk-16.04.0/debian/patches/series
--- ksirk-16.04.0/debian/patches/series 1970-01-01 01:00:00.0 +0100
+++ ksirk-16.04.0/debian/patches/series 2017-03-06 10:44:09.0 +0100
@@ -0,0 +1 @@
+fix-signage-of-tbl-array.diff


Bug#857674: marked as done (unblock: pd-cyclone/0.2~beta3-2)

2017-03-13 Thread Debian Bug Tracking System
Your message dated Mon, 13 Mar 2017 20:50:00 +
with message-id 
and subject line Re: Bug#857674: unblock: pd-cyclone/0.2~beta3-2
has caused the Debian Bug report #857674,
regarding unblock: pd-cyclone/0.2~beta3-2
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.)


-- 
857674: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=857674
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package pd-cyclone

this fixes a recently discovered piuparts issue (dangling symlinks).
since this is a leave package, impact should be minimal.

unblock pd-cyclone/0.2~beta3-2

-- System Information:
Debian Release: 9.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru pd-cyclone-0.2~beta3/debian/changelog 
pd-cyclone-0.2~beta3/debian/changelog
--- pd-cyclone-0.2~beta3/debian/changelog   2016-11-11 12:41:02.0 
+0100
+++ pd-cyclone-0.2~beta3/debian/changelog   2017-03-13 15:19:53.0 
+0100
@@ -1,3 +1,9 @@
+pd-cyclone (0.2~beta3-2) unstable; urgency=medium
+
+  * Fixed symlinks to README.md (Closes: #857156)
+
+ -- IOhannes m zmölnig (Debian/GNU)   Mon, 13 Mar 2017 
15:19:53 +0100
+
 pd-cyclone (0.2~beta3-1) unstable; urgency=medium
 
   * New upstream version 0.2~beta3
diff -Nru pd-cyclone-0.2~beta3/debian/links pd-cyclone-0.2~beta3/debian/links
--- pd-cyclone-0.2~beta3/debian/links   2016-11-11 12:41:02.0 +0100
+++ pd-cyclone-0.2~beta3/debian/links   2017-03-13 15:19:53.0 +0100
@@ -1 +1 @@
-usr/lib/pd/extra/cyclone/README.txtusr/share/doc/pd-cyclone/README
+usr/lib/pd/extra/cyclone/README.mdusr/share/doc/pd-cyclone/README
--- End Message ---
--- Begin Message ---
IOhannes m zmoelnig:
> Package: release.debian.org
> Severity: normal
> User: release.debian@packages.debian.org
> Usertags: unblock
> 
> Please unblock package pd-cyclone
> 
> this fixes a recently discovered piuparts issue (dangling symlinks).
> since this is a leave package, impact should be minimal.
> 
> unblock pd-cyclone/0.2~beta3-2
> 
> [...]

Unblocked, thanks.

~Niels--- End Message ---


Bug#857664: marked as done (unblock: pd-ggee/0.26-5)

2017-03-13 Thread Debian Bug Tracking System
Your message dated Mon, 13 Mar 2017 20:48:00 +
with message-id 
and subject line Re: Bug#857664: unblock: pd-ggee/0.26-5
has caused the Debian Bug report #857664,
regarding unblock: pd-ggee/0.26-5
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.)


-- 
857664: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=857664
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package pd-ggee

the uploaded package fixes two bugs that make parts of the package practically
unusable.

- #792720 makes two modules unusable on amd64
- #793827 makes one module unusable on Pd>=0.43 (and even oldstable includes
  0.43)

the upload fixes an additional recently found piuparts problem (dangling
symlink).

thanks for considering

unblock pd-ggee/0.26-5

-- System Information:
Debian Release: 9.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru pd-ggee-0.26/debian/changelog pd-ggee-0.26/debian/changelog
--- pd-ggee-0.26/debian/changelog   2015-06-03 19:57:20.0 +0200
+++ pd-ggee-0.26/debian/changelog   2017-03-13 15:14:16.0 +0100
@@ -1,3 +1,14 @@
+pd-ggee (0.26-5) unstable; urgency=medium
+
+  * Update Vcs-Browser stanza
+  * Added debian/git-tuneclone.sh script
+  * Canonical homepage for Pd-projects
+  * Drop symlink to non-existant examples (Closes: #857161)
+  * Updated "button" to Pd-GUI rewrite (Closes: #793827)
+  * Fixed access to tables on 64bit systems (Closes: #792720)
+
+ -- IOhannes m zmölnig (Debian/GNU)   Mon, 13 Mar 2017 
15:14:16 +0100
+
 pd-ggee (0.26-4) unstable; urgency=medium
 
   [ Hans-Christoph Steiner ]
diff -Nru pd-ggee-0.26/debian/control pd-ggee-0.26/debian/control
--- pd-ggee-0.26/debian/control 2015-06-03 17:10:46.0 +0200
+++ pd-ggee-0.26/debian/control 2017-03-13 15:14:16.0 +0100
@@ -8,9 +8,9 @@
puredata-dev,
quilt (>= 0.46-7~)
 Standards-Version: 3.9.6
-Homepage: http://puredata.info
+Homepage: http://download.puredata.info/ggee
 Vcs-Git: git://anonscm.debian.org/pkg-multimedia/pd-ggee.git
-Vcs-Browser: http://git.debian.org/?p=pkg-multimedia/pd-ggee.git;a=summary
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-multimedia/pd-ggee.git
 
 Package: pd-ggee
 Architecture: any
diff -Nru pd-ggee-0.26/debian/git-tuneclone.sh 
pd-ggee-0.26/debian/git-tuneclone.sh
--- pd-ggee-0.26/debian/git-tuneclone.sh1970-01-01 01:00:00.0 
+0100
+++ pd-ggee-0.26/debian/git-tuneclone.sh2017-03-13 15:14:16.0 
+0100
@@ -0,0 +1,35 @@
+#!/bin/sh
+
+## script to initialize a cloned repository
+## with per (local) repository settings.
+
+# - ignore quilt's .pc/ directory
+# - enable the "--follow-tags" mode for pushing
+
+error() {
+ echo "$@" 1>&2
+}
+
+NAME=$(dpkg-parsechangelog -S Source)
+
+if [ "x${NAME}" = "x" ]; then
+ error "unable to determine package name"
+ error "make sure you run this script within a source package dir"
+ exit 1
+fi
+
+if [ ! -d ".git" ]; then
+ error "it seems like this source package is not under git control"
+ exit 1
+fi
+
+echo "tuning git-repository for ${NAME}"
+git config push.followTags true && echo "enabled push.followTags"
+
+GITEXCLUDE=".git/info/exclude"
+egrep "^/?\.pc/?$" "${GITEXCLUDE}" >/dev/null 2>&1 \
+  || (echo "/.pc/" >> "${GITEXCLUDE}" && echo "ignoring /.pc/")
+
+for branch in pristine-tar upstream master; do
+ git checkout "${branch}"
+done
diff -Nru pd-ggee-0.26/debian/links pd-ggee-0.26/debian/links
--- pd-ggee-0.26/debian/links   2015-06-03 17:07:35.0 +0200
+++ pd-ggee-0.26/debian/links   2017-03-13 15:14:16.0 +0100
@@ -1,2 +1 @@
 usr/lib/pd/extra/ggee/README.txtusr/share/doc/pd-ggee/README
-usr/lib/pd/extra/ggee/examples  usr/share/doc/pd-ggee/examples
diff -Nru pd-ggee-0.26/debian/patches/fix-64bit-arrays.patch 
pd-ggee-0.26/debian/patches/fix-64bit-arrays.patch
--- pd-ggee-0.26/debian/patches/fix-64bit-arrays.patch  1970-01-01 
01:00:00.0 +0100
+++ pd-ggee-0.26/debian/patches/fix-64bit-arrays.patch  2017-03-13 
15:14:16.0 +0100
@@ -0,0 +1,221 @@
+Description: fixing 64bit issues with table access
+ array_getfloatarray() is 

Bug#857674: unblock: pd-cyclone/0.2~beta3-2

2017-03-13 Thread IOhannes m zmoelnig
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package pd-cyclone

this fixes a recently discovered piuparts issue (dangling symlinks).
since this is a leave package, impact should be minimal.

unblock pd-cyclone/0.2~beta3-2

-- System Information:
Debian Release: 9.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru pd-cyclone-0.2~beta3/debian/changelog 
pd-cyclone-0.2~beta3/debian/changelog
--- pd-cyclone-0.2~beta3/debian/changelog   2016-11-11 12:41:02.0 
+0100
+++ pd-cyclone-0.2~beta3/debian/changelog   2017-03-13 15:19:53.0 
+0100
@@ -1,3 +1,9 @@
+pd-cyclone (0.2~beta3-2) unstable; urgency=medium
+
+  * Fixed symlinks to README.md (Closes: #857156)
+
+ -- IOhannes m zmölnig (Debian/GNU)   Mon, 13 Mar 2017 
15:19:53 +0100
+
 pd-cyclone (0.2~beta3-1) unstable; urgency=medium
 
   * New upstream version 0.2~beta3
diff -Nru pd-cyclone-0.2~beta3/debian/links pd-cyclone-0.2~beta3/debian/links
--- pd-cyclone-0.2~beta3/debian/links   2016-11-11 12:41:02.0 +0100
+++ pd-cyclone-0.2~beta3/debian/links   2017-03-13 15:19:53.0 +0100
@@ -1 +1 @@
-usr/lib/pd/extra/cyclone/README.txtusr/share/doc/pd-cyclone/README
+usr/lib/pd/extra/cyclone/README.mdusr/share/doc/pd-cyclone/README


Bug#857664: unblock: pd-ggee/0.26-5

2017-03-13 Thread IOhannes m zmoelnig
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package pd-ggee

the uploaded package fixes two bugs that make parts of the package practically
unusable.

- #792720 makes two modules unusable on amd64
- #793827 makes one module unusable on Pd>=0.43 (and even oldstable includes
  0.43)

the upload fixes an additional recently found piuparts problem (dangling
symlink).

thanks for considering

unblock pd-ggee/0.26-5

-- System Information:
Debian Release: 9.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru pd-ggee-0.26/debian/changelog pd-ggee-0.26/debian/changelog
--- pd-ggee-0.26/debian/changelog   2015-06-03 19:57:20.0 +0200
+++ pd-ggee-0.26/debian/changelog   2017-03-13 15:14:16.0 +0100
@@ -1,3 +1,14 @@
+pd-ggee (0.26-5) unstable; urgency=medium
+
+  * Update Vcs-Browser stanza
+  * Added debian/git-tuneclone.sh script
+  * Canonical homepage for Pd-projects
+  * Drop symlink to non-existant examples (Closes: #857161)
+  * Updated "button" to Pd-GUI rewrite (Closes: #793827)
+  * Fixed access to tables on 64bit systems (Closes: #792720)
+
+ -- IOhannes m zmölnig (Debian/GNU)   Mon, 13 Mar 2017 
15:14:16 +0100
+
 pd-ggee (0.26-4) unstable; urgency=medium
 
   [ Hans-Christoph Steiner ]
diff -Nru pd-ggee-0.26/debian/control pd-ggee-0.26/debian/control
--- pd-ggee-0.26/debian/control 2015-06-03 17:10:46.0 +0200
+++ pd-ggee-0.26/debian/control 2017-03-13 15:14:16.0 +0100
@@ -8,9 +8,9 @@
puredata-dev,
quilt (>= 0.46-7~)
 Standards-Version: 3.9.6
-Homepage: http://puredata.info
+Homepage: http://download.puredata.info/ggee
 Vcs-Git: git://anonscm.debian.org/pkg-multimedia/pd-ggee.git
-Vcs-Browser: http://git.debian.org/?p=pkg-multimedia/pd-ggee.git;a=summary
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-multimedia/pd-ggee.git
 
 Package: pd-ggee
 Architecture: any
diff -Nru pd-ggee-0.26/debian/git-tuneclone.sh 
pd-ggee-0.26/debian/git-tuneclone.sh
--- pd-ggee-0.26/debian/git-tuneclone.sh1970-01-01 01:00:00.0 
+0100
+++ pd-ggee-0.26/debian/git-tuneclone.sh2017-03-13 15:14:16.0 
+0100
@@ -0,0 +1,35 @@
+#!/bin/sh
+
+## script to initialize a cloned repository
+## with per (local) repository settings.
+
+# - ignore quilt's .pc/ directory
+# - enable the "--follow-tags" mode for pushing
+
+error() {
+ echo "$@" 1>&2
+}
+
+NAME=$(dpkg-parsechangelog -S Source)
+
+if [ "x${NAME}" = "x" ]; then
+ error "unable to determine package name"
+ error "make sure you run this script within a source package dir"
+ exit 1
+fi
+
+if [ ! -d ".git" ]; then
+ error "it seems like this source package is not under git control"
+ exit 1
+fi
+
+echo "tuning git-repository for ${NAME}"
+git config push.followTags true && echo "enabled push.followTags"
+
+GITEXCLUDE=".git/info/exclude"
+egrep "^/?\.pc/?$" "${GITEXCLUDE}" >/dev/null 2>&1 \
+  || (echo "/.pc/" >> "${GITEXCLUDE}" && echo "ignoring /.pc/")
+
+for branch in pristine-tar upstream master; do
+ git checkout "${branch}"
+done
diff -Nru pd-ggee-0.26/debian/links pd-ggee-0.26/debian/links
--- pd-ggee-0.26/debian/links   2015-06-03 17:07:35.0 +0200
+++ pd-ggee-0.26/debian/links   2017-03-13 15:14:16.0 +0100
@@ -1,2 +1 @@
 usr/lib/pd/extra/ggee/README.txtusr/share/doc/pd-ggee/README
-usr/lib/pd/extra/ggee/examples  usr/share/doc/pd-ggee/examples
diff -Nru pd-ggee-0.26/debian/patches/fix-64bit-arrays.patch 
pd-ggee-0.26/debian/patches/fix-64bit-arrays.patch
--- pd-ggee-0.26/debian/patches/fix-64bit-arrays.patch  1970-01-01 
01:00:00.0 +0100
+++ pd-ggee-0.26/debian/patches/fix-64bit-arrays.patch  2017-03-13 
15:14:16.0 +0100
@@ -0,0 +1,221 @@
+Description: fixing 64bit issues with table access
+ array_getfloatarray() is not 64bit-save, instead one must use
+ array_getfloatwords()
+Author: upstream
+Reviewed-by: IOhannes m zmölnig
+Last-Update: 2017-03-13
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- pd-ggee.orig/experimental/tabwrite4~.c
 pd-ggee/experimental/tabwrite4~.c
+@@ -12,9 +12,9 @@
+ t_object x_obj;
+ int x_phase;
+ int x_npoints;
+-float *x_vec;
++t_word *x_vec;
+ t_symbol *x_arrayname;
+-float x_f;
++t_float x_f;
+ t_sample x_1;
+ t_sample x_2;
+ t_sample x_3;
+@@ -22,8 +22,6 @@
+ float x_index;
+ } t_tabwrite4_tilde;
+ 
+-static void tabwrite4_tilde_tick(t_tabwrite4_tilde *x);
+-
+ static void *tabwrite4_tilde_new(t_symbol *s)
+ {
+ t_tabwrite4_tilde *x = (t_tabwrite4_tilde *)pd_new(tabwrite4_tilde_class);
+@@ -34,7 +32,7 @@
+ x->x_2 = 0.;
+   

Processed: Re: Bug#857579: unblock: mbedtls/2.4.2-1 (pre-approval)

2017-03-13 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 confirmed moreinfo
Bug #857579 [release.debian.org] unblock: mbedtls/2.4.2-1 (pre-approval)
Added tag(s) confirmed and moreinfo.

-- 
857579: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=857579
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#857579: unblock: mbedtls/2.4.2-1 (pre-approval)

2017-03-13 Thread Niels Thykier
Control: tags -1 confirmed moreinfo

James Cowgill:
> Package: release.debian.org
> Severity: normal
> User: release.debian@packages.debian.org
> Usertags: unblock
> 
> Hi,
> 
> I am wondering whether it's possible to include mbedtls 2.4.2 in
> stretch. While it does fix an RC security bug (#857560), it also
> contains a lot of other stuff - all of it bugfixes though.
> 
> The diff is attached, but it's pretty bug. There have been a number of
> changes which should have no effect at runtime (lots of documentation /
> comments updates, testsuite updates). Half of the diff is changes to the
> visual studio project files which is obviously irrelevant for Debian.
> 
> If this isn't approved, would cherry picking the 4 security bug fixes
> and their testcases be OK for stretch?
> 
> [...]
> 
> Thanks,
> James
> 
> [...]

Hi,

I have reviewed it and I agree that upstream release looks preferable
with one remark:

 * The test suite appears to be "time-bombed" via
   "tests/data_files/test-ca2_cat-future-invalid.crt".
 * Ideally, the buildability should not expire.
 * Furthermore, its "expire" date is "Sep 22 15:49:49 2023" which is
   uncomfortably close stretch's expected EOL on the LTS release
   (Said EOL is currently estimated to some time in 2022 and counting).

Please resolve that, upload and remove the moreinfo tag once the upload
has been processed and built on all relevant release architectures.

Thanks,
~Niels



Bug#857633: unblock: kscreen/4:5.8.5-2

2017-03-13 Thread Niels Thykier
Control: tags -1 confirmed moreinfo

Maximiliano Curia:
> Package: release.debian.org
> Severity: normal
> User: release.debian@packages.debian.org
> Usertags: unblock
> 
> Dear release team,
> 
> KDE Plasma 5.8 is an LTS release that I consider fit to be updated in 
> stretch. 
> This particular request is for kscreen 5.8.5.
> 
> The fixes included in the kscreen 5.8.5 release are: 
>  translation updates
>  3 bug fixes:
>+ Handle nullptr when there is no Primary Output (d79dc2b)
>+ Improve screen resize when running in a vm (96db1a9 d5b9d37)
>+ Avoid setting the modes in disabled outputs (b4b5046)
> 
> On the Debian side of changes we add the requested upower recommends (#853171)
> 
> I'm attaching the full debdiff, the gitlogs of the upstream changes and the 
> diff of the debian changes.
> 
> Currently the version 5:5.8.5-1 is in experimental, and I'll upload the
> 4:5.8.5-2 version to unstable if this gets approved.
> 
> Please unblock package kscreen
> 
> Happy hacking,
> 
> unblock kscreen/4:5.8.5-2
> [...]

Please go ahead and remove the moreinfo tag once the upload has been
processed and built on all relevant release architectures.

Thanks,
~Niels



Processed: Re: Bug#857633: unblock: kscreen/4:5.8.5-2

2017-03-13 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 confirmed moreinfo
Bug #857633 [release.debian.org] unblock: kscreen/4:5.8.5-2
Added tag(s) confirmed and moreinfo.

-- 
857633: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=857633
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#857638: unblock: manpages-de/1.22-1

2017-03-13 Thread Niels Thykier
Control: tags -1 confirmed moreinfo

Dr. Tobias Quathamer:
> Package: release.debian.org
> Severity: normal
> User: release.debian@packages.debian.org
> Usertags: unblock
> 
> Please unblock package manpages-de. The package provides translations of
> various manpages within Debian, there are no binaries or libs included.
> Since the freeze, there have been many typo fixes and translation
> updates of previously untranslated strings.
> 
> unblock manpages-de/1.22-1
> 
> The package builds fine in a sid chroot. If you approve of this unblock,
> I'll upload to unstable.
> 
> Regards,
> Tobias

Please go ahead and remove the moreinfo tag once the upload has been
processed and built.

Thanks,
~Niels



Processed: Re: Bug#857638: unblock: manpages-de/1.22-1

2017-03-13 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 confirmed moreinfo
Bug #857638 [release.debian.org] unblock: manpages-de/1.22-1
Added tag(s) confirmed and moreinfo.

-- 
857638: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=857638
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#857577: marked as done (unblock: dsniff/2.4b1+debian-24)

2017-03-13 Thread Debian Bug Tracking System
Your message dated Mon, 13 Mar 2017 19:35:00 +
with message-id <539dec82-2ce0-45a6-8e8e-453028dc9...@thykier.net>
and subject line Re: Bug#857577: unblock: dsniff/2.4b1+debian-24
has caused the Debian Bug report #857577,
regarding unblock: dsniff/2.4b1+debian-24
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.)


-- 
857577: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=857577
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package dsniff in order to fix its five grave bugs

Dear release team,

dsniff is to be removed from testing due to five grave bugs
affecting several of its tools:

#715646 [G|P|  ]  arpspoof crashes with exit status 139
#716355 [G|P|  ]  sshmitm crashes with exit status 139
#716457 [G|P|  ]  webmitm crashes with exit status 139
#716458 [G|P|  ]  webspy crashes with exit status 139
#855869 [G|P|  ]  segfaults on portmapper messages

All of them would get fixed with these patches

+ 29_libnet_name2addr4.patch
+ 30_pntohl_shift.patch  
+ 31_sysconf_clocks.patch 
+ 32_rpc_segfault.patch

They are already implemented time ago in Fedora. 

Also i would like to implement some minor changes:

 * Add -g compiler flag
Avoid creating an empty dbgsym package.
 * Pass triplet-prefixed CC to configure.
Closes a minor bug avoiding FTBFS in some archs.
 * Add 33_sshcrypto_DES.patch
Replacing all des_ methods and structs with DES_ equivalents.
Already implemented in OpenBSD
 * Polish, reorder and refresh patches.
Just a cosmetic change.

Thanks for your time and effort to get release stretch!

You can see the full changes in the diff file attached.

Cheers, 
Marcos

unblock dsniff/2.4b1+debian-24

-- System Information:
Debian Release: 9.0
  APT prefers testing-proposed-updates
  APT policy: (500, 'testing-proposed-updates'), (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru dsniff-2.4b1+debian/debian/changelog 
dsniff-2.4b1+debian/debian/changelog
--- dsniff-2.4b1+debian/debian/changelog2016-12-20 22:40:25.0 
+0100
+++ dsniff-2.4b1+debian/debian/changelog2017-02-15 23:42:16.0 
+0100
@@ -1,3 +1,19 @@
+dsniff (2.4b1+debian-24) UNRELEASED; urgency=medium
+
+  * Add -g compiler flag.
+  * Fix FTCBFS: Pass triplet-prefixed CC to configure.
+Thanks to Helmut Grohne (Closes: #852360).
+  * Add four patches from Fedora:
+(Closes: #715646, #716355, #716457, #716458)
++ 29_libnet_name2addr4.patch
++ 30_pntohl_shift.patch
++ 31_sysconf_clocks.patch
++ 32_rpc_segfault.patch (Closes: #855869)
+  * Polish, reorder and refresh patches.
+  * Add 33_sshcrypto_DES.patch
+
+ -- Marcos Fouces   Wed, 15 Feb 2017 23:42:16 +0100
+
 dsniff (2.4b1+debian-23) unstable; urgency=medium
 
   * Assign to pkg-security team (Closes: #847505)
diff -Nru dsniff-2.4b1+debian/debian/copyright 
dsniff-2.4b1+debian/debian/copyright
--- dsniff-2.4b1+debian/debian/copyright2016-12-20 22:39:02.0 
+0100
+++ dsniff-2.4b1+debian/debian/copyright2017-02-15 23:42:16.0 
+0100
@@ -7,7 +7,7 @@
 License: BSD-3-Clause
   
 Files: debian/*
-Copyright: 2016 Marcos Fouces 
+Copyright: 2016-2017 Marcos Fouces 
2013 Andrew Shadura 
2011-2012 William Vera 
2011 Ondřej Surý 
diff -Nru 
dsniff-2.4b1+debian/debian/patches/0001-arpspoof-add-r-switch-to-poison-both-directions.patch
 
dsniff-2.4b1+debian/debian/patches/0001-arpspoof-add-r-switch-to-poison-both-directions.patch
--- 
dsniff-2.4b1+debian/debian/patches/0001-arpspoof-add-r-switch-to-poison-both-directions.patch
   2016-12-20 22:39:02.0 +0100
+++ 
dsniff-2.4b1+debian/debian/patches/0001-arpspoof-add-r-switch-to-poison-both-directions.patch
   1970-01-01 01:00:00.0 +0100
@@ -1,174 +0,0 @@
->From 8fbf0ac15e5fe2df427e3e028f9aa8d96788986a Mon Sep 17 00:00:00 2001
-From: Stefan Tomanek 
-Date: Sun, 6 Nov 2011 22:44:54 +0100
-Subject: [PATCH 1/3] arpspoof: add -r switch to poison both directions
-
-
-Signed-off-by: Stefan Tomanek 

- arpspoof.8 |5 -
- arpspoof.c |   59 

Bug#857611: marked as done (unblock: zfs-linux/0.6.5.9-3)

2017-03-13 Thread Debian Bug Tracking System
Your message dated Mon, 13 Mar 2017 17:37:33 +0100
with message-id <20170313163732.ga31...@ugent.be>
and subject line Re: unblock: zfs-linux/0.6.5.9-3
has caused the Debian Bug report #857611,
regarding unblock: zfs-linux/0.6.5.9-3
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.)


-- 
857611: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=857611
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock zfs-linux/0.6.5.9-3, this update includes some fixes
for specific initramfs setup (merged /usr), autopkgtest fix, as well
as translation updates.

Debdiff is attached.

Regards,
Aron


zfs-linux_0.6.5.9-3.debdiff
Description: Binary data
--- End Message ---
--- Begin Message ---
Hi,

On Mon, Mar 13, 2017 at 05:09:40PM +0800, Aron Xu wrote:
> Please unblock zfs-linux/0.6.5.9-3, this update includes some fixes
> for specific initramfs setup (merged /usr), autopkgtest fix, as well
> as translation updates.

Unblocked by Niels.

Cheers,

Ivo--- End Message ---


Upstream project renamed for trademark reasons: Rename project in Stretch too?

2017-03-13 Thread Matthias Klumpp
Hello!
I ran into an interesting problem with the Terminix package[1].

Upstream was sent a trademark infringement letter from a lawyer of
Terminix, a pest control company, asking upstream to rename the
project, which they did now.
(See [2] for details)
Aside from the issue whether the trademark actually is valid for
software as well, I wonder whether we should rename the project in
Debian for the Stretch release like upstream did.

If the claims are substantial, we might get a "don't use that name"
letter from the same company as well, since we'd be distributing
Terminix under it's old name, making this - kind of - an RC bug.
On the other hand, the software was released under the original name,
so maybe having it in Stretch under that name is fine?

I never faced this issue before, has something like this happened
already in the past?
Any advice on whether and how this should be resolved would be highly
appreciated!

If this trademark violation is equivalent to a RC bug, the only way it
could be solved would be switching to a new upstream release (patching
in a new name isn't really feasible, since the name is used pretty
much everywhere, from filenames to settings and strings in the code).

Cheers,
Matthias

[1]: https://packages.debian.org/sid/terminix
[2]: https://github.com/gnunn1/tilix/issues/815

-- 
I welcome VSRE emails. See http://vsre.info/



Bug#857616: unblock android-sdk-meta/25.0.0+5

2017-03-13 Thread Hans-Christoph Steiner
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package: android-sdk-meta

We had two little packaging glitches since 25.0.0+3, so please unblock
25.0.0+5

Here is the source diff (and attached):

$ debdiff android-sdk-meta_25.0.0+3.dsc android-sdk-meta_25.0.0+5.dsc
dpkg-source: warning: extracting unsigned source package
(/var/cache/pbuilder/result/android-sdk-meta_25.0.0+3.dsc)
diff -Nru android-sdk-meta-25.0.0+3/debian/changelog
android-sdk-meta-25.0.0+5/debian/changelog
--- android-sdk-meta-25.0.0+3/debian/changelog  2017-03-10
22:23:19.0 +0100
+++ android-sdk-meta-25.0.0+5/debian/changelog  2017-03-13
11:43:41.0 +0100
@@ -1,3 +1,15 @@
+android-sdk-meta (25.0.0+5) unstable; urgency=medium
+
+  * correct my git mistake, this has all of +3 and +4
+
+ -- Hans-Christoph Steiner   Mon, 13 Mar 2017 11:43:41 +0100
+
+android-sdk-meta (25.0.0+4) unstable; urgency=medium
+
+  * d/rules: Automate the Debian revision in the versions of binary
packages
+
+ -- Kai-Chung Yan   Mon, 13 Mar 2017 18:07:22 +0800
+
 android-sdk-meta (25.0.0+3) unstable; urgency=medium

   * udev rules for Intel tablets (Closes: #814056)
diff -Nru android-sdk-meta-25.0.0+3/debian/rules
android-sdk-meta-25.0.0+5/debian/rules
--- android-sdk-meta-25.0.0+3/debian/rules  2017-02-28 22:56:53.0
+0100
+++ android-sdk-meta-25.0.0+5/debian/rules  2017-03-13 11:42:15.0
+0100
@@ -1,15 +1,17 @@
 #!/usr/bin/make -f

+include /usr/share/dpkg/pkg-info.mk
+
 export BUILD_TOOLS_VERSION = 24.0.0
 PLATFORM_TOOLS_VERSION = 24.0.0
-DEB_REVISION = +2
+DEB_REVISION = $(shell echo $(DEB_VERSION) | sed
's,.*\+\([0-9][0-9]*\).*,\1,')

 %:
dh $@

 override_dh_gencontrol:
dh_gencontrol
-   dh_gencontrol -pandroid-sdk-platform-tools --
-v$(PLATFORM_TOOLS_VERSION)$(DEB_REVISION)
-   dh_gencontrol -pandroid-sdk-platform-tools-common --
-v$(PLATFORM_TOOLS_VERSION)$(DEB_REVISION)
-   dh_gencontrol -pandroid-sdk-build-tools --
-v$(BUILD_TOOLS_VERSION)$(DEB_REVISION)
-   dh_gencontrol -pandroid-sdk-build-tools-common --
-v$(BUILD_TOOLS_VERSION)$(DEB_REVISION)
+   dh_gencontrol -pandroid-sdk-platform-tools --
-v$(PLATFORM_TOOLS_VERSION)+$(DEB_REVISION)
+   dh_gencontrol -pandroid-sdk-platform-tools-common --
-v$(PLATFORM_TOOLS_VERSION)+$(DEB_REVISION)
+   dh_gencontrol -pandroid-sdk-build-tools --
-v$(BUILD_TOOLS_VERSION)+$(DEB_REVISION)
+   dh_gencontrol -pandroid-sdk-build-tools-common --
-v$(BUILD_TOOLS_VERSION)+$(DEB_REVISION)



diff -Nru android-sdk-meta-25.0.0+3/debian/changelog 
android-sdk-meta-25.0.0+5/debian/changelog
--- android-sdk-meta-25.0.0+3/debian/changelog  2017-03-10 22:23:19.0 
+0100
+++ android-sdk-meta-25.0.0+5/debian/changelog  2017-03-13 11:43:41.0 
+0100
@@ -1,3 +1,15 @@
+android-sdk-meta (25.0.0+5) unstable; urgency=medium
+
+  * correct my git mistake, this has all of +3 and +4
+
+ -- Hans-Christoph Steiner   Mon, 13 Mar 2017 11:43:41 +0100
+
+android-sdk-meta (25.0.0+4) unstable; urgency=medium
+
+  * d/rules: Automate the Debian revision in the versions of binary packages
+
+ -- Kai-Chung Yan   Mon, 13 Mar 2017 18:07:22 +0800
+
 android-sdk-meta (25.0.0+3) unstable; urgency=medium
 
   * udev rules for Intel tablets (Closes: #814056)
diff -Nru android-sdk-meta-25.0.0+3/debian/rules 
android-sdk-meta-25.0.0+5/debian/rules
--- android-sdk-meta-25.0.0+3/debian/rules  2017-02-28 22:56:53.0 
+0100
+++ android-sdk-meta-25.0.0+5/debian/rules  2017-03-13 11:42:15.0 
+0100
@@ -1,15 +1,17 @@
 #!/usr/bin/make -f
 
+include /usr/share/dpkg/pkg-info.mk
+
 export BUILD_TOOLS_VERSION = 24.0.0
 PLATFORM_TOOLS_VERSION = 24.0.0
-DEB_REVISION = +2
+DEB_REVISION = $(shell echo $(DEB_VERSION) | sed 's,.*\+\([0-9][0-9]*\).*,\1,')
 
 %:
dh $@
 
 override_dh_gencontrol:
dh_gencontrol
-   dh_gencontrol -pandroid-sdk-platform-tools -- 
-v$(PLATFORM_TOOLS_VERSION)$(DEB_REVISION)
-   dh_gencontrol -pandroid-sdk-platform-tools-common -- 
-v$(PLATFORM_TOOLS_VERSION)$(DEB_REVISION)
-   dh_gencontrol -pandroid-sdk-build-tools -- 
-v$(BUILD_TOOLS_VERSION)$(DEB_REVISION)
-   dh_gencontrol -pandroid-sdk-build-tools-common -- 
-v$(BUILD_TOOLS_VERSION)$(DEB_REVISION)
+   dh_gencontrol -pandroid-sdk-platform-tools -- 
-v$(PLATFORM_TOOLS_VERSION)+$(DEB_REVISION)
+   dh_gencontrol -pandroid-sdk-platform-tools-common -- 
-v$(PLATFORM_TOOLS_VERSION)+$(DEB_REVISION)
+   dh_gencontrol -pandroid-sdk-build-tools -- 
-v$(BUILD_TOOLS_VERSION)+$(DEB_REVISION)
+   dh_gencontrol -pandroid-sdk-build-tools-common -- 
-v$(BUILD_TOOLS_VERSION)+$(DEB_REVISION)


Bug#857611: unblock: zfs-linux/0.6.5.9-3

2017-03-13 Thread Aron Xu
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock zfs-linux/0.6.5.9-3, this update includes some fixes
for specific initramfs setup (merged /usr), autopkgtest fix, as well
as translation updates.

Debdiff is attached.

Regards,
Aron


zfs-linux_0.6.5.9-3.debdiff
Description: Binary data


Bug#857603: marked as done (unblock: mpi4py/2.0.0-2.1)

2017-03-13 Thread Debian Bug Tracking System
Your message dated Mon, 13 Mar 2017 07:07:00 +
with message-id <19c1fb22-9674-d873-f5fc-18c5ab426...@thykier.net>
and subject line Re: Bug#857603: unblock: mpi4py/2.0.0-2.1
has caused the Debian Bug report #857603,
regarding unblock: mpi4py/2.0.0-2.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 ow...@bugs.debian.org
immediately.)


-- 
857603: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=857603
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package mpi4py

mpi4py in testing (2.0.0-2) FTBFS due to errors in some tests (release
critical bug #856349)
.
2.0.0-2.1 fixes the FTBFS by treating test errors as warnings.

debdiff:
diff -Nru mpi4py-2.0.0/debian/changelog mpi4py-2.0.0/debian/changelog
--- mpi4py-2.0.0/debian/changelog   2016-08-02 22:42:00.0 +0800
+++ mpi4py-2.0.0/debian/changelog   2017-03-08 16:18:00.0 +0800
@@ -1,3 +1,11 @@
+mpi4py (2.0.0-2.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * In debian/rules:override_dh_auto_test, treat test errors as warnings.
+Closes: #856349.
+
+ -- Drew Parsons   Wed, 08 Mar 2017 16:18:00 +0800
+
 mpi4py (2.0.0-2) unstable; urgency=medium
 
   * Point to libm.so.6 in the test, not libm.so (Closes: #817884)
diff -Nru mpi4py-2.0.0/debian/rules mpi4py-2.0.0/debian/rules
--- mpi4py-2.0.0/debian/rules   2016-08-02 22:42:00.0 +0800
+++ mpi4py-2.0.0/debian/rules   2017-03-08 16:18:00.0 +0800
@@ -88,6 +88,7 @@
 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
set -e; for v in $(PY2VERS) $(PY3VERS); do \
  echo "I: testing using python$$v"; \
+   echo "Note: test errors here are treated as warnings"; \
 PYTHONPATH=`/bin/ls -d $(CURDIR)/build/lib.*-$$v` \
  /usr/bin/python$$v /usr/bin/nosetests -v 
--exclude='testPackUnpackExternal' -A "not network" || /bin/true ; \
done



unblock mpi4py/2.0.0-2.1

-- System Information:
Debian Release: 9.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
--- End Message ---
--- Begin Message ---
clone 856349 -1
severity -1 serious
fixed -1 2.0.0-2.1
close -1
thanks

Drew Parsons:
> Package: release.debian.org
> Severity: normal
> User: release.debian@packages.debian.org
> Usertags: unblock
> 
> Please unblock package mpi4py
> 
> mpi4py in testing (2.0.0-2) FTBFS due to errors in some tests (release
> critical bug #856349)
> .
> 2.0.0-2.1 fixes the FTBFS by treating test errors as warnings.
> 
> [...]
> 
> unblock mpi4py/2.0.0-2.1
> 
> [...]

Ok, Unblocked.

I have also cloned #856349 to ensure we can track that the fix migrates
to testing.

Thanks,
~Niels--- End Message ---


Bug#857584: marked as done (unblock: cloud-init/0.7.9-2 (added net-tools as new depends))

2017-03-13 Thread Debian Bug Tracking System
Your message dated Mon, 13 Mar 2017 07:00:00 +
with message-id 
and subject line Re: Bug#857584: unblock: cloud-init/0.7.9-2 (added net-tools 
as new depends)
has caused the Debian Bug report #857584,
regarding unblock: cloud-init/0.7.9-2 (added net-tools as new depends)
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.)


-- 
857584: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=857584
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Dear release team,

Since net-tools is not an essential package anymore, cloud-init must
depend on it otherwise, a cloud image may simply fail to boot without
fixing the image geneartion tool. This is what the -2 release of the
cloud-init package fixes (see diff attached).

Please unblock cloud-init/0.7.9-2

Cheers,

Thomas Goirand (zigo)
diff --git a/debian/changelog b/debian/changelog
index 3060397..2e63258 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+cloud-init (0.7.9-2) unstable; urgency=medium
+
+  * Add net-tools as runtime depends (Closes: #853926).
+  * Add depends: on lsb-base.
+
+ -- Thomas Goirand   Thu, 02 Feb 2017 13:23:41 +
+
 cloud-init (0.7.9-1) unstable; urgency=medium
 
   * New upstream release.
diff --git a/debian/control b/debian/control
index c0c855a..bb8a85e 100644
--- a/debian/control
+++ b/debian/control
@@ -42,7 +42,9 @@ Package: cloud-init
 Architecture: all
 Depends:
   gdisk,
+  lsb-base,
   lsb-release,
+  net-tools,
   ifupdown,
   procps,
   ${misc:Depends},
--- End Message ---
--- Begin Message ---
Thomas Goirand:
> Package: release.debian.org
> Severity: normal
> User: release.debian@packages.debian.org
> Usertags: unblock
> 
> Dear release team,
> 
> Since net-tools is not an essential package anymore, cloud-init must
> depend on it otherwise, a cloud image may simply fail to boot without
> fixing the image geneartion tool. This is what the -2 release of the
> cloud-init package fixes (see diff attached).
> 
> Please unblock cloud-init/0.7.9-2
> 
> Cheers,
> 
> Thomas Goirand (zigo)
> 

Unblocked, thanks.

~Niels--- End Message ---


Bug#857586: marked as done (unblock: gnome-shell/3.22.3-2)

2017-03-13 Thread Debian Bug Tracking System
Your message dated Mon, 13 Mar 2017 07:02:00 +
with message-id <0c2ecb68-310a-1d48-010a-c856f116d...@thykier.net>
and subject line Re: Bug#857586: unblock: gnome-shell/3.22.3-2
has caused the Debian Bug report #857586,
regarding unblock: gnome-shell/3.22.3-2
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.)


-- 
857586: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=857586
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package gnome-shell. It has been in unstable for 10 days
without relevant-looking bug reports.

The relevant hint: unblock gnome-shell/3.22.3-2

This version drops the dependency on telepathy-mission-control-5, and
removes Empathy from the default set of "favourite applications"
pinned to the dock for new users. Telepathy and Empathy are looking
increasingly unmaintained, and have ever-decreasing relevance now that
most major messaging platforms are proprietary "walled gardens" accessed
through a browser or mobile app.

In conjunction with mbiebl's recent meta-gnome3 upload, which is already
in testing, I believe this will drop Telepathy (except for some libraries)
and Empathy out of a default Debian GNOME desktop installation.

gnome-shell used to have support for putting Telepathy instant messaging
accounts online, which is why it has that dependency, but that was removed
some time ago in a redesign of the "system menu". It still watches for
Telepathy conversations and presents them as special-cased notifications,
but that feature is dormant unless you have a Telepathy client like
Empathy or Polari, in which case that client is responsible for depending
on telepathy-mission-control-5 and putting the accounts online.

Thanks,
S
--- End Message ---
--- Begin Message ---
Simon McVittie:
> Package: release.debian.org
> Severity: normal
> User: release.debian@packages.debian.org
> Usertags: unblock
> 
> Please unblock package gnome-shell. It has been in unstable for 10 days
> without relevant-looking bug reports.
> 
> The relevant hint: unblock gnome-shell/3.22.3-2
> 
> This version drops the dependency on telepathy-mission-control-5, and
> removes Empathy from the default set of "favourite applications"
> pinned to the dock for new users. Telepathy and Empathy are looking
> increasingly unmaintained, and have ever-decreasing relevance now that
> most major messaging platforms are proprietary "walled gardens" accessed
> through a browser or mobile app.
> 
> [...]
> 
> Thanks,
> S
> 

Unblocked, thanks.

~Niels--- End Message ---


Bug#857577: unblock: dsniff/2.4b1+debian-24

2017-03-13 Thread Niels Thykier
Hilko Bengen:
> * Niels Thykier:
> 
>>>  * Add 33_sshcrypto_DES.patch
>>> Replacing all des_ methods and structs with DES_ equivalents.
>>> Already implemented in OpenBSD
>>
>> Why is this done? The patch does not explain why this is a good idea (I
>> assume it is, but I am missing the "why").
> 
> Functions and types prefixed with "des_" are deprecated (defined in
> openssl/des_old.h as of OpenSSL 1.0) and have been removed in OpenSSL
> 1.1. The patch description should document this.
> 
> Cheers,
> -Hilko
> 

Hi,

Thanks for the explanation.  I assumed it was something related to an
OpenSSL change, but I wasn't sure.  I am ok with that change as well.

As for the patch description - It says what it does, but it does not
explain why AFAICT:

> diff -Nru dsniff-2.4b1+debian/debian/patches/33_sshcrypto_DES.patch 
> dsniff-2.4b1+debian/debian/patches/33_sshcrypto_DES.patch
> --- dsniff-2.4b1+debian/debian/patches/33_sshcrypto_DES.patch 1970-01-01 
> 01:00:00.0 +0100
> +++ dsniff-2.4b1+debian/debian/patches/33_sshcrypto_DES.patch 2017-02-15 
> 23:42:16.0 +0100
> @@ -0,0 +1,62 @@
> +Description: improves 18_sshcrypto.patch replacing all des_ methods and 
> structs with DES_ equivalents.
> +Author: jca
> +Origin: OpenBSD
> +---
> +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
> +

Thanks,
~Niels