Bug#891915: Patch for Debian 10 (buster), it fixes the problem

2018-03-07 Thread Nrbrtx
Tags: patch


I attached patch from ArchLinux AUR (
https://aur.archlinux.org/packages/xorg-server-bug865/,
https://aur.archlinux.org/cgit/aur.git/tree/freedesktop-bug-865.patch?h=xorg-server-bug865
). This patch is stable and reliable. ArchLinux users are happy with it.

It fixes current bug on Debian 10 (buster).
I have tested it with  on MATE desktop.

Please kindly review it and consider applying it before official final
release of Debian 10.
As the result Debian and Ubuntu users will be as happy as ArchLinux's users.
--- xorg-server-1.19.1/xkb/xkbActions.c.orig	2017-01-12 18:34:23.435568903 +0300
+++ xorg-server-1.19.1/xkb/xkbActions.c	2017-02-23 12:58:00.719948700 +0300
@@ -351,26 +351,83 @@
 return 1;
 }
 
+static int xkbSwitchGroupOnRelease(void)
+{
+/* TODO: user configuring */
+return TRUE;
+}
+
+static void xkbUpdateLockedGroup(XkbSrvInfoPtr xkbi, XkbAction* pAction)
+{
+XkbGroupAction ga = pAction->group;
+if (ga.flags_GroupAbsolute)
+   xkbi->state.locked_group= XkbSAGroup();
+else
+   xkbi->state.locked_group+= XkbSAGroup();
+}
+
+static XkbFilterPtr _XkbNextFreeFilter(XkbSrvInfoPtr xkbi);
+
 static int
