Bug#893366: libwayland-dev: Uninstallable due to conflicting wayland-egl.pc

2018-03-18 Thread Guillem Jover
Package: libwayland-dev
Version: 1.14.91-1
Severity: serious

Hi!

This package ships the file /usr/lib//pkgconfig/wayland-egl.pc
which conflicts with the one installed by libegl1-mesa-dev, w/o any
Replaces field or similar.

The problem also is that the file providing the shared library is also
not pulled in by libwayland-dev, so packages that would find the
pkg-config file would then fail to build, and they should really not
be depending on the shared library directly.

Thanks,
Guillem



Re: Bug#892956: libinput-dev: Requires.private without package dependencies breaks pkg-config users

2018-03-18 Thread Simon McVittie
On Thu, 15 Mar 2018 at 20:23:59 +0200, Adrian Bunk wrote:
> On Thu, Mar 15, 2018 at 06:38:30PM +0100, Andreas Metzler wrote:
> > --- 
> > ./libinput-1.10.3-builtwithmeson0.44.1-1/debian/libinput-dev/usr/lib/x86_64-linux-gnu/pkgconfig/libinput.pc
> > 2018-03-15 18:24:08.366925927 +0100
> > +++ 
> > ./libinput-1.10.3-builtwithmeson0.45.0-1/debian/libinput-dev/usr/lib/x86_64-linux-gnu/pkgconfig/libinput.pc
> >2018-03-15 18:15:49.059380110 +0100
> > @@ -5,5 +5,7 @@ includedir=${prefix}/include
> >  Name: Libinput
> >  Description: Input device library
> >  Version: 1.10.3
> > +Requires.private: libwacom libudev mtdev libevdev
> 
> This is wrong.
> 
> Whether or not libinput internally uses other libraries like libwacom is 
> an implementation detail, not something that should leak through the cflags.

Yes and no. You're right that in this case, these dependencies are
implementation details; however, even implementation details do need
to be mentioned in the .pc file in at least some cases (if static
linking is supported), not all users of Requires.private are as
invisible as those, and at the moment this is pkg-config being used as
designed. https://people.freedesktop.org/~dbn/pkg-config-guide.html#faq
recommends the behaviour that Meson now provides.

Adrian and I discussed this a bit on IRC yesterday, and I've now
written up what we discussed in more detail on a related pkg-config
bug/feature request. Please reply there with any further comments
on the design of pkg-config. I've tried to summarize what Adrian
said on IRC about the reasons why it's bad to have excess CFLAGS;
if there's something I've missed or got wrong, please say so
there. https://bugs.freedesktop.org/show_bug.cgi?id=105572

I don't think this is really a RC bug in either meson or pkg-config. It's
RC for libinput, but #893067 was already filed against libinput after this
one was reassigned to meson, so please use that bug number to represent
the short term response (either a workaround or a solution, depending
what happens upstream) of adding the missing dependencies so that

sudo apt install libinput-dev; gcc hello.c $(pkg-config --cflags --libs 
libinput)

will work again.

Regards,
smcv



Processing of libinput_1.10.3-2_source.changes

2018-03-18 Thread Debian FTP Masters
libinput_1.10.3-2_source.changes uploaded successfully to localhost
along with the files:
  libinput_1.10.3-2.dsc
  libinput_1.10.3-2.debian.tar.xz
  libinput_1.10.3-2_source.buildinfo

Greetings,

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



Bug#893067: libinput-dev: pkg-config file does not work without libwacom-dev installed

2018-03-18 Thread Simon McVittie
Control: tags -1 + pending

On Sat, 17 Mar 2018 at 16:05:02 -0400, Jeremy Bicha wrote:
> I have proposed a merge request to fix this issue.
> https://salsa.debian.org/xorg-team/lib/libinput/merge_requests/1

This has now been merged.

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=892956 and upstream
bug https://bugs.freedesktop.org/show_bug.cgi?id=105572 contain some
discussion (currently unresolved) about whether this is a workaround or
a correct solution; but either way, it seems like the right thing to do
in the short term.

smcv



Processed: Re: Bug#893067: libinput-dev: pkg-config file does not work without libwacom-dev installed

2018-03-18 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + pending
Bug #893067 [libinput-dev] libinput-dev: pkg-config file does not work without 
libwacom-dev installed
Added tag(s) pending.

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



Bug#893391: libinput: please add an autopkgtest smoke-test for the library

2018-03-18 Thread Simon McVittie
Source: libinput
Version: 1.10.3-1
Severity: wishlist
Tags: patch

Some common failure modes of library packaging (particularly around
dependencies or transitions) result in inability to link dependent
binaries to the library. To catch mistakes before they become
release-critical, it's useful to have an autopkgtest that checks that
the library can work at all, even if it's a library that is awkward or
impossible to test more thoroughly.

I attach a simple autopkgtest that checks that libinput-dev can be
initialized and uninitialized, loosely based on one that I added to dbus.

I included a test for static linking, but libinput-dev doesn't seem to
contain libinput.a, so I've assumed that linking to it statically is
unsupported and left that part of the test commented out.

Note that I don't really know this library, so if I'm using it
incorrectly or in ways that are not what its upstream developers would
recommend, the test might need adjusting. It seems to work locally though.

If libinput_path_create_context() cannot legitimately fail (even in a
chroot or container running as an unprivileged user) then you might
want to make the test abort() if that call fails.

Thanks,
smcv
>From f850c612b25fe8964ff900447f444698578572cc Mon Sep 17 00:00:00 2001
From: Simon McVittie 
Date: Sun, 18 Mar 2018 14:24:20 +
Subject: [PATCH] Add a simple compile/link/execute smoke-test for libinput-dev

This verifies that it is possible to link to libinput, and would have
detected #893067.

Signed-off-by: Simon McVittie 
---
 debian/tests/build   | 60 
 debian/tests/control |  2 ++
 2 files changed, 62 insertions(+)
 create mode 100755 debian/tests/build
 create mode 100644 debian/tests/control

diff --git a/debian/tests/build b/debian/tests/build
new file mode 100755
index ..bacd15e1
--- /dev/null
+++ b/debian/tests/build
@@ -0,0 +1,60 @@
+#!/bin/sh
+
+exec 2>&1
+set -eux
+
+cd "${AUTOPKGTEST_TMP:-"${ADTTMP}"}"
+
+echo "1..2"
+
+cat > simple.c <<'EOF'
+#include 
+
+#include 
+#include 
+#include 
+#include 
+#include 
+
+static int
+my_open (const char *path, int flags, void *user_data)
+{
+  return open (path, flags);
+}
+
+static void
+my_close (int fd, void *user_data)
+{
+  close (fd);
+}
+
+static struct libinput_interface iface = { my_open, my_close };
+
+int
+main (void)
+{
+  struct libinput *ctx;
+
+  ctx = libinput_path_create_context (&iface, NULL);
+
+  if (ctx)
+libinput_unref (ctx);
+
+  return 0;
+}
+EOF
+
+gcc -o dynamic simple.c $(pkg-config --cflags --libs libinput)
+echo "ok 1 - compile dynamic executable"
+test -x dynamic
+./dynamic
+echo "ok 2 - run dynamic executable"
+
+# This should also be tested if linking statically to libinput is supported
+#gcc -static -o static simple.c $(pkg-config --static --cflags --libs libinput)
+#echo "ok 3 - compile static executable"
+#test -x static
+#./static
+#echo "ok 4 - run static executable"
+
+echo "# everything seems OK"
diff --git a/debian/tests/control b/debian/tests/control
new file mode 100644
index ..493aaf0f
--- /dev/null
+++ b/debian/tests/control
@@ -0,0 +1,2 @@
+Tests: build
+Depends: build-essential, libinput-dev
-- 
2.16.2



Accepted libpciaccess 0.14-1 (source) into unstable

2018-03-18 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 15:50:43 +0100
Source: libpciaccess
Binary: libpciaccess0 libpciaccess0-udeb libpciaccess-dev
Architecture: source
Version: 0.14-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 libpciaccess-dev - Generic PCI access library for X - development files
 libpciaccess0 - Generic PCI access library for X
 libpciaccess0-udeb - Generic PCI access library for X (udeb)
Changes:
 libpciaccess (0.14-1) unstable; urgency=medium
 .
   * Use https URL in debian/watch.
   * Add Adam Jackson's new key to signing-key.asc.
   * New upstream release.
 + delete Include-config.h-before-anything-else-in-.c.diff, applied
   upstream
   * Update Vcs-* control fields for move to salsa.
Checksums-Sha1:
 e5a1fa072c2e8b232f982ca1f5fc38d24d42 2062 libpciaccess_0.14-1.dsc
 32a8fde23da89f767c10da0a01079fcd80a0afec 461764 libpciaccess_0.14.orig.tar.gz
 4a52eeb3e08be1ee82e4334f6aec7a73a765b46e 25039 libpciaccess_0.14-1.diff.gz
Checksums-Sha256:
 1cbfd426e4efcc958b6c9fd4889877b533035175370fa0505f361b89e1aeaa4f 2062 
libpciaccess_0.14-1.dsc
 8d86e64893917be3dfb1c5e837888d1275399c818783474002203d751312b03c 461764 
libpciaccess_0.14.orig.tar.gz
 fea9483fbfb202040a8e5eef3ec3b434b3e897f301e735753568db2106e1512d 25039 
libpciaccess_0.14-1.diff.gz
Files:
 4b7f6c50856b5c3c8f1ad479de2ed708 2062 devel optional libpciaccess_0.14-1.dsc
 344872335233111f44504d3f7cb71bb3 461764 devel optional 
libpciaccess_0.14.orig.tar.gz
 0dbedf0dc642511a797fed2fd1da3d75 25039 devel optional 
libpciaccess_0.14-1.diff.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlqufPUACgkQnbAjVVb4
z61uNBAApY4YGHMcgQj5l1yhfNj5prkm7OsTiuDT9/D7jutldr0kvqvtkzheJpOh
76JxSf5uhZcKhzSAmXRTPwiIhe4wK4/NOdmRYgegAGmKRhluCYgWp5aVI6TufHoW
G3+AekfAfdRRuhZ5yjmMtgSmfr/kHzCc/pQXs9YipOYDyXc7PPRekDQ45Q154Frn
myM4ZOHNAL1EdF4o/rNLrKrAQ0lMylvtDmxh2Au6qlmveKAyiOHGRFoNm5Hchxya
TWGHHnucVSS2dr4NSHkuxRj9zrnFpCNUbDdMM4699+hecz/v7N3oagNs8rVcF7jm
lY6vLfCIluDkZVjsFX1Z6oxhu2evzkgcIjl0mbrHfZHLDsbD85zIAv7f1LCre57v
fwSZuWJSOEUkj+lDa/L9gTx7sqmPuLChhX8z34Bhrn4cG7ae48OyAwMJjXnu172i
NaCzN++mTnO17JkwirK1z5V8qPyTsch9HzROvkwnd5xTLIGhoeTJEHXUftdaQQs4
fJQrqKSuiZc5bEBsAaKHsDTk5+sjOEZ3P2d5Z8Ee7xNRsELUSxrCTGEBzVdqMBZL
8B3KjcBUwcbMzPXUbL2+WE3R3aPv89rMiurGGtgubooxTVHHcKRWgv4OoSKzDiwF
X348O5tMP2pj2MpwpVtJUmiOaBF38ZKDj5TYZNf4s2eDYtntdXM=
=fpV7
-END PGP SIGNATURE-



Bug#893067: marked as done (libinput-dev: pkg-config file does not work without libwacom-dev installed)

2018-03-18 Thread Debian Bug Tracking System
Your message dated Sun, 18 Mar 2018 15:12:16 +
with message-id 
and subject line Bug#893067: fixed in libinput 1.10.3-2
has caused the Debian Bug report #893067,
regarding libinput-dev: pkg-config file does not work without libwacom-dev 
installed
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.)


-- 
893067: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=893067
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libinput-dev
Version: 1.10.3-1
Severity: important
Justification: causing numerous new FTBFS bugs

In a clean pbuilder chroot:

# apt install libinput-dev pkg-config
# pkg-config --cflags libinput
Package libwacom was not found in the pkg-config search path.
Perhaps you should add the directory containing 'libwacom.pc'
to the PKG_CONFIG_PATH environment variable
Package 'libwacom', required by 'libinput', not found
# pkg-config --exists libinput
# echo $?
1

I've been seeing several new FTBFS issues in other packages due to
this, either due to configure scripts erroring out when they find
libinput "does not exist", or in the case of qtbase-opensource-src,
the configuration leaves out the libinput plugin which then causes an
error at dh_install time.
-- 
Daniel
--- End Message ---
--- Begin Message ---
Source: libinput
Source-Version: 1.10.3-2

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

