Bug#805370: Any answer from mpage upstream regarding the copyright situation?

2016-09-18 Thread Adrian Bunk
Hi Eriberto,

in [1] you wrote that you will contact mpage upstream regarding the 
copyright situation.

Did you ever receive a reply?

Thanks
Adrian

[1] https://lists.debian.org/debian-legal/2015/10/msg00057.html

-- 

   "Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
   "Only a promise," Lao Er said.
   Pearl S. Buck - Dragon Seed



Bug#827300: ITA

2016-09-18 Thread Adrian Bunk
Control tags 827300 +patch

On Fri, Jun 03, 2016 at 01:01:13AM +0200, Dominik George wrote:
> Hi,

Hi Dominik,

> I have started to update this package to the new 0.9.9 upstream version in 
> collab-maint.

what is the status of this work?

Currently Guacamole is not in testing, and therefore on course for not 
being included in stretch.

If 0.9.9 is not ready for upload soon, can you make at least the minimum 
changes for not having Guacamole dropped completely from stretch?

These would be:
- the trivial fix for #827300 (remove the -Werror from 
  src/protocols/ssh/Makefile.am)
- a fix for #832846 (I have no clue about that one, but Emmanuel or Mike
  might be able to help)
- looking at the upstream changelog, a 0.8.3 -> 0.8.4 update seems to be
  a low hanging fruit
- when doing the uploads, please also change the maintainer field
  of the packages

The perfect solution would be 0.9.9 in stretch, but having 0.8.4 in 
stretch would at least be better than not having Guacamole in stretch.

> Cheers,
> Nik

Thanks
Adrian

-- 

   "Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
   "Only a promise," Lao Er said.
   Pearl S. Buck - Dragon Seed



Bug#838198: 9base: FTBFS on hurd-i386: fatal error:can't create y.tab.h, :1

2016-09-18 Thread Ola Ekström
Package: 9base
Severity: important
Version: 1:6-7
Tags: patch
User: debian-h...@lists.debian.org
Usertags: hurd
X-Debbugs-CC: debian-h...@lists.debian.org

The package fails to build on hurd-i386 because of incorrect values
supplied to fopen() and missing (__GNU__)-defines.

Failing build log:
https://buildd.debian.org/status/package.php?p=9base&suite=sid

The supplied patch fixes this.

TODO: Write a Hurd-specific disksize()-function in lib9/_p9dir.c

Cheers,
Ola Ekström
diff -rupN 9base-6-original/lib9/date.c 9base-6-new/lib9/date.c
--- 9base-6-original/lib9/date.c	2010-06-04 10:46:05.0 +
+++ 9base-6-new/lib9/date.c	2016-09-17 06:11:07.0 +
@@ -8,7 +8,7 @@
 #define _HAVETMZONE 1
 #define _HAVETMTZOFF 1
 
-#if defined(__linux__)
+#if defined(__linux__) || defined(__GNU__)
 #	undef _HAVETMZONE
 #	undef _HAVETMTZOFF
 
diff -rupN 9base-6-original/lib9/dirfwstat.c 9base-6-new/lib9/dirfwstat.c
--- 9base-6-original/lib9/dirfwstat.c	2010-06-04 10:46:05.0 +
+++ 9base-6-new/lib9/dirfwstat.c	2016-09-17 06:11:54.0 +
@@ -4,7 +4,7 @@
 #include 
 #include 
 
-#if defined(__FreeBSD__) || defined(__APPLE__) || defined(__OpenBSD__) || defined(__linux__)
+#if defined(__FreeBSD__) || defined(__APPLE__) || defined(__OpenBSD__) || defined(__linux__) || defined(__GNU__)
 /* do nothing -- futimes exists and is fine */
 
 #elif defined(__SunOS5_9__)
diff -rupN 9base-6-original/lib9/dirread.c 9base-6-new/lib9/dirread.c
--- 9base-6-original/lib9/dirread.c	2010-06-04 10:46:05.0 +
+++ 9base-6-new/lib9/dirread.c	2016-09-17 06:07:55.0 +
@@ -6,7 +6,7 @@
 
 extern int _p9dir(struct stat*, struct stat*, char*, Dir*, char**, char*);
 