-_XkbFilterLockState(XkbSrvInfoPtr xkbi,
+_XkbFilterLockGroup(XkbSrvInfoPtr xkbi,
 XkbFilterPtr filter, unsigned keycode, XkbAction *pAction)
 {
+int sendEvent = 1;
+
 if (filter->keycode == 0) /* initial press */
 AccessXCancelRepeatKey(xkbi, keycode);
-
-if (pAction && (pAction->type == XkbSA_LockGroup)) {
-if (pAction->group.flags & XkbSA_GroupAbsolute)
-xkbi->state.locked_group = XkbSAGroup(>group);
-else
-xkbi->state.locked_group += XkbSAGroup(>group);
-return 1;
+if (!xkbSwitchGroupOnRelease()) {
+   xkbUpdateLockedGroup(xkbi, pAction);
+   return sendEvent;
+}
+
+/* Delay switch till button release */
+if (filter->keycode==0) {  /* initial press */
+   filter->keycode = keycode;
+   filter->active = 1;
+   filter->filterOthers = 0; /* for what? */
+   filter->filter = _XkbFilterLockGroup;
+
+   /* filter->priv = 0; */
+   filter->upAction = *pAction;
+
+   /* Ok, now we need to simulate the action which would go if this action didn't block it.
+  XkbSA_SetMods is the one: it is to set modifier' flag up. */
+   {
+   XkbStateRec fake_state = xkbi->state;
+   XkbAction act;
+
+   fake_state.mods = 0;
+   act = XkbGetKeyAction(xkbi, _state, keycode);
+
+   /* KLUDGE: XkbSA_SetMods only? */
+   if (act.type == XkbSA_SetMods) { 
+   XkbFilterPtr filter = _XkbNextFreeFilter(xkbi);
+   sendEvent = _XkbFilterSetState(xkbi,filter,keycode,);
+   }
+   }
+}
+else {
+   /* do nothing if some button else is pressed */
+   if (!pAction)
+   xkbUpdateLockedGroup(xkbi, >upAction);
+   filter->active = 0;
 }
+return sendEvent;
+}
+
+static int
+_XkbFilterLockMods(XkbSrvInfoPtr   xkbi,
+   XkbFilterPtrfilter,
+   unsignedkeycode,
+   XkbAction * pAction)
+{
 if (filter->keycode == 0) { /* initial press */
 filter->keycode = keycode;
 filter->active = 1;
 filter->filterOthers = 0;
 filter->priv = xkbi->state.locked_mods & pAction->mods.mask;
-filter->filter = _XkbFilterLockState;
+filter->filter = _XkbFilterLockMods;
 filter->upAction = *pAction;
 if (!(filter->upAction.mods.flags & XkbSA_LockNoLock))
 xkbi->state.locked_mods |= pAction->mods.mask;
@@ -1244,9 +1301,12 @@
 *sendEvent = _XkbFilterLatchState(xkbi, filter, key, act);
 break;
 case XkbSA_LockMods:
+filter = _XkbNextFreeFilter(xkbi);
+*sendEvent = _XkbFilterLockMods(xkbi, filter, key, act);
+break;
 case XkbSA_LockGroup:
 filter = _XkbNextFreeFilter(xkbi);
-*sendEvent = _XkbFilterLockState(xkbi, filter, key, act);
+*sendEvent = _XkbFilterLockGroup(xkbi, filter, key, act);
 break;
 case XkbSA_ISOLock:
 filter = _XkbNextFreeFilter(xkbi);


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.37.0+dfsg1-1-bpo8+1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.37.0+dfsg1-1-bpo8+1 at X Strike Force / 
vulkan / vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.37.0+dfsg1-1-bpo8+1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.46.0+dfsg3-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.46.0+dfsg3-1 at X Strike Force / vulkan 
/ vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.46.0+dfsg3-1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.42.0+dfsg1-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.42.0+dfsg1-1 at X Strike Force / vulkan 
/ vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.42.0+dfsg1-1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.21.0+dfsg1-1-bpo8+1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.21.0+dfsg1-1-bpo8+1 at X Strike Force / 
vulkan / vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.21.0+dfsg1-1-bpo8+1
You're receiving this email because of your account on salsa.debian.org.


Bug#881014: marked as done (vulkan-utils: upstream adapted Apache-2.0 but debian/copyright wrongly says it's MIT)

2018-03-07 Thread Debian Bug Tracking System
Your message dated Thu, 08 Mar 2018 07:19:41 +
with message-id 
and subject line Bug#881014: fixed in vulkan 1.0.68+dfsg1-1
has caused the Debian Bug report #881014,
regarding vulkan-utils: upstream adapted Apache-2.0 but debian/copyright 
wrongly says it's MIT
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.)


-- 
881014: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=881014
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: vulkan-utils
Version: 1.0.61.1+dfsg1-1
Severity: serious
Justification: 1

Compare
https://anonscm.debian.org/cgit/pkg-xorg/lib/vulkan.git/tree/debian/copyright
with
https://anonscm.debian.org/cgit/pkg-xorg/lib/vulkan.git/tree/COPYRIGHT.txt
(and
https://anonscm.debian.org/cgit/pkg-xorg/lib/vulkan.git/tree/LICENSE.txt
)

-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages vulkan-utils depends on:
ii  libc6   2.24-17
ii  libgcc1 1:7.2.0-12
ii  libstdc++6  7.2.0-12
ii  libvulkan1  1.0.61.1+dfsg1-1
ii  libxcb1 1.12-1

vulkan-utils recommends no packages.

vulkan-utils suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: vulkan
Source-Version: 1.0.68+dfsg1-1

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

Debian distribution maintenance software
pp.
Timo Aaltonen  (supplier of updated vulkan 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: Thu, 08 Mar 2018 08:55:08 +0200
Source: vulkan
Binary: libvulkan1 libvulkan-dev vulkan-utils
Architecture: source
Version: 1.0.68+dfsg1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Timo Aaltonen 
Description:
 libvulkan-dev - Vulkan loader library -- development files
 libvulkan1 - Vulkan loader library
 vulkan-utils - Miscellaneous Vulkan utilities
Closes: 881014
Changes:
 vulkan (1.0.68+dfsg1-1) unstable; urgency=medium
 .
   [ Timo Aaltonen ]
   * New upstream release.
   * copyright: Updated. (Closes: #881014)
   * patches: Refreshed.
   * get-external.sh: Use upstream script to update glslang and spirv-
 tools/headers.
   * get-external.sh, use-known-sha.diff: Don't require git, grep the
 spirv sha from known-good.json and use that.
   * rules: Update glslang build.
   * rules: Tell cmake where glslangValidator is.
   * rules: Update clean target.
   * control: Update VCS urls.
   * control: Bump policy to 4.1.3, no changes.
 .
   [ Andreas Boll ]
   * debian/get-external.sh: Append external Git revision of glslang to
 the commit message.
   * Add man pages for vulkaninfo and vulkan-smoketest.
Checksums-Sha1:
 dc0939f43398ce0476114b7bbaf1d17a5b61b809 2218 vulkan_1.0.68+dfsg1-1.dsc
 38099949e76d711238f10314805b8b0742a2d18b 4181996 
vulkan_1.0.68+dfsg1.orig.tar.xz
 7a27ee3c4c523f7bbda1cbe23bef342acd96f3ff 7916 
vulkan_1.0.68+dfsg1-1.debian.tar.xz
 a81ad91d82784e17d4702d1a57f8fbb75d09ff75 7256 
vulkan_1.0.68+dfsg1-1_source.buildinfo
Checksums-Sha256:
 1ebc084d0f8480a6718085181f578d1b5d5a12e4a175deb6e2fb2e90ebe189ee 2218 
vulkan_1.0.68+dfsg1-1.dsc
 6c6b24760f76b34666d175dde7417214db35ae0e5cafd3423c69a715799a4e35 4181996 
vulkan_1.0.68+dfsg1.orig.tar.xz
 56db463de380a274c6813a0a170220707cf82307675bfeab1d2ca0a581cbe67a 7916 
vulkan_1.0.68+dfsg1-1.debian.tar.xz
 95740e2fa7deba10e51058418a53dfbd4122270321861e5c3830b853107d243e 7256 
vulkan_1.0.68+dfsg1-1_source.buildinfo
Files:
 b54ba782c7b7ddb8497a83b5bf2f349c 2218 libs optional vulkan_1.0.68+dfsg1-1.dsc
 2c0c49dec09cfe2bcedc6504a1d6bedd 4181996 libs optional 
vulkan_1.0.68+dfsg1.orig.tar.xz
 0c455f117262b73a208536c7d3a22bed 7916 libs 

[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.39.0+dfsg1-1-bpo8+1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.39.0+dfsg1-1-bpo8+1 at X Strike Force / 
vulkan / vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.39.0+dfsg1-1-bpo8+1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.26.0+dfsg1-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.26.0+dfsg1-1 at X Strike Force / vulkan 
/ vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.26.0+dfsg1-1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.3.1+dfsg1-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.3.1+dfsg1-1 at X Strike Force / vulkan 
/ vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.3.1+dfsg1-1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.51.0+dfsg1-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.51.0+dfsg1-1 at X Strike Force / vulkan 
/ vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.51.0+dfsg1-1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.21.0+dfsg1-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.21.0+dfsg1-1 at X Strike Force / vulkan 
/ vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.21.0+dfsg1-1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.46.0+dfsg2-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.46.0+dfsg2-1 at X Strike Force / vulkan 
/ vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.46.0+dfsg2-1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.37.0+dfsg1-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.37.0+dfsg1-1 at X Strike Force / vulkan 
/ vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.37.0+dfsg1-1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.8.0+dfsg1-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.8.0+dfsg1-1 at X Strike Force / vulkan 
/ vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.8.0+dfsg1-1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.65.2+dfsg1-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.65.2+dfsg1-1 at X Strike Force / vulkan 
/ vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.65.2+dfsg1-1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.46.0+dfsg1-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.46.0+dfsg1-1 at X Strike Force / vulkan 
/ vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.46.0+dfsg1-1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.61.1+dfsg1-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.61.1+dfsg1-1 at X Strike Force / vulkan 
/ vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.61.1+dfsg1-1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.54.0+dfsg1-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.54.0+dfsg1-1 at X Strike Force / vulkan 
/ vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.54.0+dfsg1-1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.39.0+dfsg1-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.39.0+dfsg1-1 at X Strike Force / vulkan 
/ vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.39.0+dfsg1-1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new branch debian-stretch-backports

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new branch debian-stretch-backports at X Strike Force / 
vulkan / vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/debian-stretch-backports
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new branch debian-jessie-backports

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new branch debian-jessie-backports at X Strike Force / 
vulkan / vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/debian-jessie-backports
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new branch upstream-unstable

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new branch upstream-unstable at X Strike Force / vulkan / 
vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/upstream-unstable
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new tag vulkan-1.0.68+dfsg1-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag vulkan-1.0.68+dfsg1-1 at X Strike Force / vulkan / 
vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/vulkan-1.0.68+dfsg1-1
You're receiving this email because of your account on salsa.debian.org.


[Git][xorg-team/vulkan/vulkan] Pushed new branch debian-unstable

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new branch debian-unstable at X Strike Force / vulkan / 
vulkan

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan/tree/debian-unstable
You're receiving this email because of your account on salsa.debian.org.


Processing of vulkan_1.0.68+dfsg1-1_source.changes

2018-03-07 Thread Debian FTP Masters
vulkan_1.0.68+dfsg1-1_source.changes uploaded successfully to localhost
along with the files:
  vulkan_1.0.68+dfsg1-1.dsc
  vulkan_1.0.68+dfsg1.orig.tar.xz
  vulkan_1.0.68+dfsg1-1.debian.tar.xz
  vulkan_1.0.68+dfsg1-1_source.buildinfo

Greetings,

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



[Git][xorg-team/xserver/xorg-server][ubuntu] dri2-Sync-i965_pci_ids.h-from-Mesa.patch: Update i965_pci_ids.h to include…

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed to branch ubuntu at X Strike Force / xserver / xorg-server


Commits:
d7eb7db0 by Timo Aaltonen at 2018-03-08T09:27:54+02:00
dri2-Sync-i965_pci_ids.h-from-Mesa.patch: Update i965_pci_ids.h to include 
latest CFL. (LP: #1753954)

- - - - -


3 changed files:

- debian/changelog
- + debian/patches/dri2-Sync-i965_pci_ids.h-from-Mesa.patch
- debian/patches/series


Changes:

=
debian/changelog
=
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xorg-server (2:1.19.6-1ubuntu3) UNRELEASED; urgency=medium
+
+  * dri2-Sync-i965_pci_ids.h-from-Mesa.patch: Update i965_pci_ids.h to
+include latest CFL. (LP: #1753954)
+
+ -- Timo Aaltonen   Thu, 08 Mar 2018 09:27:43 +0200
+
 xorg-server (2:1.19.6-1ubuntu2) bionic; urgency=medium
 
   * improve-outputclass.diff: Backport commits from upstream to improve


=
debian/patches/dri2-Sync-i965_pci_ids.h-from-Mesa.patch
=
--- /dev/null
+++ b/debian/patches/dri2-Sync-i965_pci_ids.h-from-Mesa.patch
@@ -0,0 +1,72 @@
+From 90e0cdd42dfda2accfadffa5c550712696902e14 Mon Sep 17 00:00:00 2001
+From: Rodrigo Vivi 
+Date: Wed, 7 Mar 2018 07:46:20 -0800
+Subject: [PATCH] dri2: Sync i965_pci_ids.h from Mesa.
+
+Copied from Mesa with no modifications.
+
+Gives us Geminilake and Kaby Lake platform names updates and
+sync on Coffee Lake PCI IDs.
+
+Cc: Timo Aaltonen 
+Signed-off-by: Rodrigo Vivi 
+Reviewed-by: Adam Jackson 
+---
+ hw/xfree86/dri2/pci_ids/i965_pci_ids.h | 26 +-
+ 1 file changed, 17 insertions(+), 9 deletions(-)
+
+diff --git a/hw/xfree86/dri2/pci_ids/i965_pci_ids.h 
b/hw/xfree86/dri2/pci_ids/i965_pci_ids.h
+index 57e70b7ae..feb9c582b 100644
+--- a/hw/xfree86/dri2/pci_ids/i965_pci_ids.h
 b/hw/xfree86/dri2/pci_ids/i965_pci_ids.h
+@@ -151,7 +151,7 @@ CHIPSET(0x590B, kbl_gt1, "Intel(R) Kabylake GT1")
+ CHIPSET(0x590E, kbl_gt1, "Intel(R) Kabylake GT1")
+ CHIPSET(0x5913, kbl_gt1_5, "Intel(R) Kabylake GT1.5")
+ CHIPSET(0x5915, kbl_gt1_5, "Intel(R) Kabylake GT1.5")
+-CHIPSET(0x5917, kbl_gt1_5, "Intel(R) Kabylake GT1.5")
++CHIPSET(0x5917, kbl_gt2, "Intel(R) UHD Graphics 620 (Kabylake GT2)")
+ CHIPSET(0x5912, kbl_gt2, "Intel(R) HD Graphics 630 (Kaby Lake GT2)")
+ CHIPSET(0x5916, kbl_gt2, "Intel(R) HD Graphics 620 (Kaby Lake GT2)")
+ CHIPSET(0x591A, kbl_gt2, "Intel(R) HD Graphics P630 (Kaby Lake GT2)")
+@@ -160,22 +160,30 @@ CHIPSET(0x591D, kbl_gt2, "Intel(R) HD Graphics P630 
(Kaby Lake GT2)")
+ CHIPSET(0x591E, kbl_gt2, "Intel(R) HD Graphics 615 (Kaby Lake GT2)")
+ CHIPSET(0x5921, kbl_gt2, "Intel(R) Kabylake GT2F")
+ CHIPSET(0x5923, kbl_gt3, "Intel(R) Kabylake GT3")
+-CHIPSET(0x5926, kbl_gt3, "Intel(R) Iris Plus Graphics 640 (Kaby Lake GT3)")
+-CHIPSET(0x5927, kbl_gt3, "Intel(R) Iris Plus Graphics 650 (Kaby Lake GT3)")
++CHIPSET(0x5926, kbl_gt3, "Intel(R) Iris Plus Graphics 640 (Kaby Lake GT3e)")
++CHIPSET(0x5927, kbl_gt3, "Intel(R) Iris Plus Graphics 650 (Kaby Lake GT3e)")
+ CHIPSET(0x593B, kbl_gt4, "Intel(R) Kabylake GT4")
+-CHIPSET(0x3184, glk, "Intel(R) HD Graphics (Geminilake)")
+-CHIPSET(0x3185, glk_2x6, "Intel(R) HD Graphics (Geminilake 2x6)")
++CHIPSET(0x3184, glk, "Intel(R) UHD Graphics 605 (Geminilake)")
++CHIPSET(0x3185, glk_2x6, "Intel(R) UHD Graphics 600 (Geminilake 2x6)")
+ CHIPSET(0x3E90, cfl_gt1, "Intel(R) HD Graphics (Coffeelake 2x6 GT1)")
+ CHIPSET(0x3E93, cfl_gt1, "Intel(R) HD Graphics (Coffeelake 2x6 GT1)")
+-CHIPSET(0x3E91, cfl_gt2, "Intel(R) HD Graphics (Coffeelake 3x8 GT2)")
+-CHIPSET(0x3E92, cfl_gt2, "Intel(R) HD Graphics (Coffeelake 3x8 GT2)")
++CHIPSET(0x3E99, cfl_gt1, "Intel(R) HD Graphics (Coffeelake 2x6 GT1)")
++CHIPSET(0x3EA1, cfl_gt1, "Intel(R) HD Graphics (Coffeelake 2x6 GT1)")
++CHIPSET(0x3EA4, cfl_gt1, "Intel(R) HD Graphics (Coffeelake 2x6 GT1)")
++CHIPSET(0x3E91, cfl_gt2, "Intel(R) UHD Graphics 630 (Coffeelake 3x8 GT2)")
++CHIPSET(0x3E92, cfl_gt2, "Intel(R) UHD Graphics 630 (Coffeelake 3x8 GT2)")
+ CHIPSET(0x3E96, cfl_gt2, "Intel(R) HD Graphics (Coffeelake 3x8 GT2)")
+-CHIPSET(0x3E9B, cfl_gt2, "Intel(R) HD Graphics (Coffeelake 3x8 GT2)")
++CHIPSET(0x3E9A, cfl_gt2, "Intel(R) HD Graphics (Coffeelake 3x8 GT2)")
++CHIPSET(0x3E9B, cfl_gt2, "Intel(R) UHD Graphics 630 (Coffeelake 3x8 GT2)")
+ CHIPSET(0x3E94, cfl_gt2, "Intel(R) HD Graphics (Coffeelake 3x8 GT2)")
++CHIPSET(0x3EA0, cfl_gt2, "Intel(R) HD Graphics (Coffeelake 3x8 GT2)")
++CHIPSET(0x3EA3, cfl_gt2, "Intel(R) HD Graphics (Coffeelake 3x8 GT2)")
++CHIPSET(0x3EA9, cfl_gt2, "Intel(R) HD Graphics (Coffeelake 3x8 GT2)")
++CHIPSET(0x3EA2, cfl_gt3, "Intel(R) HD Graphics (Coffeelake 3x8 GT3)")
++CHIPSET(0x3EA5, cfl_gt3, "Intel(R) HD Graphics (Coffeelake 3x8 GT3)")
+ CHIPSET(0x3EA6, cfl_gt3, "Intel(R) HD Graphics (Coffeelake 3x8 GT3)")
+ CHIPSET(0x3EA7, cfl_gt3, "Intel(R) HD 

vulkan_1.0.68+dfsg1-1_source.changes ACCEPTED into unstable

2018-03-07 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 08 Mar 2018 08:55:08 +0200
Source: vulkan
Binary: libvulkan1 libvulkan-dev vulkan-utils
Architecture: source
Version: 1.0.68+dfsg1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Timo Aaltonen 
Description:
 libvulkan-dev - Vulkan loader library -- development files
 libvulkan1 - Vulkan loader library
 vulkan-utils - Miscellaneous Vulkan utilities
Closes: 881014
Changes:
 vulkan (1.0.68+dfsg1-1) unstable; urgency=medium
 .
   [ Timo Aaltonen ]
   * New upstream release.
   * copyright: Updated. (Closes: #881014)
   * patches: Refreshed.
   * get-external.sh: Use upstream script to update glslang and spirv-
 tools/headers.
   * get-external.sh, use-known-sha.diff: Don't require git, grep the
 spirv sha from known-good.json and use that.
   * rules: Update glslang build.
   * rules: Tell cmake where glslangValidator is.
   * rules: Update clean target.
   * control: Update VCS urls.
   * control: Bump policy to 4.1.3, no changes.
 .
   [ Andreas Boll ]
   * debian/get-external.sh: Append external Git revision of glslang to
 the commit message.
   * Add man pages for vulkaninfo and vulkan-smoketest.
Checksums-Sha1:
 dc0939f43398ce0476114b7bbaf1d17a5b61b809 2218 vulkan_1.0.68+dfsg1-1.dsc
 38099949e76d711238f10314805b8b0742a2d18b 4181996 
vulkan_1.0.68+dfsg1.orig.tar.xz
 7a27ee3c4c523f7bbda1cbe23bef342acd96f3ff 7916 
vulkan_1.0.68+dfsg1-1.debian.tar.xz
 a81ad91d82784e17d4702d1a57f8fbb75d09ff75 7256 
vulkan_1.0.68+dfsg1-1_source.buildinfo
Checksums-Sha256:
 1ebc084d0f8480a6718085181f578d1b5d5a12e4a175deb6e2fb2e90ebe189ee 2218 
vulkan_1.0.68+dfsg1-1.dsc
 6c6b24760f76b34666d175dde7417214db35ae0e5cafd3423c69a715799a4e35 4181996 
vulkan_1.0.68+dfsg1.orig.tar.xz
 56db463de380a274c6813a0a170220707cf82307675bfeab1d2ca0a581cbe67a 7916 
vulkan_1.0.68+dfsg1-1.debian.tar.xz
 95740e2fa7deba10e51058418a53dfbd4122270321861e5c3830b853107d243e 7256 
vulkan_1.0.68+dfsg1-1_source.buildinfo
Files:
 b54ba782c7b7ddb8497a83b5bf2f349c 2218 libs optional vulkan_1.0.68+dfsg1-1.dsc
 2c0c49dec09cfe2bcedc6504a1d6bedd 4181996 libs optional 
vulkan_1.0.68+dfsg1.orig.tar.xz
 0c455f117262b73a208536c7d3a22bed 7916 libs optional 
vulkan_1.0.68+dfsg1-1.debian.tar.xz
 0efe2b4ec5391534ffcda5d77ae99e4b 7256 libs optional 
vulkan_1.0.68+dfsg1-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEdS3ifE3rFwGbS2Yjy3AxZaiJhNwFAlqg358ACgkQy3AxZaiJ
hNwfBw/+O1i+fPrTCw+NYw6FsV5yirHYHbIdmFzC3Sa/dfzM2n6W3l7zRav0WtKl
9AA0Xl1nRHOyW0wMPaL0O0ptmf1wGdLg5X0k/7kv/276Iz0Fq+jWptbpr5ZvA7KP
h/ihgCL4zc+Zrn5vf2K+qnOCwLSyxtB8ni44ohVy/Y987YuKdP/m6HNZJxKjwSL0
BJY+ZoGUU4U2OqFcoEwXNXSb24mFLYYgvta4Xn9MdtsTptjIpP9Em+YEKwxQLFOr
c1t3kWf75jDa5v/O8yOPfzjh2fWCB2367+NrpHhvleOAqwh8yoX5V0pgGX6JKC6V
qSm6d30NEZp5AAiq5uGKvuuheUxlX+54I+Yvym01fsZIfd3xXRoYQC7Ji0ja4ad9
sCmR7D912PzRjEFs8c89ji0ahh3tce/9ibAxcbmGcLytdxINPqgJB80G4PA3dr1u
M6sXWJ8S9GuM1HuEkYpI49dlI6LwTfK/F4nNWy0RwzfkExbIXptjeB2bZPdtcJPS
CJJbsF39Zh+wTLPma8gfjCYUWDsjzzAUmW0XcpeK0+9hZArCtvDE7RXx7tvr4F28
kISey2tXlCBmbpzyP917lO/tUcFl4cUkOrgp1SEj1cGDkIQRsYPn/A7sJ5ng5H7O
a8T1NRLm5wwXMqMX/n5dZTY++g0/wnSTMdSqaeKN+rRfIZL3E/A=
=9xWN
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Accepted vulkan 1.0.68+dfsg1-1 (source) into unstable

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

Format: 1.8
Date: Thu, 08 Mar 2018 08:55:08 +0200
Source: vulkan
Binary: libvulkan1 libvulkan-dev vulkan-utils
Architecture: source
Version: 1.0.68+dfsg1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Timo Aaltonen 
Description:
 libvulkan-dev - Vulkan loader library -- development files
 libvulkan1 - Vulkan loader library
 vulkan-utils - Miscellaneous Vulkan utilities
Closes: 881014
Changes:
 vulkan (1.0.68+dfsg1-1) unstable; urgency=medium
 .
   [ Timo Aaltonen ]
   * New upstream release.
   * copyright: Updated. (Closes: #881014)
   * patches: Refreshed.
   * get-external.sh: Use upstream script to update glslang and spirv-
 tools/headers.
   * get-external.sh, use-known-sha.diff: Don't require git, grep the
 spirv sha from known-good.json and use that.
   * rules: Update glslang build.
   * rules: Tell cmake where glslangValidator is.
   * rules: Update clean target.
   * control: Update VCS urls.
   * control: Bump policy to 4.1.3, no changes.
 .
   [ Andreas Boll ]
   * debian/get-external.sh: Append external Git revision of glslang to
 the commit message.
   * Add man pages for vulkaninfo and vulkan-smoketest.
Checksums-Sha1:
 dc0939f43398ce0476114b7bbaf1d17a5b61b809 2218 vulkan_1.0.68+dfsg1-1.dsc
 38099949e76d711238f10314805b8b0742a2d18b 4181996 
vulkan_1.0.68+dfsg1.orig.tar.xz
 7a27ee3c4c523f7bbda1cbe23bef342acd96f3ff 7916 
vulkan_1.0.68+dfsg1-1.debian.tar.xz
 a81ad91d82784e17d4702d1a57f8fbb75d09ff75 7256 
vulkan_1.0.68+dfsg1-1_source.buildinfo
Checksums-Sha256:
 1ebc084d0f8480a6718085181f578d1b5d5a12e4a175deb6e2fb2e90ebe189ee 2218 
vulkan_1.0.68+dfsg1-1.dsc
 6c6b24760f76b34666d175dde7417214db35ae0e5cafd3423c69a715799a4e35 4181996 
vulkan_1.0.68+dfsg1.orig.tar.xz
 56db463de380a274c6813a0a170220707cf82307675bfeab1d2ca0a581cbe67a 7916 
vulkan_1.0.68+dfsg1-1.debian.tar.xz
 95740e2fa7deba10e51058418a53dfbd4122270321861e5c3830b853107d243e 7256 
vulkan_1.0.68+dfsg1-1_source.buildinfo
Files:
 b54ba782c7b7ddb8497a83b5bf2f349c 2218 libs optional vulkan_1.0.68+dfsg1-1.dsc
 2c0c49dec09cfe2bcedc6504a1d6bedd 4181996 libs optional 
vulkan_1.0.68+dfsg1.orig.tar.xz
 0c455f117262b73a208536c7d3a22bed 7916 libs optional 
vulkan_1.0.68+dfsg1-1.debian.tar.xz
 0efe2b4ec5391534ffcda5d77ae99e4b 7256 libs optional 
vulkan_1.0.68+dfsg1-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEdS3ifE3rFwGbS2Yjy3AxZaiJhNwFAlqg358ACgkQy3AxZaiJ
hNwfBw/+O1i+fPrTCw+NYw6FsV5yirHYHbIdmFzC3Sa/dfzM2n6W3l7zRav0WtKl
9AA0Xl1nRHOyW0wMPaL0O0ptmf1wGdLg5X0k/7kv/276Iz0Fq+jWptbpr5ZvA7KP
h/ihgCL4zc+Zrn5vf2K+qnOCwLSyxtB8ni44ohVy/Y987YuKdP/m6HNZJxKjwSL0
BJY+ZoGUU4U2OqFcoEwXNXSb24mFLYYgvta4Xn9MdtsTptjIpP9Em+YEKwxQLFOr
c1t3kWf75jDa5v/O8yOPfzjh2fWCB2367+NrpHhvleOAqwh8yoX5V0pgGX6JKC6V
qSm6d30NEZp5AAiq5uGKvuuheUxlX+54I+Yvym01fsZIfd3xXRoYQC7Ji0ja4ad9
sCmR7D912PzRjEFs8c89ji0ahh3tce/9ibAxcbmGcLytdxINPqgJB80G4PA3dr1u
M6sXWJ8S9GuM1HuEkYpI49dlI6LwTfK/F4nNWy0RwzfkExbIXptjeB2bZPdtcJPS
CJJbsF39Zh+wTLPma8gfjCYUWDsjzzAUmW0XcpeK0+9hZArCtvDE7RXx7tvr4F28
kISey2tXlCBmbpzyP917lO/tUcFl4cUkOrgp1SEj1cGDkIQRsYPn/A7sJ5ng5H7O
a8T1NRLm5wwXMqMX/n5dZTY++g0/wnSTMdSqaeKN+rRfIZL3E/A=
=9xWN
-END PGP SIGNATURE-



Bug#788861: marked as done (unsatisfiable cross Build-Depends)

2018-03-07 Thread Debian Bug Tracking System
Your message dated Wed, 07 Mar 2018 09:20:02 +
with message-id 
and subject line Bug#788861: fixed in libxcb 1.13-1
has caused the Debian Bug report #788861,
regarding unsatisfiable cross Build-Depends
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
788861: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788861
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: libxcb
Version: 1.10-3
Tags: patch
User: helm...@debian.org
Usertags: rebootstrap

Currently, trying to satisfy cross Build-Depends for libxcb fails,
because the python dependency selects the host arch python and the
python-xcbgen dependency requires the build arch python. The solution to
this problem is to add ":native" (or ":any") to the python dependency.

In addition, it would be nice if building check could be avoided. This
requires marking the check dependency with the nocheck build profile.

Please consider applying the attached patch.

Helmut
diff -u libxcb-1.10/debian/changelog libxcb-1.10/debian/changelog
--- libxcb-1.10/debian/changelog
+++ libxcb-1.10/debian/changelog
@@ -1,3 +1,12 @@
+libxcb (1.10-3.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Make dependencies cross-sastifiable (closes: #-1).
++ Mark python dependency with :native to pick an executable python.
++ Do not build-depend on check when the nocheck profile is passed.
+
+ -- Helmut Grohne   Mon, 15 Jun 2015 15:24:14 +0200
+
 libxcb (1.10-3) unstable; urgency=medium
 
   * Add missing dependencies to libxcb-present-dev.  Thanks, Michel Dänzer!
diff -u libxcb-1.10/debian/control libxcb-1.10/debian/control
--- libxcb-1.10/debian/control
+++ libxcb-1.10/debian/control
@@ -12,11 +12,11 @@
  debhelper (>= 8.9.4~),
  pkg-config,
  xsltproc (>= 1.1.19),
- check (>= 0.9.4-2),
+ check (>= 0.9.4-2) ,
  python-xcbgen (>= 1.10),
  libtool,
  automake,
- python,
+ python:native,
  dctrl-tools
 Build-Depends-Indep:
 # libxcb-doc
--- End Message ---
--- Begin Message ---
Source: libxcb
Source-Version: 1.13-1

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

Debian distribution maintenance software
pp.
Timo Aaltonen  (supplier of updated libxcb 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: Wed, 07 Mar 2018 10:57:47 +0200
Source: libxcb
Binary: libxcb1 libxcb1-udeb libxcb1-dev libxcb-doc libxcb-composite0 
libxcb-composite0-dev libxcb-damage0 libxcb-damage0-dev libxcb-dpms0 
libxcb-dpms0-dev libxcb-glx0 libxcb-glx0-dev libxcb-randr0 libxcb-randr0-dev 
libxcb-record0 libxcb-record0-dev libxcb-render0 libxcb-render0-dev libxcb-res0 
libxcb-res0-dev libxcb-screensaver0 libxcb-screensaver0-dev libxcb-shape0 
libxcb-shape0-dev libxcb-shm0 libxcb-shm0-dev libxcb-sync1 libxcb-sync-dev 
libxcb-xf86dri0 libxcb-xf86dri0-dev libxcb-xfixes0 libxcb-xfixes0-dev 
libxcb-xinerama0 libxcb-xinerama0-dev libxcb-xtest0 libxcb-xtest0-dev 
libxcb-xv0 libxcb-xv0-dev libxcb-xvmc0 libxcb-xvmc0-dev libxcb-dri2-0 
libxcb-dri2-0-dev libxcb-present0 libxcb-present-dev libxcb-dri3-0 
libxcb-dri3-dev libxcb-xkb1 libxcb-xkb-dev
Architecture: source
Version: 1.13-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Timo Aaltonen 
Description:
 libxcb-composite0 - X C Binding, composite extension
 libxcb-composite0-dev - X C Binding, composite extension, development files
 libxcb-damage0 - X C Binding, damage extension
 libxcb-damage0-dev - X C Binding, damage extension, development files
 libxcb-doc - X C Binding, development documentation
 libxcb-dpms0 - X C Binding, dpms extension
 libxcb-dpms0-dev - X C Binding, dpms extension, development files
 libxcb-dri2-0 - X C Binding, dri2 extension
 libxcb-dri2-0-dev - X C Binding, dri2 extension, development files
 libxcb-dri3-0 - X C Binding, dri3 extension
 libxcb-dri3-dev - X C Binding, dri3 extension, development files
 libxcb-glx0 - X C Binding, glx extension
 libxcb-glx0-dev - 

Bug#892215: marked as done (libxcb FTBFS: KeyError: 'eventstruct')

2018-03-07 Thread Debian Bug Tracking System
Your message dated Wed, 07 Mar 2018 09:20:02 +
with message-id 
and subject line Bug#892215: fixed in libxcb 1.13-1
has caused the Debian Bug report #892215,
regarding libxcb FTBFS: KeyError: 'eventstruct'
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.)


-- 
892215: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=892215
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: libxcb
Version: 1.12-1
Severity: serious
Justification: FTBFS
User: helm...@debian.org
Usertags: rebootstrap

Since a few days(?), libxcb FTBFS. The build ends with:

| make[1]: Entering directory '/<>/build'
| Making all in src
| make[2]: Entering directory '/<>/build/src'
| /usr/bin/python ../../src/c_client.py   -c "libxcb 1.12" -l "X Version 11" \
| -s "3" -p /usr/lib/python2.7/dist-packages \
|  \
| /usr/share/xcb/xproto.xml
| Traceback (most recent call last):
|   File "../../src/c_client.py", line 3294, in 
| from xcbgen.state import Module
|   File "/usr/lib/python2.7/dist-packages/xcbgen/state.py", line 7, in 
| from xcbgen import matcher
|   File "/usr/lib/python2.7/dist-packages/xcbgen/matcher.py", line 12, in 

| from xcbgen.xtypes import *
|   File "/usr/lib/python2.7/dist-packages/xcbgen/xtypes.py", line 1221, in 

| class EventStruct(Union):
|   File "/usr/lib/python2.7/dist-packages/xcbgen/xtypes.py", line 1239, in 
EventStruct
| out = __main__.output['eventstruct']
| KeyError: 'eventstruct'
| make[2]: *** [Makefile:1290: xproto.c] Error 1
| make[2]: Leaving directory '/<>/build/src'
| make[1]: *** [Makefile:787: all-recursive] Error 1
| make[1]: Leaving directory '/<>/build'
| dh_auto_build: cd build && make -j1 returned exit code 2
| make: *** [debian/rules:17: build-arch] Error 2
| dpkg-buildpackage: error: debian/rules build-arch subprocess returned exit 
status 2

libxcb wasn't uploaded in a while. Very likely, the cause lies
elsewhere. The earliest failure I have seen was Tue, 6 Mar 2018 06:31:35
(UTC), so it should be close to the dinstall prior to that. Could it be
the xcb-proto/1.13-1 upload?

Helmut
--- End Message ---
--- Begin Message ---
Source: libxcb
Source-Version: 1.13-1

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

Debian distribution maintenance software
pp.
Timo Aaltonen  (supplier of updated libxcb 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: Wed, 07 Mar 2018 10:57:47 +0200
Source: libxcb
Binary: libxcb1 libxcb1-udeb libxcb1-dev libxcb-doc libxcb-composite0 
libxcb-composite0-dev libxcb-damage0 libxcb-damage0-dev libxcb-dpms0 
libxcb-dpms0-dev libxcb-glx0 libxcb-glx0-dev libxcb-randr0 libxcb-randr0-dev 
libxcb-record0 libxcb-record0-dev libxcb-render0 libxcb-render0-dev libxcb-res0 
libxcb-res0-dev libxcb-screensaver0 libxcb-screensaver0-dev libxcb-shape0 
libxcb-shape0-dev libxcb-shm0 libxcb-shm0-dev libxcb-sync1 libxcb-sync-dev 
libxcb-xf86dri0 libxcb-xf86dri0-dev libxcb-xfixes0 libxcb-xfixes0-dev 
libxcb-xinerama0 libxcb-xinerama0-dev libxcb-xtest0 libxcb-xtest0-dev 
libxcb-xv0 libxcb-xv0-dev libxcb-xvmc0 libxcb-xvmc0-dev libxcb-dri2-0 
libxcb-dri2-0-dev libxcb-present0 libxcb-present-dev libxcb-dri3-0 
libxcb-dri3-dev libxcb-xkb1 libxcb-xkb-dev
Architecture: source
Version: 1.13-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Timo Aaltonen 
Description:
 libxcb-composite0 - X C Binding, composite extension
 libxcb-composite0-dev - X C Binding, composite extension, development files
 libxcb-damage0 - X C Binding, damage extension
 libxcb-damage0-dev - X C Binding, damage extension, development files
 libxcb-doc - X C Binding, development documentation
 libxcb-dpms0 - X C Binding, dpms extension
 libxcb-dpms0-dev - X C Binding, dpms extension, development files
 libxcb-dri2-0 - X C Binding, dri2 extension
 libxcb-dri2-0-dev - X C Binding, dri2 extension, development files
 libxcb-dri3-0 - X C Binding, 

Processing of xserver-xorg-video-ati_18.0.0-1_source.changes

2018-03-07 Thread Debian FTP Masters
xserver-xorg-video-ati_18.0.0-1_source.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-ati_18.0.0-1.dsc
  xserver-xorg-video-ati_18.0.0.orig.tar.gz
  xserver-xorg-video-ati_18.0.0.orig.tar.gz.asc
  xserver-xorg-video-ati_18.0.0-1.diff.gz
  xserver-xorg-video-ati_18.0.0-1_source.buildinfo

Greetings,

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



[Git][xorg-team/lib/libxcb] Pushed new tag libxcb-1.13-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag libxcb-1.13-1 at X Strike Force / lib / libxcb

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/lib/libxcb/tree/libxcb-1.13-1
You're receiving this email because of your account on salsa.debian.org.


Processing of libxcb_1.13-1_source.changes

2018-03-07 Thread Debian FTP Masters
libxcb_1.13-1_source.changes uploaded successfully to localhost
along with the files:
  libxcb_1.13-1.dsc
  libxcb_1.13.orig.tar.gz
  libxcb_1.13-1.diff.gz
  libxcb_1.13-1_source.buildinfo

Greetings,

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



Accepted libxcb 1.13-1 (source) into unstable

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

Format: 1.8
Date: Wed, 07 Mar 2018 10:57:47 +0200
Source: libxcb
Binary: libxcb1 libxcb1-udeb libxcb1-dev libxcb-doc libxcb-composite0 
libxcb-composite0-dev libxcb-damage0 libxcb-damage0-dev libxcb-dpms0 
libxcb-dpms0-dev libxcb-glx0 libxcb-glx0-dev libxcb-randr0 libxcb-randr0-dev 
libxcb-record0 libxcb-record0-dev libxcb-render0 libxcb-render0-dev libxcb-res0 
libxcb-res0-dev libxcb-screensaver0 libxcb-screensaver0-dev libxcb-shape0 
libxcb-shape0-dev libxcb-shm0 libxcb-shm0-dev libxcb-sync1 libxcb-sync-dev 
libxcb-xf86dri0 libxcb-xf86dri0-dev libxcb-xfixes0 libxcb-xfixes0-dev 
libxcb-xinerama0 libxcb-xinerama0-dev libxcb-xtest0 libxcb-xtest0-dev 
libxcb-xv0 libxcb-xv0-dev libxcb-xvmc0 libxcb-xvmc0-dev libxcb-dri2-0 
libxcb-dri2-0-dev libxcb-present0 libxcb-present-dev libxcb-dri3-0 
libxcb-dri3-dev libxcb-xkb1 libxcb-xkb-dev
Architecture: source
Version: 1.13-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Timo Aaltonen 
Description:
 libxcb-composite0 - X C Binding, composite extension
 libxcb-composite0-dev - X C Binding, composite extension, development files
 libxcb-damage0 - X C Binding, damage extension
 libxcb-damage0-dev - X C Binding, damage extension, development files
 libxcb-doc - X C Binding, development documentation
 libxcb-dpms0 - X C Binding, dpms extension
 libxcb-dpms0-dev - X C Binding, dpms extension, development files
 libxcb-dri2-0 - X C Binding, dri2 extension
 libxcb-dri2-0-dev - X C Binding, dri2 extension, development files
 libxcb-dri3-0 - X C Binding, dri3 extension
 libxcb-dri3-dev - X C Binding, dri3 extension, development files
 libxcb-glx0 - X C Binding, glx extension
 libxcb-glx0-dev - X C Binding, glx extension, development files
 libxcb-present-dev - X C Binding, present extension, development files
 libxcb-present0 - X C Binding, present extension
 libxcb-randr0 - X C Binding, randr extension
 libxcb-randr0-dev - X C Binding, randr extension, development files
 libxcb-record0 - X C Binding, record extension
 libxcb-record0-dev - X C Binding, record extension, development files
 libxcb-render0 - X C Binding, render extension
 libxcb-render0-dev - X C Binding, render extension, development files
 libxcb-res0 - X C Binding, res extension
 libxcb-res0-dev - X C Binding, res extension, development files
 libxcb-screensaver0 - X C Binding, screensaver extension
 libxcb-screensaver0-dev - X C Binding, screensaver extension, development files
 libxcb-shape0 - X C Binding, shape extension
 libxcb-shape0-dev - X C Binding, shape extension, development files
 libxcb-shm0 - X C Binding, shm extension
 libxcb-shm0-dev - X C Binding, shm extension, development files
 libxcb-sync-dev - X C Binding, sync extension, development files
 libxcb-sync1 - X C Binding, sync extension
 libxcb-xf86dri0 - X C Binding, xf86dri extension
 libxcb-xf86dri0-dev - X C Binding, xf86dri extension, development files
 libxcb-xfixes0 - X C Binding, xfixes extension
 libxcb-xfixes0-dev - X C Binding, xfixes extension, development files
 libxcb-xinerama0 - X C Binding, xinerama extension
 libxcb-xinerama0-dev - X C Binding, xinerama extension, development files
 libxcb-xkb-dev - X C Binding, XKEYBOARD extension, development files
 libxcb-xkb1 - X C Binding, XKEYBOARD extension
 libxcb-xtest0 - X C Binding, xtest extension
 libxcb-xtest0-dev - X C Binding, xtest extension, development files
 libxcb-xv0 - X C Binding, xv extension
 libxcb-xv0-dev - X C Binding, xv extension, development files
 libxcb-xvmc0 - X C Binding, xvmc extension
 libxcb-xvmc0-dev - X C Binding, xvmc extension, development files
 libxcb1- X C Binding
 libxcb1-dev - X C Binding, development files
 libxcb1-udeb - X C Binding (udeb)
Closes: 788861 892215
Changes:
 libxcb (1.13-1) unstable; urgency=medium
 .
   [ Julien Cristau ]
   * Switch xcb.freedesktop.org URLs in packaging to https.
   * Stop building -dbg packages, rely on automatic dbgsym packages instead.
 .
   [ Helmut Grohne ]
   * Make build-dependencies cross-satisfiable (closes: #788861)
 + Mark python build-dependency with :native to pick an executable python
 + Do not build-depend on check when the nocheck profile is passed
 .
   [ Timo Aaltonen ]
   * New upstream release. (Closes: #892215)
   * control: Bump xcb-proto build-dep to 1.13.
   * tests: Add a simple autopkgtest.
   * control: Update VCS urls.
   * control, rules: Bump debhelper to 11, use max-parallel=1 for tests.
   * Update symbols.
   * rules: Update clean target.
   * control: Bump policy to 4.1.3, no changes.
Checksums-Sha1:
 07af996957f2727190a28d52abf604645b5699fa 5213 libxcb_1.13-1.dsc
 ad7364a8708e381d3f3afd8ba42e006981d3f7fb 632493 libxcb_1.13.orig.tar.gz
 fd81109c36aabe2d9c87d38f91c971476ccb87e5 24982 libxcb_1.13-1.diff.gz
 1b102b6d90ada0d8224c1ec91df4ea03bd24009d 7394 libxcb_1.13-1_source.buildinfo
Checksums-Sha256:
 

libxcb_1.13-1_source.changes ACCEPTED into unstable

2018-03-07 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 07 Mar 2018 10:57:47 +0200
Source: libxcb
Binary: libxcb1 libxcb1-udeb libxcb1-dev libxcb-doc libxcb-composite0 
libxcb-composite0-dev libxcb-damage0 libxcb-damage0-dev libxcb-dpms0 
libxcb-dpms0-dev libxcb-glx0 libxcb-glx0-dev libxcb-randr0 libxcb-randr0-dev 
libxcb-record0 libxcb-record0-dev libxcb-render0 libxcb-render0-dev libxcb-res0 
libxcb-res0-dev libxcb-screensaver0 libxcb-screensaver0-dev libxcb-shape0 
libxcb-shape0-dev libxcb-shm0 libxcb-shm0-dev libxcb-sync1 libxcb-sync-dev 
libxcb-xf86dri0 libxcb-xf86dri0-dev libxcb-xfixes0 libxcb-xfixes0-dev 
libxcb-xinerama0 libxcb-xinerama0-dev libxcb-xtest0 libxcb-xtest0-dev 
libxcb-xv0 libxcb-xv0-dev libxcb-xvmc0 libxcb-xvmc0-dev libxcb-dri2-0 
libxcb-dri2-0-dev libxcb-present0 libxcb-present-dev libxcb-dri3-0 
libxcb-dri3-dev libxcb-xkb1 libxcb-xkb-dev
Architecture: source
Version: 1.13-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Timo Aaltonen 
Description:
 libxcb-composite0 - X C Binding, composite extension
 libxcb-composite0-dev - X C Binding, composite extension, development files
 libxcb-damage0 - X C Binding, damage extension
 libxcb-damage0-dev - X C Binding, damage extension, development files
 libxcb-doc - X C Binding, development documentation
 libxcb-dpms0 - X C Binding, dpms extension
 libxcb-dpms0-dev - X C Binding, dpms extension, development files
 libxcb-dri2-0 - X C Binding, dri2 extension
 libxcb-dri2-0-dev - X C Binding, dri2 extension, development files
 libxcb-dri3-0 - X C Binding, dri3 extension
 libxcb-dri3-dev - X C Binding, dri3 extension, development files
 libxcb-glx0 - X C Binding, glx extension
 libxcb-glx0-dev - X C Binding, glx extension, development files
 libxcb-present-dev - X C Binding, present extension, development files
 libxcb-present0 - X C Binding, present extension
 libxcb-randr0 - X C Binding, randr extension
 libxcb-randr0-dev - X C Binding, randr extension, development files
 libxcb-record0 - X C Binding, record extension
 libxcb-record0-dev - X C Binding, record extension, development files
 libxcb-render0 - X C Binding, render extension
 libxcb-render0-dev - X C Binding, render extension, development files
 libxcb-res0 - X C Binding, res extension
 libxcb-res0-dev - X C Binding, res extension, development files
 libxcb-screensaver0 - X C Binding, screensaver extension
 libxcb-screensaver0-dev - X C Binding, screensaver extension, development files
 libxcb-shape0 - X C Binding, shape extension
 libxcb-shape0-dev - X C Binding, shape extension, development files
 libxcb-shm0 - X C Binding, shm extension
 libxcb-shm0-dev - X C Binding, shm extension, development files
 libxcb-sync-dev - X C Binding, sync extension, development files
 libxcb-sync1 - X C Binding, sync extension
 libxcb-xf86dri0 - X C Binding, xf86dri extension
 libxcb-xf86dri0-dev - X C Binding, xf86dri extension, development files
 libxcb-xfixes0 - X C Binding, xfixes extension
 libxcb-xfixes0-dev - X C Binding, xfixes extension, development files
 libxcb-xinerama0 - X C Binding, xinerama extension
 libxcb-xinerama0-dev - X C Binding, xinerama extension, development files
 libxcb-xkb-dev - X C Binding, XKEYBOARD extension, development files
 libxcb-xkb1 - X C Binding, XKEYBOARD extension
 libxcb-xtest0 - X C Binding, xtest extension
 libxcb-xtest0-dev - X C Binding, xtest extension, development files
 libxcb-xv0 - X C Binding, xv extension
 libxcb-xv0-dev - X C Binding, xv extension, development files
 libxcb-xvmc0 - X C Binding, xvmc extension
 libxcb-xvmc0-dev - X C Binding, xvmc extension, development files
 libxcb1- X C Binding
 libxcb1-dev - X C Binding, development files
 libxcb1-udeb - X C Binding (udeb)
Closes: 788861 892215
Changes:
 libxcb (1.13-1) unstable; urgency=medium
 .
   [ Julien Cristau ]
   * Switch xcb.freedesktop.org URLs in packaging to https.
   * Stop building -dbg packages, rely on automatic dbgsym packages instead.
 .
   [ Helmut Grohne ]
   * Make build-dependencies cross-satisfiable (closes: #788861)
 + Mark python build-dependency with :native to pick an executable python
 + Do not build-depend on check when the nocheck profile is passed
 .
   [ Timo Aaltonen ]
   * New upstream release. (Closes: #892215)
   * control: Bump xcb-proto build-dep to 1.13.
   * tests: Add a simple autopkgtest.
   * control: Update VCS urls.
   * control, rules: Bump debhelper to 11, use max-parallel=1 for tests.
   * Update symbols.
   * rules: Update clean target.
   * control: Bump policy to 4.1.3, no changes.
Checksums-Sha1:
 07af996957f2727190a28d52abf604645b5699fa 5213 libxcb_1.13-1.dsc
 ad7364a8708e381d3f3afd8ba42e006981d3f7fb 632493 libxcb_1.13.orig.tar.gz
 fd81109c36aabe2d9c87d38f91c971476ccb87e5 24982 libxcb_1.13-1.diff.gz
 1b102b6d90ada0d8224c1ec91df4ea03bd24009d 7394 libxcb_1.13-1_source.buildinfo
Checksums-Sha256:
 

Bug#884865: Response?

2018-03-07 Thread Timo Aaltonen
On 02.03.2018 18:54, Brett Johnson wrote:
> Oh!  I didn't know you were actively working on packaging these.  I've
> also packaged them, with results in the debian-unstable branches of
> these github repositories:
> 
> https://github.com/linuxturtle/glslang
> https://github.com/linuxturtle/SPIRV-Tools
> https://github.com/linuxturtle/SPIRV-Headers

Ah, I should've known better.. anyway, these can be co-maintained in
salsa.d.o/xorg-team/vulkan/, just that for uploads someone with
sufficient credentials is needed to sponsor them..

> Some other bits you may not be aware of:
> 
> John Kessenich (main maintainer of glslang) is working on coming up with
> a reasonable versioning scheme for it.  So until he does that, you may
> want to use a scheme similar to what I did, that will be overridden with
> whatever he comes up with.  The bug to track what he's doing is here:  
> 
> https://github.com/KhronosGroup/glslang/issues/1255

Looks like there's now 5.0 released yesterday, which is nice. If only
spirv-headers got tagged..



xserver-xorg-video-ati_18.0.0-1_source.changes ACCEPTED into unstable

2018-03-07 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 07 Mar 2018 10:51:20 +0200
Source: xserver-xorg-video-ati
Binary: xserver-xorg-video-ati xserver-xorg-video-ati-dbg 
xserver-xorg-video-radeon xserver-xorg-video-radeon-dbg
Architecture: source
Version: 1:18.0.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Timo Aaltonen 
Description:
 xserver-xorg-video-ati - X.Org X server -- AMD/ATI display driver wrapper
 xserver-xorg-video-ati-dbg - X.Org X server -- AMD/ATI display driver wrapper 
(debugging symbo
 xserver-xorg-video-radeon - X.Org X server -- AMD/ATI Radeon display driver
 xserver-xorg-video-radeon-dbg - X.Org X server -- AMD/ATI Radeon display 
driver (debugging symbol
Changes:
 xserver-xorg-video-ati (1:18.0.0-1) unstable; urgency=medium
 .
   * New upstream release.
   * control: Update VCS urls.
   * control: Bump policy to 4.1.3, no changes.
Checksums-Sha1:
 4d49b1564da296c2bc8a97d1a61ed1e63d4c69be 2919 
xserver-xorg-video-ati_18.0.0-1.dsc
 02bcbc78d8c9552dce400e84190b68e54384eb31 1139543 
xserver-xorg-video-ati_18.0.0.orig.tar.gz
 05b886b82141013568cd9fe46274cb369da18f57 482 
xserver-xorg-video-ati_18.0.0.orig.tar.gz.asc
 f1f1036f7cd3911900489b73e6e3d001a46f41a2 37716 
xserver-xorg-video-ati_18.0.0-1.diff.gz
 5325f2d13dc634357a4f108ba7039a102e2b0dc7 8627 
xserver-xorg-video-ati_18.0.0-1_source.buildinfo
Checksums-Sha256:
 99d39d6bac8da992ca88868301b894f752058294ad670bce683fb3a5333050f8 2919 
xserver-xorg-video-ati_18.0.0-1.dsc
 a755ea4e0afbdd38a4bd13d42c1a684fbdcf0ae84474433b1cde7e1a91e8159d 1139543 
xserver-xorg-video-ati_18.0.0.orig.tar.gz
 405fb4ac9105819726bce0a8d09eb4462708798918bc313a674c3f6d4a2f878b 482 
xserver-xorg-video-ati_18.0.0.orig.tar.gz.asc
 2c70b4e7d44c7c8d4f0366a7802cfc9b737c104ad13a96c2d73c0c5c574dbfe7 37716 
xserver-xorg-video-ati_18.0.0-1.diff.gz
 b7422ae7ef773fa4036f40cedb861f45919e2189c989d0960e1bf18becc33f31 8627 
xserver-xorg-video-ati_18.0.0-1_source.buildinfo
Files:
 4d53f72e7105854cf2c1494ac4504d0e 2919 x11 optional 
xserver-xorg-video-ati_18.0.0-1.dsc
 a7beafba592be85a16dd8e94e60fc1a7 1139543 x11 optional 
xserver-xorg-video-ati_18.0.0.orig.tar.gz
 3f75608bb714758a4ea81230bd42aafb 482 x11 optional 
xserver-xorg-video-ati_18.0.0.orig.tar.gz.asc
 541bd734fd0ddd7bbd5820da06938114 37716 x11 optional 
xserver-xorg-video-ati_18.0.0-1.diff.gz
 0b4c0578d279da714a64b8a53dc25d1d 8627 x11 optional 
xserver-xorg-video-ati_18.0.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEdS3ifE3rFwGbS2Yjy3AxZaiJhNwFAlqfqSoACgkQy3AxZaiJ
hNw7shAAkB4TfethBVTVLlFJpluJrdy9MKK5EeScfQxQ9UJVXM/oZMoguMHv6+MW
OQupXWv0fF9T7WNeJVcF/hEwQbC1qKZeIYV4prixbnbKDJXbfi2vpzDBaWu2Y9bj
YZ8yF4WKxfFSN/ATLzN0tz1W9MofMBJ0raCvO5q1ejvBS+dp+FBb5kDtmHu7eYGm
GUEyFEkmfMFanYol4LgJLY2BwNVfljU/tmBOMaycUyniydC2ntdoYHyC1UNgiGHv
mPDttndtZsHOokQD3o4+t865l3JyUNM0lhMjeuiy5s2/7RaIITkezhzUXliA/F7e
97uJoGwaWsyv5qnltkEZO91cPfMlg9bZMAYUocH8IYUIPRYrJfhMOloJ7wIh8Zon
iEB1J7Dy1CqmyAEjQ3+4cSm7X2d1tJZ/do2Dn5sWakxTHzqvIwCyhfZ7GyFAxiap
ZWvvIfEp6gybTL0goEpvfNDb8JKsrC0nFoqCCRstKCj/f/eKpflwc81BEAv2MDZ8
9B6oIhHHhOiRCcgEAkhiDdLeoaR3tg2V2JbdK067jxavrvyA1edqHdyMvX7TdhNM
rUvxf1l73NTn/nbRzIH9RFc4PbRImZ8tPEcpZ32dkbmzP68OdwOiXuSIaNGkOzFV
CNP8nh1ZPeFpmiEmEOWkpi2tqZer6rPKlvTMw2gyfMmQrLmaUUk=
=1aE6
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Accepted xserver-xorg-video-ati 1:18.0.0-1 (source) into unstable

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

Format: 1.8
Date: Wed, 07 Mar 2018 10:51:20 +0200
Source: xserver-xorg-video-ati
Binary: xserver-xorg-video-ati xserver-xorg-video-ati-dbg 
xserver-xorg-video-radeon xserver-xorg-video-radeon-dbg
Architecture: source
Version: 1:18.0.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Timo Aaltonen 
Description:
 xserver-xorg-video-ati - X.Org X server -- AMD/ATI display driver wrapper
 xserver-xorg-video-ati-dbg - X.Org X server -- AMD/ATI display driver wrapper 
(debugging symbo
 xserver-xorg-video-radeon - X.Org X server -- AMD/ATI Radeon display driver
 xserver-xorg-video-radeon-dbg - X.Org X server -- AMD/ATI Radeon display 
driver (debugging symbol
Changes:
 xserver-xorg-video-ati (1:18.0.0-1) unstable; urgency=medium
 .
   * New upstream release.
   * control: Update VCS urls.
   * control: Bump policy to 4.1.3, no changes.
Checksums-Sha1:
 4d49b1564da296c2bc8a97d1a61ed1e63d4c69be 2919 
xserver-xorg-video-ati_18.0.0-1.dsc
 02bcbc78d8c9552dce400e84190b68e54384eb31 1139543 
xserver-xorg-video-ati_18.0.0.orig.tar.gz
 05b886b82141013568cd9fe46274cb369da18f57 482 
xserver-xorg-video-ati_18.0.0.orig.tar.gz.asc
 f1f1036f7cd3911900489b73e6e3d001a46f41a2 37716 
xserver-xorg-video-ati_18.0.0-1.diff.gz
 5325f2d13dc634357a4f108ba7039a102e2b0dc7 8627 
xserver-xorg-video-ati_18.0.0-1_source.buildinfo
Checksums-Sha256:
 99d39d6bac8da992ca88868301b894f752058294ad670bce683fb3a5333050f8 2919 
xserver-xorg-video-ati_18.0.0-1.dsc
 a755ea4e0afbdd38a4bd13d42c1a684fbdcf0ae84474433b1cde7e1a91e8159d 1139543 
xserver-xorg-video-ati_18.0.0.orig.tar.gz
 405fb4ac9105819726bce0a8d09eb4462708798918bc313a674c3f6d4a2f878b 482 
xserver-xorg-video-ati_18.0.0.orig.tar.gz.asc
 2c70b4e7d44c7c8d4f0366a7802cfc9b737c104ad13a96c2d73c0c5c574dbfe7 37716 
xserver-xorg-video-ati_18.0.0-1.diff.gz
 b7422ae7ef773fa4036f40cedb861f45919e2189c989d0960e1bf18becc33f31 8627 
xserver-xorg-video-ati_18.0.0-1_source.buildinfo
Files:
 4d53f72e7105854cf2c1494ac4504d0e 2919 x11 optional 
xserver-xorg-video-ati_18.0.0-1.dsc
 a7beafba592be85a16dd8e94e60fc1a7 1139543 x11 optional 
xserver-xorg-video-ati_18.0.0.orig.tar.gz
 3f75608bb714758a4ea81230bd42aafb 482 x11 optional 
xserver-xorg-video-ati_18.0.0.orig.tar.gz.asc
 541bd734fd0ddd7bbd5820da06938114 37716 x11 optional 
xserver-xorg-video-ati_18.0.0-1.diff.gz
 0b4c0578d279da714a64b8a53dc25d1d 8627 x11 optional 
xserver-xorg-video-ati_18.0.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEdS3ifE3rFwGbS2Yjy3AxZaiJhNwFAlqfqSoACgkQy3AxZaiJ
hNw7shAAkB4TfethBVTVLlFJpluJrdy9MKK5EeScfQxQ9UJVXM/oZMoguMHv6+MW
OQupXWv0fF9T7WNeJVcF/hEwQbC1qKZeIYV4prixbnbKDJXbfi2vpzDBaWu2Y9bj
YZ8yF4WKxfFSN/ATLzN0tz1W9MofMBJ0raCvO5q1ejvBS+dp+FBb5kDtmHu7eYGm
GUEyFEkmfMFanYol4LgJLY2BwNVfljU/tmBOMaycUyniydC2ntdoYHyC1UNgiGHv
mPDttndtZsHOokQD3o4+t865l3JyUNM0lhMjeuiy5s2/7RaIITkezhzUXliA/F7e
97uJoGwaWsyv5qnltkEZO91cPfMlg9bZMAYUocH8IYUIPRYrJfhMOloJ7wIh8Zon
iEB1J7Dy1CqmyAEjQ3+4cSm7X2d1tJZ/do2Dn5sWakxTHzqvIwCyhfZ7GyFAxiap
ZWvvIfEp6gybTL0goEpvfNDb8JKsrC0nFoqCCRstKCj/f/eKpflwc81BEAv2MDZ8
9B6oIhHHhOiRCcgEAkhiDdLeoaR3tg2V2JbdK067jxavrvyA1edqHdyMvX7TdhNM
rUvxf1l73NTn/nbRzIH9RFc4PbRImZ8tPEcpZ32dkbmzP68OdwOiXuSIaNGkOzFV
CNP8nh1ZPeFpmiEmEOWkpi2tqZer6rPKlvTMw2gyfMmQrLmaUUk=
=1aE6
-END PGP SIGNATURE-



Bug#884865: Response?

2018-03-07 Thread Brett Johnson
On Wed, Mar 7, 2018 at 8:05 AM, Timo Aaltonen  wrote:
>
> > John Kessenich (main maintainer of glslang) is working on coming up with
> > a reasonable versioning scheme for it.  So until he does that, you may
> > want to use a scheme similar to what I did, that will be overridden with
> > whatever he comes up with.  The bug to track what he's doing is here:
> >
> > https://github.com/KhronosGroup/glslang/issues/1255
>
> Looks like there's now 5.0 released yesterday, which is nice. If only
> spirv-headers got tagged..


Although spirv-headers isn't tagged, it's not too hard to version.
The headers API is versioned, and is currently at 1.2, so I simply
counted the number of commits in master, and added it to the end of
"1.2.".  This is the script I put in my package to generate a version
number:

 #!/bin/sh

 UPSTREAM_REMOTE=khronos
 UPSTREAM_BRANCH=master

 COMMON_ANCESTOR=`git merge-base master $UPSTREAM_REMOTE/$UPSTREAM_BRANCH`

 NB_OF_COMMITS=`git log --oneline $COMMON_ANCESTOR | wc -l`
 echo "1.2.$NB_OF_COMMITS"



[Git][xorg-team/lib/libinput] Pushed new tag libinput-1.10.2-1

2018-03-07 Thread Timo Aaltonen
Timo Aaltonen pushed new tag libinput-1.10.2-1 at X Strike Force / lib / 
libinput

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/lib/libinput/tree/libinput-1.10.2-1
You're receiving this email because of your account on salsa.debian.org.


Processing of libinput_1.10.2-1_source.changes

2018-03-07 Thread Debian FTP Masters
libinput_1.10.2-1_source.changes uploaded successfully to localhost
along with the files:
  libinput_1.10.2-1.dsc
  libinput_1.10.2.orig.tar.xz
  libinput_1.10.2.orig.tar.xz.asc
  libinput_1.10.2-1.debian.tar.xz
  libinput_1.10.2-1_source.buildinfo

Greetings,

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



libinput_1.10.2-1_source.changes ACCEPTED into unstable

2018-03-07 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 07 Mar 2018 17:51:58 +0200
Source: libinput
Binary: libinput10 libinput-bin libinput10-udeb libinput-dev libinput-tools
Architecture: source
Version: 1.10.2-1
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)
Launchpad-Bugs-Fixed: 1751190
Changes:
 libinput (1.10.2-1) unstable; urgency=medium
 .
   * New upstream release.
 - touchpad fixes (LP: #1751190)
Checksums-Sha1:
 71466e06ce64839cbb7b474e69a0516c001e8e78 2589 libinput_1.10.2-1.dsc
 0c3214ab1cae791b390bc1562dbbf7712ee16780 493780 libinput_1.10.2.orig.tar.xz
 3d0925dd72f18693530898f2abdae27620f1d0ba 241 libinput_1.10.2.orig.tar.xz.asc
 922192cb2fe0e45c7da344889f17eadbf2414c33 8040 libinput_1.10.2-1.debian.tar.xz
 35553cfcdae388bf4f66903df599d4986d2e2a12 6102 
libinput_1.10.2-1_source.buildinfo
Checksums-Sha256:
 c9c571ffb3e8b6394a728e1c6ce5d5fd8880318ba470f0f3d713fb96b6fc4add 2589 
libinput_1.10.2-1.dsc
 1509766d348efe8c6da4285efad3acff4a4c955defb43309e3e4851849197bb9 493780 
libinput_1.10.2.orig.tar.xz
 de23e1a834045db4556d4667f70edb71096056518bf6c37415d4108ab3eb83c4 241 
libinput_1.10.2.orig.tar.xz.asc
 a2ea3cb767fe301307bf3ee439a88d66db18cbed2d51f38b44e288e388105e11 8040 
libinput_1.10.2-1.debian.tar.xz
 1094102cad760c8b4269fce25e17f7aea73ae2dcffd9d6c9035f577a6ee0214c 6102 
libinput_1.10.2-1_source.buildinfo
Files:
 824a925da44b00a7278ba671fc7e5abd 2589 libs optional libinput_1.10.2-1.dsc
 f188d826de5b958cc561eec2b0c3d254 493780 libs optional 
libinput_1.10.2.orig.tar.xz
 bd15738102481dea4ec09b3902fb3dfd 241 libs optional 
libinput_1.10.2.orig.tar.xz.asc
 e7b1a368a88e7331d7768023ed2b78b0 8040 libs optional 
libinput_1.10.2-1.debian.tar.xz
 5096ccdcf0b67ce8a3ce242560b5cf4e 6102 libs optional 
libinput_1.10.2-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEdS3ifE3rFwGbS2Yjy3AxZaiJhNwFAlqgCr0ACgkQy3AxZaiJ
hNxaUw/9GyFwjWELC7tldnwrJKjw99jbj/Ui7jVi2n45EmNt1T9n4hdObv+ILISv
ILYHaIpIzSS2aYQ+S0rN6i/r7ayA844yKax6W2099Za272o/AohYKn8moqxuKPHt
BfW/AHg89qRz//mUf7gy0hn6Hz88YWYGWdf+yCg75HUVLUbk99hY5TLh+agNgadE
r2SQbLx3IH/tZmc1pTEvS3J1KXBTY5AkH9/w2+1KdKvcWpoPKzTcPFPUUB7Y58dd
gyZTg7kqG9sIbWyRM+LYIG6RDlDBvtMvUDV5UlVMOKBIIJ1DpcIDf+sauwskflCU
xXzuI9RkxEGJDlcbi/qiH58nvZqCbYkiBHdex1a7fDaFL7mITJ4aYl2HVUEQlj6Z
nZas/zXtu7L5PgsoWnlpNYA4mQjWY1LqvdAag9GRmc7TbGepRmSVD7fbkxgiQ1Fx
t7zBAiaVJMzNGyvV+Ad/yxMaoxIw3RHq4+WZ/jVHh24Txbae0u1l7O63+1mJzI60
l3/ty1xiIBMt4RXV21sbsPYhf7VYNKUWG1tFrrt71Y9+v6XugsMWCKw9TdDQoQU+
vU11d2bzHz/elH652O1dU2zA1T9b7g/N5MFP0oJGJRvyI1/vV6Wa+K39iXepHfFO
4X7FbtjK1AEQkEutWm9qkRcRA3uCk6hkHRvQX2hUtCjtwSOBe/g=
=Yg1u
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Accepted libinput 1.10.2-1 (source) into unstable

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

Format: 1.8
Date: Wed, 07 Mar 2018 17:51:58 +0200
Source: libinput
Binary: libinput10 libinput-bin libinput10-udeb libinput-dev libinput-tools
Architecture: source
Version: 1.10.2-1
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)
Launchpad-Bugs-Fixed: 1751190
Changes:
 libinput (1.10.2-1) unstable; urgency=medium
 .
   * New upstream release.
 - touchpad fixes (LP: #1751190)
Checksums-Sha1:
 71466e06ce64839cbb7b474e69a0516c001e8e78 2589 libinput_1.10.2-1.dsc
 0c3214ab1cae791b390bc1562dbbf7712ee16780 493780 libinput_1.10.2.orig.tar.xz
 3d0925dd72f18693530898f2abdae27620f1d0ba 241 libinput_1.10.2.orig.tar.xz.asc
 922192cb2fe0e45c7da344889f17eadbf2414c33 8040 libinput_1.10.2-1.debian.tar.xz
 35553cfcdae388bf4f66903df599d4986d2e2a12 6102 
libinput_1.10.2-1_source.buildinfo
Checksums-Sha256:
 c9c571ffb3e8b6394a728e1c6ce5d5fd8880318ba470f0f3d713fb96b6fc4add 2589 
libinput_1.10.2-1.dsc
 1509766d348efe8c6da4285efad3acff4a4c955defb43309e3e4851849197bb9 493780 
libinput_1.10.2.orig.tar.xz
 de23e1a834045db4556d4667f70edb71096056518bf6c37415d4108ab3eb83c4 241 
libinput_1.10.2.orig.tar.xz.asc
 a2ea3cb767fe301307bf3ee439a88d66db18cbed2d51f38b44e288e388105e11 8040 
libinput_1.10.2-1.debian.tar.xz
 1094102cad760c8b4269fce25e17f7aea73ae2dcffd9d6c9035f577a6ee0214c 6102 
libinput_1.10.2-1_source.buildinfo
Files:
 824a925da44b00a7278ba671fc7e5abd 2589 libs optional libinput_1.10.2-1.dsc
 f188d826de5b958cc561eec2b0c3d254 493780 libs optional 
libinput_1.10.2.orig.tar.xz
 bd15738102481dea4ec09b3902fb3dfd 241 libs optional 
libinput_1.10.2.orig.tar.xz.asc
 e7b1a368a88e7331d7768023ed2b78b0 8040 libs optional 
libinput_1.10.2-1.debian.tar.xz
 5096ccdcf0b67ce8a3ce242560b5cf4e 6102 libs optional 
libinput_1.10.2-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEdS3ifE3rFwGbS2Yjy3AxZaiJhNwFAlqgCr0ACgkQy3AxZaiJ
hNxaUw/9GyFwjWELC7tldnwrJKjw99jbj/Ui7jVi2n45EmNt1T9n4hdObv+ILISv
ILYHaIpIzSS2aYQ+S0rN6i/r7ayA844yKax6W2099Za272o/AohYKn8moqxuKPHt
BfW/AHg89qRz//mUf7gy0hn6Hz88YWYGWdf+yCg75HUVLUbk99hY5TLh+agNgadE
r2SQbLx3IH/tZmc1pTEvS3J1KXBTY5AkH9/w2+1KdKvcWpoPKzTcPFPUUB7Y58dd
gyZTg7kqG9sIbWyRM+LYIG6RDlDBvtMvUDV5UlVMOKBIIJ1DpcIDf+sauwskflCU
xXzuI9RkxEGJDlcbi/qiH58nvZqCbYkiBHdex1a7fDaFL7mITJ4aYl2HVUEQlj6Z
nZas/zXtu7L5PgsoWnlpNYA4mQjWY1LqvdAag9GRmc7TbGepRmSVD7fbkxgiQ1Fx
t7zBAiaVJMzNGyvV+Ad/yxMaoxIw3RHq4+WZ/jVHh24Txbae0u1l7O63+1mJzI60
l3/ty1xiIBMt4RXV21sbsPYhf7VYNKUWG1tFrrt71Y9+v6XugsMWCKw9TdDQoQU+
vU11d2bzHz/elH652O1dU2zA1T9b7g/N5MFP0oJGJRvyI1/vV6Wa+K39iXepHfFO
4X7FbtjK1AEQkEutWm9qkRcRA3uCk6hkHRvQX2hUtCjtwSOBe/g=
=Yg1u
-END PGP SIGNATURE-