Debian distribution maintenance software
pp.
Timo Aaltonen  (supplier of updated libinput 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 Mar 2018 15:39:44 +0200
Source: libinput
Binary: libinput10 libinput-bin libinput10-udeb libinput-dev libinput-tools
Architecture: source
Version: 1.10.3-2
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Timo Aaltonen 
Description:
 libinput-bin - input device management and event handling library - udev quirks
 libinput-dev - input device management and event handling library - development
 libinput-tools - input device management and event handling library - command 
line
 libinput10 - input device management and event handling library - shared libra
 libinput10-udeb - input device management and event handling library - shared 
libra (udeb)
Closes: 893067
Changes:
 libinput (1.10.3-2) unstable; urgency=medium
 .
   [ Jeremy Bicha ]
   * control: Update VCS urls.
   * control: Add more packages to libinput-dev Depends as a workaround for
 buggy meson/pkg-config. (Closes: #893067)
Checksums-Sha1:
 41d277bc955a9ee213ecd2673e723ff0bbf87364 2574 libinput_1.10.3-2.dsc
 620ad3361bb6ed37dfc7efb6dc42a08f661e2e57 8136 libinput_1.10.3-2.debian.tar.xz
 68b4631e9286da8da57b4ffb208766d136ea4246 6163 
libinput_1.10.3-2_source.buildinfo
Checksums-Sha256:
 ee28dccaaa8d693dc29011de845995a25c99cd77cd3a5711bbdc0a8011391b3d 2574 
libinput_1.10.3-2.dsc
 3341c4575c00ca835029668a1acba7399594c87cb8f6af7f9d6f5943580874a1 8136 
libinput_1.10.3-2.debian.tar.xz
 daf1c3f5320c7a498f11c1441973a604f09a57a847d003deba31b5295dd29e68 6163 
libinput_1.10.3-2_source.buildinfo
Files:
 74d8db4455a3dbdaccf1f30072c9d676 2574 libs optional libinput_1.10.3-2.dsc
 ed4151fc0b9e07b316732d488951e08c 8136 libs optional 
libinput_1.10.3-2.debian.tar.xz
 469f9b52e0387a5947f2bb96841472b3 6163 libs optional 
libinput_1.10.3-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEdS3ifE3rFwGbS2Yjy3AxZaiJhNwFAlqubOEACgkQy3AxZaiJ
hNwtqA/+JEKWopt2F5a+T/8UcBfpIdQJ4eNZpbSqWwyYvM2NS+1u3oJIB16RHDFa
VTuZfHfeN023ENsGlJKQ0NiF5YTbLwyvZeUP5a175+bGrsxRk70SNdutVfDVqizV
OHjzs7sNhO0fJHxjP9A6TtEMbux74rxQqHCdacRhn7J2kjMHWBxTTNCDC6xbey+c
6lC8JAW9RrkSEVtUkvQ6I7UpDr78RBub3DXCGZ6D4ASYVGZhrva3DPHchyNpLFkL
Ui8fl5hua+whiqZL7bfZjgmkCeo8g6/nC+7A1HadEn6KyXVqA6ZDG+E8um0L54Gk
YI8/7kxWggdqCgGOZZf1ID2vL4J96OULqQFrVHZ7X19kfhcSQEK1pd8I72OebnkD
hPcj2+ceaeDvk4qm+ICmeSlNnA73LOwlj2t4Mn9JJ8SCrVPEccvBuLJrO3EDVp3Q
BkDY+Uy1Fr0C7Nv6bvWtLzUe8l3bOzbybRMiAu3ILM/KsVWYSAGRpZfrI9EAZAQe
sLinQ1qiRFubCYuOg8qgOpWsjNM/KRu0Eug/pfb8Z1ntdVTaAmuNwpRzbVmaXQta
+5IA0UqZ2LwsFVNAmCTgiivL5UViEO6okwA7IDoMicCm3Lg3hBzXflmjTV

Processing of libpciaccess_0.14-1_source.changes

2018-03-18 Thread Debian FTP Masters
libpciaccess_0.14-1_source.changes uploaded successfully to localhost
along with the files:
  libpciaccess_0.14-1.dsc
  libpciaccess_0.14.orig.tar.gz
  libpciaccess_0.14-1.diff.gz

Greetings,

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



libinput_1.10.3-2_source.changes ACCEPTED into unstable

2018-03-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 18 Mar 2018 15:39:44 +0200
Source: libinput
Binary: libinput10 libinput-bin libinput10-udeb libinput-dev libinput-tools
Architecture: source
Version: 1.10.3-2
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Timo Aaltonen 
Description:
 libinput-bin - input device management and event handling library - udev quirks
 libinput-dev - input device management and event handling library - development
 libinput-tools - input device management and event handling library - command 
line
 libinput10 - input device management and event handling library - shared libra
 libinput10-udeb - input device management and event handling library - shared 
libra (udeb)
Closes: 893067
Changes:
 libinput (1.10.3-2) unstable; urgency=medium
 .
   [ Jeremy Bicha ]
   * control: Update VCS urls.
   * control: Add more packages to libinput-dev Depends as a workaround for
 buggy meson/pkg-config. (Closes: #893067)
Checksums-Sha1:
 41d277bc955a9ee213ecd2673e723ff0bbf87364 2574 libinput_1.10.3-2.dsc
 620ad3361bb6ed37dfc7efb6dc42a08f661e2e57 8136 libinput_1.10.3-2.debian.tar.xz
 68b4631e9286da8da57b4ffb208766d136ea4246 6163 
libinput_1.10.3-2_source.buildinfo
Checksums-Sha256:
 ee28dccaaa8d693dc29011de845995a25c99cd77cd3a5711bbdc0a8011391b3d 2574 
libinput_1.10.3-2.dsc
 3341c4575c00ca835029668a1acba7399594c87cb8f6af7f9d6f5943580874a1 8136 
libinput_1.10.3-2.debian.tar.xz
 daf1c3f5320c7a498f11c1441973a604f09a57a847d003deba31b5295dd29e68 6163 
libinput_1.10.3-2_source.buildinfo
Files:
 74d8db4455a3dbdaccf1f30072c9d676 2574 libs optional libinput_1.10.3-2.dsc
 ed4151fc0b9e07b316732d488951e08c 8136 libs optional 
libinput_1.10.3-2.debian.tar.xz
 469f9b52e0387a5947f2bb96841472b3 6163 libs optional 
libinput_1.10.3-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEdS3ifE3rFwGbS2Yjy3AxZaiJhNwFAlqubOEACgkQy3AxZaiJ
hNwtqA/+JEKWopt2F5a+T/8UcBfpIdQJ4eNZpbSqWwyYvM2NS+1u3oJIB16RHDFa
VTuZfHfeN023ENsGlJKQ0NiF5YTbLwyvZeUP5a175+bGrsxRk70SNdutVfDVqizV
OHjzs7sNhO0fJHxjP9A6TtEMbux74rxQqHCdacRhn7J2kjMHWBxTTNCDC6xbey+c
6lC8JAW9RrkSEVtUkvQ6I7UpDr78RBub3DXCGZ6D4ASYVGZhrva3DPHchyNpLFkL
Ui8fl5hua+whiqZL7bfZjgmkCeo8g6/nC+7A1HadEn6KyXVqA6ZDG+E8um0L54Gk
YI8/7kxWggdqCgGOZZf1ID2vL4J96OULqQFrVHZ7X19kfhcSQEK1pd8I72OebnkD
hPcj2+ceaeDvk4qm+ICmeSlNnA73LOwlj2t4Mn9JJ8SCrVPEccvBuLJrO3EDVp3Q
BkDY+Uy1Fr0C7Nv6bvWtLzUe8l3bOzbybRMiAu3ILM/KsVWYSAGRpZfrI9EAZAQe
sLinQ1qiRFubCYuOg8qgOpWsjNM/KRu0Eug/pfb8Z1ntdVTaAmuNwpRzbVmaXQta
+5IA0UqZ2LwsFVNAmCTgiivL5UViEO6okwA7IDoMicCm3Lg3hBzXflmjTV1VQjC7
jVTESc6Dy3YfkTbv13oZMNpjwd9dB2B53XSihc3GG9SXMD4f0yg=
=Twgm
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Accepted libinput 1.10.3-2 (source) into unstable

2018-03-18 Thread Timo Aaltonen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 18 Mar 2018 15:39:44 +0200
Source: libinput
Binary: libinput10 libinput-bin libinput10-udeb libinput-dev libinput-tools
Architecture: source
Version: 1.10.3-2
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Timo Aaltonen 
Description:
 libinput-bin - input device management and event handling library - udev quirks
 libinput-dev - input device management and event handling library - development
 libinput-tools - input device management and event handling library - command 
line
 libinput10 - input device management and event handling library - shared libra
 libinput10-udeb - input device management and event handling library - shared 
libra (udeb)
Closes: 893067
Changes:
 libinput (1.10.3-2) unstable; urgency=medium
 .
   [ Jeremy Bicha ]
   * control: Update VCS urls.
   * control: Add more packages to libinput-dev Depends as a workaround for
 buggy meson/pkg-config. (Closes: #893067)
Checksums-Sha1:
 41d277bc955a9ee213ecd2673e723ff0bbf87364 2574 libinput_1.10.3-2.dsc
 620ad3361bb6ed37dfc7efb6dc42a08f661e2e57 8136 libinput_1.10.3-2.debian.tar.xz
 68b4631e9286da8da57b4ffb208766d136ea4246 6163 
libinput_1.10.3-2_source.buildinfo
Checksums-Sha256:
 ee28dccaaa8d693dc29011de845995a25c99cd77cd3a5711bbdc0a8011391b3d 2574 
libinput_1.10.3-2.dsc
 3341c4575c00ca835029668a1acba7399594c87cb8f6af7f9d6f5943580874a1 8136 
libinput_1.10.3-2.debian.tar.xz
 daf1c3f5320c7a498f11c1441973a604f09a57a847d003deba31b5295dd29e68 6163 
libinput_1.10.3-2_source.buildinfo
Files:
 74d8db4455a3dbdaccf1f30072c9d676 2574 libs optional libinput_1.10.3-2.dsc
 ed4151fc0b9e07b316732d488951e08c 8136 libs optional 
libinput_1.10.3-2.debian.tar.xz
 469f9b52e0387a5947f2bb96841472b3 6163 libs optional 
libinput_1.10.3-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEdS3ifE3rFwGbS2Yjy3AxZaiJhNwFAlqubOEACgkQy3AxZaiJ
hNwtqA/+JEKWopt2F5a+T/8UcBfpIdQJ4eNZpbSqWwyYvM2NS+1u3oJIB16RHDFa
VTuZfHfeN023ENsGlJKQ0NiF5YTbLwyvZeUP5a175+bGrsxRk70SNdutVfDVqizV
OHjzs7sNhO0fJHxjP9A6TtEMbux74rxQqHCdacRhn7J2kjMHWBxTTNCDC6xbey+c
6lC8JAW9RrkSEVtUkvQ6I7UpDr78RBub3DXCGZ6D4ASYVGZhrva3DPHchyNpLFkL
Ui8fl5hua+whiqZL7bfZjgmkCeo8g6/nC+7A1HadEn6KyXVqA6ZDG+E8um0L54Gk
YI8/7kxWggdqCgGOZZf1ID2vL4J96OULqQFrVHZ7X19kfhcSQEK1pd8I72OebnkD
hPcj2+ceaeDvk4qm+ICmeSlNnA73LOwlj2t4Mn9JJ8SCrVPEccvBuLJrO3EDVp3Q
BkDY+Uy1Fr0C7Nv6bvWtLzUe8l3bOzbybRMiAu3ILM/KsVWYSAGRpZfrI9EAZAQe
sLinQ1qiRFubCYuOg8qgOpWsjNM/KRu0Eug/pfb8Z1ntdVTaAmuNwpRzbVmaXQta
+5IA0UqZ2LwsFVNAmCTgiivL5UViEO6okwA7IDoMicCm3Lg3hBzXflmjTV1VQjC7
jVTESc6Dy3YfkTbv13oZMNpjwd9dB2B53XSihc3GG9SXMD4f0yg=
=Twgm
-END PGP SIGNATURE-



libpciaccess_0.14-1_source.changes ACCEPTED into unstable

2018-03-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 15:50:43 +0100
Source: libpciaccess
Binary: libpciaccess0 libpciaccess0-udeb libpciaccess-dev
Architecture: source
Version: 0.14-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 libpciaccess-dev - Generic PCI access library for X - development files
 libpciaccess0 - Generic PCI access library for X
 libpciaccess0-udeb - Generic PCI access library for X (udeb)
Changes:
 libpciaccess (0.14-1) unstable; urgency=medium
 .
   * Use https URL in debian/watch.
   * Add Adam Jackson's new key to signing-key.asc.
   * New upstream release.
 + delete Include-config.h-before-anything-else-in-.c.diff, applied
   upstream
   * Update Vcs-* control fields for move to salsa.
Checksums-Sha1:
 e5a1fa072c2e8b232f982ca1f5fc38d24d42 2062 libpciaccess_0.14-1.dsc
 32a8fde23da89f767c10da0a01079fcd80a0afec 461764 libpciaccess_0.14.orig.tar.gz
 4a52eeb3e08be1ee82e4334f6aec7a73a765b46e 25039 libpciaccess_0.14-1.diff.gz
Checksums-Sha256:
 1cbfd426e4efcc958b6c9fd4889877b533035175370fa0505f361b89e1aeaa4f 2062 
libpciaccess_0.14-1.dsc
 8d86e64893917be3dfb1c5e837888d1275399c818783474002203d751312b03c 461764 
libpciaccess_0.14.orig.tar.gz
 fea9483fbfb202040a8e5eef3ec3b434b3e897f301e735753568db2106e1512d 25039 
libpciaccess_0.14-1.diff.gz
Files:
 4b7f6c50856b5c3c8f1ad479de2ed708 2062 devel optional libpciaccess_0.14-1.dsc
 344872335233111f44504d3f7cb71bb3 461764 devel optional 
libpciaccess_0.14.orig.tar.gz
 0dbedf0dc642511a797fed2fd1da3d75 25039 devel optional 
libpciaccess_0.14-1.diff.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlqufPUACgkQnbAjVVb4
z61uNBAApY4YGHMcgQj5l1yhfNj5prkm7OsTiuDT9/D7jutldr0kvqvtkzheJpOh
76JxSf5uhZcKhzSAmXRTPwiIhe4wK4/NOdmRYgegAGmKRhluCYgWp5aVI6TufHoW
G3+AekfAfdRRuhZ5yjmMtgSmfr/kHzCc/pQXs9YipOYDyXc7PPRekDQ45Q154Frn
myM4ZOHNAL1EdF4o/rNLrKrAQ0lMylvtDmxh2Au6qlmveKAyiOHGRFoNm5Hchxya
TWGHHnucVSS2dr4NSHkuxRj9zrnFpCNUbDdMM4699+hecz/v7N3oagNs8rVcF7jm
lY6vLfCIluDkZVjsFX1Z6oxhu2evzkgcIjl0mbrHfZHLDsbD85zIAv7f1LCre57v
fwSZuWJSOEUkj+lDa/L9gTx7sqmPuLChhX8z34Bhrn4cG7ae48OyAwMJjXnu172i
NaCzN++mTnO17JkwirK1z5V8qPyTsch9HzROvkwnd5xTLIGhoeTJEHXUftdaQQs4
fJQrqKSuiZc5bEBsAaKHsDTk5+sjOEZ3P2d5Z8Ee7xNRsELUSxrCTGEBzVdqMBZL
8B3KjcBUwcbMzPXUbL2+WE3R3aPv89rMiurGGtgubooxTVHHcKRWgv4OoSKzDiwF
X348O5tMP2pj2MpwpVtJUmiOaBF38ZKDj5TYZNf4s2eDYtntdXM=
=fpV7
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Accepted libx11 2:1.6.5-1 (source) into unstable

2018-03-18 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 16:22:50 +0100
Source: libx11
Binary: libx11-6 libx11-6-udeb libx11-data libx11-dev libx11-xcb1 
libx11-xcb-dev libx11-doc
Architecture: source
Version: 2:1.6.5-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 libx11-6   - X11 client-side library
 libx11-6-udeb - X11 client-side library (udeb)
 libx11-data - X11 client-side library
 libx11-dev - X11 client-side library (development headers)
 libx11-doc - X11 client-side library (development documentation)
 libx11-xcb-dev - Xlib/XCB interface library (development headers)
 libx11-xcb1 - Xlib/XCB interface library
Changes:
 libx11 (2:1.6.5-1) unstable; urgency=medium
 .
   * Add Matt Turner's key to d/u/signing-key.asc
   * New upstream release.
   * Update VCS metadata for move to salsa.
Checksums-Sha1:
 5ab6b33f1c0f6443d314b8bce04fca996ef0c8f0 2378 libx11_1.6.5-1.dsc
 6d34e1f3bb17c700bab7fe65670a1173f65766e2 3123307 libx11_1.6.5.orig.tar.gz
 782a4155e896ce6115c4d65445ba26c7817cfb32 48025 libx11_1.6.5-1.diff.gz
Checksums-Sha256:
 6568da5394e44152025ce6ee06a8e683a8f722c7a962ccb29288b700be75b684 2378 
libx11_1.6.5-1.dsc
 3abce972ba62620611fab5b404dafb852da3da54e7c287831c30863011d28fb3 3123307 
libx11_1.6.5.orig.tar.gz
 75d40eb5c2181c5b6cdf638c621f75e107b415ccab293288a7b04c2e88be75ff 48025 
libx11_1.6.5-1.diff.gz
Files:
 47e2b291638265e1710a5810f5349bfc 2378 x11 optional libx11_1.6.5-1.dsc
 300b5831916ffcc375468431d856917e 3123307 x11 optional libx11_1.6.5.orig.tar.gz
 f20347672662890e98963cb40a85575e 48025 x11 optional libx11_1.6.5-1.diff.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlquhp0ACgkQnbAjVVb4
z60RZRAArOhK2z12wqejLF0O39HSngGcGbDRR/HEi2bf+LXIvnnWCIHgbpHxl83F
yB23t2/ctW0teuYXxOa6H2J33EsjP8q6NZxTiJDZElkXbVLhO3eoNMX55YE365l+
1oTWmHzp7gzk0fIR2LTcud3tcpbFkptVUJFvvhLip5VhCVBQod4nA5DclEiM8tw2
aEWqVJ5hWplLt9w7Eywmg44jaXenaCqaOzhurJBOfyRMtlZbn5QP3AoOyV4aA3ET
tW8T41cS6anK9RJzWXWk5fkFnorwVFPx8dPkfXq788GrF3AoYxtKnvVQ7htyPb2r
Y3FTSxNW54RbDQbbFBcILTKFwhMtOtn7dR+g60mWMb5bBjJ8pbv5BQV1drx7Zgvt
DCYboWYVdLUDPq2mkpUUhsaxkFge4fnMZoYsDho6RD7SJ1JSbsydw1cwVGnVOsvN
qmSLAe2vUixAUBCg3q6l65os6M5xa4RmpHW15x3zcpikY3o2OW3SMXA6r+BMqFMq
2UMdUyzfQKWee2I9YRW8aCu4k6moMsGhzockFsJ1/iL/HFuZh1DY80i0JaNEZWEg
e9Bc/1NUTUGcfnZlPDKEGzQLXN2chYyqVidBXkuVWrNV2Iz6iXGLPjLM40rBql/O
QS5UwHRNzhJhmZLUBhc4W7uqJN8rcl77MU6K8y4j2ah6pId/I50=
=rOXr
-END PGP SIGNATURE-



Processing of libx11_1.6.5-1_source.changes

2018-03-18 Thread Debian FTP Masters
libx11_1.6.5-1_source.changes uploaded successfully to localhost
along with the files:
  libx11_1.6.5-1.dsc
  libx11_1.6.5.orig.tar.gz
  libx11_1.6.5-1.diff.gz

Greetings,

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



libx11_1.6.5-1_source.changes ACCEPTED into unstable

2018-03-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 16:22:50 +0100
Source: libx11
Binary: libx11-6 libx11-6-udeb libx11-data libx11-dev libx11-xcb1 
libx11-xcb-dev libx11-doc
Architecture: source
Version: 2:1.6.5-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 libx11-6   - X11 client-side library
 libx11-6-udeb - X11 client-side library (udeb)
 libx11-data - X11 client-side library
 libx11-dev - X11 client-side library (development headers)
 libx11-doc - X11 client-side library (development documentation)
 libx11-xcb-dev - Xlib/XCB interface library (development headers)
 libx11-xcb1 - Xlib/XCB interface library
Changes:
 libx11 (2:1.6.5-1) unstable; urgency=medium
 .
   * Add Matt Turner's key to d/u/signing-key.asc
   * New upstream release.
   * Update VCS metadata for move to salsa.
Checksums-Sha1:
 5ab6b33f1c0f6443d314b8bce04fca996ef0c8f0 2378 libx11_1.6.5-1.dsc
 6d34e1f3bb17c700bab7fe65670a1173f65766e2 3123307 libx11_1.6.5.orig.tar.gz
 782a4155e896ce6115c4d65445ba26c7817cfb32 48025 libx11_1.6.5-1.diff.gz
Checksums-Sha256:
 6568da5394e44152025ce6ee06a8e683a8f722c7a962ccb29288b700be75b684 2378 
libx11_1.6.5-1.dsc
 3abce972ba62620611fab5b404dafb852da3da54e7c287831c30863011d28fb3 3123307 
libx11_1.6.5.orig.tar.gz
 75d40eb5c2181c5b6cdf638c621f75e107b415ccab293288a7b04c2e88be75ff 48025 
libx11_1.6.5-1.diff.gz
Files:
 47e2b291638265e1710a5810f5349bfc 2378 x11 optional libx11_1.6.5-1.dsc
 300b5831916ffcc375468431d856917e 3123307 x11 optional libx11_1.6.5.orig.tar.gz
 f20347672662890e98963cb40a85575e 48025 x11 optional libx11_1.6.5-1.diff.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlquhp0ACgkQnbAjVVb4
z60RZRAArOhK2z12wqejLF0O39HSngGcGbDRR/HEi2bf+LXIvnnWCIHgbpHxl83F
yB23t2/ctW0teuYXxOa6H2J33EsjP8q6NZxTiJDZElkXbVLhO3eoNMX55YE365l+
1oTWmHzp7gzk0fIR2LTcud3tcpbFkptVUJFvvhLip5VhCVBQod4nA5DclEiM8tw2
aEWqVJ5hWplLt9w7Eywmg44jaXenaCqaOzhurJBOfyRMtlZbn5QP3AoOyV4aA3ET
tW8T41cS6anK9RJzWXWk5fkFnorwVFPx8dPkfXq788GrF3AoYxtKnvVQ7htyPb2r
Y3FTSxNW54RbDQbbFBcILTKFwhMtOtn7dR+g60mWMb5bBjJ8pbv5BQV1drx7Zgvt
DCYboWYVdLUDPq2mkpUUhsaxkFge4fnMZoYsDho6RD7SJ1JSbsydw1cwVGnVOsvN
qmSLAe2vUixAUBCg3q6l65os6M5xa4RmpHW15x3zcpikY3o2OW3SMXA6r+BMqFMq
2UMdUyzfQKWee2I9YRW8aCu4k6moMsGhzockFsJ1/iL/HFuZh1DY80i0JaNEZWEg
e9Bc/1NUTUGcfnZlPDKEGzQLXN2chYyqVidBXkuVWrNV2Iz6iXGLPjLM40rBql/O
QS5UwHRNzhJhmZLUBhc4W7uqJN8rcl77MU6K8y4j2ah6pId/I50=
=rOXr
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of libxfont_2.0.3-1_source.changes

2018-03-18 Thread Debian FTP Masters
libxfont_2.0.3-1_source.changes uploaded successfully to localhost
along with the files:
  libxfont_2.0.3-1.dsc
  libxfont_2.0.3.orig.tar.gz
  libxfont_2.0.3-1.diff.gz

Greetings,

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



Processing of xfonts-utils_7.7+5_source.changes

2018-03-18 Thread Debian FTP Masters
xfonts-utils_7.7+5_source.changes uploaded successfully to localhost
along with the files:
  xfonts-utils_7.7+5.dsc
  xfonts-utils_7.7+5.tar.gz

Greetings,

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



Accepted libxfont 1:2.0.3-1 (source) into unstable

2018-03-18 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 16:35:45 +0100
Source: libxfont
Binary: libxfont2 libxfont2-udeb libxfont-dev
Architecture: source
Version: 1:2.0.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 libxfont-dev - X11 font rasterisation library (development headers)
 libxfont2  - X11 font rasterisation library
 libxfont2-udeb - X11 font rasterisation library (udeb)
Changes:
 libxfont (1:2.0.3-1) unstable; urgency=medium
 .
   * Add Matthieu Herrb's key to d/u/signing-key.asc
   * New upstream release.
 + Open files with O_NOFOLLOW. (CVE-2017-16611)
   * Update package metadata for move to salsa.
Checksums-Sha1:
 4b6e7bc5f9d2f7981c3444951f8d1df3235ddd3d 2166 libxfont_2.0.3-1.dsc
 c1a10be432556ec58d9a978b0506e1391bd6e7e8 614477 libxfont_2.0.3.orig.tar.gz
 1154fc8a64c57160abe2a278a5e332b31b619305 30884 libxfont_2.0.3-1.diff.gz
Checksums-Sha256:
 ff2fbcd8f8d2b7c0a278b9b47ae0b1e116058b23b1f16356a62bc4fc8c751ab2 2166 
libxfont_2.0.3-1.dsc
 a4b761a37528353a2b83dba364d7c1fd6aef2d554a1a019815f24f7f8866890e 614477 
libxfont_2.0.3.orig.tar.gz
 8b10e4308e50e72dedff59e96f11ffe9caab7c9d620f3f86316f99ed036e27e7 30884 
libxfont_2.0.3-1.diff.gz
Files:
 899c44787cc38ad13df943d9bb80e057 2166 x11 optional libxfont_2.0.3-1.dsc
 ba7277762e3737cd8dcb6c7fe5113a34 614477 x11 optional libxfont_2.0.3.orig.tar.gz
 a95f3fb8067dbee5c02eeaa3dd36f7ab 30884 x11 optional libxfont_2.0.3-1.diff.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlquiCMACgkQnbAjVVb4
z61OIxAAnqVH87RmD98JIlhBfRIxHUgoZ/KuPXVc0TKZ4deq2UlMaglBrR0PZ/gd
KRjl21w1tHvegjSUY5bhMqcn2NpgxSFs7bcBp1Y9e8N2j3uT8QiEB2MzVGcTwTve
q92ODx5OlBhEXEsKL7LeZbAC8fLS187dosW2aAt92tAkw7T/LZyDAgkgFkUZc57Q
kKgyxXcLaK10ogN/6OZ+n/7L958JAQvEo/mr6GD7UzDJ9YxD6E2V+PqMnzmYDZ7t
xk85YAkCcYMgmvNnb6HejTUpg+ADr4BJhNsEvdJnOIDAIIhT82q9CQpkDkEVwd6I
cGAi870mIHWbaufPVBSo2k0nMflinaDrd8zWOQSJlwljntAHqqJywRP6ON6RMsEV
CtWWbbdy+M0LT3fbfbTLs3GvNg1H2z+PbCgLuWbsAgFCeL8gMSCnZ0w5F3h+zibK
NuiJpE89RaPKCPdcn5zyUe5M39phIS7BSwHzVxHkf1mrueG02+uLRvK1I0fh0sz4
SAQ/5tEn0JRDj2qgg427tEq45oJQKNF9kvg1rQjvZqZr8YoC0vG7fLZ94LNuI3Ys
AyfgS5GxiXCre3EKezLTLkim4Ae6W+VzXbOnn+zJduVYvTzzzQmifxsNEBeBcmjS
Hl2yILh+fzMcBgdx9TRHxeN1nzy4I5zsSJMLMXNKIKQA4xW7GVQ=
=oTah
-END PGP SIGNATURE-



Processing of libxshmfence_1.3-1_source.changes

2018-03-18 Thread Debian FTP Masters
libxshmfence_1.3-1_source.changes uploaded successfully to localhost
along with the files:
  libxshmfence_1.3-1.dsc
  libxshmfence_1.3.orig.tar.gz
  libxshmfence_1.3-1.diff.gz

Greetings,

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



Accepted libxshmfence 1.3-1 (source) into unstable

2018-03-18 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 16:54:51 +0100
Source: libxshmfence
Binary: libxshmfence1 libxshmfence-dev libxshmfence1-udeb
Architecture: source
Version: 1.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 libxshmfence-dev - X shared memory fences - development files
 libxshmfence1 - X shared memory fences - shared library
 libxshmfence1-udeb - X shared memory fences (udeb)
Changes:
 libxshmfence (1.3-1) unstable; urgency=medium
 .
   * Use https in watch file.
   * Update Vcs-* control fields for move to salsa.
   * Remove myself from Uploaders.
   * Add Matt Turner's key to d/u/signing-key.asc.
   * New upstream release.
Checksums-Sha1:
 fcbd671f798b340073a45cede309e32195bc9315 2096 libxshmfence_1.3-1.dsc
 70528d74ee4dd1fdd49175a263f2d8d4c6260a41 378960 libxshmfence_1.3.orig.tar.gz
 04790b7a4df0ca733a321471d254ba2e163d8598 17456 libxshmfence_1.3-1.diff.gz
Checksums-Sha256:
 7da3e1195622ab34427bd5d09167b1f44ed1a3e828782fa8e618f1181c56194a 2096 
libxshmfence_1.3-1.dsc
 7eb3d46ad91bab444f121d475b11b39273142d090f7e9ac43e6a87f4ff5f902c 378960 
libxshmfence_1.3.orig.tar.gz
 85422af90300523b8fb27e697b59418f18bd7cd5c849161fd0be64c91ce94698 17456 
libxshmfence_1.3-1.diff.gz
Files:
 12fd92ffc89b373bbe8b1b4eac48761a 2096 libs optional libxshmfence_1.3-1.dsc
 ab3940af0bd3d3cc91eb35ecd33a779a 378960 libs optional 
libxshmfence_1.3.orig.tar.gz
 19003ef8a28508c14640cfc510bd4aa3 17456 libs optional libxshmfence_1.3-1.diff.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlqujBoACgkQnbAjVVb4
z60HNxAAjAPFSLrj4XEOU1R+dWIjqhXsvWdbumMvAeiMifaARBhKabDlnVKWhlq1
r3L1amyxYv4j8KvZNJyIJIh9nWGDYM1WPO+wzfHliHGCnnpWrz57XHfGIEPYW95i
px34JnAwTYSLQcGupUX7q2wgo4Z1gb+JWYsfWp4Vw8dWy8NwepFmuxdqjLjzSRsR
T13/5/KHhxI9kZbQpNHDgbTYRUfVjRDOiGITuLZCtHXNGYZ8YjcjabvvBFwwdjhT
2lb5ocSVbrQ3pM9SoRX23+jVBR7oXG0etWauszT2E8B0rqXlq/zbt+1uUnW4dlg+
njbrx5OW9RI7qIfHif8zgDioEa8SMISt8+wJ5DJ4Q1DU3EodUn5f704EgHw71lm0
eIWY6yQ0I7rFqnUCs3CeJkq7efSa2+pNW0ft989ZPFnWCEnMXrFHp0A6r3g9jwy4
E6xhNWlbN5FTLaPRr7B0r5SWh9VlDIwsjsWqvQXaZ7bG8vQMQd+83a3YKkDf95N/
trg9YSgXjnLYWpxn7VXSeT/ga4B/ZHPZnLp+HQhzq2dsSXy6KcCjMvQOUAFeQ4JJ
R0+y7BRZThem3mkbYxA1C5wuyntaki1m4LmhGq4dzSWzrHc4HRMh//hcGHRL29eL
gd2ltQa258LRH9ESNFFY5j8qYzf2MWdkf+z7E4FQTq11PdjYzqo=
=e8n4
-END PGP SIGNATURE-



Accepted xfonts-utils 1:7.7+5 (source) into unstable

2018-03-18 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 16:45:28 +0100
Source: xfonts-utils
Binary: xfonts-utils
Architecture: source
Version: 1:7.7+5
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 xfonts-utils - X Window System font utility programs
Changes:
 xfonts-utils (1:7.7+5) unstable; urgency=medium
 .
   * Add Adam Jackson's key in d/u/signing-key.asc.
   * bdftopcf 1.1
 + drop libxfont1-dev build-dep
   * Update packaging VCS URLs for move to salsa.
   * mkfontscale 1.1.3
Checksums-Sha1:
 bcb9a08b3f03a98b03838f4d83c7699a8cb27439 1704 xfonts-utils_7.7+5.dsc
 9a8aaa8ac1fff60dc9d32588ac228487c33e0fda 834295 xfonts-utils_7.7+5.tar.gz
Checksums-Sha256:
 b2b556b2b54d1232466b5730c7aee52f079e2ed9146585aff2185a7efde906a3 1704 
xfonts-utils_7.7+5.dsc
 404fe933d62743959267c60626dbc8d82e635dded3d20a0a24269e8d87f6cc56 834295 
xfonts-utils_7.7+5.tar.gz
Files:
 51a41f9b6fdef8f7d7988f4ed9de93f9 1704 x11 optional xfonts-utils_7.7+5.dsc
 622615c3d2a7105878ee4a1bc89398f4 834295 x11 optional xfonts-utils_7.7+5.tar.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlquidQACgkQnbAjVVb4
z60jHg//XfRscmDE3R0dAWOulYQDEYR1BEJG96zJi2412+NqaBXfGImv8Lyk6Slm
RQdPy6yKUTAuQlGLOY5443IrEJ7MtNa9E6v3bQfetk+5jUxhERU5PC3KZh+pxiH1
md/nWDFVAnDOE72izIRxlPrKSARaTlxFQwC0HDqDDQUPVkabUwiSt3zv6uePdfgg
+sbgC0gbPIrJqKilSy7AQyqVs7kfy4C5YqdnEFg1bG7kl3oHTNiZvGucKD3UIG1F
Nz3xtOG5s4Pcr8BJhmUW0GLNmy5fO4uFHVkSx5gLmg2gsT00Wl+P5XzrZvdn0N+R
ExtPZg6YNt3HGr8Ci1afhuD1+9TG/rckekIFMS0WVke1/ZtUyLRq2ceUFQ+Fj6jr
kF953uwJUGkXejhvfmo/3VwX67AC5PKfIGUjgzOH+ELjT5afVxKVfN5H9Srn8baQ
jzdgRna+tGDkd0YhMWiAh2i4EPRGkmG/N/eurKfwbFnw6yx/GreO6JUf03WCL19/
ry1153xqejCVMS32o82K7DNB1HtWj6Fi/5WzTl5YXZrq/h8xzncpONVqVjMEnP0V
+WR/x7hjVe6DkhV3oSBDhE4L4ElAAlEJ2U6xRu3fC5UxVQigcXv+Gyx44My/QcjK
99a/6LcGFZzDSqJHmrNW7SnSTXue6BDO/tpoV7Fc4QW+sAlTK9s=
=orL0
-END PGP SIGNATURE-



Accepted x11-apps 7.7+7 (source) into unstable

2018-03-18 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 17:07:42 +0100
Source: x11-apps
Binary: x11-apps
Architecture: source
Version: 7.7+7
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 x11-apps   - X applications
Changes:
 x11-apps (7.7+7) unstable; urgency=medium
 .
   * Switch all xorg.freedesktop.org URLs in packaging to https.
   * xconsole 1.0.7.
   * Update packaging VCS URLs for move to salsa.
   * ico 1.0.5
   * oclock 1.0.4
   * transset 1.0.2
   * xeyes 1.1.2
   * xload 1.1.3
   * xwd 1.0.7
   * xwud 1.0.5
Checksums-Sha1:
 09b9c5dfab790b70757720776036a9cf6736e3b2 1906 x11-apps_7.7+7.dsc
 296ea16cee196aa4f16def5f11f7ac80da8ab353 4572581 x11-apps_7.7+7.tar.gz
Checksums-Sha256:
 08e3e42ac72e2f05d31e33c96d72a57e5ac7a70ed73a051acdd5c1f24531a877 1906 
x11-apps_7.7+7.dsc
 16ba199dde8b1ac6976b1554a7d6d6f949737114300428442a4053914f6b4d6f 4572581 
x11-apps_7.7+7.tar.gz
Files:
 0ca3f28c11545b9a2e3159c8a33cae0d 1906 x11 optional x11-apps_7.7+7.dsc
 0845b4953c2407433a43d583db124ae7 4572581 x11 optional x11-apps_7.7+7.tar.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlqujwMACgkQnbAjVVb4
z60MkxAAnrwPz+Lw6agqXhGPYeFFQ+286sngx/B2hAxb2l5GkioImDOEyDhEoBy8
uVWtAcweh0lviUqRhLZpttgSIFKdYdnY/+10in0Obtjj4ATMyKn6cT2ZGyu5uGMu
UcJsTqwbx/Zgpy2aDzGuH/fR2ktMfbcoLFIFykHjGKRL1Twcmrd83PK78nXc52g8
92cgwaSRwgty5D8HIRxzg39EEAgaJURARuWhtC0n1jK9COT1unv+bePpxmXrwC8w
zjm2OH4dFjWgUp2XasddBrP3oJaGreJFE4EL9REUObfN5rKex6PvmSbE+/VTZFBv
CXRcredIvCyEqx2o6b7eUk8luO7Ih95jt2NjrLZ0fwkn4CBx6ZURWh38el1uB8pV
zpEtibU2jslBhhl69SCz6qgXXflwRdHOdMfC+G80kokElO9DdTKTjijVO3qpiHNy
L9SDdUk/gTWLfomdkoBWzd8G5YDQWBcKjobM5MVW8CmVmBPHJVa0sPodGGJwVEcI
fbrggnQYdMZhLmsTIPEOKwA9ybO/3wTOxtJ/cHylR4EJdAa8eajrTfz795W9zRsG
nsPUx3QI85Xu7uxQEZ4EvJDByBDsZcvMol9sIdHaXYVKhygzlAeVZxXFPK3rQRBv
e6nxGEY8hQoZ0IxyBOzowSYZPSxALDoleTnlnJp9iNzk9qxMZ5k=
=uM7c
-END PGP SIGNATURE-



Processing of x11-apps_7.7+7_source.changes

2018-03-18 Thread Debian FTP Masters
x11-apps_7.7+7_source.changes uploaded successfully to localhost
along with the files:
  x11-apps_7.7+7.dsc
  x11-apps_7.7+7.tar.gz

Greetings,

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



libxfont_2.0.3-1_source.changes ACCEPTED into unstable

2018-03-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 16:35:45 +0100
Source: libxfont
Binary: libxfont2 libxfont2-udeb libxfont-dev
Architecture: source
Version: 1:2.0.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 libxfont-dev - X11 font rasterisation library (development headers)
 libxfont2  - X11 font rasterisation library
 libxfont2-udeb - X11 font rasterisation library (udeb)
Changes:
 libxfont (1:2.0.3-1) unstable; urgency=medium
 .
   * Add Matthieu Herrb's key to d/u/signing-key.asc
   * New upstream release.
 + Open files with O_NOFOLLOW. (CVE-2017-16611)
   * Update package metadata for move to salsa.
Checksums-Sha1:
 4b6e7bc5f9d2f7981c3444951f8d1df3235ddd3d 2166 libxfont_2.0.3-1.dsc
 c1a10be432556ec58d9a978b0506e1391bd6e7e8 614477 libxfont_2.0.3.orig.tar.gz
 1154fc8a64c57160abe2a278a5e332b31b619305 30884 libxfont_2.0.3-1.diff.gz
Checksums-Sha256:
 ff2fbcd8f8d2b7c0a278b9b47ae0b1e116058b23b1f16356a62bc4fc8c751ab2 2166 
libxfont_2.0.3-1.dsc
 a4b761a37528353a2b83dba364d7c1fd6aef2d554a1a019815f24f7f8866890e 614477 
libxfont_2.0.3.orig.tar.gz
 8b10e4308e50e72dedff59e96f11ffe9caab7c9d620f3f86316f99ed036e27e7 30884 
libxfont_2.0.3-1.diff.gz
Files:
 899c44787cc38ad13df943d9bb80e057 2166 x11 optional libxfont_2.0.3-1.dsc
 ba7277762e3737cd8dcb6c7fe5113a34 614477 x11 optional libxfont_2.0.3.orig.tar.gz
 a95f3fb8067dbee5c02eeaa3dd36f7ab 30884 x11 optional libxfont_2.0.3-1.diff.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlquiCMACgkQnbAjVVb4
z61OIxAAnqVH87RmD98JIlhBfRIxHUgoZ/KuPXVc0TKZ4deq2UlMaglBrR0PZ/gd
KRjl21w1tHvegjSUY5bhMqcn2NpgxSFs7bcBp1Y9e8N2j3uT8QiEB2MzVGcTwTve
q92ODx5OlBhEXEsKL7LeZbAC8fLS187dosW2aAt92tAkw7T/LZyDAgkgFkUZc57Q
kKgyxXcLaK10ogN/6OZ+n/7L958JAQvEo/mr6GD7UzDJ9YxD6E2V+PqMnzmYDZ7t
xk85YAkCcYMgmvNnb6HejTUpg+ADr4BJhNsEvdJnOIDAIIhT82q9CQpkDkEVwd6I
cGAi870mIHWbaufPVBSo2k0nMflinaDrd8zWOQSJlwljntAHqqJywRP6ON6RMsEV
CtWWbbdy+M0LT3fbfbTLs3GvNg1H2z+PbCgLuWbsAgFCeL8gMSCnZ0w5F3h+zibK
NuiJpE89RaPKCPdcn5zyUe5M39phIS7BSwHzVxHkf1mrueG02+uLRvK1I0fh0sz4
SAQ/5tEn0JRDj2qgg427tEq45oJQKNF9kvg1rQjvZqZr8YoC0vG7fLZ94LNuI3Ys
AyfgS5GxiXCre3EKezLTLkim4Ae6W+VzXbOnn+zJduVYvTzzzQmifxsNEBeBcmjS
Hl2yILh+fzMcBgdx9TRHxeN1nzy4I5zsSJMLMXNKIKQA4xW7GVQ=
=oTah
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



libxshmfence_1.3-1_source.changes ACCEPTED into unstable

2018-03-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 16:54:51 +0100
Source: libxshmfence
Binary: libxshmfence1 libxshmfence-dev libxshmfence1-udeb
Architecture: source
Version: 1.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 libxshmfence-dev - X shared memory fences - development files
 libxshmfence1 - X shared memory fences - shared library
 libxshmfence1-udeb - X shared memory fences (udeb)
Changes:
 libxshmfence (1.3-1) unstable; urgency=medium
 .
   * Use https in watch file.
   * Update Vcs-* control fields for move to salsa.
   * Remove myself from Uploaders.
   * Add Matt Turner's key to d/u/signing-key.asc.
   * New upstream release.
Checksums-Sha1:
 fcbd671f798b340073a45cede309e32195bc9315 2096 libxshmfence_1.3-1.dsc
 70528d74ee4dd1fdd49175a263f2d8d4c6260a41 378960 libxshmfence_1.3.orig.tar.gz
 04790b7a4df0ca733a321471d254ba2e163d8598 17456 libxshmfence_1.3-1.diff.gz
Checksums-Sha256:
 7da3e1195622ab34427bd5d09167b1f44ed1a3e828782fa8e618f1181c56194a 2096 
libxshmfence_1.3-1.dsc
 7eb3d46ad91bab444f121d475b11b39273142d090f7e9ac43e6a87f4ff5f902c 378960 
libxshmfence_1.3.orig.tar.gz
 85422af90300523b8fb27e697b59418f18bd7cd5c849161fd0be64c91ce94698 17456 
libxshmfence_1.3-1.diff.gz
Files:
 12fd92ffc89b373bbe8b1b4eac48761a 2096 libs optional libxshmfence_1.3-1.dsc
 ab3940af0bd3d3cc91eb35ecd33a779a 378960 libs optional 
libxshmfence_1.3.orig.tar.gz
 19003ef8a28508c14640cfc510bd4aa3 17456 libs optional libxshmfence_1.3-1.diff.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlqujBoACgkQnbAjVVb4
z60HNxAAjAPFSLrj4XEOU1R+dWIjqhXsvWdbumMvAeiMifaARBhKabDlnVKWhlq1
r3L1amyxYv4j8KvZNJyIJIh9nWGDYM1WPO+wzfHliHGCnnpWrz57XHfGIEPYW95i
px34JnAwTYSLQcGupUX7q2wgo4Z1gb+JWYsfWp4Vw8dWy8NwepFmuxdqjLjzSRsR
T13/5/KHhxI9kZbQpNHDgbTYRUfVjRDOiGITuLZCtHXNGYZ8YjcjabvvBFwwdjhT
2lb5ocSVbrQ3pM9SoRX23+jVBR7oXG0etWauszT2E8B0rqXlq/zbt+1uUnW4dlg+
njbrx5OW9RI7qIfHif8zgDioEa8SMISt8+wJ5DJ4Q1DU3EodUn5f704EgHw71lm0
eIWY6yQ0I7rFqnUCs3CeJkq7efSa2+pNW0ft989ZPFnWCEnMXrFHp0A6r3g9jwy4
E6xhNWlbN5FTLaPRr7B0r5SWh9VlDIwsjsWqvQXaZ7bG8vQMQd+83a3YKkDf95N/
trg9YSgXjnLYWpxn7VXSeT/ga4B/ZHPZnLp+HQhzq2dsSXy6KcCjMvQOUAFeQ4JJ
R0+y7BRZThem3mkbYxA1C5wuyntaki1m4LmhGq4dzSWzrHc4HRMh//hcGHRL29eL
gd2ltQa258LRH9ESNFFY5j8qYzf2MWdkf+z7E4FQTq11PdjYzqo=
=e8n4
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



xfonts-utils_7.7+5_source.changes ACCEPTED into unstable

2018-03-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 16:45:28 +0100
Source: xfonts-utils
Binary: xfonts-utils
Architecture: source
Version: 1:7.7+5
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 xfonts-utils - X Window System font utility programs
Changes:
 xfonts-utils (1:7.7+5) unstable; urgency=medium
 .
   * Add Adam Jackson's key in d/u/signing-key.asc.
   * bdftopcf 1.1
 + drop libxfont1-dev build-dep
   * Update packaging VCS URLs for move to salsa.
   * mkfontscale 1.1.3
Checksums-Sha1:
 bcb9a08b3f03a98b03838f4d83c7699a8cb27439 1704 xfonts-utils_7.7+5.dsc
 9a8aaa8ac1fff60dc9d32588ac228487c33e0fda 834295 xfonts-utils_7.7+5.tar.gz
Checksums-Sha256:
 b2b556b2b54d1232466b5730c7aee52f079e2ed9146585aff2185a7efde906a3 1704 
xfonts-utils_7.7+5.dsc
 404fe933d62743959267c60626dbc8d82e635dded3d20a0a24269e8d87f6cc56 834295 
xfonts-utils_7.7+5.tar.gz
Files:
 51a41f9b6fdef8f7d7988f4ed9de93f9 1704 x11 optional xfonts-utils_7.7+5.dsc
 622615c3d2a7105878ee4a1bc89398f4 834295 x11 optional xfonts-utils_7.7+5.tar.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlquidQACgkQnbAjVVb4
z60jHg//XfRscmDE3R0dAWOulYQDEYR1BEJG96zJi2412+NqaBXfGImv8Lyk6Slm
RQdPy6yKUTAuQlGLOY5443IrEJ7MtNa9E6v3bQfetk+5jUxhERU5PC3KZh+pxiH1
md/nWDFVAnDOE72izIRxlPrKSARaTlxFQwC0HDqDDQUPVkabUwiSt3zv6uePdfgg
+sbgC0gbPIrJqKilSy7AQyqVs7kfy4C5YqdnEFg1bG7kl3oHTNiZvGucKD3UIG1F
Nz3xtOG5s4Pcr8BJhmUW0GLNmy5fO4uFHVkSx5gLmg2gsT00Wl+P5XzrZvdn0N+R
ExtPZg6YNt3HGr8Ci1afhuD1+9TG/rckekIFMS0WVke1/ZtUyLRq2ceUFQ+Fj6jr
kF953uwJUGkXejhvfmo/3VwX67AC5PKfIGUjgzOH+ELjT5afVxKVfN5H9Srn8baQ
jzdgRna+tGDkd0YhMWiAh2i4EPRGkmG/N/eurKfwbFnw6yx/GreO6JUf03WCL19/
ry1153xqejCVMS32o82K7DNB1HtWj6Fi/5WzTl5YXZrq/h8xzncpONVqVjMEnP0V
+WR/x7hjVe6DkhV3oSBDhE4L4ElAAlEJ2U6xRu3fC5UxVQigcXv+Gyx44My/QcjK
99a/6LcGFZzDSqJHmrNW7SnSTXue6BDO/tpoV7Fc4QW+sAlTK9s=
=orL0
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



x11-apps_7.7+7_source.changes ACCEPTED into unstable

2018-03-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 17:07:42 +0100
Source: x11-apps
Binary: x11-apps
Architecture: source
Version: 7.7+7
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 x11-apps   - X applications
Changes:
 x11-apps (7.7+7) unstable; urgency=medium
 .
   * Switch all xorg.freedesktop.org URLs in packaging to https.
   * xconsole 1.0.7.
   * Update packaging VCS URLs for move to salsa.
   * ico 1.0.5
   * oclock 1.0.4
   * transset 1.0.2
   * xeyes 1.1.2
   * xload 1.1.3
   * xwd 1.0.7
   * xwud 1.0.5
Checksums-Sha1:
 09b9c5dfab790b70757720776036a9cf6736e3b2 1906 x11-apps_7.7+7.dsc
 296ea16cee196aa4f16def5f11f7ac80da8ab353 4572581 x11-apps_7.7+7.tar.gz
Checksums-Sha256:
 08e3e42ac72e2f05d31e33c96d72a57e5ac7a70ed73a051acdd5c1f24531a877 1906 
x11-apps_7.7+7.dsc
 16ba199dde8b1ac6976b1554a7d6d6f949737114300428442a4053914f6b4d6f 4572581 
x11-apps_7.7+7.tar.gz
Files:
 0ca3f28c11545b9a2e3159c8a33cae0d 1906 x11 optional x11-apps_7.7+7.dsc
 0845b4953c2407433a43d583db124ae7 4572581 x11 optional x11-apps_7.7+7.tar.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlqujwMACgkQnbAjVVb4
z60MkxAAnrwPz+Lw6agqXhGPYeFFQ+286sngx/B2hAxb2l5GkioImDOEyDhEoBy8
uVWtAcweh0lviUqRhLZpttgSIFKdYdnY/+10in0Obtjj4ATMyKn6cT2ZGyu5uGMu
UcJsTqwbx/Zgpy2aDzGuH/fR2ktMfbcoLFIFykHjGKRL1Twcmrd83PK78nXc52g8
92cgwaSRwgty5D8HIRxzg39EEAgaJURARuWhtC0n1jK9COT1unv+bePpxmXrwC8w
zjm2OH4dFjWgUp2XasddBrP3oJaGreJFE4EL9REUObfN5rKex6PvmSbE+/VTZFBv
CXRcredIvCyEqx2o6b7eUk8luO7Ih95jt2NjrLZ0fwkn4CBx6ZURWh38el1uB8pV
zpEtibU2jslBhhl69SCz6qgXXflwRdHOdMfC+G80kokElO9DdTKTjijVO3qpiHNy
L9SDdUk/gTWLfomdkoBWzd8G5YDQWBcKjobM5MVW8CmVmBPHJVa0sPodGGJwVEcI
fbrggnQYdMZhLmsTIPEOKwA9ybO/3wTOxtJ/cHylR4EJdAa8eajrTfz795W9zRsG
nsPUx3QI85Xu7uxQEZ4EvJDByBDsZcvMol9sIdHaXYVKhygzlAeVZxXFPK3rQRBv
e6nxGEY8hQoZ0IxyBOzowSYZPSxALDoleTnlnJp9iNzk9qxMZ5k=
=uM7c
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Accepted xfonts-utils 1:7.7+6 (source) into unstable

2018-03-18 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 18:01:27 +0100
Source: xfonts-utils
Binary: xfonts-utils
Architecture: source
Version: 1:7.7+6
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 xfonts-utils - X Window System font utility programs
Changes:
 xfonts-utils (1:7.7+6) unstable; urgency=medium
 .
   * Add missing x11proto-fonts-dev build-dep.
Checksums-Sha1:
 1ef213cedfd95eb261ae99f16a0b14207c396c19 1724 xfonts-utils_7.7+6.dsc
 ed8349438a7aa4c73825af00d539bd041c79806d 834315 xfonts-utils_7.7+6.tar.gz
Checksums-Sha256:
 dbd85878cb09fa49370f2ab3a556807ab634108af53609f9481989db0fd53f5e 1724 
xfonts-utils_7.7+6.dsc
 b6f55f94091d5de37e4e2f36b54e230d414817815e58d31bdf02fdf04ef92d1c 834315 
xfonts-utils_7.7+6.tar.gz
Files:
 2f4d2e154b02653a1f12750d250116fd 1724 x11 optional xfonts-utils_7.7+6.dsc
 707b98d62f738334a0965e48de762e10 834315 x11 optional xfonts-utils_7.7+6.tar.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlqunKcACgkQnbAjVVb4
z61ySg/+LqnGnwo3Pdg/XaJKQXsmTX2TAmYZciCJ3N/EFOc8mOVVAyTaNv/cZcun
GPfgETt17+U4hAL91+q0+XgvOBCn8LmpognftjGYSRFgJZlPoUFgCPsyDfKLhXIV
Vz9ywWTn6zkPTwcPeSTlF30JKGMAkl6LwJw1+F1nhL3QnEuSBC7bwpE29jzA8sW4
AyAz/avmbC1d75qhqzxQiexGsoCKIx9nR/GDkZ9XiwMlfQ6yOXch7JvrdGf4vn8T
v7lD0RuWwwWcSBoF7BcAjlNw4IqcQSUH7u0cbB9msnAzHqYYQ5A62vVeq3Gyjf/e
04ao8Q1Lcy1UIAMfYVhQ6KexWTQ3vLlPLGO99vVmoYYWFiJ3deeW0QWEl5zY2a4f
/j9AFsDlJmZeRmm05dAAABshrUm0hsWU6u5Carqx7xns7LkrGnBXHYOCIPkONZOd
hhf6qTAjOwlQMx8aEOiQTzVfV2uSrszTstcEointha3SissjUwPU/DspkMaYXtuX
0mgceLj/qBWXMLpBoLZCsFtmcxXmxsVPY4YiCIncKSg7c69RdLhvOAuXCLzzr6yN
KIl06/Ay/oIo1R375NlBqbN8JVroLp5PlU2w7znnaqIViLfhi1fu7KMoSXhfn1io
IdK1pK4Yi8baPbIdCLtMXSRWqw1KBSkkioTeSyYhj3UTcAbBQ/s=
=VuLD
-END PGP SIGNATURE-



Processing of xfonts-utils_7.7+6_source.changes

2018-03-18 Thread Debian FTP Masters
xfonts-utils_7.7+6_source.changes uploaded successfully to localhost
along with the files:
  xfonts-utils_7.7+6.dsc
  xfonts-utils_7.7+6.tar.gz

Greetings,

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



xfonts-utils_7.7+6_source.changes ACCEPTED into unstable

2018-03-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 18:01:27 +0100
Source: xfonts-utils
Binary: xfonts-utils
Architecture: source
Version: 1:7.7+6
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 xfonts-utils - X Window System font utility programs
Changes:
 xfonts-utils (1:7.7+6) unstable; urgency=medium
 .
   * Add missing x11proto-fonts-dev build-dep.
Checksums-Sha1:
 1ef213cedfd95eb261ae99f16a0b14207c396c19 1724 xfonts-utils_7.7+6.dsc
 ed8349438a7aa4c73825af00d539bd041c79806d 834315 xfonts-utils_7.7+6.tar.gz
Checksums-Sha256:
 dbd85878cb09fa49370f2ab3a556807ab634108af53609f9481989db0fd53f5e 1724 
xfonts-utils_7.7+6.dsc
 b6f55f94091d5de37e4e2f36b54e230d414817815e58d31bdf02fdf04ef92d1c 834315 
xfonts-utils_7.7+6.tar.gz
Files:
 2f4d2e154b02653a1f12750d250116fd 1724 x11 optional xfonts-utils_7.7+6.dsc
 707b98d62f738334a0965e48de762e10 834315 x11 optional xfonts-utils_7.7+6.tar.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlqunKcACgkQnbAjVVb4
z61ySg/+LqnGnwo3Pdg/XaJKQXsmTX2TAmYZciCJ3N/EFOc8mOVVAyTaNv/cZcun
GPfgETt17+U4hAL91+q0+XgvOBCn8LmpognftjGYSRFgJZlPoUFgCPsyDfKLhXIV
Vz9ywWTn6zkPTwcPeSTlF30JKGMAkl6LwJw1+F1nhL3QnEuSBC7bwpE29jzA8sW4
AyAz/avmbC1d75qhqzxQiexGsoCKIx9nR/GDkZ9XiwMlfQ6yOXch7JvrdGf4vn8T
v7lD0RuWwwWcSBoF7BcAjlNw4IqcQSUH7u0cbB9msnAzHqYYQ5A62vVeq3Gyjf/e
04ao8Q1Lcy1UIAMfYVhQ6KexWTQ3vLlPLGO99vVmoYYWFiJ3deeW0QWEl5zY2a4f
/j9AFsDlJmZeRmm05dAAABshrUm0hsWU6u5Carqx7xns7LkrGnBXHYOCIPkONZOd
hhf6qTAjOwlQMx8aEOiQTzVfV2uSrszTstcEointha3SissjUwPU/DspkMaYXtuX
0mgceLj/qBWXMLpBoLZCsFtmcxXmxsVPY4YiCIncKSg7c69RdLhvOAuXCLzzr6yN
KIl06/Ay/oIo1R375NlBqbN8JVroLp5PlU2w7znnaqIViLfhi1fu7KMoSXhfn1io
IdK1pK4Yi8baPbIdCLtMXSRWqw1KBSkkioTeSyYhj3UTcAbBQ/s=
=VuLD
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Accepted x11-session-utils 7.7+3 (source) into unstable

2018-03-18 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 18:20:00 +0100
Source: x11-session-utils
Binary: x11-session-utils
Architecture: source
Version: 7.7+3
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 x11-session-utils - X session utilities
Changes:
 x11-session-utils (7.7+3) unstable; urgency=medium
 .
   * Update Vcs-* URLs for move to salsa.
   * Switch all xorg.freedesktop.org URLs in packaging to https.
   * xsm 1.0.4
Checksums-Sha1:
 055d937a2bfe60143ebd9ed9280707f61b8ed8ad 1793 x11-session-utils_7.7+3.dsc
 3c98e5fd323bc6b4d884fa7eac4e684a0012de5e 586504 x11-session-utils_7.7+3.tar.gz
Checksums-Sha256:
 a713c3ce9b40fb22921ea9617adbedd9cbde9b44b7bde98879e1d575fcd6556c 1793 
x11-session-utils_7.7+3.dsc
 c1d6d8dd9c42804eca9c8ed1e5cfafa144fa82ddf0fcab3d536187dc9c146cb8 586504 
x11-session-utils_7.7+3.tar.gz
Files:
 5d3733069cc2639a862929b1eaa16071 1793 x11 optional x11-session-utils_7.7+3.dsc
 9d3b69f6ae890dd46f59e9caa8897288 586504 x11 optional 
x11-session-utils_7.7+3.tar.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlqun/IACgkQnbAjVVb4
z61+4w//cqvu3R7NS44+tdq1ydG7ZOdNa2dgxVmtkyg1SwqHslHEnXY9KD95TUi8
D2+V2aIB2ipgh0K8PDNxXYGmylF1YEVIWM6n8/WKECGwGGgrFHCTXefTFFp8xgpE
oa3jWiMwuNxhUEQ3FsQCYF2eAFwl9ObSoXxeymg6/4H2sDIdJ3r7KHE0zqHNDJ/Q
NURSisy5n7FtCWvDYBPUyliIObqH6XiDIlQI9QNErDrRQWW0WvIr7hb7jMDq56md
QMUTn2/en1dxsy7GhfpHsz+HHatvt6tBbZSAo8OT/fwqQm/PZgh6LfcK/KOPZDum
qocXy5qLmtEXB+xlTWJyvB6hDkmD23GbkwcwMNjldQfBMvBFwy+leQMJxpNk2++q
690NgiFwsvJ+wnu96Vo9hBg0iTxjzXHI80xRVLIikqL31pJ6IYlaWmCtEJkhVPmR
wzKkDRlcoBBWnzfMOTHltUO3X24Fkywk0HASzP5NSCF5NTlm2xCc0HE02n3ONSgL
vLu+6rNIqcE8kHpvKga3JKwf9oJ4rh0BU+Vpf3iCdE7lVZ3RtpbbpO44o6yt3EKH
ZSaTZu9WVZUW7jAfBWh3S/LBD293Bu8MTEMmDTU3LVj5LZempq0jzXi9MrEXuY/K
wAEPiA+YrWfsCBYFgwGTRLmI5srCOiG2TdND80y7dA4gZ8ObzxQ=
=iTMU
-END PGP SIGNATURE-



Processing of x11-session-utils_7.7+3_source.changes

2018-03-18 Thread Debian FTP Masters
x11-session-utils_7.7+3_source.changes uploaded successfully to localhost
along with the files:
  x11-session-utils_7.7+3.dsc
  x11-session-utils_7.7+3.tar.gz

Greetings,

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



x11-session-utils_7.7+3_source.changes ACCEPTED into unstable

2018-03-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 18:20:00 +0100
Source: x11-session-utils
Binary: x11-session-utils
Architecture: source
Version: 7.7+3
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 x11-session-utils - X session utilities
Changes:
 x11-session-utils (7.7+3) unstable; urgency=medium
 .
   * Update Vcs-* URLs for move to salsa.
   * Switch all xorg.freedesktop.org URLs in packaging to https.
   * xsm 1.0.4
Checksums-Sha1:
 055d937a2bfe60143ebd9ed9280707f61b8ed8ad 1793 x11-session-utils_7.7+3.dsc
 3c98e5fd323bc6b4d884fa7eac4e684a0012de5e 586504 x11-session-utils_7.7+3.tar.gz
Checksums-Sha256:
 a713c3ce9b40fb22921ea9617adbedd9cbde9b44b7bde98879e1d575fcd6556c 1793 
x11-session-utils_7.7+3.dsc
 c1d6d8dd9c42804eca9c8ed1e5cfafa144fa82ddf0fcab3d536187dc9c146cb8 586504 
x11-session-utils_7.7+3.tar.gz
Files:
 5d3733069cc2639a862929b1eaa16071 1793 x11 optional x11-session-utils_7.7+3.dsc
 9d3b69f6ae890dd46f59e9caa8897288 586504 x11 optional 
x11-session-utils_7.7+3.tar.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlqun/IACgkQnbAjVVb4
z61+4w//cqvu3R7NS44+tdq1ydG7ZOdNa2dgxVmtkyg1SwqHslHEnXY9KD95TUi8
D2+V2aIB2ipgh0K8PDNxXYGmylF1YEVIWM6n8/WKECGwGGgrFHCTXefTFFp8xgpE
oa3jWiMwuNxhUEQ3FsQCYF2eAFwl9ObSoXxeymg6/4H2sDIdJ3r7KHE0zqHNDJ/Q
NURSisy5n7FtCWvDYBPUyliIObqH6XiDIlQI9QNErDrRQWW0WvIr7hb7jMDq56md
QMUTn2/en1dxsy7GhfpHsz+HHatvt6tBbZSAo8OT/fwqQm/PZgh6LfcK/KOPZDum
qocXy5qLmtEXB+xlTWJyvB6hDkmD23GbkwcwMNjldQfBMvBFwy+leQMJxpNk2++q
690NgiFwsvJ+wnu96Vo9hBg0iTxjzXHI80xRVLIikqL31pJ6IYlaWmCtEJkhVPmR
wzKkDRlcoBBWnzfMOTHltUO3X24Fkywk0HASzP5NSCF5NTlm2xCc0HE02n3ONSgL
vLu+6rNIqcE8kHpvKga3JKwf9oJ4rh0BU+Vpf3iCdE7lVZ3RtpbbpO44o6yt3EKH
ZSaTZu9WVZUW7jAfBWh3S/LBD293Bu8MTEMmDTU3LVj5LZempq0jzXi9MrEXuY/K
wAEPiA+YrWfsCBYFgwGTRLmI5srCOiG2TdND80y7dA4gZ8ObzxQ=
=iTMU
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Bug#893433: libegl1-mesa-dev: File conflicts with libwayland-dev:amd64 1.14.91-1

2018-03-18 Thread Lisandro Damián Nicanor Pérez Meyer
Package: libegl1-mesa-dev
Version: 18.0.0~rc4-1
Severity: serious
Justification: File conflicts

Hi! While trying to build qtwayland I ran across:

dpkg: error processing archive 
/tmp/apt-dpkg-install-VBKAMl/062-libegl1-mesa-dev_18.0.0~rc4-1_amd64.deb 
(--unpack):
trying to overwrite '/usr/lib/x86_64-linux-gnu/pkgconfig/wayland-egl.pc', which 
is also in package libwayland-dev:amd64 1.14.91-1

Admitedly I'm using a build against experimental using aspcud as dep resolver, 
as I need to build Qt in experimental, so maybe this is related.

Thanks, Lisandro.

-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'unstable-debug'), (500, 
'testing-debug'), (500, 'buildd-unstable'), (500, 'testing'), (500, 'stable'), 
(1, 'experimental-debug'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.15.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=es_AR.UTF-8, LC_CTYPE=es_AR.UTF-8 (charmap=UTF-8), 
LANGUAGE=es_AR:es (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages libegl1-mesa-dev depends on:
ii  libdrm-dev2.4.91-1
ii  libglvnd-dev  1.0.0-2
pn  libwayland-dev
ii  libwayland-egl1-mesa  17.3.6-1
ii  libx11-dev2:1.6.4-3
ii  libx11-xcb-dev2:1.6.4-3
ii  libxcb-dri2-0-dev 1.13-1
ii  libxcb-dri3-dev   1.13-1
ii  libxcb-glx0-dev   1.13-1
ii  libxcb-present-dev1.13-1
ii  libxcb-sync-dev   1.13-1
ii  libxdamage-dev1:1.1.4-3
ii  libxext-dev   2:1.3.3-1+b2
ii  libxfixes-dev 1:5.0.3-1
ii  libxshmfence-dev  1.2-1+b2
ii  libxxf86vm-dev1:1.1.4-1+b2
ii  x11proto-dri2-dev 2.8-2
ii  x11proto-gl-dev   1.4.17-1

libegl1-mesa-dev recommends no packages.

libegl1-mesa-dev suggests no packages.



is this a bug of twm of stretch?

2018-03-18 Thread Long Wind
after I install twm of stretch, I'm unable run startxthen I create a .xinitrc 
like this:
xterm &twm
and I can run startx again.



Processed: closing 883929

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

> close 883929 1:2.0.3-1
Bug #883929 [src:libxfont] libxfont: CVE-2017-16611: User can trigger reads on 
special files as root allowing for DoS
Marked as fixed in versions libxfont/1:2.0.3-1.
Bug #883929 [src:libxfont] libxfont: CVE-2017-16611: User can trigger reads on 
special files as root allowing for DoS
Marked Bug as done
> thanks
Stopping processing here.

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



Bug#893445: RM: libxfont1 -- ROM; obsolete library with no reverse dependencies

2018-03-18 Thread Julien Cristau
Package: ftp.debian.org
Severity: normal
X-Debbugs-Cc: libxfo...@packages.debian.org

as of xfonts-utils 1:7.7+6 there are no reverse dependencies for
libxfont1 left (ignoring kbsd).  It's time to remove it.

Cheers,
Julien



Bug#893433: marked as done (libegl1-mesa-dev: File conflicts with libwayland-dev:amd64 1.14.91-1)

2018-03-18 Thread Debian Bug Tracking System
Your message dated Sun, 18 Mar 2018 22:43:11 +0100
with message-id <20180318214311.euphco43iyml2...@betterave.cristau.org>
and subject line Re: Bug#893433: libegl1-mesa-dev: File conflicts with 
libwayland-dev:amd64 1.14.91-1
has caused the Debian Bug report #893433,
regarding libegl1-mesa-dev: File conflicts with libwayland-dev:amd64 1.14.91-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.)


-- 
893433: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=893433
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libegl1-mesa-dev
Version: 18.0.0~rc4-1
Severity: serious
Justification: File conflicts

Hi! While trying to build qtwayland I ran across:

dpkg: error processing archive 
/tmp/apt-dpkg-install-VBKAMl/062-libegl1-mesa-dev_18.0.0~rc4-1_amd64.deb 
(--unpack):
trying to overwrite '/usr/lib/x86_64-linux-gnu/pkgconfig/wayland-egl.pc', which 
is also in package libwayland-dev:amd64 1.14.91-1

Admitedly I'm using a build against experimental using aspcud as dep resolver, 
as I need to build Qt in experimental, so maybe this is related.

Thanks, Lisandro.

-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'unstable-debug'), (500, 
'testing-debug'), (500, 'buildd-unstable'), (500, 'testing'), (500, 'stable'), 
(1, 'experimental-debug'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.15.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=es_AR.UTF-8, LC_CTYPE=es_AR.UTF-8 (charmap=UTF-8), 
LANGUAGE=es_AR:es (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages libegl1-mesa-dev depends on:
ii  libdrm-dev2.4.91-1
ii  libglvnd-dev  1.0.0-2
pn  libwayland-dev
ii  libwayland-egl1-mesa  17.3.6-1
ii  libx11-dev2:1.6.4-3
ii  libx11-xcb-dev2:1.6.4-3
ii  libxcb-dri2-0-dev 1.13-1
ii  libxcb-dri3-dev   1.13-1
ii  libxcb-glx0-dev   1.13-1
ii  libxcb-present-dev1.13-1
ii  libxcb-sync-dev   1.13-1
ii  libxdamage-dev1:1.1.4-3
ii  libxext-dev   2:1.3.3-1+b2
ii  libxfixes-dev 1:5.0.3-1
ii  libxshmfence-dev  1.2-1+b2
ii  libxxf86vm-dev1:1.1.4-1+b2
ii  x11proto-dri2-dev 2.8-2
ii  x11proto-gl-dev   1.4.17-1

libegl1-mesa-dev recommends no packages.

libegl1-mesa-dev suggests no packages.
--- End Message ---
--- Begin Message ---
On Sun, Mar 18, 2018 at 16:51:48 -0300, Lisandro Damián Nicanor Pérez Meyer 
wrote:

> Package: libegl1-mesa-dev
> Version: 18.0.0~rc4-1
> Severity: serious
> Justification: File conflicts
> 
> Hi! While trying to build qtwayland I ran across:
> 
> dpkg: error processing archive 
> /tmp/apt-dpkg-install-VBKAMl/062-libegl1-mesa-dev_18.0.0~rc4-1_amd64.deb 
> (--unpack):
> trying to overwrite '/usr/lib/x86_64-linux-gnu/pkgconfig/wayland-egl.pc', 
> which is also in package libwayland-dev:amd64 1.14.91-1
> 
> Admitedly I'm using a build against experimental using aspcud as dep 
> resolver, as I need to build Qt in experimental, so maybe this is related.
> 
This is a dupe of #893366.

Cheers,
Julien--- End Message ---


Accepted x11-utils 7.7+4 (source) into unstable

2018-03-18 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 22:59:25 +0100
Source: x11-utils
Binary: x11-utils
Architecture: source
Version: 7.7+4
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 x11-utils  - X11 utilities
Changes:
 x11-utils (7.7+4) unstable; urgency=medium
 .
   * Update Vcs-* control fields for move to salsa.
   * Switch all xorg.freedesktop.org URLs in packaging to https.
   * appres 1.0.5
   * editres 1.0.7
   * listres 1.0.4
   * viewres 1.0.5
   * xdriinfo 1.0.6
   * xfontsel 1.0.6
   * xkill 1.0.5
   * xlsclients 1.1.4
   * xlsfonts 1.0.6
   * xmessage 1.0.5
   * xprop 1.2.3
   * xwininfo 1.1.4
   * Bump libxt-dev build-dep to 1.0.99.1 per editres configure.ac.
Checksums-Sha1:
 973a8f694fe78fc182bc67c47dbfdd6c5d3673d9 2191 x11-utils_7.7+4.dsc
 e499c9a0cc01fa08a78c741d43306b4487ae431a 3047124 x11-utils_7.7+4.tar.gz
Checksums-Sha256:
 fcbc117ffd528792a1241496dbadaebef4d45daadf580ecce89ac16b030dc741 2191 
x11-utils_7.7+4.dsc
 1efdee59f74182745593ce4f466a777fc81f95039a885f966c1752bd006001d8 3047124 
x11-utils_7.7+4.tar.gz
Files:
 87134b62a16dd9497e633c1c6ef3291b 2191 x11 optional x11-utils_7.7+4.dsc
 131265501a7877902ce7fa35118077e7 3047124 x11 optional x11-utils_7.7+4.tar.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlqu4dYACgkQnbAjVVb4
z63KAQ//cYacTsx4/0pPPIAqhsWF6gwJ3kefMZ0oUABxkXBNgXqzFiSCRix5lNLy
DjbC6RreVcIFVFEL2/DMoNb5ORiSnKLubl8dkhuqpLEVdNi+CJP+aMRf6u3Kliz8
zH1eIzogyB5vKu7Bb65MnJlSVMJZAtg29/WBtLwzPlfs1rR+l/t8fA+wuAegIj1T
0ViLq7nHKmnbg0o4um+8aHKdGbFO7AMaXSZbli77lKplem0ilicBuRCiLJRSkM6O
1ogp/WttFHVn1lxcxkxSnZahFHuh57HN4qJLAfpEG3Muj/krk62j5mNNDTrrPfZK
+A3CXL8iz0H7hlOH4bdInN/EJdTjPuHqPLBxq5rfnPYeMzaJA8M+fDIIc/HXgCxp
2Mhye6DuqebXLbM7k3jD70lWf2lXz/VdZ6U0Ow0bcSVL2IdZhbnlW07NvZ0Cih4p
MuzdcmWrW0VQKWOwSaJFusa47L6e4Imn8vY8m5hIBbus8IIAnYI8Q8O27uoC7mo8
keJ99nuRHUiWAZ6Af23+6NwWrNEBV8PCcowoacLCcqg1hrOX2Zy2zK8rrZ5iGkWE
tNl7xrQmUFr4U8MOyLye+Y/2jgT3yF4AvlzmN+TUb+YArlcndV5yojS48QEMVNrD
WyTvcpwz8L6il4Vv5hhmOCBa0GkqtlQzScVwB+T8oFtFr8DvAHY=
=Zw18
-END PGP SIGNATURE-



Processing of x11-utils_7.7+4_source.changes

2018-03-18 Thread Debian FTP Masters
x11-utils_7.7+4_source.changes uploaded successfully to localhost
along with the files:
  x11-utils_7.7+4.dsc
  x11-utils_7.7+4.tar.gz

Greetings,

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



Bug#893446: xserver-xorg-video-intel: Video playback with tearing artefacts due to video sync

2018-03-18 Thread Marco
Package: xserver-xorg-video-intel
Version: 2:2.99.917+git20171229-1
Severity: important

Dear Maintainer,

   * What led up to the situation?
Playing video, either on MPlayer or VLC. You get parts of the video 
that are not synced with the rest. Here there is a picture: 
https://i.imgur.com/ctsXLLT.jpg
You can see that pattern which happens on different parts of the video, 
when there's a lot of movement.

   * What exactly did you do (or not do) that was effective (or
 ineffective)?
Tried many different things. I was able to verify that this problem is 
not present on a live CD of Linux Mint Debian Edition. Then I tried a live CD 
version of Debian: debian-live-9.3.0-amd64-xfce. The problem was present on 
Debian live CD, but not on LMDE.

These errors listed in Xorg's log is present on my Debian installation. They 
were not present in LMDE

cat /var/log/Xorg.0.log | grep EE
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[51.808] (EE) intel(0): failed to set mode: Input/output error [5]
[54.608] (EE) synaptics: ETPS/2 Elantech Touchpad: Synaptics driver unable 
to detect protocol
[54.608] (EE) PreInit returned 11 for "ETPS/2 Elantech Touchpad"
[54.623] (EE) intel(0): Detected a hung GPU, disabling acceleration.
[  8753.929] (EE) 
[  8753.929] (EE) xf86CloseConsole: VT_ACTIVATE failed: Input/output error
[  8753.929] (EE) 
[  8753.929] (EE) 
[  8753.929] (EE) Please also check the log file at "/var/log/Xorg.0.log" for 
additional information.
[  8753.929] (EE) 
[  8753.929] (EE) 
[  8753.929] (EE) xf86CloseConsole: VT_ACTIVATE failed: Input/output error
[  8753.929] (EE) 
 


-- Package-specific info:
X server symlink status:

lrwxrwxrwx 1 root root 13 Mar 19  2011 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 274 Jan 18 09:11 /usr/bin/Xorg

VGA-compatible devices on PCI bus:
--
00:02.0 VGA compatible controller [0300]: Intel Corporation Core Processor 
Integrated Graphics Controller [8086:0046] (rev 02)

Xorg X server configuration file status:

-rw-r--r-- 1 root root 805 Mar 23  2011 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
---
Section "InputDevice"
Identifier  "Touchpad"
Driver  "synaptics"
Option  "Protocol"  "auto-dev"
Option  "MinSpeed"  "0.5"
Option  "MaxSpeed"  "1.0"
Option  "AccelFactor"   "0.075"
Option  "VertTwoFingerScroll"   "1"
Option  "HorizTwoFingerScroll"  "1"
Option  "TapButton1""1"
Option  "TapButton2""2"
Option  "TapButton3""3"
Option  "LockedDrags"   "1"
Option  "VertEdgeScroll""1"
Option  "HorizEdgeScroll"   "1"
EndSection


Section "ServerLayout"
Identifier  "Default Layout"
#Screen  "Default Screen"
#InputDevice "Generic Keyboard"
InputDevice "Touchpad"
EndSection

/etc/X11/xorg.conf.d does not exist.

KMS configuration files:

/etc/modprobe.d/i915-kms.conf:
  #options i915 modeset=0

Kernel version (/proc/version):
---
Linux version 4.14.0-3-amd64 (debian-ker...@lists.debian.org) (gcc version 
7.2.0 (Debian 7.2.0-19)) #1 SMP Debian 4.14.13-1 (2018-01-14)

Xorg X server log files on system:
--
-rw-r--r-- 1 root  root  30567 Oct 13  2015 /var/log/Xorg.0.log
-rw-r--r-- 1 the98 the98  5845 Jan 14 19:27 
/home/the98/.local/share/xorg/Xorg.1.log
-rw-r--r-- 1 the98 the98 46028 Mar 18 17:48 
/home/the98/.local/share/xorg/Xorg.0.log

Contents of most recent Xorg X server log file 
(/home/the98/.local/share/xorg/Xorg.0.log):
--
[89.750] 
X.Org X Server 1.19.6
Release Date: 2017-12-20
[89.750] X Protocol Version 11, Revision 0
[89.750] Build Operating System: Linux 4.9.0-5-amd64 x86_64 Debian
[89.750] Current Operating System: Linux g560 4.14.0-3-amd64 #1 SMP Debian 
4.14.13-1 (2018-01-14) x86_64
[89.750] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.14.0-3-amd64 
root=UUID=095e0d3b-db34-4564-bcd1-0768f602acae ro quiet
[89.750] Build Date: 26 January 2018  04:30:21PM
[89.750] xorg-server 2:1.19.6-1 (https://www.debian.org/support) 
[89.750] Current version of pixman: 0.34.0
[89.750]Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[89.750] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[89.751] (==) 

x11-utils_7.7+4_source.changes ACCEPTED into unstable

2018-03-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 22:59:25 +0100
Source: x11-utils
Binary: x11-utils
Architecture: source
Version: 7.7+4
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 x11-utils  - X11 utilities
Changes:
 x11-utils (7.7+4) unstable; urgency=medium
 .
   * Update Vcs-* control fields for move to salsa.
   * Switch all xorg.freedesktop.org URLs in packaging to https.
   * appres 1.0.5
   * editres 1.0.7
   * listres 1.0.4
   * viewres 1.0.5
   * xdriinfo 1.0.6
   * xfontsel 1.0.6
   * xkill 1.0.5
   * xlsclients 1.1.4
   * xlsfonts 1.0.6
   * xmessage 1.0.5
   * xprop 1.2.3
   * xwininfo 1.1.4
   * Bump libxt-dev build-dep to 1.0.99.1 per editres configure.ac.
Checksums-Sha1:
 973a8f694fe78fc182bc67c47dbfdd6c5d3673d9 2191 x11-utils_7.7+4.dsc
 e499c9a0cc01fa08a78c741d43306b4487ae431a 3047124 x11-utils_7.7+4.tar.gz
Checksums-Sha256:
 fcbc117ffd528792a1241496dbadaebef4d45daadf580ecce89ac16b030dc741 2191 
x11-utils_7.7+4.dsc
 1efdee59f74182745593ce4f466a777fc81f95039a885f966c1752bd006001d8 3047124 
x11-utils_7.7+4.tar.gz
Files:
 87134b62a16dd9497e633c1c6ef3291b 2191 x11 optional x11-utils_7.7+4.dsc
 131265501a7877902ce7fa35118077e7 3047124 x11 optional x11-utils_7.7+4.tar.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlqu4dYACgkQnbAjVVb4
z63KAQ//cYacTsx4/0pPPIAqhsWF6gwJ3kefMZ0oUABxkXBNgXqzFiSCRix5lNLy
DjbC6RreVcIFVFEL2/DMoNb5ORiSnKLubl8dkhuqpLEVdNi+CJP+aMRf6u3Kliz8
zH1eIzogyB5vKu7Bb65MnJlSVMJZAtg29/WBtLwzPlfs1rR+l/t8fA+wuAegIj1T
0ViLq7nHKmnbg0o4um+8aHKdGbFO7AMaXSZbli77lKplem0ilicBuRCiLJRSkM6O
1ogp/WttFHVn1lxcxkxSnZahFHuh57HN4qJLAfpEG3Muj/krk62j5mNNDTrrPfZK
+A3CXL8iz0H7hlOH4bdInN/EJdTjPuHqPLBxq5rfnPYeMzaJA8M+fDIIc/HXgCxp
2Mhye6DuqebXLbM7k3jD70lWf2lXz/VdZ6U0Ow0bcSVL2IdZhbnlW07NvZ0Cih4p
MuzdcmWrW0VQKWOwSaJFusa47L6e4Imn8vY8m5hIBbus8IIAnYI8Q8O27uoC7mo8
keJ99nuRHUiWAZ6Af23+6NwWrNEBV8PCcowoacLCcqg1hrOX2Zy2zK8rrZ5iGkWE
tNl7xrQmUFr4U8MOyLye+Y/2jgT3yF4AvlzmN+TUb+YArlcndV5yojS48QEMVNrD
WyTvcpwz8L6il4Vv5hhmOCBa0GkqtlQzScVwB+T8oFtFr8DvAHY=
=Zw18
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Accepted x11-xserver-utils 7.7+8 (source) into unstable

2018-03-18 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 23:19:30 +0100
Source: x11-xserver-utils
Binary: x11-xserver-utils
Architecture: source
Version: 7.7+8
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 x11-xserver-utils - X server utilities
Changes:
 x11-xserver-utils (7.7+8) unstable; urgency=medium
 .
   * Switch all xorg.freedesktop.org URLs in packaging to https.
   * Add Matt Turner's key to d/u/signing-key.asc.
   * sessreg 1.1.1.
 + 03_sessreg_Pass-P-to-the-preprocessor-when-generating-filenames.diff:
   drop, applied upstream
   * Update packaging VCS URLs for move to salsa.
   * iceauth 1.0.8
   * xrdb 1.1.1
   * xrefresh 1.0.6
   * xset 1.2.4
   * xsetroot 1.1.2
Checksums-Sha1:
 31bbf7bb154f08eee0b6a9d8c1446ad92830b65d 1949 x11-xserver-utils_7.7+8.dsc
 f98d0d64bbba5cbc3c2c6652f6e577d2058adf5b 2645046 x11-xserver-utils_7.7+8.tar.gz
Checksums-Sha256:
 e9f3fe561444bac31e40fe9405ab64a1d10e3cca3d0a7dfed870cb8921a8a95d 1949 
x11-xserver-utils_7.7+8.dsc
 2f571846006d7671777dbcac2e89e48f780f97506b75b7c871744637125a29d8 2645046 
x11-xserver-utils_7.7+8.tar.gz
Files:
 679cb15c3b1e18af77443ba5634746ad 1949 x11 optional x11-xserver-utils_7.7+8.dsc
 25fb5d9515cc8e5e0e691e60129c35eb 2645046 x11 optional 
x11-xserver-utils_7.7+8.tar.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlqu5+AACgkQnbAjVVb4
z62qzw//VaHgvMsGPWy2x/Ud3VLvfMmdGxIoEuCG40cWa6egqnF6G7c7CbBxMf8E
MK1iqNlVXHFxe4T9fixH/H4qjbjqUVmZNbr9VhNMcUezuXsgEwoqju8Czwp0FTd3
gSIgy/lKXf/6lKOIRIhdSA0bi9EfzIIXuZgK84agmUwEJhaYKOh5B2oXChCltUBp
2C6QYDWZPuduJ1BQ/NJsIXcCNSvq1erl3VKmF+vDZznIxRZSd9tHjJTQqw6wsAmg
3a7dN9SIdGOCwBH1bZNAg8TVUD1Zd1EbaxCR9MYPG2IHWcCPPNkipIgE0sULqD4U
VFJk4hfyn1sIpuT/eQxbdYcrykkxJvmZAzKbKAvyh8dCyRzSAe2jzybTwvGNkoHY
VIvY2gTr5Azwkolt7EC83vlC+CSTxvMTuZ2lAWMeh0P2SWtzMLLibKxk7lV+0s8M
GVOtgSKefS9ZfiqIyJLT42WutNqpnOsFG/P8ufvKo+qNdkBnJfq3sUDZrAUZ2oLx
MT140U7LkzP3zvygsxQmx3GaF3wYmMwqETv429NUHZGXX2hfQQ8heRoZ+XhrIFKD
PbG+lN0QLJQVw+H5bUfpc1clEDZv0nFWR4h29h2aCIR/8fvON6DpPBJ670APAIXM
l61eGTbr+Id8AQ2yw8qPE1mW1NggCQpjSaFQuuESWzCsUKQv0m8=
=TW+K
-END PGP SIGNATURE-



Processing of x11-xserver-utils_7.7+8_source.changes

2018-03-18 Thread Debian FTP Masters
x11-xserver-utils_7.7+8_source.changes uploaded successfully to localhost
along with the files:
  x11-xserver-utils_7.7+8.dsc
  x11-xserver-utils_7.7+8.tar.gz

Greetings,

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



Accepted xcursor-themes 1.0.5-1 (source) into unstable

2018-03-18 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 23:42:17 +0100
Source: xcursor-themes
Binary: xcursor-themes
Architecture: source
Version: 1.0.5-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 xcursor-themes - Base X cursor themes
Changes:
 xcursor-themes (1.0.5-1) unstable; urgency=medium
 .
   * Update Vcs-* control fields for move to salsa.
   * Update xorg.freedesktop.org and www.gnu.org URLs in packaging to https.
   * Let uscan verify tarball signatures.
   * New upstream release.
   * Update debian/copyright from new {red,white}glass/COPYRIGHT.
Checksums-Sha1:
 2bf8c58a0ec55eae0106287fd08cba5a6ee874d9 1953 xcursor-themes_1.0.5-1.dsc
 a15e49016c99e94ffebebd7d3ecd4ce0aba8793a 2557532 
xcursor-themes_1.0.5.orig.tar.gz
 6ec70c0d773e0cc33bead08a5848a8b59e5e0277 9132 xcursor-themes_1.0.5-1.diff.gz
Checksums-Sha256:
 97a10280a11b3222cbe62a9750189f1068fdfe877b8c2e9ea5bf3e118c4e35de 1953 
xcursor-themes_1.0.5-1.dsc
 85636a3774debe830a15b9cd3c438171356fb451d7e3667212777a55d88f7897 2557532 
xcursor-themes_1.0.5.orig.tar.gz
 3e0df99e7345dc756f91b83fe59681c5308c82fdc8b6faec3b8bfbeec64317d2 9132 
xcursor-themes_1.0.5-1.diff.gz
Files:
 2aa59ac2686cd13aa55946f513272a3d 1953 x11 optional xcursor-themes_1.0.5-1.dsc
 1b2b888c606555022d1ace5f61359270 2557532 x11 optional 
xcursor-themes_1.0.5.orig.tar.gz
 c6c885f35582e1cea1fd1095c9140df7 9132 x11 optional 
xcursor-themes_1.0.5-1.diff.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlqu62oACgkQnbAjVVb4
z63CGw/9G6fIphcos5JOzHVdqVX3wRMVRvdmLuYw7aWx6Sb55mxNkEDD+bkL/e3m
eBHAQ3qk8XKxNyhzbXaNumIzqTwWwnlD8BqUEy0LXFdubkj+rm30JJZvjKzvoSFc
cU3apLCDkX7I6HmVkSscMkOjTnZiSkAYiHMNpHGG/hSgZYZiMCuDoVd64h0sX/Ow
k9+ylYtxds7ZbXWfGUOTWbVsjFw4Paj/DkwpV6MHwguJVQRnGYApPK9pS7tiWuYk
sRqocen2Q504P7JAj0KS6rRusJdRQ2fmdzJG72FvHw+Y7gkheCq0hbp+h4GOhFCo
WvsY9oi1pKf/84Se8wc4epopBuWuSjRUYQXOkS379BdU+o5JY1x88As/CAS8Ne0P
Zw7nQ6DOF90AZldtYgD9Dw5KEuIILT3ZrCCjM7tagBvAE+V395XlESLzb6mnVtez
d6sdrfdXv8604uMu5EcxsoAo2e+jug26B2+rwBbZvl8F1uJXkPGxsi/pakKwf1p5
d+xNB6G04Gd0fzfSRPVJbe3ZVYG6KGJ5Wzul6IUlBpCf4Po7vc/dD/ImRp1lBma/
yzTXQjiCzNJMvXZepse1D1rCQu9WoctzHDPf/ZHeh7jjM/BkYtUjJuByWIKvgH5A
A1rxoNCeMBn0v/dn0Gp6iaCQMqqpotsv42/9ZcU2j/VjFgKYpdI=
=ImnS
-END PGP SIGNATURE-



x11-xserver-utils_7.7+8_source.changes ACCEPTED into unstable

2018-03-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 23:19:30 +0100
Source: x11-xserver-utils
Binary: x11-xserver-utils
Architecture: source
Version: 7.7+8
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 x11-xserver-utils - X server utilities
Changes:
 x11-xserver-utils (7.7+8) unstable; urgency=medium
 .
   * Switch all xorg.freedesktop.org URLs in packaging to https.
   * Add Matt Turner's key to d/u/signing-key.asc.
   * sessreg 1.1.1.
 + 03_sessreg_Pass-P-to-the-preprocessor-when-generating-filenames.diff:
   drop, applied upstream
   * Update packaging VCS URLs for move to salsa.
   * iceauth 1.0.8
   * xrdb 1.1.1
   * xrefresh 1.0.6
   * xset 1.2.4
   * xsetroot 1.1.2
Checksums-Sha1:
 31bbf7bb154f08eee0b6a9d8c1446ad92830b65d 1949 x11-xserver-utils_7.7+8.dsc
 f98d0d64bbba5cbc3c2c6652f6e577d2058adf5b 2645046 x11-xserver-utils_7.7+8.tar.gz
Checksums-Sha256:
 e9f3fe561444bac31e40fe9405ab64a1d10e3cca3d0a7dfed870cb8921a8a95d 1949 
x11-xserver-utils_7.7+8.dsc
 2f571846006d7671777dbcac2e89e48f780f97506b75b7c871744637125a29d8 2645046 
x11-xserver-utils_7.7+8.tar.gz
Files:
 679cb15c3b1e18af77443ba5634746ad 1949 x11 optional x11-xserver-utils_7.7+8.dsc
 25fb5d9515cc8e5e0e691e60129c35eb 2645046 x11 optional 
x11-xserver-utils_7.7+8.tar.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlqu5+AACgkQnbAjVVb4
z62qzw//VaHgvMsGPWy2x/Ud3VLvfMmdGxIoEuCG40cWa6egqnF6G7c7CbBxMf8E
MK1iqNlVXHFxe4T9fixH/H4qjbjqUVmZNbr9VhNMcUezuXsgEwoqju8Czwp0FTd3
gSIgy/lKXf/6lKOIRIhdSA0bi9EfzIIXuZgK84agmUwEJhaYKOh5B2oXChCltUBp
2C6QYDWZPuduJ1BQ/NJsIXcCNSvq1erl3VKmF+vDZznIxRZSd9tHjJTQqw6wsAmg
3a7dN9SIdGOCwBH1bZNAg8TVUD1Zd1EbaxCR9MYPG2IHWcCPPNkipIgE0sULqD4U
VFJk4hfyn1sIpuT/eQxbdYcrykkxJvmZAzKbKAvyh8dCyRzSAe2jzybTwvGNkoHY
VIvY2gTr5Azwkolt7EC83vlC+CSTxvMTuZ2lAWMeh0P2SWtzMLLibKxk7lV+0s8M
GVOtgSKefS9ZfiqIyJLT42WutNqpnOsFG/P8ufvKo+qNdkBnJfq3sUDZrAUZ2oLx
MT140U7LkzP3zvygsxQmx3GaF3wYmMwqETv429NUHZGXX2hfQQ8heRoZ+XhrIFKD
PbG+lN0QLJQVw+H5bUfpc1clEDZv0nFWR4h29h2aCIR/8fvON6DpPBJ670APAIXM
l61eGTbr+Id8AQ2yw8qPE1mW1NggCQpjSaFQuuESWzCsUKQv0m8=
=TW+K
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of xcursor-themes_1.0.5-1_source.changes

2018-03-18 Thread Debian FTP Masters
xcursor-themes_1.0.5-1_source.changes uploaded successfully to localhost
along with the files:
  xcursor-themes_1.0.5-1.dsc
  xcursor-themes_1.0.5.orig.tar.gz
  xcursor-themes_1.0.5-1.diff.gz

Greetings,

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



xcursor-themes_1.0.5-1_source.changes ACCEPTED into unstable

2018-03-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 18 Mar 2018 23:42:17 +0100
Source: xcursor-themes
Binary: xcursor-themes
Architecture: source
Version: 1.0.5-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description:
 xcursor-themes - Base X cursor themes
Changes:
 xcursor-themes (1.0.5-1) unstable; urgency=medium
 .
   * Update Vcs-* control fields for move to salsa.
   * Update xorg.freedesktop.org and www.gnu.org URLs in packaging to https.
   * Let uscan verify tarball signatures.
   * New upstream release.
   * Update debian/copyright from new {red,white}glass/COPYRIGHT.
Checksums-Sha1:
 2bf8c58a0ec55eae0106287fd08cba5a6ee874d9 1953 xcursor-themes_1.0.5-1.dsc
 a15e49016c99e94ffebebd7d3ecd4ce0aba8793a 2557532 
xcursor-themes_1.0.5.orig.tar.gz
 6ec70c0d773e0cc33bead08a5848a8b59e5e0277 9132 xcursor-themes_1.0.5-1.diff.gz
Checksums-Sha256:
 97a10280a11b3222cbe62a9750189f1068fdfe877b8c2e9ea5bf3e118c4e35de 1953 
xcursor-themes_1.0.5-1.dsc
 85636a3774debe830a15b9cd3c438171356fb451d7e3667212777a55d88f7897 2557532 
xcursor-themes_1.0.5.orig.tar.gz
 3e0df99e7345dc756f91b83fe59681c5308c82fdc8b6faec3b8bfbeec64317d2 9132 
xcursor-themes_1.0.5-1.diff.gz
Files:
 2aa59ac2686cd13aa55946f513272a3d 1953 x11 optional xcursor-themes_1.0.5-1.dsc
 1b2b888c606555022d1ace5f61359270 2557532 x11 optional 
xcursor-themes_1.0.5.orig.tar.gz
 c6c885f35582e1cea1fd1095c9140df7 9132 x11 optional 
xcursor-themes_1.0.5-1.diff.gz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEVXgdqzTmGgnvuIvhnbAjVVb4z60FAlqu62oACgkQnbAjVVb4
z63CGw/9G6fIphcos5JOzHVdqVX3wRMVRvdmLuYw7aWx6Sb55mxNkEDD+bkL/e3m
eBHAQ3qk8XKxNyhzbXaNumIzqTwWwnlD8BqUEy0LXFdubkj+rm30JJZvjKzvoSFc
cU3apLCDkX7I6HmVkSscMkOjTnZiSkAYiHMNpHGG/hSgZYZiMCuDoVd64h0sX/Ow
k9+ylYtxds7ZbXWfGUOTWbVsjFw4Paj/DkwpV6MHwguJVQRnGYApPK9pS7tiWuYk
sRqocen2Q504P7JAj0KS6rRusJdRQ2fmdzJG72FvHw+Y7gkheCq0hbp+h4GOhFCo
WvsY9oi1pKf/84Se8wc4epopBuWuSjRUYQXOkS379BdU+o5JY1x88As/CAS8Ne0P
Zw7nQ6DOF90AZldtYgD9Dw5KEuIILT3ZrCCjM7tagBvAE+V395XlESLzb6mnVtez
d6sdrfdXv8604uMu5EcxsoAo2e+jug26B2+rwBbZvl8F1uJXkPGxsi/pakKwf1p5
d+xNB6G04Gd0fzfSRPVJbe3ZVYG6KGJ5Wzul6IUlBpCf4Po7vc/dD/ImRp1lBma/
yzTXQjiCzNJMvXZepse1D1rCQu9WoctzHDPf/ZHeh7jjM/BkYtUjJuByWIKvgH5A
A1rxoNCeMBn0v/dn0Gp6iaCQMqqpotsv42/9ZcU2j/VjFgKYpdI=
=ImnS
-END PGP SIGNATURE-


Thank you for your contribution to Debian.