-#if defined(__linux__) || defined(__FreeBSD_kernel__)
+#if defined(__linux__) || defined(__FreeBSD_kernel__) || defined(__GNU__)
 static int
 mygetdents(int fd, struct dirent *buf, int n)
 {
diff -rupN 9base-6-original/lib9/libc.h 9base-6-new/lib9/libc.h
--- 9base-6-original/lib9/libc.h	2010-06-04 10:46:05.0 +
+++ 9base-6-new/lib9/libc.h	2016-09-17 21:04:11.0 +
@@ -594,10 +594,17 @@ extern	void		freenetconninfo(NetConnInfo
 #define	MCACHE	0x0010	/* cache some data */
 #define	MMASK	0x0017	/* all bits on */
 
-#define	OREAD	0	/* open for read */
-#define	OWRITE	1	/* write */
-#define	ORDWR	2	/* read and write */
-#define	OEXEC	3	/* execute, == read but check execute permission */
+#if defined(__GNU__)
+ #define	OREAD	O_RDONLY	/* open for read */
+ #define	OWRITE	O_WRONLY	/* write */
+ #define	ORDWR	O_RDWR		/* read and write */
+ #define	OEXEC	O_EXEC		/* execute, == read but check execute permission */
+#else
+ #define	OREAD	0	/* open for read */
+ #define	OWRITE	1	/* write */
+ #define	ORDWR	2	/* read and write */
+ #define	OEXEC	3	/* execute, == read but check execute permission */
+#endif
 #define	OTRUNC	16	/* or'ed in (except for exec), truncate file first */
 #define	OCEXEC	32	/* or'ed in, close on exec */
 #define	ORCLOSE	64	/* or'ed in, remove on close */
diff -rupN 9base-6-original/lib9/u.h 9base-6-new/lib9/u.h
--- 9base-6-original/lib9/u.h	2010-06-04 10:46:05.0 +
+++ 9base-6-new/lib9/u.h	2016-09-17 06:09:40.0 +
@@ -58,7 +58,7 @@ extern "C" {
 
 typedef long p9jmp_buf[sizeof(sigjmp_buf)/sizeof(long)];
 
-#if defined(__linux__)
+#if defined(__linux__) || defined(__GNU__)
 #	include 
 #	if defined(__Linux26__)
 #		include 


Processed: really add the tag

2016-09-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 827300 +patch
Bug #827300 [src:guacamole-server] guacamole-server: FTBFS: 
guac_handlers.c:398:13: error: channel_change_pty_size is deprecated
Added tag(s) patch.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
827300: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=827300
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#838198: 9base: FTBFS on hurd-i386: fatal error:can't create y.tab.h, :1

2016-09-18 Thread Kalle Olavi Niemitalo
sam/_libc.h has:

OREAD = 0,
OWRITE = 1,
ORDWR = 2,
OCEXEC = 4,

but it looks like nothing #includes that file, so perhaps that
doesn't have to be patched.  Have you tested sam on the Hurd?

If these flags are sent in the Topen and Tcreate requests of the
9P protocol, then changing their values breaks compatibility
between network hosts that run different implementations.
Do the Debian packages support that protocol?



Bug#838205: psutils FTCBFS: uses build architecture compiler

2016-09-18 Thread Helmut Grohne
Source: psutils
Version: 1.17.dfsg-3
Tags: patch
User: helm...@debian.org
Usertags: rebootstrap

psutils fails to cross build from source, because it uses the build
architecture compiler. Even though cdbs passes a suitable CC environment
variable, the upstream build system chooses to override that. After
passing CC as a command line variable, the cross build succeeds. Please
consider applying the attached patch.

Helmut
diff --minimal -Nru psutils-1.17.dfsg/debian/changelog 
psutils-1.17.dfsg/debian/changelog
--- psutils-1.17.dfsg/debian/changelog  2016-08-27 03:59:27.0 +0200
+++ psutils-1.17.dfsg/debian/changelog  2016-09-18 14:41:23.0 +0200
@@ -1,3 +1,10 @@
+psutils (1.17.dfsg-3.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTCBFS: Pass CC as a cmdline option to make.  (Closes: #-1) 
+
+ -- Helmut Grohne   Sun, 18 Sep 2016 14:41:00 +0200
+
 psutils (1.17.dfsg-3) unstable; urgency=medium
 
   * Orphan package
diff --minimal -Nru psutils-1.17.dfsg/debian/rules 
psutils-1.17.dfsg/debian/rules
--- psutils-1.17.dfsg/debian/rules  2016-08-27 03:59:27.0 +0200
+++ psutils-1.17.dfsg/debian/rules  2016-09-18 14:40:56.0 +0200
@@ -4,6 +4,10 @@
 export DEB_BUILD_MAINT_OPTIONS = hardening=+all
 DPKG_EXPORT_BUILDFLAGS = 1
 include /usr/share/dpkg/buildflags.mk
+include /usr/share/dpkg/architecture.mk
+ifeq ($(origin CC),default)
+CC = $(DEB_HOST_GNU_TYPE)-gcc
+endif
 
 # Include cdbs rules files.
 include /usr/share/cdbs/1/class/makefile.mk
@@ -11,7 +15,7 @@
 
 CURDIR := $(shell pwd)
 DEB_MAKE_CLEAN_TARGET = realclean
-DEB_MAKE_BUILD_TARGET = prefix=/usr all
+DEB_MAKE_BUILD_TARGET = prefix=/usr CC=$(CC) all
 DEB_MAKE_INSTALL_TARGET = prefix=$(CURDIR)/debian/psutils/usr \
  MANDIR=$(CURDIR)/debian/psutils/usr/share/man/man1 \
  install


Processing of vlock_2.2.2-7_source.changes

2016-09-18 Thread Debian FTP Masters
vlock_2.2.2-7_source.changes uploaded successfully to localhost
along with the files:
  vlock_2.2.2-7.dsc
  vlock_2.2.2-7.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)



Bug#837331: marked as done (vlock: fails to install, remove, and install again)

2016-09-18 Thread Debian Bug Tracking System
Your message dated Sun, 18 Sep 2016 12:53:01 +
with message-id 
and subject line Bug#837331: fixed in vlock 2.2.2-7
has caused the Debian Bug report #837331,
regarding vlock: fails to install, remove, and install again
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.)


-- 
837331: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=837331
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: vlock
Version: 2.2.2-6
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package failed to install,
remove (but not purge), and install again.
Before the second installation the package is in config-files-remaining
state. The configuration is remaining from the last version that was
successfully configured - which is the same version that is going to be
installed again.

Like a plain failure on initial install this makes the package too buggy
for a release, thus the severity.

>From the attached log (scroll to the bottom...):

0m27.8s DEBUG: Starting command: ['chroot', '/tmp/piupartss/tmpvoT99A', 
'apt-get', '-y', 'install', 'vlock=2.2.2-6']
0m29.0s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following NEW packages will be installed:
vlock
  debconf: delaying package configuration, since apt-utils is not installed
  0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
  Need to get 0 B/36.7 kB of archives.
  After this operation, 120 kB of additional disk space will be used.
  dpkg: unrecoverable fatal error, aborting:
   unknown group 'vlock' in statoverride file
  E: Sub-process /usr/bin/dpkg returned an error code (2)
0m29.0s ERROR: Command failed (status=100): ['chroot', 
'/tmp/piupartss/tmpvoT99A', 'apt-get', '-y', 'install', 'vlock=2.2.2-6']


cheers,

Andreas


vlock_2.2.2-6.log.gz
Description: application/gzip
--- End Message ---
--- Begin Message ---
Source: vlock
Source-Version: 2.2.2-7

We believe that the bug you reported is fixed in the latest version of
vlock, 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 837...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Helmut Grohne  (supplier of updated vlock 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: Sun, 18 Sep 2016 14:24:05 +0200
Source: vlock
Binary: vlock
Architecture: source
Version: 2.2.2-7
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Helmut Grohne 
Description:
 vlock  - Virtual Console locking program
Closes: 793901 837331
Changes:
 vlock (2.2.2-7) unstable; urgency=medium
 .
   * QA upload.
   * Do not remove the vlock group: (Closes: #837331)
 Removing the group during package removal is plain broken. And removing it
 at all risks privilege escalations by leaving unowned files that are
 dynamically assigned to a different purpose.
   * Pass CC to configure. (Closes: #793901)
Checksums-Sha1:
 a25f3e21d7fc7d31e95c2786392445f7d1c719a4 1639 vlock_2.2.2-7.dsc
 338b29f5d57c0bad3f02c39b206baf077b8b73f5 9300 vlock_2.2.2-7.debian.tar.xz
Checksums-Sha256:
 f73cd153ec8584990e21892acaad2ac6fb66da0230ac247296bd62676653c0ad 1639 
vlock_2.2.2-7.dsc
 c4b407622437f52cd5c450a434da35e6459432554f84334ff84a32e0b37a281f 9300 
vlock_2.2.2-7.debian.tar.xz
Files:
 3a0971b1ae12346094190abf9ee813e7 1639 utils optional vlock_2.2.2-7.dsc
 03e7d5ed5a320853f939d3a4edfb7600 9300 utils optional 
vlock_2.2.2-7.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJX3olRAAoJEC0aqs8kRERCUNUP/0PTazOFN1LZW/2DWr6CuIpO
lU+mXm/yIEZituiMvBJEX6+Z2vgo5Z8YrIvkcA/IYhNWThm2viemxtOT47xrrehe
ZdLVwv4vchgb+DDyJ7x8UuirY/RjNSTGFKmNduzQ3FiRw/Qjl1LX5Q9uJu8xUiS0
KFrhMAeT55kcocNh6XxvWQsp4rRcCyI5jiRobWLpU6mIGS3nF+FprGwlZTxo8RDw
ycyzl7LqWEc8grgDfemSLXUnwFoov8JirYjSg96LeKpYX5ZGWgEP4Z67B7Y4z5m7
vDFMFVL0MEbiLHRsft7pcuFugbMkQuvJfWKiZc5Mx/3AL7M35/9wVaLy3V1JqdXT
hTVMoZwZfZs5XAO1mLgIhuG2fce1i9qkIz8t934BgdYg4Ar5lxuQUo6JDsmP2E/r
zoMjJb4l1/UROiSpIdAsc/fF7SESYZvTEmcNJ9R3V9ljaJrjZ3tIhzzuiXnv+KRG
lygvEfVkGfBr2d1PDzdTEF2M7nUqepZmF8whh2HC7z/y8ZhKJtNt6amRGF3qusGw
8JAZgBEtFNvg6/gyfIZBE4pppwnvIMzCfJ

Bug#793901: marked as done (vlock FTCBFS: uses wrong compiler)

2016-09-18 Thread Debian Bug Tracking System
Your message dated Sun, 18 Sep 2016 12:53:00 +
with message-id 
and subject line Bug#793901: fixed in vlock 2.2.2-7
has caused the Debian Bug report #793901,
regarding vlock FTCBFS: uses wrong compiler
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.)


-- 
793901: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=793901
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: vlock
Version: 2.2.2-5
Tags: patch
User: helm...@debian.org
Usertags: rebootstrap

vlock FTCBFS. It uses the build arch compiler and thus fails linking
against host arch libraries. I am attaching a failing build log and a
patch that fixes the problem.

Helmut
sbuild (Debian sbuild) 0.65.2 (24 Mar 2015) on misc-debomatic3

╔══╗
║ vlock 2.2.2-5 (CROSS host=arm64/build=amd64)   28 Jul 2015 10:41 ║
╚══╝

Package: vlock
Version: 2.2.2-5
Source Version: 2.2.2-5
Distribution: unstable
Machine Architecture: amd64
Host Architecture: arm64
Build Architecture: amd64

I: NOTICE: Log filtering will replace 'build/vlock-TgWlCF/vlock-2.2.2' with 
'«PKGBUILDDIR»'
I: NOTICE: Log filtering will replace 'build/vlock-TgWlCF' with '«BUILDDIR»'
I: NOTICE: Log filtering will replace 
'var/lib/schroot/mount/unstable-amd64-debomatic-ba7a9374-bd85-47db-955c-d01b00193d49'
 with '«CHROOT»'

┌──┐
│ Chroot Setup Commands│
└──┘


/home/debomatic/debomatic/sbuildcommands/chroot-setup-commands/dpkg-speedup
───


I: Finished running 
'/home/debomatic/debomatic/sbuildcommands/chroot-setup-commands/dpkg-speedup'.

Finished processing commands.


┌──┐
│ Update chroot│
└──┘

Get:1 http://httpredir.debian.org unstable InRelease [200 kB]
Get:2 http://httpredir.debian.org unstable/main Sources/DiffIndex [7876 B]
Get:3 http://httpredir.debian.org unstable/contrib Sources/DiffIndex [7819 B]
Get:4 http://httpredir.debian.org unstable/non-free Sources/DiffIndex [7819 B]
Get:5 http://httpredir.debian.org unstable/main amd64 Packages/DiffIndex [7876 
B]
Get:6 http://httpredir.debian.org unstable/contrib amd64 Packages/DiffIndex 
[7819 B]
Get:7 http://httpredir.debian.org unstable/non-free amd64 Packages/DiffIndex 
[7819 B]
Get:8 http://httpredir.debian.org unstable/main arm64 Packages/DiffIndex [7876 
B]
Get:9 http://httpredir.debian.org unstable/contrib arm64 Packages/DiffIndex 
[7819 B]
Get:10 http://httpredir.debian.org unstable/non-free arm64 Packages/DiffIndex 
[7819 B]
Get:11 http://httpredir.debian.org unstable/contrib Translation-en/DiffIndex 
[7819 B]
Get:12 http://httpredir.debian.org unstable/main Translation-en/DiffIndex [7876 
B]
Get:13 http://httpredir.debian.org unstable/non-free Translation-en/DiffIndex 
[7819 B]
Get:14 http://httpredir.debian.org unstable/main 2015-07-20-2047.52.pdiff [12.4 
kB]
Get:15 http://httpredir.debian.org unstable/main 2015-07-21-0250.43.pdiff [8812 
B]
Get:16 http://httpredir.debian.org unstable/main 2015-07-21-0850.03.pdiff [3397 
B]
Get:17 http://httpredir.debian.org unstable/main 2015-07-21-1449.47.pdiff [18.8 
kB]
Get:18 http://httpredir.debian.org unstable/main 2015-07-21-2049.10.pdiff [8292 
B]
Get:19 http://httpredir.debian.org unstable/main 2015-07-22-0250.18.pdiff [12.2 
kB]
Get:20 http://httpredir.debian.org unstable/main 2015-07-22-0848.26.pdiff [ 
B]
Get:21 http://httpredir.debian.org unstable/main 2015-07-22-1449.38.pdiff [13.7 
kB]
Get:22 http://httpredir.debian.org unstable/main 2015-07-22-2049.44.pdiff [19.5 
kB]
Get:23 http://httpredir.debian.org unstable/main 2015-07-23-0247.58.pdiff [19.4 
kB]
Get:24 http://httpredir.debian.org unstable/main 2015-07-23-0910.58.pdiff [13.2 
kB]
Get:25 http://httpredir.debian.org unstable/main 2015-07-23-1448.36.pdiff [16.0 
kB]
Get:26 http://httpredir.debian.org unstable/main 2015-07-23-2049.31.pdiff [17.1 
kB]
Get:27 http://httpredir.debian.org unstable/main 2015-07-24-0250.04.pdiff [12.6 
kB]
Get:28 http://httpredir.debian.org unstable/main

vlock_2.2.2-7_source.changes ACCEPTED into unstable

2016-09-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 18 Sep 2016 14:24:05 +0200
Source: vlock
Binary: vlock
Architecture: source
Version: 2.2.2-7
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Helmut Grohne 
Description:
 vlock  - Virtual Console locking program
Closes: 793901 837331
Changes:
 vlock (2.2.2-7) unstable; urgency=medium
 .
   * QA upload.
   * Do not remove the vlock group: (Closes: #837331)
 Removing the group during package removal is plain broken. And removing it
 at all risks privilege escalations by leaving unowned files that are
 dynamically assigned to a different purpose.
   * Pass CC to configure. (Closes: #793901)
Checksums-Sha1:
 a25f3e21d7fc7d31e95c2786392445f7d1c719a4 1639 vlock_2.2.2-7.dsc
 338b29f5d57c0bad3f02c39b206baf077b8b73f5 9300 vlock_2.2.2-7.debian.tar.xz
Checksums-Sha256:
 f73cd153ec8584990e21892acaad2ac6fb66da0230ac247296bd62676653c0ad 1639 
vlock_2.2.2-7.dsc
 c4b407622437f52cd5c450a434da35e6459432554f84334ff84a32e0b37a281f 9300 
vlock_2.2.2-7.debian.tar.xz
Files:
 3a0971b1ae12346094190abf9ee813e7 1639 utils optional vlock_2.2.2-7.dsc
 03e7d5ed5a320853f939d3a4edfb7600 9300 utils optional 
vlock_2.2.2-7.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJX3olRAAoJEC0aqs8kRERCUNUP/0PTazOFN1LZW/2DWr6CuIpO
lU+mXm/yIEZituiMvBJEX6+Z2vgo5Z8YrIvkcA/IYhNWThm2viemxtOT47xrrehe
ZdLVwv4vchgb+DDyJ7x8UuirY/RjNSTGFKmNduzQ3FiRw/Qjl1LX5Q9uJu8xUiS0
KFrhMAeT55kcocNh6XxvWQsp4rRcCyI5jiRobWLpU6mIGS3nF+FprGwlZTxo8RDw
ycyzl7LqWEc8grgDfemSLXUnwFoov8JirYjSg96LeKpYX5ZGWgEP4Z67B7Y4z5m7
vDFMFVL0MEbiLHRsft7pcuFugbMkQuvJfWKiZc5Mx/3AL7M35/9wVaLy3V1JqdXT
hTVMoZwZfZs5XAO1mLgIhuG2fce1i9qkIz8t934BgdYg4Ar5lxuQUo6JDsmP2E/r
zoMjJb4l1/UROiSpIdAsc/fF7SESYZvTEmcNJ9R3V9ljaJrjZ3tIhzzuiXnv+KRG
lygvEfVkGfBr2d1PDzdTEF2M7nUqepZmF8whh2HC7z/y8ZhKJtNt6amRGF3qusGw
8JAZgBEtFNvg6/gyfIZBE4pppwnvIMzCfJ0eniW0+4G5muYOMpsQxiI74oPK0Nl4
jh7aKhEGIgRQwySMkrndGP7AS5F6tNRwcIyQRMKYuqUuki6jFCxb5DstZW4iGa4v
NVPIax0Me3VsJ3szXJAp
=4CbJ
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of partimage_0.6.9-1_source.changes

2016-09-18 Thread Debian FTP Masters
partimage_0.6.9-1_source.changes uploaded successfully to localhost
along with the files:
  partimage_0.6.9-1.dsc
  partimage_0.6.9.orig.tar.bz2
  partimage_0.6.9-1.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)



Bug#805370: Any answer from mpage upstream regarding the copyright situation?

2016-09-18 Thread Eriberto Mota
Hi Adrian,

I think that I forgot this issue. I will try contact the upstream.

Thanks for your poke.

Regards,

Eriberto


2016-09-18 5:23 GMT-03:00 Adrian Bunk :
> Hi Eriberto,
>
> in [1] you wrote that you will contact mpage upstream regarding the
> copyright situation.
>
> Did you ever receive a reply?
>
> Thanks
> Adrian
>
> [1] https://lists.debian.org/debian-legal/2015/10/msg00057.html
>
> --
>
>"Is there not promise of rain?" Ling Tan asked suddenly out
> of the darkness. There had been need of rain for many days.
>"Only a promise," Lao Er said.
>Pearl S. Buck - Dragon Seed
>



Processing of ruby-mime_0.4.3-3~bpo8+1_amd64.changes

2016-09-18 Thread Debian FTP Masters
ruby-mime_0.4.3-3~bpo8+1_amd64.changes uploaded successfully to localhost
along with the files:
  ruby-mime_0.4.3-3~bpo8+1.dsc
  ruby-mime_0.4.3-3~bpo8+1.debian.tar.xz
  ruby-mime_0.4.3-3~bpo8+1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)



Processing of ruby-spider_0.5.0-2~bpo8+1_amd64.changes

2016-09-18 Thread Debian FTP Masters
ruby-spider_0.5.0-2~bpo8+1_amd64.changes uploaded successfully to localhost
along with the files:
  ruby-spider_0.5.0-2~bpo8+1.dsc
  ruby-spider_0.5.0-2~bpo8+1.debian.tar.xz
  ruby-spider_0.5.0-2~bpo8+1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)



Processing of ruby-mini-exiftool_2.7.6-2~bpo8+1_amd64.changes

2016-09-18 Thread Debian FTP Masters
ruby-mini-exiftool_2.7.6-2~bpo8+1_amd64.changes uploaded successfully to 
localhost
along with the files:
  ruby-mini-exiftool_2.7.6-2~bpo8+1.dsc
  ruby-mini-exiftool_2.7.6-2~bpo8+1.debian.tar.xz
  ruby-mini-exiftool_2.7.6-2~bpo8+1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)



Bug#805370: mpage licensing

2016-09-18 Thread Eriberto Mota
Hi,

I am a Debian community member.

In my last revision over the mpage packaged in Debian[1], I detected
that the licensing used[2] does not say explicitely about rights to
modify the source code. It can break the liberty to make changes in
source code. This issue was debated here[3] and generated this bug[4]
in Debian.

Considering that mpage is a very importante package for Debian and
other distributions, can you think about relicense your source code?

Thanks a lot in advance.

Regards,

Eriberto

[1] https://packages.qa.debian.org/m/mpage.html
[2] 
http://metadata.ftp-master.debian.org/changelogs/main/m/mpage/unstable_copyright
[3] https://lists.debian.org/debian-legal/2015/10/msg00046.html
[4] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=805370



Processing of partimage_0.6.9-1_source.changes

2016-09-18 Thread Debian FTP Masters
/partimage_0.6.9-1_source.changes is already present on target host:
partimage_0.6.9-1.debian.tar.xz
Either you already uploaded it, or someone else came first.
Job partimage_0.6.9-1_source.changes removed.

Greetings,

Your Debian queue daemon (running on host franck.debian.org)



Processing of isdnutils_3.25+dfsg1-7_source.changes

2016-09-18 Thread Debian FTP Masters
isdnutils_3.25+dfsg1-7_source.changes uploaded successfully to localhost
along with the files:
  isdnutils_3.25+dfsg1-7.dsc
  isdnutils_3.25+dfsg1-7.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)



Processing of metacity-themes_1.0.12_amd64.changes

2016-09-18 Thread Debian FTP Masters
metacity-themes_1.0.12_amd64.changes uploaded successfully to localhost
along with the files:
  metacity-themes_1.0.12.dsc
  metacity-themes_1.0.12.tar.gz
  metacity-themes_1.0.12_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)



isdnutils_3.25+dfsg1-7_source.changes ACCEPTED into unstable

2016-09-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Sep 2016 15:42:19 +0200
Source: isdnutils
Binary: isdnutils-base isdnutils-xtools ipppd isdnlog isdnlog-data 
isdnutils-doc isdnvbox isdnvboxclient isdnvboxserver capiutils pppdcapiplugin
Architecture: source
Version: 1:3.25+dfsg1-7
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Andreas Beckmann 
Description:
 capiutils  - ISDN utilities - tools for CAPI-capable cards
 ipppd  - ISDN utilities - PPP daemon
 isdnlog- ISDN utilities - connection logger
 isdnlog-data - ISDN utilities - connection logger data
 isdnutils-base - ISDN utilities - minimal set
 isdnutils-doc - ISDN utilities - documentation
 isdnutils-xtools - ISDN utilities - graphical tools
 isdnvbox   - ISDN utilities - answering machine dependency package
 isdnvboxclient - ISDN utilities - answering machine client
 isdnvboxserver - ISDN utilities - answering machine server
 pppdcapiplugin - ISDN utilities - pppd plug-in for CAPI support
Closes: 674452 777088
Changes:
 isdnutils (1:3.25+dfsg1-7) unstable; urgency=medium
 .
   * QA upload.
   * Set Maintainer to Debian QA Group.  (See: #661110)
   * Merge changes from experimental.  (Closes: #777088)
   * Merge from Ubuntu:
 - debian/capi.conf:
   + Fix typo for fcdsl2 firmware.
 - debian/control:
   + Switch Build-Depends libreadline-dev to libreadline-gplv2-dev
 since this package appears to be GPLv2.
 - debian/patches/capifax*.patch:
   + Apply patches that were preserved in the 3.0 (quilt)
 migration, but were inadvertently not applied.
 - debian/patches/no-imake.patch:
   + Don't build xisdnload/xmonisdn using xmkmf/imake. This patch
 was dropped in Debian without explanation. It still applies
 and seems to still be a good idea for eventual upstreaming,
 since imake is quite obsolete.
   * Do not ship duplicate files.
   * fix-typos.patch: New, fix typos found by Lintian.
   * format-security.patch: New, fix problems found by -Werror=format-security.
   * hardening.patch: New, ensure all compiler and linker flags are used.
   * Enable hardened build flags.  (Closes: #674452)
   * Update lintian overrides.
Checksums-Sha1:
 d088ccb676f37e85152b19ea1a8eb3ccef80332b 2733 isdnutils_3.25+dfsg1-7.dsc
 5b9a5b44d070cf8cf1af36d29c1c5d8b3fce0b56 184888 
isdnutils_3.25+dfsg1-7.debian.tar.xz
Checksums-Sha256:
 ff7bfda2ea465eaeda72010874ec73fe015d445f71f8124a6fe903e973612f54 2733 
isdnutils_3.25+dfsg1-7.dsc
 a9d3de6a2d114edc51a6cbec2416cc13890b862528c9d5776c8b6ac659483728 184888 
isdnutils_3.25+dfsg1-7.debian.tar.xz
Files:
 fbe41b336be5197e377323567b740650 2733 utils extra isdnutils_3.25+dfsg1-7.dsc
 f45f66aa81bf4002c77b1e0d2ce4dfb0 184888 utils extra 
isdnutils_3.25+dfsg1-7.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJX3q+RAAoJEF+zP5NZ6e0I+PcP/3cPZ0tqqozxpV9GIxUcNXo3
n0OorLFICEjb/JKitItYKA7fnkF4upX1S3/65wqAR0PzBbAeefeXYf7UO/GyY6re
l7ID42okByS5rd+aPlm9kMu0Ut/uhxDcqWs57X1YeEXL/exJ0LA/1MF6OVOi52TT
UkVdhg5HRmZbzZPZTVVCGGktmYeE9To+Hnv4ayyohEdwBPuSPlg/LTH8sLYpX8aK
X1LvzbNnxcfTTz/6EqVPlAf5zU98yCfAJ7yJQVJn7Z+FQuMlaC1ec4RhuDAq1y+3
F4Dyxs3W/2i8ugSb/GCIvR2s6x2MwWEz+PmJK9MCG/C5e51X0PeHe2HPZnroYnQG
aC7E59xFZ5AcM1gA9lo5OowOPdG9eD0llctLdACACNe3hB5aiFy5e4AkWa+HFeE4
pZyA5/vOj6a0JzmY1cFcWjF2YTju+o/8Ugi0JBqxUfz+Sj8WWR++Pw9Z7V72oxFs
uuF5gO+s+H1YjUJMJ29lsAkLXLXCS0MhLtlbWdic0rBk6YWSwzhogx3ki75RIVxk
aP8cRPSbzI5I9pTAYlL5ql9ayk7x8zMFTtNDewKhNAICSrlKkxdZfFq+5uqi2UQY
pQ/EBh5ITBbxgo9D2qS/kCt6HDmfZvWAFfqA9gbxR+nV+Zji7aPku++35KxrlkXJ
gTZpmhGk2cn2/CkkFFub
=1/nY
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



metacity-themes_1.0.12_amd64.changes ACCEPTED into unstable

2016-09-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 18 Sep 2016 17:23:57 +0200
Source: metacity-themes
Binary: metacity-themes
Architecture: source all
Version: 1.0.12
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: gregor herrmann 
Description:
 metacity-themes - Themes for the Gtk2 metacity window manager
Closes: 837221
Changes:
 metacity-themes (1.0.12) unstable; urgency=medium
 .
   * QA upload.
   * Set maintainer to 'Debian QA Group '.
 Cf. #772905
   * Fix "FTBFS: Can't locate debian/themedata.pm in @INC":
 call helper scripts with "perl -I." in debian/rules.
 (Closes: #837221)
Checksums-Sha1:
 e4c01a8ecb8252d8ad0d575fbb69a4baaee84bd5 1578 metacity-themes_1.0.12.dsc
 b0345ce4a69cd1c7d33bae4ceac3d5d0cd6710d7 435432 metacity-themes_1.0.12.tar.gz
 47f7d42fd27ab6b0b355535d6e94311b1e2a7eb9 157438 metacity-themes_1.0.12_all.deb
Checksums-Sha256:
 db2235aa8d0c46fe04873a828200748a05374f321b6e2647f387e8c810342f1b 1578 
metacity-themes_1.0.12.dsc
 ea4d80e8ba50124036feda912788679f5c616d43567e636acf30ef67ddde6003 435432 
metacity-themes_1.0.12.tar.gz
 d7c40bd3da75bac13779887c1610d3505634facf39e10435017f9e71c7ee4b18 157438 
metacity-themes_1.0.12_all.deb
Files:
 2943a08a8751a110caa8ccc2a6740e94 1578 x11 optional metacity-themes_1.0.12.dsc
 64c1715b5b35d47aa443335270bcc643 435432 x11 optional 
metacity-themes_1.0.12.tar.gz
 1e897a2c9a11381f9e18f070aaeb13fb 157438 x11 optional 
metacity-themes_1.0.12_all.deb

-BEGIN PGP SIGNATURE-

iQJ8BAEBCgBmBQJX3rHmXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoG58cP/2BhSQPGOI3GAGKMWWS0vk4V
QJNVgbplDnH0VrwMow41deqHLFI6zvLuUl7sURx8kCAB3wJ0lI+6HBwz22LpBcxN
S41B9Iqzl9mDjeDYrQaKfeZPth4/vOtHZdsGVcHlG2eg71e1Vo2iEnK2Qj2XIlLn
z3NJgl5msn6mMLcP/whvyWMZZpUay6Wp6lU30Q5fW1ag+xb3UdIv9UHz1A44TW1i
OAyTwfHg0BddoUoJoDsGWhdIwiVUIaGvAgPAO7rb/2hlTZ0/r58gs/3HrfjX6Zb+
I3EFawKkmSj7ZUWt8J0jI82/kfBcQ3jCh3W/fco65XKsMCMegFEwtz1dfsLEKPcQ
hJz9ROsxW1u8nCpxe/VXNYFb4RDPnfS1JBmKQRXrM7FWVwpBnviQfqyHNlQd0hN5
oqMkfdwgpmU1J8nt4jo8vtp0FF+Y6UHqIzproSgPrbXgCPVu3TkoJn749ezorjpv
VuRz+iD+Q/ep1H3qC0Sr1aVKU38gyTgmpkQeupOJHQy4dlix1HPgtU/bbEZLFZQU
IWKQwx+RDVYcWshPkEwbUAh7I72ZZgSO4BEECySRnaAISigqbQijTDmPzbp5pZX/
+bE2qAlxpnXbvEq6MC6M/LiRdG4sgJlsslKnmsFOFiJffRKxS2/UOmrEM/X3fh+P
oENIfptzpm/nCdR/5vmJ
=5Gv+
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



partimage_0.6.9-1_source.changes ACCEPTED into unstable

2016-09-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Sep 2016 17:43:25 +1000
Source: partimage
Binary: partimage-server partimage
Architecture: source
Version: 0.6.9-1
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Andrew Worsley 
Description:
 partimage  - backup partitions into a compressed image file
 partimage-server - server to use partimage across a network
Changes:
 partimage (0.6.9-1) unstable; urgency=medium
 .
   * QA upload
   * New upstream release.
   * Bump Standards-Version to 3.9.8. No further changes.
   * Fix spelling error reported by lintian
 - let's replaced by lets
   * Drop patches merged in new upstream release:
 - 01-openssl.patch
 - 02-format-security.patch
   * Rename remaining unapplied patch from previous release.
 - renamed 03-ftbfs-zlib.patch to 01-ftbfs-zlib.patch
Checksums-Sha1:
 5338e100d5f6a43ee275c4f9ae1f99df9564234c 1880 partimage_0.6.9-1.dsc
 3b9804b2289d7876835042a144d5fd1949aef1a4 666522 partimage_0.6.9.orig.tar.bz2
 7a6235a012785f06e0d1ea1d4dc3c29ab7a10b2f 15444 partimage_0.6.9-1.debian.tar.xz
Checksums-Sha256:
 354a28fac5539b22ff24cff531002a8b9773c9443759bf98723058a6f929ec37 1880 
partimage_0.6.9-1.dsc
 753a6c81f4be18033faed365320dc540fe5e58183eaadcd7a5b69b096fec6635 666522 
partimage_0.6.9.orig.tar.bz2
 a10e8e31c4105c04db637e881dc48ab255a4f264e5627c1b6bff5514d264 15444 
partimage_0.6.9-1.debian.tar.xz
Files:
 8b864eee7fd0b0127558633b93558880 1880 admin optional partimage_0.6.9-1.dsc
 1bc046fd915c5debbafc85729464e513 666522 admin optional 
partimage_0.6.9.orig.tar.bz2
 51ae1156667d4922f71749cf38b7de5e 15444 admin optional 
partimage_0.6.9-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIcBAEBCAAGBQJX3qGNAAoJEN5juccE6+nvXfwP/jNtLZS7mk+6HTjOhoJEQeQG
2n4MLZ4U9wFxVyQHoSE90YTRwSFZ8ffBaZb3++aWHzAMgrCAHohwelhVqdVtWWLp
AFXfbnt5cjtckAeoD5zG5286/lWzBLJWljh/ngKpkoprumga4UUDBDo4w3FBh/vY
fQ1uJvfWxlivXxY1ML8YlDXAHqZXCXwFp12bqAvPorCANhF/6kPq5mD2SP7iF0IW
Nlm/kwBidhfb89j2PDqYxGaz8X3wVIXTjoq1lMkmK4EfZXKLAtMTZTKBHuir7RrN
ks3MzLDgzzU6fb2cVReSpmAC8Zqnnp73N7engdVFAkacuCXHNXe5z8GsYNAdhBJu
Me/ch9Ye/m7ah0DvDStqZ0RssHALKQJOuY8zgvCs7qL2yan0wOSVdnleSgGqji6J
e3ReEfuB/9Ri89hS4mRjiQ32ehndKa1frB/Xy4KsCxTei3zJZ7slHb0hbUbY/xmx
9CjbzRz1wDfLqtneVyM19BeCskixqoZrbCjap2/5SbZjjGxPq0aGnvii0LkoYsgz
/uokny//5e8d5LLEJdGVQcX4g1+Sxrze2m6kVvsYQj1asqtYMjiABIZnPk413WZG
4EIez4jVM4JSqM2F545cLaeNsPcIGRJjtRoXYi4nfOInqhMOY8+ItY4Z+Qpplft3
yisO6uM6r0lsNBuWdU1r
=3Niw
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



ruby-mime_0.4.3-3~bpo8+1_amd64.changes ACCEPTED into jessie-backports

2016-09-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 18 Sep 2016 10:35:49 -0300
Source: ruby-mime
Binary: ruby-mime
Architecture: source all
Version: 0.4.3-3~bpo8+1
Distribution: jessie-backports
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Allan Dixon Jr. 
Description:
 ruby-mime  - MIME library for Ruby
Changes:
 ruby-mime (0.4.3-3~bpo8+1) jessie-backports; urgency=medium
 .
   * Rebuild for jessie-backports.
Checksums-Sha1:
 b0422869ec3ef8b740c84d2b3fd0c25294f51b4f 1899 ruby-mime_0.4.3-3~bpo8+1.dsc
 b1fd700d9ebac9d2565cfef3b2e03735998e 2220 
ruby-mime_0.4.3-3~bpo8+1.debian.tar.xz
 b567522ded6210cb075646f4390fcc1ece119c3b 19236 ruby-mime_0.4.3-3~bpo8+1_all.deb
Checksums-Sha256:
 5f47860d8cc4deac3d0dc7ac55d2e3d068f6f4083c70ded62565640c12761655 1899 
ruby-mime_0.4.3-3~bpo8+1.dsc
 9cfd05708a1329127e0d68436fcf8b3c619df4a7ddd417db579bc1853f8af7f0 2220 
ruby-mime_0.4.3-3~bpo8+1.debian.tar.xz
 eabe26f2e8dd6d3fca0a997dfa501eac2794a669394caea8df2eb7b496bc1868 19236 
ruby-mime_0.4.3-3~bpo8+1_all.deb
Files:
 cb5c3658ec7edd951cf7285155a5edf8 1899 ruby optional 
ruby-mime_0.4.3-3~bpo8+1.dsc
 44a8c9a76d1356f359507f48f6e5b3f1 2220 ruby optional 
ruby-mime_0.4.3-3~bpo8+1.debian.tar.xz
 019a3151ad7a975791e6fb44fbf7ac17 19236 ruby optional 
ruby-mime_0.4.3-3~bpo8+1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJX3qVOAAoJEN5juccE6+nvKREQAI+z+Tib/9jJMIT9T6dDn876
Nx+DmJINXid5TTpg5pZMgZmtmjiLoXo8h4CJYGTiu18Skm8PP9wS2ntSPOBgHzEn
KeQ3rQXfFNpgvvVPT/sNhMUXbj+67bHHCc8EqWqjl2QiB4RFrYAU+4r/++YcvoxV
E4DUAW4Rvac/uRdTdW160ifMzY+wCfJCdzesMphlP36Ej/YM5aT77U2gKizQPKNX
vaa2OZRGj/sbdsxnwCKJVCcCGbzMcSeolkuRMyLbnJDdlmP8Rdko1mj5aXpyzX2k
bapH0MiYYrmSV4gkjXtbuqGPbJtEAbTLfYVMZ6vAWgAauK9rt4nDfXDCnFc8WpvH
VJ6HI3A4TYqd3VJK1Fr5J9FyRqxvxB9Q6nkGGYbZ9kiRbAMH80zzHRowJMQouvkY
s1LLD7X65CR3s+0QnnLvuyXRCXb7tK0VnznS3/i74NgEm94AOGEN3usmTRkksEGR
j1HJa6emR4yqNyQnqB1ChaEBpQKhmtLQbyL4y2Z+Acn48dMh8DISIaCXArgEntu3
GNBszSGXYkGPp0ORQVCk/GWseZnxk2QaP6zdSWdPTWBvNK/+I+QUb4vwEh/tzSBL
NaIAEuDmD3BBO7MRKq3eaJpyFTfLm3JrDAswFJpeuKdNaoB918uEHe7Ru8R+Q25H
fTgVNzME0e4breVHPVAC
=UGDH
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



ruby-spider_0.5.0-2~bpo8+1_amd64.changes ACCEPTED into jessie-backports

2016-09-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 18 Sep 2016 10:49:06 -0300
Source: ruby-spider
Binary: ruby-spider
Architecture: source all
Version: 0.5.0-2~bpo8+1
Distribution: jessie-backports
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Allan Dixon Jr. 
Description:
 ruby-spider - web spidering library for Ruby
Changes:
 ruby-spider (0.5.0-2~bpo8+1) jessie-backports; urgency=medium
 .
   * Rebuild for jessie-backports.
Checksums-Sha1:
 470f948baab319c29f35127b8a4551bef152ab42 1933 ruby-spider_0.5.0-2~bpo8+1.dsc
 0a61af38a17eb9c4f83f43bc2f3663c1803e9df7 3100 
ruby-spider_0.5.0-2~bpo8+1.debian.tar.xz
 8ee82586b76be764b988d8062561a3c2f522862b 10680 
ruby-spider_0.5.0-2~bpo8+1_all.deb
Checksums-Sha256:
 5122ef7f49303267f40a3fad20401c5051f7f3e2341c167e05d5ec8f7edb2149 1933 
ruby-spider_0.5.0-2~bpo8+1.dsc
 1ecfc3fa88d2507386c64533f842c0f451712d2b004a5ebb14e9b93a19a2ffd3 3100 
ruby-spider_0.5.0-2~bpo8+1.debian.tar.xz
 c138c26ac9018d9c6f1595a59b30dc28f53b9eb010e28459700b86f77264db6d 10680 
ruby-spider_0.5.0-2~bpo8+1_all.deb
Files:
 6a11831fc23a49a3179dd6abb99a890f 1933 ruby optional 
ruby-spider_0.5.0-2~bpo8+1.dsc
 7ba143a82eea7adc811d4d0b08d31911 3100 ruby optional 
ruby-spider_0.5.0-2~bpo8+1.debian.tar.xz
 893eabdf80684286c02f1ce3ec83579c 10680 ruby optional 
ruby-spider_0.5.0-2~bpo8+1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJX3qXmAAoJEN5juccE6+nvoGIP/1v1H2ORji/Rqe3Bhe1J1PSG
zRoa+9Rd7FfhzwF9eYMXGV9RX003qmajnkiR2yy5vYYbG3riEm7lTnrk0MrkNe3p
cgAfiZ5nOsuYpaJw4NeiFbIZfpC/mmV16NQXYYTv5CU7Ei2iMLJlv+zrrlb3eInx
dZ1CHwITOaPeTzSA/2gNB5h6d6tDieEurFPumFTwe+UQhiYNxaGK2bbOinYKAusv
RAki+9LJP1lWYEIRVePxGJoL+/0Rpunx4iz0yb7Dl3G0BY6JzyolauCnbGIhkkOo
GwC2w4rqkqxhAPr78EOI03X+mkoSs3K95CjY45RZ8GhML+9rARm1X4hPfiux+Ztl
vBR6rNhvEMXEURgcAigdMrfHWkHEO4wc+A+/6DeRxp68YgZk8Y7qGRJwbYhbVHLk
0jc7LaIroF2nlhDOPd3civQI5U1HTX4SGi3E46PXPHQIG2v0gf9ZfCs8QDDxZA2m
5uz7iEgsqkPiXbnPE9khRb96N7Ftk5MZiGk8eE4ZnJnEPoatgN/uhEwazBl5X1eW
cNV9RZ3UtpvKHvlWO0MHFEb3F3L865xlHu2rhzf9KeIAu4xZ3qNDC+a2+kBJ7vOT
L9pUMOSa/gnB/T3gKasz0e5eHJhmBhgfouwMLdVHunBj0zHdeCoDj1fXuAPRHiEG
sk4RD9d/X8IFjrYl/V7e
=IAX4
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



ruby-mini-exiftool_2.7.6-2~bpo8+1_amd64.changes ACCEPTED into jessie-backports

2016-09-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 18 Sep 2016 10:41:35 -0300
Source: ruby-mini-exiftool
Binary: ruby-mini-exiftool
Architecture: source all
Version: 2.7.6-2~bpo8+1
Distribution: jessie-backports
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Allan Dixon Jr. 
Description:
 ruby-mini-exiftool - wrapper for exiftool command-line
Changes:
 ruby-mini-exiftool (2.7.6-2~bpo8+1) jessie-backports; urgency=medium
 .
   * Rebuild for jessie-backports.
Checksums-Sha1:
 9df558adc75109057e61ee25b58aaddf713f3932 2011 
ruby-mini-exiftool_2.7.6-2~bpo8+1.dsc
 ed693c4b620aa167d35f0b3d306eb77cfd41ba20 2904 
ruby-mini-exiftool_2.7.6-2~bpo8+1.debian.tar.xz
 d93b66c777c9e6252c7a5b6a3717c81c945c24c6 18934 
ruby-mini-exiftool_2.7.6-2~bpo8+1_all.deb
Checksums-Sha256:
 83bf3730dd3f00b0f87f3890cbd5a1f4205467a57e6c8a7de3fbc6b63c83e0c0 2011 
ruby-mini-exiftool_2.7.6-2~bpo8+1.dsc
 ea10ef6b3f298a91ccf307ae820e074a38f831dfed2fb95434070cc48224573c 2904 
ruby-mini-exiftool_2.7.6-2~bpo8+1.debian.tar.xz
 293caa7de7c7cff9404a9a3c54572f28dbee4b927e5761d08636b3b19fa15a33 18934 
ruby-mini-exiftool_2.7.6-2~bpo8+1_all.deb
Files:
 1b2c07f2036604e8418c1cc41b593c24 2011 ruby optional 
ruby-mini-exiftool_2.7.6-2~bpo8+1.dsc
 1b725cd246ade40e67aece532283cc63 2904 ruby optional 
ruby-mini-exiftool_2.7.6-2~bpo8+1.debian.tar.xz
 d44e57c83315fbaa9554a21499448e12 18934 ruby optional 
ruby-mini-exiftool_2.7.6-2~bpo8+1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJX3qZ3AAoJEN5juccE6+nvfjoP/0e08VFkg9yzl/LQWtBN2S62
kAwgwPxYsimkQmzbDUE7yyWSkFeGFMYjLGiRxKUJFgV+Ap7aTGaec+jBko8f+XAW
m6uGt83B5J3S8K7dt61f+8+huePhX7hliPjXZPsflukOdnRLvAGod5LEUwjH0tMl
mmuiHphBTbmroB2NJJhRlc5U+Fh/YXExUfcqpvL901IXyDAsuN3dh0Q1/rk1RacA
DMFOfj6ib7yH0gkCAAfRNNaLHGOTwEOEF4wRPNx08JxNKmFPgxZgY/gdhP2Le8+l
NaYRaAGqjC/veVUDgnkMrEW1v8m9tJHok5C3pRKUuxhNobOCGpsdeHCOqDtO8pIO
UcVcumidfvKA5p/yc3lf2vH1nedWgtGbX5M9CNK0EaePraXEMXLpNAZ3tz5evBm6
MObVdiTWEJSUd9+Wivsz68cQ1y8TAhCR/pgtuSQP7xJToZfj47lJ1yXId5xIBFT3
v4yGi/8EFsVhB2JmdKYkXkCS3ZG6bmmWWCc0GIuY3DbnlPhH5MMZ3fcOX47kjQ3W
wimuk+G3Q9ZAzvYYDBFD2i6bk7TdoYCDoE1PPIPE9vQOOrLJbJ4e4g5EepC8TmxN
lDXRAs4wlX9ed8Js3RstvhzAiNRItzUI4ijYlWT6l578HBdDCEluXAFYjHSe4Lsw
JF0Kq27MKpBZMn6pFoFk
=3IGa
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Bug#838198: 9base: FTBFS on hurd-i386: fatal error:can't create y.tab.h, :1

2016-09-18 Thread Ola Ekström
I missed that one, can't say I understand it's purpose in the source
tree if it's not referenced. I'm not familiar with sam or 9P, I've
only used 9base to run the werc web framework on lighttpd.

> 2016-09-18 11:54 GMT+00:00 Kalle Olavi Niemitalo :
>> sam/_libc.h has:
>>
>> OREAD = 0,
>> OWRITE = 1,
>> ORDWR = 2,
>> OCEXEC = 4,
>>
>> but it looks like nothing #includes that file, so perhaps that
>> doesn't have to be patched.  Have you tested sam on the Hurd?
>>
>> If these flags are sent in the Topen and Tcreate requests of the
>> 9P protocol, then changing their values breaks compatibility
>> between network hosts that run different implementations.
>> Do the Debian packages support that protocol?



Processing of docbook-to-man_2.0.0-35_amd64.changes

2016-09-18 Thread Debian FTP Masters
docbook-to-man_2.0.0-35_amd64.changes uploaded successfully to localhost
along with the files:
  docbook-to-man_2.0.0-35.dsc
  docbook-to-man_2.0.0-35.debian.tar.xz
  docbook-to-man-dbgsym_2.0.0-35_amd64.deb
  docbook-to-man_2.0.0-35_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)



docbook-to-man_2.0.0-35_amd64.changes ACCEPTED into unstable

2016-09-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 17 Sep 2016 21:03:42 -0400
Source: docbook-to-man
Binary: docbook-to-man
Architecture: source amd64
Version: 1:2.0.0-35
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Neil Roeth 
Description:
 docbook-to-man - converter from DocBook SGML into roff man macros
Changes:
 docbook-to-man (1:2.0.0-35) unstable; urgency=medium
 .
   * QA upload.
   * Change dependency from "sp|opensp" to just "opensp" since sp will be
 removed from Debian. Change all occurrences of sp commands to opensp
 commands (just slight name changes).
Checksums-Sha1:
 1429f89d4ce198441e2c3cf2e1c6516dbbf64cb9 1924 docbook-to-man_2.0.0-35.dsc
 5bdbc542bf21052c90bb4a688835218f22f98d19 20400 
docbook-to-man_2.0.0-35.debian.tar.xz
 685844ea34cd5643164edd395a9346b27932a0fd 90360 
docbook-to-man-dbgsym_2.0.0-35_amd64.deb
 50b6bdcb3afd12d95e70256ce661e9aa8e0bcced 74772 
docbook-to-man_2.0.0-35_amd64.deb
Checksums-Sha256:
 87e1428289791653d22c201c5f28d5369e3386bd58583e438b3a9390f8cdcc2c 1924 
docbook-to-man_2.0.0-35.dsc
 9b61a6a4135250661eead18f25c89775245bc901489b3f37ac510b4331919656 20400 
docbook-to-man_2.0.0-35.debian.tar.xz
 b3ffc57b10465876a546697cce9ec6b135d5f3dcfa5a5bb7b5c9f96c9813760b 90360 
docbook-to-man-dbgsym_2.0.0-35_amd64.deb
 13cdc20c795d7f8bc27a868599c3399986723fdb24d9b79eb37ea4e82280f9da 74772 
docbook-to-man_2.0.0-35_amd64.deb
Files:
 c2449fd1f88354a202041f979d8e4088 1924 text optional docbook-to-man_2.0.0-35.dsc
 699aca18282a34f1cb8829fc46cd4fd3 20400 text optional 
docbook-to-man_2.0.0-35.debian.tar.xz
 81bb37b440673777038c4f665ac4a9f6 90360 debug extra 
docbook-to-man-dbgsym_2.0.0-35_amd64.deb
 480252511bca0666194bd2dce520ee2d 74772 text optional 
docbook-to-man_2.0.0-35_amd64.deb

-BEGIN PGP SIGNATURE-

iQIcBAEBCAAGBQJX3wVbAAoJEDZcFAmks6ZAWwgQAKTZiI4iiwHwTxGXTU0dOpG7
QEDfxs0xv6AA7vclee31sGtp7AVRLH4HM6OjQMrZIj0T+G9i9VgAeJSp5ENs4ZEy
yuOR1wHLdVuu7TsURzQmXA1Vqc3z10DealnZyT666v9UDhEeaiffrb0F6+hX1EKP
E+0jNUrsHhZSe+YiHRXfJpIKXe75aHgzudtzm3wqxK5SPrZ2jv8nmk+7qDzruxmS
5X7Wydv9nETy4vVmM2S7Bi0Wc9LKNenCUAYLoHgbTNqrF4lWELFvGrH+Ukuow148
9UHuNSJaxRJGPaRKUpRMqUp9Zj3jD7UC0UZ+OONJPuPG3oUMl/BFUtSiYlm0EvrN
zL8pRMpRkmZrkhnH8t67mrfc/aUqFgUhLchTKsFPk7NqI28sxvMqArCoFKut1QuG
7O+cU6Q8MxUUn/l7gxOMFGBwD1jnYvHzZGRSwDIjnq7xpSmfALfZzZWsbhXmsveI
efq5fXnNnB3/Lyxo8PjhB7qoKcVSYrdj1w9cmwYHsmZ+yxgxDTtZshDpmq5688f3
bI/3Hq+phMk87K+RTscxEmwV2JygWNemloV7s/QBcLu2IN4q9tT6S0Riodb8B3AG
55SUlMYmrOEv9ByNz+mhqFDjMs6fCe8Hrxve5q7gu62cmgOySGqh30Hc1HtXjvYx
lvp+wS0amCDfurwHnVqi
=OCgL
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Bug#838248: unadf: CVE-2016-1243 and CVE-2016-1244

2016-09-18 Thread Luciano Bello
Source: unadf
Version: 0.7.11a-3
Severity: important
Tags: security patch

Hi,

Tuomas Räsänen discovered the following vulnerabilities for unadf.

CVE-2016-1243[0]: stack buffer overflow caused by blindly trusting on pathname 
lengths of archived files.
CVE-2016-1244[1]: execution of unsanitized input

The patch is available here: 
  
http://tmp.tjjr.fi/0001-Fix-unsafe-extraction-by-using-mkdir-instead-of-shel.patch

If you fix the vulnerabilities please also make sure to include the
CVE (Common Vulnerabilities & Exposures) ids in your changelog entry.

For further information see:

[0] https://security-tracker.debian.org/tracker/CVE-2016-1243
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-1243
[1] https://security-tracker.debian.org/tracker/CVE-2016-1244
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-1244



Processed: severity of 838248 is grave

2016-09-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # as per discussion in security-team make it RC
> severity 838248 grave
Bug #838248 [src:unadf] unadf: CVE-2016-1243 and CVE-2016-1244
Severity set to 'grave' from 'important'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
838248: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=838248
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: tagging 838248

2016-09-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 838248 + upstream
Bug #838248 [src:unadf] unadf: CVE-2016-1243 and CVE-2016-1244
Added tag(s) upstream.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
838248: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=838248
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems