mesa: Changes to 'debian-experimental'

2013-06-06 Thread Andreas Boll
 configure.ac |   56 +--
 debian/changelog |6 ++
 src/mesa/drivers/dri/i965/brw_fs.cpp |   15 ++-
 src/mesa/drivers/dri/i965/brw_fs.h   |1 
 src/mesa/drivers/dri/i965/brw_fs_visitor.cpp |3 +
 5 files changed, 52 insertions(+), 29 deletions(-)

New commits:
commit cd99e8319daaef7e7a53c3372d1fbfaa1a1ef50c
Author: Andreas Boll andreas.boll@gmail.com
Date:   Thu Jun 6 09:37:21 2013 +0200

debian/changelog: Add changelog entry

diff --git a/debian/changelog b/debian/changelog
index 9b0665a..140a6fb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ mesa (9.1.3-3) UNRELEASED; urgency=low
 - configure.ac: Remove redundant checks of enable_dri.
 - configure.ac: Build dricommon for DRI gallium drivers
 - configure.ac: Build dricommon for gallium swrast
+  * Memory corruption (OOB read/write) in i965 driver [CVE-2013-1872]
 
  -- Andreas Boll andreas.boll@gmail.com  Tue, 04 Jun 2013 11:36:30 +0200
 

commit 5cd24813343b1c1cc9d44b4dfeadf12661414f5c
Author: Dave Airlie airl...@gmail.com
Date:   Thu May 30 20:21:56 2013 +1000

i965: fix problem with constant out of bounds access (v3)

Okay I now understand why Frank would want to run away, this is
my attempt at fixing the CVE out of bounds access to constants
outside the range. This attempt converts any illegal constants
to constant 0 as per the GL spec, and is undefined behaviour.

A future patch should add some debug for users to find this out,
but this needs to be backported to stable branches.

CVE-2013-1872

v2: drop the last hunk which was a separate fix (now in master).
hopefully fix the indentations.

v3: don't fail piglit, the whole 8/16 dispatch stuff was over
my head, and I spent a while figuring it out, but this one is
definitely safe, one piglit pass extra on my Ironlake.

NOTE: This is a candidate for stable branches.

Signed-off-by: Dave Airlie airl...@redhat.com
(cherry picked from commit 0677ea063cd96adefe87c1fb01ef7c66d905535b)

diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp 
b/src/mesa/drivers/dri/i965/brw_fs.cpp
index 3c3b3a1..da93048 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -829,6 +829,7 @@ fs_visitor::import_uniforms(fs_visitor *v)
   import_uniforms_callback,
   variable_ht);
this-params_remap = v-params_remap;
+   this-nr_params_remap = v-nr_params_remap;
 }
 
 /* Our support for uniforms is piggy-backed on the struct
@@ -1501,6 +1502,7 @@ fs_visitor::remove_dead_constants()
 {
if (dispatch_width == 8) {
   this-params_remap = ralloc_array(mem_ctx, int, c-prog_data.nr_params);
+  this-nr_params_remap = c-prog_data.nr_params;
 
   for (unsigned int i = 0; i  c-prog_data.nr_params; i++)
 this-params_remap[i] = -1;
@@ -1515,7 +1517,14 @@ fs_visitor::remove_dead_constants()
if (inst-src[i].file != UNIFORM)
   continue;
 
-   assert(constant_nr  (int)c-prog_data.nr_params);
+   /* Section 5.11 of the OpenGL 4.3 spec says:
+*
+* Out-of-bounds reads return undefined values, which include
+* values from other variables of the active program or zero.
+*/
+   if (constant_nr  0 || constant_nr = (int)c-prog_data.nr_params) {
+  constant_nr = 0;
+   }
 
/* For now, set this to non-negative.  We'll give it the
 * actual new number in a moment, in order to keep the
@@ -1563,6 +1572,10 @@ fs_visitor::remove_dead_constants()
 if (inst-src[i].file != UNIFORM)
continue;
 
+/* as above alias to 0 */
+if (constant_nr  0 || constant_nr = (int)this-nr_params_remap) {
+   constant_nr = 0;
+}
 assert(this-params_remap[constant_nr] != -1);
 inst-src[i].reg = this-params_remap[constant_nr];
 inst-src[i].reg_offset = 0;
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h 
b/src/mesa/drivers/dri/i965/brw_fs.h
index c776c77..411144f 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.h
+++ b/src/mesa/drivers/dri/i965/brw_fs.h
@@ -440,6 +440,7 @@ public:
 * uniform index.
 */
int *params_remap;
+   int nr_params_remap;
 
struct hash_table *variable_ht;
fs_reg frag_depth;
diff --git a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp 
b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp
index 9a82647..40d39df 100644
--- a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp
@@ -2319,6 +2319,7 @@ fs_visitor::fs_visitor(struct brw_context *brw,
this-live_intervals_valid = false;
 
this-params_remap = NULL;
+   this-nr_params_remap = 0;
 
this-force_uncompressed_stack = 0;
this-force_sechalf_stack = 0;

commit 

Processed: tagging 671870, forcibly merging 684594 671870

2013-06-06 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 671870 - moreinfo
Bug #671870 [xserver-xorg-video-intel] upcoming KMS support on GNU/kFreeBSD
Removed tag(s) moreinfo.
 forcemerge 684594 671870
Bug #684594 [xserver-xorg-video-intel] [xserver-xorg-video-intel] Add kfreebsd 
support
Bug #671870 [xserver-xorg-video-intel] upcoming KMS support on GNU/kFreeBSD
Marked as found in versions xserver-xorg-video-intel/2:2.20.2-1.
Added tag(s) patch.
Merged 671870 684594
 thanks
Stopping processing here.

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


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.137050590622406.transcr...@bugs.debian.org



Bug#711305: Loading i915 with modeset=1 disables display

2013-06-06 Thread Robert de Bath

Package: xserver-xorg-video-intel
Version: 2:2.13.0-7

This is an interaction of several different packages.

Firstly, as you know the X video driver needs the i915 module to be loaded 
to work correctly; furthermore it requires the module to attempt to set 
the video mode during initilisation. Without this X doesn't load the video 
driver. With it the driver get loaded and works correctly.


But, the kernel driver is buggy, if loaded with modeset=1 it will corrupt 
the display controller blanking the display.


Unfortunatly, udev loads all drivers it can during the boot and uses the 
configuration set for modprobe.


Luckily, someone seems to have though of this. When udev loads modules it 
supplies the --use-blacklist option, whereas X calls modprobe without 
the --use-blacklist option.


So please set the contents of the file /etc/modprobe.d/i915-kms.conf to 
this:


!
blacklist i915
options i915 modeset=1

!


This means it isn't loaded during boot and is loaded correctly when X 
starts.


It also means that xinit true loads the video driver correctly and fixes 
the screen mode after booting vga=0x305 ... bit of an overkill but never

mind that :-)

It seems I also need it on one machine for the radeon driver; this being 
so I would suggest it's a good idea for all drivers using kms and 
requiring the kernel to do a modeset.


--
Rob.  (Robert de Bath robert$ @ debath.co.uk)
 http://www.debath.co.uk/


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/alpine.DEB.2.00.1306060856340.21887@mayday



mesa: Changes to 'debian-experimental'

2013-06-06 Thread Julien Cristau
 debian/changelog |4 
 debian/rules |2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

New commits:
commit d83185576b0c8f533d798c4ab9ce0d2eb79abfa1
Author: Julien Cristau julien.cris...@logilab.fr
Date:   Thu Jun 6 10:05:52 2013 +0200

Build i915 and i965 on kfreebsd.

diff --git a/debian/changelog b/debian/changelog
index 140a6fb..cd84b26 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
 mesa (9.1.3-3) UNRELEASED; urgency=low
 
+  [ Andreas Boll ]
   * debian/not-installed: Remove /etc/drirc, it's shipped since 8.0.5-1.
 Fixes build on hurd.
   * debian: Fix build regression on !hurd.
@@ -11,6 +12,9 @@ mesa (9.1.3-3) UNRELEASED; urgency=low
 - configure.ac: Build dricommon for gallium swrast
   * Memory corruption (OOB read/write) in i965 driver [CVE-2013-1872]
 
+  [ Julien Cristau ]
+  * Build i915 and i965 on kfreebsd.
+
  -- Andreas Boll andreas.boll@gmail.com  Tue, 04 Jun 2013 11:36:30 +0200
 
 mesa (9.1.3-2) experimental; urgency=low
diff --git a/debian/rules b/debian/rules
index a940972..26dd735 100755
--- a/debian/rules
+++ b/debian/rules
@@ -81,7 +81,6 @@ else
DRI_DRIVERS += r200 radeon nouveau
 endif
 ifneq (,$(filter $(DEB_HOST_ARCH_CPU), amd64 i386))
-   DRI_DRIVERS += i915 i965
# Radeonsi needs LLVM, so only build it on the subset of archs
# where we have LLVM enabled.
GALLIUM_DRIVERS += radeonsi
@@ -96,6 +95,7 @@ else
DRI_DRIVERS += swrast
   else
GALLIUM_DRIVERS += swrast
+   DRI_DRIVERS += i915 i965
   endif
 
   # LLVM is required for r300g and recommended for swrastg on x86:


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ukvd5-0004oe...@vasks.debian.org



mesa: Changes to 'debian-experimental'

2013-06-06 Thread Cyril Brulebois
 debian/changelog |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 764e46d0e91a9bbd17b57887691f454dfe0fd404
Author: Cyril Brulebois k...@debian.org
Date:   Thu Jun 6 10:29:58 2013 +0200

Upload to experimental.

diff --git a/debian/changelog b/debian/changelog
index cd84b26..6eda3c5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-mesa (9.1.3-3) UNRELEASED; urgency=low
+mesa (9.1.3-3) experimental; urgency=low
 
   [ Andreas Boll ]
   * debian/not-installed: Remove /etc/drirc, it's shipped since 8.0.5-1.
@@ -15,7 +15,7 @@ mesa (9.1.3-3) UNRELEASED; urgency=low
   [ Julien Cristau ]
   * Build i915 and i965 on kfreebsd.
 
- -- Andreas Boll andreas.boll@gmail.com  Tue, 04 Jun 2013 11:36:30 +0200
+ -- Cyril Brulebois k...@debian.org  Thu, 06 Jun 2013 10:29:15 +0200
 
 mesa (9.1.3-2) experimental; urgency=low
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ukwwr-0001oi...@vasks.debian.org



Processing of mesa_9.1.3-3_amd64.changes

2013-06-06 Thread Debian FTP Masters
mesa_9.1.3-3_amd64.changes uploaded successfully to localhost
along with the files:
  mesa_9.1.3-3.dsc
  mesa_9.1.3-3.diff.gz
  libgl1-mesa-swx11_9.1.3-3_amd64.deb
  libgl1-mesa-swx11-dbg_9.1.3-3_amd64.deb
  libgl1-mesa-swx11-dev_9.1.3-3_amd64.deb
  libxatracker1_9.1.3-3_amd64.deb
  libxatracker1-dbg_9.1.3-3_amd64.deb
  libxatracker-dev_9.1.3-3_amd64.deb
  libgbm1_9.1.3-3_amd64.deb
  libgbm1-dbg_9.1.3-3_amd64.deb
  libgbm-dev_9.1.3-3_amd64.deb
  libegl1-mesa_9.1.3-3_amd64.deb
  libegl1-mesa-dbg_9.1.3-3_amd64.deb
  libegl1-mesa-dev_9.1.3-3_amd64.deb
  libegl1-mesa-drivers_9.1.3-3_amd64.deb
  libegl1-mesa-drivers-dbg_9.1.3-3_amd64.deb
  libopenvg1-mesa_9.1.3-3_amd64.deb
  libopenvg1-mesa-dbg_9.1.3-3_amd64.deb
  libopenvg1-mesa-dev_9.1.3-3_amd64.deb
  libgles1-mesa_9.1.3-3_amd64.deb
  libgles1-mesa-dbg_9.1.3-3_amd64.deb
  libgles1-mesa-dev_9.1.3-3_amd64.deb
  libgles2-mesa_9.1.3-3_amd64.deb
  libgles2-mesa-dbg_9.1.3-3_amd64.deb
  libgles2-mesa-dev_9.1.3-3_amd64.deb
  libglapi-mesa_9.1.3-3_amd64.deb
  libglapi-mesa-dbg_9.1.3-3_amd64.deb
  libgl1-mesa-glx_9.1.3-3_amd64.deb
  libgl1-mesa-glx-dbg_9.1.3-3_amd64.deb
  libgl1-mesa-dri_9.1.3-3_amd64.deb
  libgl1-mesa-dri-dbg_9.1.3-3_amd64.deb
  libgl1-mesa-dri-experimental_9.1.3-3_amd64.deb
  libgl1-mesa-dri-experimental-dbg_9.1.3-3_amd64.deb
  libgl1-mesa-dev_9.1.3-3_amd64.deb
  mesa-common-dev_9.1.3-3_amd64.deb
  libosmesa6_9.1.3-3_amd64.deb
  libosmesa6-dev_9.1.3-3_amd64.deb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ukwy3-0008pv...@franck.debian.org



mesa: Changes to 'refs/tags/mesa-9.1.3-3'

2013-06-06 Thread Cyril Brulebois
Tag 'mesa-9.1.3-3' created by Cyril Brulebois k...@debian.org at 2013-06-06 
09:29 +

Tagging upload of mesa 9.1.3-3 to experimental.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEABECAAYFAlGwVpYACgkQeGfVPHR5Nd3gUwCfY55P+TB+WLSdOw7IRps/g+h4
/KcAoM568F19DAjf+XzFnFjqvY7T5C8b
=QcF1
-END PGP SIGNATURE-

Changes since mesa-9.1.3-2:
Andreas Boll (4):
  debian/not-installed: Remove /etc/drirc, it's shipped since 8.0.5-1.
  debian: Fix build regression on !hurd
  debian/changelog: Add changelog entry
  debian/changelog: Add changelog entry

Cyril Brulebois (1):
  Upload to experimental.

Dave Airlie (1):
  i965: fix problem with constant out of bounds access (v3)

Frank Henigman (1):
  intel: initialize fs_visitor::params_remap in constructor

Julien Cristau (1):
  Build i915 and i965 on kfreebsd.

Matt Turner (2):
  configure.ac: Remove redundant checks of enable_dri.
  configure.ac: Build dricommon for DRI gallium drivers

Mike Stroyan (1):
  configure.ac: Build dricommon for gallium swrast

---
 configure.ac |   56 +--
 debian/changelog |   19 +
 debian/libgl1-mesa-dri.install.hurd.in   |2 
 debian/libgl1-mesa-dri.install.in|2 
 debian/not-installed |1 
 debian/rules |2 
 src/mesa/drivers/dri/i965/brw_fs.cpp |   15 ++-
 src/mesa/drivers/dri/i965/brw_fs.h   |1 
 src/mesa/drivers/dri/i965/brw_fs_visitor.cpp |3 +
 9 files changed, 69 insertions(+), 32 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ukwwt-0001qt...@vasks.debian.org



mesa_9.1.3-3_amd64.changes ACCEPTED into experimental

2013-06-06 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 06 Jun 2013 10:29:15 +0200
Source: mesa
Binary: libgl1-mesa-swx11 libgl1-mesa-swx11-dbg libgl1-mesa-swx11-i686 
libgl1-mesa-swx11-dev libxatracker1 libxatracker1-dbg libxatracker-dev libgbm1 
libgbm1-dbg libgbm-dev libegl1-mesa libegl1-mesa-dbg libegl1-mesa-dev 
libegl1-mesa-drivers libegl1-mesa-drivers-dbg libopenvg1-mesa 
libopenvg1-mesa-dbg libopenvg1-mesa-dev libgles1-mesa libgles1-mesa-dbg 
libgles1-mesa-dev libgles2-mesa libgles2-mesa-dbg libgles2-mesa-dev 
libglapi-mesa libglapi-mesa-dbg libgl1-mesa-glx libgl1-mesa-glx-dbg 
libgl1-mesa-dri libgl1-mesa-dri-dbg libgl1-mesa-dri-experimental 
libgl1-mesa-dri-experimental-dbg libgl1-mesa-dev mesa-common-dev libosmesa6 
libosmesa6-dev
Architecture: source amd64
Version: 9.1.3-3
Distribution: experimental
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Cyril Brulebois k...@debian.org
Description: 
 libegl1-mesa - free implementation of the EGL API -- runtime
 libegl1-mesa-dbg - free implementation of the EGL API -- debugging symbols
 libegl1-mesa-dev - free implementation of the EGL API -- development files
 libegl1-mesa-drivers - free implementation of the EGL API -- hardware drivers
 libegl1-mesa-drivers-dbg - free implementation of the EGL API -- driver 
debugging symbols
 libgbm-dev - generic buffer management API -- development files
 libgbm1- generic buffer management API -- runtime
 libgbm1-dbg - generic buffer management API -- debugging symbols
 libgl1-mesa-dev - free implementation of the OpenGL API -- GLX development 
files
 libgl1-mesa-dri - free implementation of the OpenGL API -- DRI modules
 libgl1-mesa-dri-dbg - Debugging symbols for the Mesa DRI modules
 libgl1-mesa-dri-experimental - free implementation of the OpenGL API -- Extra 
DRI modules
 libgl1-mesa-dri-experimental-dbg - Debugging symbols for the experimental Mesa 
DRI modules
 libgl1-mesa-glx - free implementation of the OpenGL API -- GLX runtime
 libgl1-mesa-glx-dbg - Debugging symbols for the Mesa GLX runtime
 libgl1-mesa-swx11 - free implementation of the OpenGL API -- runtime
 libgl1-mesa-swx11-dbg - free implementation of the OpenGL API -- debugging 
symbols
 libgl1-mesa-swx11-dev - free implementation of the OpenGL API -- development 
files
 libgl1-mesa-swx11-i686 - Mesa OpenGL runtime [i686 optimized]
 libglapi-mesa - free implementation of the GL API -- shared library
 libglapi-mesa-dbg - free implementation of the GL API -- debugging symbols
 libgles1-mesa - free implementation of the OpenGL|ES 1.x API -- runtime
 libgles1-mesa-dbg - free implementation of the OpenGL|ES 1.x API -- debugging 
symbols
 libgles1-mesa-dev - free implementation of the OpenGL|ES 1.x API -- 
development files
 libgles2-mesa - free implementation of the OpenGL|ES 2.x API -- runtime
 libgles2-mesa-dbg - free implementation of the OpenGL|ES 2.x API -- debugging 
symbols
 libgles2-mesa-dev - free implementation of the OpenGL|ES 2.x API -- 
development files
 libopenvg1-mesa - free implementation of the OpenVG API -- runtime
 libopenvg1-mesa-dbg - free implementation of the OpenVG API -- debugging 
symbols
 libopenvg1-mesa-dev - free implementation of the OpenVG API -- development 
files
 libosmesa6 - Mesa Off-screen rendering extension
 libosmesa6-dev - Mesa Off-screen rendering extension -- development files
 libxatracker-dev - X acceleration library -- development files
 libxatracker1 - X acceleration library -- runtime
 libxatracker1-dbg - X acceleration library -- debugging symbols
 mesa-common-dev - Developer documentation for Mesa
Changes: 
 mesa (9.1.3-3) experimental; urgency=low
 .
   [ Andreas Boll ]
   * debian/not-installed: Remove /etc/drirc, it's shipped since 8.0.5-1.
 Fixes build on hurd.
   * debian: Fix build regression on !hurd.
 Fix it with libgl1-mesa-dri.install.hurd.in, where we don't install drirc.
   * Cherry-pick commit 7de78ce5, 07f2dee and 9622049 from upstream
 (Fixes FTBFS on kfreebsd-*)
 - configure.ac: Remove redundant checks of enable_dri.
 - configure.ac: Build dricommon for DRI gallium drivers
 - configure.ac: Build dricommon for gallium swrast
   * Memory corruption (OOB read/write) in i965 driver [CVE-2013-1872]
 .
   [ Julien Cristau ]
   * Build i915 and i965 on kfreebsd.
Checksums-Sha1: 
 aa1cf63b2c04c0690f73f7f989db7757ff13586e 3701 mesa_9.1.3-3.dsc
 fc6165b0e12cf7ae6777891f9b6c617b178c73d2 53359 mesa_9.1.3-3.diff.gz
 cf515898c6fe94bd7320089a4817c6f8790d6665 1059330 
libgl1-mesa-swx11_9.1.3-3_amd64.deb
 5a286c41393af25fc86497712118b37b2a2d8c2b 3208754 
libgl1-mesa-swx11-dbg_9.1.3-3_amd64.deb
 b15c81cb34487ff0379c5b08ad04f0760f3d9037 1179210 
libgl1-mesa-swx11-dev_9.1.3-3_amd64.deb
 e475edb5103b07d8614e261bd19d0f7879108f76 572202 libxatracker1_9.1.3-3_amd64.deb
 153c3cd9d83b46764e671ea70e00b462363d8bbe 1843836 
libxatracker1-dbg_9.1.3-3_amd64.deb
 65147a7c8b9a002ba2beb08a9a9e26907cd4bbcd 36744 

libdrm: Changes to 'ubuntu'

2013-06-06 Thread Timo Aaltonen
 .gitignore|1 
 ChangeLog |  116 +++
 configure.ac  |2 
 debian/changelog  |   30 -
 debian/control|2 
 debian/patches/add-more-reserved-hsw-ids.diff |  136 +++
 debian/patches/fix-hsw-gt3-names.diff |  110 ++
 debian/patches/series |2 
 freedreno/freedreno_bo.c  |   68 +++
 freedreno/freedreno_drmif.h   |1 
 freedreno/freedreno_pipe.c|   26 
 freedreno/freedreno_priv.h|   10 +
 freedreno/freedreno_ringbuffer.c  |4 
 include/drm/Makefile.am   |4 
 include/drm/i915_drm.h|2 
 include/drm/qxl_drm.h |  152 ++
 intel/intel_bufmgr_gem.c  |9 +
 radeon/r600_pci_ids.h |   12 ++
 radeon/radeon_surface.c   |   10 +
 radeon/radeon_surface.h   |1 
 20 files changed, 682 insertions(+), 16 deletions(-)

New commits:
commit 03d6c82578112b7ee436b332d1cdbaa9c8abcc30
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Thu Jun 6 14:12:14 2013 +0300

release to saucy

diff --git a/debian/changelog b/debian/changelog
index c8ec82a..22121be 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,9 @@
-libdrm (2.4.45-2ubuntu1) UNRELEASED; urgency=low
+libdrm (2.4.45-2ubuntu1) saucy; urgency=low
 
   * Merge from debian experimental.
   * Added patches to add/fix Haswell pci-id's (LP: #1175533)
 
- -- Timo Aaltonen tjaal...@ubuntu.com  Thu, 06 Jun 2013 14:08:52 +0300
+ -- Timo Aaltonen tjaal...@ubuntu.com  Thu, 06 Jun 2013 14:10:48 +0300
 
 libdrm (2.4.45-2) experimental; urgency=low
 

commit ef3e0628bf05f9a182c0614a8b14d5bce820acbd
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Thu Jun 6 14:10:45 2013 +0300

Added patches to add/fix Haswell pci-id's (LP: #1175533)

diff --git a/debian/changelog b/debian/changelog
index 028f434..c8ec82a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libdrm (2.4.45-2ubuntu1) UNRELEASED; urgency=low
+
+  * Merge from debian experimental.
+  * Added patches to add/fix Haswell pci-id's (LP: #1175533)
+
+ -- Timo Aaltonen tjaal...@ubuntu.com  Thu, 06 Jun 2013 14:08:52 +0300
+
 libdrm (2.4.45-2) experimental; urgency=low
 
   [ Sven Joachim ]
diff --git a/debian/patches/add-more-reserved-hsw-ids.diff 
b/debian/patches/add-more-reserved-hsw-ids.diff
new file mode 100644
index 000..5586818
--- /dev/null
+++ b/debian/patches/add-more-reserved-hsw-ids.diff
@@ -0,0 +1,136 @@
+commit 1669a67d063e82a58dae4d906015172d471e9a2a
+Author: Rodrigo Vivi rodrigo.v...@gmail.com
+Date:   Mon May 13 17:48:40 2013 -0300
+
+intel: Adding more reserved PCI IDs for Haswell.
+
+At DDX commit Chris mentioned the tendency we have of finding out more
+PCI IDs only when users report. So Let's add all new reserved Haswell IDs.
+
+Bugzilla: http://bugs.freedesktop.org/show_bug.cgi?id=63701
+Signed-off-by: Rodrigo Vivi rodrigo.v...@gmail.com
+Acked-by: Kenneth Graunke kenn...@whitecape.org
+
+diff --git a/intel/intel_chipset.h b/intel/intel_chipset.h
+index 3350def..aeb439e 100644
+--- a/intel/intel_chipset.h
 b/intel/intel_chipset.h
+@@ -97,6 +97,12 @@
+ #define PCI_CHIP_HASWELL_S_GT10x040A /* Server */
+ #define PCI_CHIP_HASWELL_S_GT20x041A
+ #define PCI_CHIP_HASWELL_S_GT30x042A
++#define PCI_CHIP_HASWELL_B_GT10x040B /* Reserved */
++#define PCI_CHIP_HASWELL_B_GT20x041B
++#define PCI_CHIP_HASWELL_B_GT30x042B
++#define PCI_CHIP_HASWELL_E_GT10x040E /* Reserved */
++#define PCI_CHIP_HASWELL_E_GT20x041E
++#define PCI_CHIP_HASWELL_E_GT30x042E
+ #define PCI_CHIP_HASWELL_SDV_GT1  0x0C02 /* Desktop */
+ #define PCI_CHIP_HASWELL_SDV_GT2  0x0C12
+ #define PCI_CHIP_HASWELL_SDV_GT3  0x0C22
+@@ -106,6 +112,12 @@
+ #define PCI_CHIP_HASWELL_SDV_S_GT10x0C0A /* Server */
+ #define PCI_CHIP_HASWELL_SDV_S_GT20x0C1A
+ #define PCI_CHIP_HASWELL_SDV_S_GT30x0C2A
++#define PCI_CHIP_HASWELL_SDV_B_GT10x0C0B /* Reserved */
++#define PCI_CHIP_HASWELL_SDV_B_GT20x0C1B
++#define PCI_CHIP_HASWELL_SDV_B_GT30x0C2B
++#define PCI_CHIP_HASWELL_SDV_E_GT10x0C0E /* Reserved */
++#define PCI_CHIP_HASWELL_SDV_E_GT20x0C1E
++#define PCI_CHIP_HASWELL_SDV_E_GT30x0C2E
+ #define PCI_CHIP_HASWELL_ULT_GT1  0x0A02 /* Desktop */
+ #define PCI_CHIP_HASWELL_ULT_GT2  0x0A12
+ #define PCI_CHIP_HASWELL_ULT_GT3  0x0A22
+@@ -115,6 +127,12 @@
+ #define PCI_CHIP_HASWELL_ULT_S_GT10x0A0A /* Server */
+ #define PCI_CHIP_HASWELL_ULT_S_GT20x0A1A
+ 

xserver-xorg-video-intel: Changes to 'upstream-experimental'

2013-06-06 Thread Maarten Lankhorst
 NEWS |   41 +
 configure.ac |2 
 src/compat-api.h |1 
 src/intel_module.c   |   46 ++---
 src/sna/gen2_render.c|4 
 src/sna/gen3_render.c|4 
 src/sna/gen4_render.c|6 
 src/sna/gen5_render.c|6 
 src/sna/gen6_render.c|9 -
 src/sna/gen7_render.c|   23 ++
 src/sna/kgem.c   |   28 ++-
 src/sna/sna.h|6 
 src/sna/sna_accel.c  |  192 ++--
 src/sna/sna_cpu.c|6 
 src/sna/sna_display.c|  244 ++
 src/sna/sna_display_fake.c   |   15 -
 src/sna/sna_dri.c|   10 +
 src/sna/sna_driver.c |   23 +-
 src/sna/sna_glyphs.c |   10 -
 src/sna/sna_render.c |3 
 src/sna/sna_render.h |   15 -
 src/sna/sna_video.c  |  162 +---
 src/sna/sna_video.h  |   44 -
 src/sna/sna_video_hwmc.c |   64 +++-
 src/sna/sna_video_hwmc.h |2 
 src/sna/sna_video_overlay.c  |  344 ++-
 src/sna/sna_video_sprite.c   |  282 ---
 src/sna/sna_video_textured.c |  257 +++-
 test/Makefile.am |2 
 test/tearing.mp4 |binary
 30 files changed, 1098 insertions(+), 753 deletions(-)

New commits:
commit 2770655371954413c750b030c9a7135baee302d4
Author: Chris Wilson ch...@chris-wilson.co.uk
Date:   Thu Jun 6 12:04:23 2013 +0100

2.21.9 release

diff --git a/NEWS b/NEWS
index eb0d9b2..2d358c0 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,25 @@
+Release 2.21.9 (2013-06-06)
+===
+Consolidating the copy-on-write support, hopefully cleaning up the last of
+the regressions.
+
+ * Restore vsync on textured videos.
+   [regression from 2.21.8]
+   https://bugs.freedesktop.org/show_bug.cgi?id=65048
+
+ * Fix incorrect ordering of possible_clones with certain outputs, which
+   can lead to attempting to incorrectly clone 2 outputs and failing to
+   light them up.
+   [regression from 2.20.10]
+
+ * Fix performance regression from not promoting large fills to the GPU
+   [regression from 2.21.7]
+
+ * Undo the pixmap clone before performing a DRI2CopyRegion
+   [regression from 2.21.7]
+   https://bugs.freedesktop.org/show_bug.cgi?id=65250
+
+
 Release 2.21.8 (2013-05-27)
 ===
 A quick release to cleanup a few regressions from the introduction of
diff --git a/configure.ac b/configure.ac
index 0bac6f6..3f6f9bd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ([2.60])
 AC_INIT([xf86-video-intel],
-[2.21.8],
+[2.21.9],
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 [xf86-video-intel])
 AC_CONFIG_SRCDIR([Makefile.am])

commit d3345cd269dc75999b35f3286d21059974dcb24b
Author: Chris Wilson ch...@chris-wilson.co.uk
Date:   Thu Jun 6 12:18:32 2013 +0100

sna: Only emit an error for terminal mmap failures

If we repeat the mmap, keep quiet. Only emit the ErrorF in case even the
repeated attempts to mmap the bo fail.

Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk

diff --git a/src/sna/kgem.c b/src/sna/kgem.c
index 62713de..fefaa8b 100644
--- a/src/sna/kgem.c
+++ b/src/sna/kgem.c
@@ -292,8 +292,8 @@ retry_gtt:
VG_CLEAR(mmap_arg);
mmap_arg.handle = bo-handle;
if (drmIoctl(kgem-fd, DRM_IOCTL_I915_GEM_MMAP_GTT, mmap_arg)) {
-   ErrorF(%s: failed to retrieve GTT offset for handle=%d: %d\n,
-  __FUNCTION__, bo-handle, errno);
+   int err = errno;
+
(void)__kgem_throttle_retire(kgem, 0);
if (kgem_expire_cache(kgem))
goto retry_gtt;
@@ -303,6 +303,8 @@ retry_gtt:
goto retry_gtt;
}
 
+   ErrorF(%s: failed to retrieve GTT offset for handle=%d: %d\n,
+  __FUNCTION__, bo-handle, err);
return NULL;
}
 
@@ -310,8 +312,8 @@ retry_mmap:
ptr = mmap(0, bytes(bo), PROT_READ | PROT_WRITE, MAP_SHARED,
   kgem-fd, mmap_arg.offset);
if (ptr == MAP_FAILED) {
-   ErrorF(%s: failed to mmap %d, %d bytes, into GTT domain: %d\n,
-  __FUNCTION__, bo-handle, bytes(bo), errno);
+   int err = errno;
+
if (__kgem_throttle_retire(kgem, 0))
goto retry_mmap;
 
@@ -320,6 +322,8 @@ retry_mmap:
goto retry_mmap;
}
 
+   ErrorF(%s: failed to mmap handle=%d, %d bytes, into GTT 
domain: %d\n,
+  __FUNCTION__, bo-handle, bytes(bo), err);
ptr = NULL;
}
 
@@ -4694,8 +4698,8 @@ retry:
mmap_arg.offset = 0;
mmap_arg.size = bytes(bo);
if 

xserver-xorg-video-intel: Changes to 'debian-experimental'

2013-06-06 Thread Maarten Lankhorst
 ChangeLog|  486 +++
 NEWS |   41 +++
 configure.ac |2 
 debian/changelog |2 
 src/compat-api.h |1 
 src/intel_module.c   |   46 ++--
 src/sna/gen2_render.c|4 
 src/sna/gen3_render.c|4 
 src/sna/gen4_render.c|6 
 src/sna/gen5_render.c|6 
 src/sna/gen6_render.c|9 
 src/sna/gen7_render.c|   23 +-
 src/sna/kgem.c   |   28 +-
 src/sna/sna.h|6 
 src/sna/sna_accel.c  |  192 ++--
 src/sna/sna_cpu.c|6 
 src/sna/sna_display.c|  244 +++--
 src/sna/sna_display_fake.c   |   15 -
 src/sna/sna_dri.c|   10 
 src/sna/sna_driver.c |   23 --
 src/sna/sna_glyphs.c |   10 
 src/sna/sna_render.c |3 
 src/sna/sna_render.h |   15 -
 src/sna/sna_video.c  |  162 +-
 src/sna/sna_video.h  |   44 ++-
 src/sna/sna_video_hwmc.c |   64 ++---
 src/sna/sna_video_hwmc.h |2 
 src/sna/sna_video_overlay.c  |  344 +++---
 src/sna/sna_video_sprite.c   |  282 ++--
 src/sna/sna_video_textured.c |  257 +++---
 test/Makefile.am |2 
 test/tearing.mp4 |binary
 32 files changed, 1585 insertions(+), 754 deletions(-)

New commits:
commit 4ea0a2b45127b2b06b8fe83f167d498cc62748af
Author: Maarten Lankhorst maarten.lankho...@canonical.com
Date:   Thu Jun 6 14:53:04 2013 +0200

bump version

diff --git a/ChangeLog b/ChangeLog
index abcd8c4..e61e127 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,489 @@
+commit 2770655371954413c750b030c9a7135baee302d4
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Thu Jun 6 12:04:23 2013 +0100
+
+2.21.9 release
+
+commit d3345cd269dc75999b35f3286d21059974dcb24b
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Thu Jun 6 12:18:32 2013 +0100
+
+sna: Only emit an error for terminal mmap failures
+
+If we repeat the mmap, keep quiet. Only emit the ErrorF in case even the
+repeated attempts to mmap the bo fail.
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 70fa080d02bff9742523cea52c875d9447a78bfd
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Wed Jun 5 23:32:01 2013 +0100
+
+sna: Include the GT details in the backend name for a chipset
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 45c09bfe58c37bbf7965af25bdd4fa5c37c0908f
+Author: Rodrigo Vivi rodrigo.v...@gmail.com
+Date:   Wed Jun 5 13:07:13 2013 -0300
+
+Add more correct names for Haswell.
+
+As we find out more of the final product names for Haswell chipsets, we
+need to update the user visible identification strings.
+
+Signed-off-by: Rodrigo Vivi rodrigo.v...@gmail.com
+
+commit a9f9fb8e44bb0bdbd004da1fce986585ebcafd28
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Wed Jun 5 09:48:19 2013 +0100
+
+sna/video: Fix redundant initialisation of video-clip
+
+It will be created before use anyway, but this silences a compiler
+warning.
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 5d0ae71f1d667759ed4cfd2b7e793a08b8e3702c
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Wed Jun 5 09:12:48 2013 +0100
+
+sna: Do not conflate ignoring an output with an allocation failure
+
+If the user explicitly ignores an output through xorg.conf, then
+xf86OutputCreate returns NULL. This is not to be confused with an
+allocation error that also returns NULL. The latter is terminal, the
+former is desired.
+
+Fixes regression from commit a9acc8dbb436e1e523e7d7c0f3c41946a2d0f245
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Thu May 30 12:09:52 2013 +0100
+
+sna: Cleanup up error reporting after failure to init KMS interface
+
+Reported-by: David Rosca now...@gmail.com
+Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=65381
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 6dacaddb6a28670a52cead4b62c056a8acde8f3a
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Mon Jun 3 15:34:37 2013 +0100
+
+sna: Always populate the CPU features string
+
+So that we don't print random contents of the stack on ancient 32-bit
+CPUs with no extended instruction sets.
+
+References: 
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1186800
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 8a88c01c3737a3570628600b1ab51938f82e226d
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Mon Jun 3 14:14:09 2013 +0100
+
+sna: Make copying the glyph size more compact
+
+The assembly was ugly with an unwarranted AGU stall.
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+

xserver-xorg-video-intel: Changes to 'ubuntu'

2013-06-06 Thread Maarten Lankhorst
 ChangeLog|  486 +++
 NEWS |   41 +++
 configure.ac |2 
 debian/changelog |   19 +
 src/compat-api.h |1 
 src/intel_module.c   |   46 ++--
 src/sna/gen2_render.c|4 
 src/sna/gen3_render.c|4 
 src/sna/gen4_render.c|6 
 src/sna/gen5_render.c|6 
 src/sna/gen6_render.c|9 
 src/sna/gen7_render.c|   23 +-
 src/sna/kgem.c   |   28 +-
 src/sna/sna.h|6 
 src/sna/sna_accel.c  |  192 ++--
 src/sna/sna_cpu.c|6 
 src/sna/sna_display.c|  244 +++--
 src/sna/sna_display_fake.c   |   15 -
 src/sna/sna_dri.c|   10 
 src/sna/sna_driver.c |   23 --
 src/sna/sna_glyphs.c |   10 
 src/sna/sna_render.c |3 
 src/sna/sna_render.h |   15 -
 src/sna/sna_video.c  |  162 +-
 src/sna/sna_video.h  |   44 ++-
 src/sna/sna_video_hwmc.c |   64 ++---
 src/sna/sna_video_hwmc.h |2 
 src/sna/sna_video_overlay.c  |  344 +++---
 src/sna/sna_video_sprite.c   |  282 ++--
 src/sna/sna_video_textured.c |  257 +++---
 test/Makefile.am |2 
 test/tearing.mp4 |binary
 32 files changed, 1598 insertions(+), 758 deletions(-)

New commits:
commit bcb08de53f384061c526662496dc06cc4fd9e1a3
Author: Maarten Lankhorst maarten.lankho...@canonical.com
Date:   Thu Jun 6 15:13:26 2013 +0200

release to saucy

diff --git a/debian/changelog b/debian/changelog
index c421951..47626dc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,11 @@
-xserver-xorg-video-intel (2:2.21.9-0ubuntu1) UNRELEASED; urgency=low
+xserver-xorg-video-intel (2:2.21.9-0ubuntu1) saucy; urgency=low
 
   * Merge from unreleased debian git, remaining changes:
 - Use SNA by default.
   * Add support for haswell graphics. (LP: #1175533)
   * Fix crash in xserver when using the unity dash. (LP: #118123)
 
- -- Maarten Lankhorst maarten.lankho...@ubuntu.com  Thu, 23 May 2013 
09:44:44 +0200
+ -- Maarten Lankhorst maarten.lankho...@ubuntu.com  Thu, 06 Jun 2013 
15:05:00 +0200
 
 xserver-xorg-video-intel (2:2.21.9-1) UNRELEASED; urgency=low
 

commit 95929a9bec4f725334d4038a7e1102f97ec73767
Author: Maarten Lankhorst maarten.lankho...@canonical.com
Date:   Thu Jun 6 14:55:53 2013 +0200

Merge from unreleased debian git.

* Merge from unreleased debian git, remaining changes:
  - Use SNA by default.

diff --git a/debian/changelog b/debian/changelog
index 4624a80..c421951 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+xserver-xorg-video-intel (2:2.21.9-0ubuntu1) UNRELEASED; urgency=low
+
+  * Merge from unreleased debian git, remaining changes:
+- Use SNA by default.
+  * Add support for haswell graphics. (LP: #1175533)
+  * Fix crash in xserver when using the unity dash. (LP: #118123)
+
+ -- Maarten Lankhorst maarten.lankho...@ubuntu.com  Thu, 23 May 2013 
09:44:44 +0200
+
 xserver-xorg-video-intel (2:2.21.9-1) UNRELEASED; urgency=low
 
   [ Timo Aaltonen ]

commit 4ea0a2b45127b2b06b8fe83f167d498cc62748af
Author: Maarten Lankhorst maarten.lankho...@canonical.com
Date:   Thu Jun 6 14:53:04 2013 +0200

bump version

diff --git a/ChangeLog b/ChangeLog
index abcd8c4..e61e127 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,489 @@
+commit 2770655371954413c750b030c9a7135baee302d4
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Thu Jun 6 12:04:23 2013 +0100
+
+2.21.9 release
+
+commit d3345cd269dc75999b35f3286d21059974dcb24b
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Thu Jun 6 12:18:32 2013 +0100
+
+sna: Only emit an error for terminal mmap failures
+
+If we repeat the mmap, keep quiet. Only emit the ErrorF in case even the
+repeated attempts to mmap the bo fail.
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 70fa080d02bff9742523cea52c875d9447a78bfd
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Wed Jun 5 23:32:01 2013 +0100
+
+sna: Include the GT details in the backend name for a chipset
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 45c09bfe58c37bbf7965af25bdd4fa5c37c0908f
+Author: Rodrigo Vivi rodrigo.v...@gmail.com
+Date:   Wed Jun 5 13:07:13 2013 -0300
+
+Add more correct names for Haswell.
+
+As we find out more of the final product names for Haswell chipsets, we
+need to update the user visible identification strings.
+
+Signed-off-by: Rodrigo Vivi rodrigo.v...@gmail.com
+
+commit a9f9fb8e44bb0bdbd004da1fce986585ebcafd28
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Wed Jun 5 09:48:19 2013 +0100
+
+sna/video: Fix redundant initialisation of video-clip
+
+It will be created before use anyway, but this silences a 

xserver-xorg-video-intel: Changes to 'debian-experimental'

2013-06-06 Thread Timo Aaltonen
 debian/control |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f0d8aa3d97e5cd49185a1ddacfcc90290a1e9993
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Thu Jun 6 16:20:51 2013 +0300

Make valgrind build-dependency archictecture specific

diff --git a/debian/control b/debian/control
index db02f76..8d72cac 100644
--- a/debian/control
+++ b/debian/control
@@ -33,7 +33,7 @@ Build-Depends:
  libudev-dev [linux-any],
  quilt,
  xutils-dev (= 1:7.5+4),
- valgrind,
+ valgrind [amd64 armel armhf i386 mips mipsel powerpc s390x],
 Standards-Version: 3.9.3
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-intel
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-intel.git


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1uka8x-0004k9...@vasks.debian.org



mesa: Changes to 'debian-experimental'

2013-06-06 Thread Andreas Boll
 debian/changelog   |7 +++
 debian/libgl1-mesa-dri.install.kfreebsd.in |4 
 2 files changed, 11 insertions(+)

New commits:
commit 825826a3c41f54de18dca48fa60ba4d857075130
Author: Andreas Boll andreas.boll@gmail.com
Date:   Thu Jun 6 18:02:29 2013 +0200

debian: Fix another kfreebsd-* FTBFS

Fix it with adding libgl1-mesa-dri.install.kfreebsd.in, where we don't
install gallium-pipe/*.so.

diff --git a/debian/changelog b/debian/changelog
index 6eda3c5..46a9f5b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+mesa (9.1.3-4) UNRELEASED; urgency=low
+
+  * debian: Fix another kfreebsd-* FTBFS with adding libgl1-mesa-
+dri.install.kfreebsd.in, where we don't install gallium-pipe/*.so
+
+ -- Andreas Boll andreas.boll@gmail.com  Thu, 06 Jun 2013 18:01:27 +0200
+
 mesa (9.1.3-3) experimental; urgency=low
 
   [ Andreas Boll ]
diff --git a/debian/libgl1-mesa-dri.install.kfreebsd.in 
b/debian/libgl1-mesa-dri.install.kfreebsd.in
new file mode 100644
index 000..25736b5
--- /dev/null
+++ b/debian/libgl1-mesa-dri.install.kfreebsd.in
@@ -0,0 +1,4 @@
+dri/etc/drirc etc
+dri/usr/lib/${DEB_HOST_MULTIARCH}/dri/*_dri.so 
usr/lib/${DEB_HOST_MULTIARCH}/dri
+dri/usr/lib/${DEB_HOST_MULTIARCH}/libdricore*.so* 
usr/lib/${DEB_HOST_MULTIARCH}/
+dri/usr/lib/${DEB_HOST_MULTIARCH}/libllvmradeon*.so 
usr/lib/${DEB_HOST_MULTIARCH}/


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ukd8p-jn...@vasks.debian.org



Processing of wayland_1.1.0-2_amd64.changes

2013-06-06 Thread Debian FTP Masters
wayland_1.1.0-2_amd64.changes uploaded successfully to localhost
along with the files:
  wayland_1.1.0-2.dsc
  wayland_1.1.0-2.diff.gz
  libwayland-client0_1.1.0-2_amd64.deb
  libwayland-client0-dbg_1.1.0-2_amd64.deb
  libwayland-server0_1.1.0-2_amd64.deb
  libwayland-server0-dbg_1.1.0-2_amd64.deb
  libwayland-cursor0_1.1.0-2_amd64.deb
  libwayland-cursor0-dbg_1.1.0-2_amd64.deb
  libwayland-dev_1.1.0-2_amd64.deb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ukjtq-0007ju...@franck.debian.org



Processing of libdrm_2.4.45-3_amd64.changes

2013-06-06 Thread Debian FTP Masters
libdrm_2.4.45-3_amd64.changes uploaded successfully to localhost
along with the files:
  libdrm_2.4.45-3.dsc
  libdrm_2.4.45-3.diff.gz
  libdrm-dev_2.4.45-3_amd64.deb
  libdrm2_2.4.45-3_amd64.deb
  libdrm2-udeb_2.4.45-3_amd64.udeb
  libdrm2-dbg_2.4.45-3_amd64.deb
  libdrm-intel1_2.4.45-3_amd64.deb
  libdrm-intel1-dbg_2.4.45-3_amd64.deb
  libdrm-nouveau2_2.4.45-3_amd64.deb
  libdrm-nouveau2-dbg_2.4.45-3_amd64.deb
  libdrm-radeon1_2.4.45-3_amd64.deb
  libdrm-radeon1-dbg_2.4.45-3_amd64.deb
  libkms1_2.4.45-3_amd64.deb
  libkms1-dbg_2.4.45-3_amd64.deb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ukjtr-0007kf...@franck.debian.org



libdrm: Changes to 'upstream-unstable'

2013-06-06 Thread Emilio Pozuelo Monfort
 .gitignore|7 
 Makefile.am   |8 
 configure.ac  |   70 ++-
 exynos/Makefile.am|6 
 exynos/exynos_drm.h   |   52 ++
 exynos/exynos_fimg2d.c|  630 +
 exynos/fimg2d.h   |  325 +
 exynos/fimg2d_reg.h   |  114 +
 freedreno/Makefile.am |   27 +
 freedreno/README  |   16 
 freedreno/freedreno_bo.c  |  340 +
 freedreno/freedreno_device.c  |   45 ++
 freedreno/freedreno_drmif.h   |  100 +
 freedreno/freedreno_pipe.c|  251 +
 freedreno/freedreno_priv.h|  125 ++
 freedreno/freedreno_ringbuffer.c  |  263 +
 freedreno/freedreno_ringbuffer.h  |   89 
 freedreno/kgsl_drm.h  |  192 ++
 freedreno/libdrm_freedreno.pc.in  |   11 
 freedreno/list.h  |  137 +++
 freedreno/msm_kgsl.h  |  519 +++
 include/drm/Makefile.am   |4 
 include/drm/i915_drm.h|2 
 include/drm/qxl_drm.h |  152 +++
 include/drm/radeon_drm.h  |   81 
 intel/intel_bufmgr_gem.c  |   21 -
 intel/intel_chipset.h |  380 ++-
 intel/intel_decode.c  |4 
 intel/tests/gen6-3d.batch-ref.txt |6 
 libkms/api.c  |2 
 libkms/intel.c|1 
 libkms/libkms.h   |8 
 libkms/linux.c|2 
 libkms/nouveau.c  |1 
 man/Makefile.am   |   74 +++
 man/drm-kms.xml   |  342 +
 man/drm-memory.xml|  430 ++
 man/drm.xml   |  137 +++
 man/drmAvailable.man  |   25 -
 man/drmAvailable.xml  |   75 +++
 man/drmHandleEvent.man|   45 --
 man/drmHandleEvent.xml|  102 +
 man/drmModeGetResources.man   |   79 
 man/drmModeGetResources.xml   |  139 +++
 nouveau/abi16.c   |   28 +
 nouveau/libdrm_nouveau.pc.in  |4 
 nouveau/nouveau.c |   21 -
 nouveau/nouveau.h |   16 
 nouveau/private.h |2 
 nouveau/pushbuf.c |   16 
 radeon/r600_pci_ids.h |   38 +
 radeon/radeon_bo_gem.c|   16 
 radeon/radeon_surface.c   |  724 +++---
 radeon/radeon_surface.h   |   32 +
 tests/Makefile.am |4 
 tests/exynos/Makefile.am  |   19 
 tests/exynos/exynos_fimg2d_test.c |  695 
 tests/kmstest/Makefile.am |5 
 tests/modeprint/Makefile.am   |5 
 tests/modetest/Makefile.am|5 
 tests/modetest/buffers.c  |  195 --
 tests/modetest/modetest.c |   10 
 tests/vbltest/Makefile.am |6 
 xf86drm.c |2 
 xf86mm.h  |  198 --
 65 files changed, 6804 insertions(+), 676 deletions(-)

New commits:
commit 63aeae123848d0bfbc0a35102cb9717cf496eab6
Author: Marek Olšák mar...@gmail.com
Date:   Wed May 15 19:32:05 2013 +0200

configure.ac: bump version to 2.4.45 for release

diff --git a/configure.ac b/configure.ac
index 803d99d..21f8d3f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,7 +20,7 @@
 
 AC_PREREQ([2.63])
 AC_INIT([libdrm],
-[2.4.44],
+[2.4.45],
 [https://bugs.freedesktop.org/enter_bug.cgi?product=DRI],
 [libdrm])
 

commit e5e51c2110ebf6e1edaa14b7567c5d6a79008a90
Author: Marek Olšák mar...@gmail.com
Date:   Wed Apr 24 20:39:45 2013 +0200

radeon: add RADEON_SURF_FMASK flag which disables 2D-1D tiling transition

Signed-off-by: Marek Olšák mar...@gmail.com
Reviewed-by: Alex Deucher alexander.deuc...@amd.com

diff --git a/radeon/radeon_surface.c b/radeon/radeon_surface.c
index d1fdc4b..a74064c 100644
--- a/radeon/radeon_surface.c
+++ b/radeon/radeon_surface.c
@@ -159,7 +159,8 @@ static void surf_minify(struct radeon_surface *surf,
 surflevel-nblk_x = (surflevel-npix_x + surf-blk_w - 1) / surf-blk_w;
 surflevel-nblk_y = (surflevel-npix_y + surf-blk_h - 1) / surf-blk_h;
 surflevel-nblk_z = (surflevel-npix_z + surf-blk_d - 1) / surf-blk_d;
-if (surf-nsamples == 1  surflevel-mode == RADEON_SURF_MODE_2D) {
+if (surf-nsamples == 1  surflevel-mode == RADEON_SURF_MODE_2D 
+!(surf-flags  RADEON_SURF_FMASK)) {
 if (surflevel-nblk_x  xalign || surflevel-nblk_y  yalign) {
 surflevel-mode = RADEON_SURF_MODE_1D;
 return;
@@ -565,7 +566,8 @@ static void eg_surf_minify(struct radeon_surface *surf,
 surflevel-nblk_x = (surflevel-npix_x + surf-blk_w - 1) / surf-blk_w;
 surflevel-nblk_y = (surflevel-npix_y + surf-blk_h - 1) 

libdrm: Changes to 'debian-unstable'

2013-06-06 Thread Emilio Pozuelo Monfort
Rebased ref, commits from common ancestor:
commit 396f92661c9d32085912cbae56849570d344dd1f
Author: Emilio Pozuelo Monfort po...@debian.org
Date:   Thu Jun 6 23:15:33 2013 +0200

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 33c8206..5c001a9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,11 @@
-libdrm (2.4.45-3) UNRELEASED; urgency=low
+libdrm (2.4.45-3) unstable; urgency=low
+
+  * Team upload.
 
   * debian/patches/03_build_against_librt.diff:
 + Removed, no longer needed with our current glibc version.
   Thanks to Julien Cristau for pointing it out.
+  * Upload to unstable.
 
  -- Emilio Pozuelo Monfort po...@debian.org  Thu, 06 Jun 2013 23:13:12 +0200
 

commit 82ab991c5f25a6a4a33e72b9606ff79d7e1c4338
Author: Emilio Pozuelo Monfort po...@debian.org
Date:   Thu Jun 6 23:14:08 2013 +0200

Remove 03_build_against_librt.diff

diff --git a/debian/changelog b/debian/changelog
index c0c519a..33c8206 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+libdrm (2.4.45-3) UNRELEASED; urgency=low
+
+  * debian/patches/03_build_against_librt.diff:
++ Removed, no longer needed with our current glibc version.
+  Thanks to Julien Cristau for pointing it out.
+
+ -- Emilio Pozuelo Monfort po...@debian.org  Thu, 06 Jun 2013 23:13:12 +0200
+
 libdrm (2.4.45-2) experimental; urgency=low
 
   [ Sven Joachim ]
diff --git a/debian/patches/03_build_against_librt.diff 
b/debian/patches/03_build_against_librt.diff
deleted file mode 100644
index 565b6c4..000
--- a/debian/patches/03_build_against_librt.diff
+++ /dev/null
@@ -1,11 +0,0 @@
 a/tests/Makefile.am
-+++ b/tests/Makefile.am
-@@ -10,6 +10,8 @@ check_PROGRAMS = \
-   dristat \
-   drmstat
- 
-+dristat_LDADD = $(CLOCK_LIB)
-+
- SUBDIRS = modeprint
- 
- if HAVE_LIBKMS
diff --git a/debian/patches/series b/debian/patches/series
index 2e425c0..8ca2297 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1 @@
 01_default_perms.diff
-03_build_against_librt.diff

commit 687b4feafcf2696727eb62c0d781ec0de42c723e
Author: Julien Cristau jcris...@debian.org
Date:   Thu May 30 10:03:45 2013 +0200

Upload to experimental

diff --git a/debian/changelog b/debian/changelog
index 04a89c4..c0c519a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,10 @@
-libdrm (2.4.45-2) UNRELEASED; urgency=low
+libdrm (2.4.45-2) experimental; urgency=low
 
+  [ Sven Joachim ]
   * Only build-depend on valgrind on architectures where
 valgrind is actually available.
 
- -- Sven Joachim svenj...@gmx.de  Fri, 17 May 2013 17:56:43 +0200
+ -- Julien Cristau jcris...@debian.org  Thu, 30 May 2013 10:03:37 +0200
 
 libdrm (2.4.45-1) experimental; urgency=low
 

commit c3b713090840df937677c0827aa76ca798ea9ff3
Author: Sven Joachim svenj...@gmx.de
Date:   Fri May 17 18:00:06 2013 +0200

Make valgrind build-dependency archictecture specific

diff --git a/debian/changelog b/debian/changelog
index fdc788c..04a89c4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libdrm (2.4.45-2) UNRELEASED; urgency=low
+
+  * Only build-depend on valgrind on architectures where
+valgrind is actually available.
+
+ -- Sven Joachim svenj...@gmx.de  Fri, 17 May 2013 17:56:43 +0200
+
 libdrm (2.4.45-1) experimental; urgency=low
 
   * Team upload.
diff --git a/debian/control b/debian/control
index 8175dfc..ec12408 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,7 @@ Build-Depends:
  libpthread-stubs0-dev,
  libudev-dev [linux-any],
  libpciaccess-dev,
- valgrind,
+ valgrind [amd64 armel armhf i386 mips mipsel powerpc s390x],
 Standards-Version: 3.9.4
 Section: libs
 Vcs-Git: git://git.debian.org/git/pkg-xorg/lib/libdrm

commit 157efcb996b5e5e366947ebd3cdd69f96a7c129f
Author: Emilio Pozuelo Monfort po...@debian.org
Date:   Thu May 16 00:17:04 2013 +0200

Upload 2.4.45 to experimental

diff --git a/debian/changelog b/debian/changelog
index 99ca0fc..fdc788c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,6 @@
-libdrm (2.4.45-1) UNRELEASED; urgency=low
+libdrm (2.4.45-1) experimental; urgency=low
+
+  * Team upload.
 
   [ Julien Cristau ]
   * Bump libdrm2 shlibs to 2.4.38.
@@ -11,7 +13,10 @@ libdrm (2.4.45-1) UNRELEASED; urgency=low
   [ Timo Aaltonen ]
   * control: Bump policy to 3.9.4, no changes.
 
- -- Julien Cristau jcris...@debian.org  Tue, 25 Dec 2012 13:17:28 +0100
+  [ Emilio Pozuelo Monfort ]
+  * Upload to experimental.
+
+ -- Emilio Pozuelo Monfort po...@debian.org  Thu, 16 May 2013 00:09:59 +0200
 
 libdrm (2.4.40-1) experimental; urgency=low
 

commit ef470fa9bd9a65897788519f67d4b8fa20750c60
Author: Maarten Lankhorst maarten.lankho...@canonical.com
Date:   Wed May 15 21:57:50 2013 +0200

bump changelogs

diff --git a/ChangeLog b/ChangeLog
index 74b1902..51c7a9b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,119 @@
+commit 63aeae123848d0bfbc0a35102cb9717cf496eab6
+Author: Marek Olšák mar...@gmail.com
+Date:   Wed 

wayland: Changes to 'upstream-unstable'

2013-06-06 Thread Emilio Pozuelo Monfort
Rebased ref, commits from common ancestor:
commit cf17fdf8b8cf7bb30eed31c9fedaee2a1b704501
Author: Kristian Høgsberg k...@bitplanet.net
Date:   Thu Jan 24 20:33:31 2013 -0500

configure.ac: Bump version to 1.0.5

Also update the bug URL to point to the right component and version.

diff --git a/configure.ac b/configure.ac
index c281125..436d912 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,13 +2,13 @@ AC_PREREQ([2.64])
 
 m4_define([wayland_major_version], [1])
 m4_define([wayland_minor_version], [0])
-m4_define([wayland_micro_version], [4])
+m4_define([wayland_micro_version], [5])
 m4_define([wayland_version],
   [wayland_major_version.wayland_minor_version.wayland_micro_version])
 
 AC_INIT([wayland],
 [wayland_version],
-[https://bugs.freedesktop.org/enter_bug.cgi?product=wayland],
+
[https://bugs.freedesktop.org/enter_bug.cgi?product=Waylandcomponent=waylandversion=1.0.5],
 [wayland],
 [http://wayland.freedesktop.org/])
 

commit 0fb588ed15d255ac1a453269b56f427264084307
Author: Armin K kre...@email.com
Date:   Thu Feb 14 14:44:08 2013 -0500

Make sure that man page xml files are always disted

diff --git a/doc/man/Makefile.am b/doc/man/Makefile.am
index 1407953..41665eb 100644
--- a/doc/man/Makefile.am
+++ b/doc/man/Makefile.am
@@ -12,15 +12,14 @@ MANPAGES_ALIASES = \
 XML_FILES = \
${patsubst %.1,%.xml,${patsubst %.3,%.xml,${patsubst 
%.5,%.xml,${patsubst %.7,%.xml,$(MANPAGES)
 CLEANFILES =
-EXTRA_DIST =
-man_MANS =
+EXTRA_DIST = $(XML_FILES)
 
 if HAVE_XSLTPROC
 if HAVE_MANPAGES_STYLESHEET
 
 CLEANFILES += $(MANPAGES) $(MANPAGES_ALIASES)
-EXTRA_DIST += $(MANPAGES) $(MANPAGES_ALIASES) $(XML_FILES)
-man_MANS += $(MANPAGES) $(MANPAGES_ALIASES)
+EXTRA_DIST += $(MANPAGES) $(MANPAGES_ALIASES)
+dist_man_MANS = $(MANPAGES) $(MANPAGES_ALIASES)
 
 XSLTPROC_FLAGS = \
--stringparam man.authors.section.enabled 0 \

commit 1c156209ce571268947b0c9be914beefddbeebda
Author: Siddharth Heroor her...@gmail.com
Date:   Thu Feb 14 10:59:15 2013 +0530

README: Fix typos

Signed-off-by: Siddharth Heroor her...@gmail.com

diff --git a/README b/README
index 5f85888..ca26cc0 100644
--- a/README
+++ b/README
@@ -3,7 +3,7 @@ What is Wayland
 Wayland is a project to define a protocol for a compositor to talk to
 its clients as well as a library implementation of the protocol.  The
 compositor can be a standalone display server running on Linux kernel
-modesetting and evdev input devices, an X applications, or a wayland
+modesetting and evdev input devices, an X application, or a wayland
 client itself.  The clients can be traditional applications, X servers
 (rootless or fullscreen) or other display servers.
 
@@ -19,7 +19,7 @@ themselves, typically through cairo or OpenGL.
 
 The weston compositor is a reference implementation of a wayland
 compositor and the weston repository also includes a few example
-clients clients.
+clients.
 
 Building the wayland libraries is fairly simple, aside from libffi,
 they don't have many dependencies:
@@ -32,4 +32,4 @@ they don't have many dependencies:
 
 where PREFIX is where you want to install the libraries.  See
 http://wayland.freedesktop.org for more complete build instructions
-for wayland, weston, xwayland and various toolkits.
\ No newline at end of file
+for wayland, weston, xwayland and various toolkits.

commit acf1efe1f4c03aead1bd74ca1d8a8c39363fd255
Author: Kristian Høgsberg k...@bitplanet.net
Date:   Mon Feb 11 13:58:39 2013 -0500

tests: Add a help message for the test runner

In case we forget the name of the test case or typo it, the test runner
will now list the test cases in the test binary.

diff --git a/tests/test-runner.c b/tests/test-runner.c
index 8c79dff..9c6865a 100644
--- a/tests/test-runner.c
+++ b/tests/test-runner.c
@@ -90,6 +90,24 @@ find_test(const char *name)
 }
 
 static void
+usage(const char *name, int status)
+{
+   const struct test *t;
+
+   fprintf(stderr, Usage: %s [TEST]\n\n
+   With no arguments, run all test.  Specify test case to run\n
+   only that test without forking.  Available tests:\n\n,
+   name);
+
+   for (t = __start_test_section; t  __stop_test_section; t++)
+   fprintf(stderr,   %s\n, t-name);
+
+   fprintf(stderr, \n);
+
+   exit(status);
+}
+
+static void
 run_test(const struct test *t)
 {
int cur_alloc = num_alloc;
@@ -119,11 +137,14 @@ int main(int argc, char *argv[])
 
leak_check_enabled = !getenv(NO_ASSERT_LEAK_CHECK);
 
+   if (argc == 2  strcmp(argv[1], --help) == 0)
+   usage(argv[0], EXIT_SUCCESS);
+
if (argc == 2) {
t = find_test(argv[1]);
if (t == NULL) {
fprintf(stderr, unknown test: \%s\\n, argv[1]);
-   exit(EXIT_FAILURE);
+   usage(argv[0], EXIT_FAILURE);
}
 
run_test(t);


libdrm: Changes to 'refs/tags/libdrm-2.4.45-3'

2013-06-06 Thread Emilio Pozuelo Monfort
Tag 'libdrm-2.4.45-3' created by Emilio Pozuelo Monfort po...@debian.org at 
2013-06-06 22:52 +

Tagging upload of libdrm 2.4.45-3 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEABECAAYFAlGxEpsACgkQhTV17EoIsv4UYwCfbm5JiLLvNohhpIt/kvjmGypm
asQAoKieaP2VDfckPG8hilYP/bP5jsTH
=lHzr
-END PGP SIGNATURE-

Changes since libdrm-2.4.45-2:
Emilio Pozuelo Monfort (2):
  Remove 03_build_against_librt.diff
  Upload to unstable

---
 debian/changelog   |   11 +++
 debian/patches/03_build_against_librt.diff |   11 ---
 debian/patches/series  |1 -
 3 files changed, 11 insertions(+), 12 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ukjwi-0005si...@vasks.debian.org



wayland: Changes to 'debian-unstable'

2013-06-06 Thread Emilio Pozuelo Monfort
 .gitignore   |5 
 COPYING  |   22 
 ChangeLog| 5913 ---
 Makefile.am  |6 
 README   |  125 
 TODO |  148 
 autogen.sh   |9 
 configure.ac |   89 
 cursor/Makefile.am   |   21 
 cursor/cursor-data.h |  548 +
 cursor/os-compatibility.c|  128 
 cursor/os-compatibility.h|   31 
 cursor/wayland-cursor-uninstalled.pc.in  |8 
 cursor/wayland-cursor.c  |  431 +
 cursor/wayland-cursor.h  |   70 
 cursor/wayland-cursor.pc.in  |   10 
 cursor/xcursor.c |  966 +++
 cursor/xcursor.h |   62 
 debian/README.source |   58 
 debian/changelog |   65 
 debian/clean |1 
 debian/compat|2 
 debian/control   |  114 
 debian/copyright |   88 
 debian/libwayland-client0.install|2 
 debian/libwayland-client0.symbols|   63 
 debian/libwayland-cursor0.install|2 
 debian/libwayland-cursor0.symbols|7 
 debian/libwayland-dev.install|   18 
 debian/libwayland-server0.install|2 
 debian/libwayland-server0.symbols|  116 
 debian/libwayland0.install   |5 
 debian/libwayland0.symbols.in|  130 
 debian/rules |   25 
 dev/null |binary
 doc/Makefile.am  |1 
 doc/doxygen/.gitignore   |2 
 doc/doxygen/Makefile.am  |   46 
 doc/doxygen/wayland.doxygen.in   | 1764 +
 doc/man/Makefile.am  |   51 
 doc/man/wl_display_connect.xml   |   88 
 doc/publican/.gitignore  |3 
 doc/publican/Makefile.am |  138 
 doc/publican/doxygen-to-publican.xsl |  166 
 doc/publican/protocol-interfaces-to-docbook.xsl  |   56 
 doc/publican/protocol-to-docbook.xsl |  136 
 doc/publican/publican.cfg|8 
 doc/publican/sources/Architecture.xml|  330 +
 doc/publican/sources/Author_Group.xml|   16 
 doc/publican/sources/Book_Info.xml   |   71 
 doc/publican/sources/Compositors.xml |  128 
 doc/publican/sources/Foreword.xml|   29 
 doc/publican/sources/Introduction.xml|  116 
 doc/publican/sources/Library.xml |   27 
 doc/publican/sources/Preface.xml |   20 
 doc/publican/sources/Protocol.xml|  462 +
 doc/publican/sources/Revision_History.xml|7 
 doc/publican/sources/Wayland.ent |4 
 doc/publican/sources/Wayland.xml |   17 
 doc/publican/sources/images/icon.svg |   19 
 doc/publican/sources/images/wayland-architecture.png |binary
 doc/publican/sources/images/wayland.png  |binary
 doc/publican/sources/images/x-architecture.png   |binary
 protocol/.gitignore  |1 
 protocol/Makefile.am |1 
 protocol/wayland.xml | 1402 +++-
 spec/main.tex|  660 --
 src/.gitignore   |1 
 src/Makefile.am  |   12 
 src/connection.c | 1023 ++-
 src/data-device.c|  407 -
 src/event-loop.c |  241 
 src/scanner.c|  372 -
 src/wayland-client-uninstalled.pc.in |8 
 src/wayland-client.c | 1070 ++-
 src/wayland-client.h |  156 
 src/wayland-client.pc.in |   10 
 src/wayland-egl.h|9 
 src/wayland-os.c |  164 
 src/wayland-os.h | 

wayland: Changes to 'refs/tags/wayland-1.1.0-2'

2013-06-06 Thread Emilio Pozuelo Monfort
Tag 'wayland-1.1.0-2' created by Emilio Pozuelo Monfort po...@debian.org at 
2013-06-06 22:52 +

Tagging upload of wayland 1.1.0-2 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEABECAAYFAlGxEqoACgkQhTV17EoIsv5TIQCfc1HM+S6cBVsmFR305GNABY9N
ar8AoIC/GJl4/KQ2XQnSonnLyDeDuN97
=gEKz
-END PGP SIGNATURE-

Changes since wayland-1.1.0-1:
Emilio Pozuelo Monfort (1):
  Upload to unstable.

---
 debian/changelog |7 +++
 1 file changed, 7 insertions(+)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ukjws-0005x3...@vasks.debian.org



libdrm: Changes to 'debian-experimental'

2013-06-06 Thread Emilio Pozuelo Monfort
Rebased ref, commits from common ancestor:


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ukjbj-0006rb...@vasks.debian.org



libdrm: Changes to 'upstream-experimental'

2013-06-06 Thread Emilio Pozuelo Monfort
Rebased ref, commits from common ancestor:


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ukjbk-0006rt...@vasks.debian.org



wayland: Changes to 'upstream-experimental'

2013-06-06 Thread Emilio Pozuelo Monfort
Rebased ref, commits from common ancestor:


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ukjc2-0006w2...@vasks.debian.org



mesa: Changes to 'refs/tags/mesa-9.1.3-4'

2013-06-06 Thread Emilio Pozuelo Monfort
Tag 'mesa-9.1.3-4' created by Emilio Pozuelo Monfort po...@debian.org at 
2013-06-06 23:09 +

Tagging upload of mesa 9.1.3-4 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEABECAAYFAlGxFqkACgkQhTV17EoIsv7UPwCfZWjy1nfW8Ab8EM8bttOKdBW+
PE0AniMrvYbJ5Mz3jyCSxGclofSG3xUf
=zIIM
-END PGP SIGNATURE-

Changes since mesa-9.1.3-3:
Andreas Boll (1):
  debian: Fix another kfreebsd-* FTBFS

Emilio Pozuelo Monfort (1):
  Release to unstable

---
 debian/changelog   |   13 +
 debian/libgl1-mesa-dri.install.kfreebsd.in |4 
 2 files changed, 17 insertions(+)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ukjej-0006p7...@vasks.debian.org



libdrm_2.4.45-3_amd64.changes ACCEPTED into unstable

2013-06-06 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 06 Jun 2013 23:13:12 +0200
Source: libdrm
Binary: libdrm-dev libdrm2 libdrm2-udeb libdrm2-dbg libdrm-intel1 
libdrm-intel1-dbg libdrm-nouveau2 libdrm-nouveau2-dbg libdrm-radeon1 
libdrm-radeon1-dbg libkms1 libkms1-dbg libdrm-omap1 libdrm-omap1-dbg
Architecture: source amd64
Version: 2.4.45-3
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Emilio Pozuelo Monfort po...@debian.org
Description: 
 libdrm-dev - Userspace interface to kernel DRM services -- development files
 libdrm-intel1 - Userspace interface to intel-specific kernel DRM services -- 
runt
 libdrm-intel1-dbg - Userspace interface to intel-specific kernel DRM services 
-- debu
 libdrm-nouveau2 - Userspace interface to nouveau-specific kernel DRM services 
-- ru
 libdrm-nouveau2-dbg - Userspace interface to nouveau-specific kernel DRM -- 
debugging s
 libdrm-omap1 - Userspace interface to omap-specific kernel DRM services -- 
runti
 libdrm-omap1-dbg - Userspace interface to omap-specific kernel DRM services -- 
debug
 libdrm-radeon1 - Userspace interface to radeon-specific kernel DRM services -- 
run
 libdrm-radeon1-dbg - Userspace interface to radeon-specific kernel DRM 
services -- deb
 libdrm2- Userspace interface to kernel DRM services -- runtime
 libdrm2-dbg - Userspace interface to kernel DRM services -- debugging symbols
 libdrm2-udeb - Userspace interface to kernel DRM services -- runtime (udeb)
 libkms1- Userspace interface to kernel DRM buffer management
 libkms1-dbg - Userspace interface to kernel DRM buffer management -- debugging
Changes: 
 libdrm (2.4.45-3) unstable; urgency=low
 .
   * Team upload.
 .
   * debian/patches/03_build_against_librt.diff:
 + Removed, no longer needed with our current glibc version.
   Thanks to Julien Cristau for pointing it out.
   * Upload to unstable.
Checksums-Sha1: 
 011972ee996a407e06f723250eaf4b81845811e0 2004 libdrm_2.4.45-3.dsc
 a9058265eb8e3cadb68e609f23e273496660d6a9 459729 libdrm_2.4.45-3.diff.gz
 1b9936c717105f13cf332bbcf73fafc03a7c0ff0 655956 libdrm-dev_2.4.45-3_amd64.deb
 3d3536410f8ed5d006476abfb59a5090d9aa204c 467550 libdrm2_2.4.45-3_amd64.deb
 c89e3e54cb475972e8151d14dae0227b5ce1e570 17994 libdrm2-udeb_2.4.45-3_amd64.udeb
 800bc1a931cef548cbe0da6fc11a3df1e848dc01 495890 libdrm2-dbg_2.4.45-3_amd64.deb
 3b86fb4a8bc1c8a0f2348784391e264e60cd55b8 505882 
libdrm-intel1_2.4.45-3_amd64.deb
 d87fb9c752c9cbaebd24e31122c83235054f6cff 541740 
libdrm-intel1-dbg_2.4.45-3_amd64.deb
 8fba0bd5e336b8a80dd1738e110a447dc6147b47 457682 
libdrm-nouveau2_2.4.45-3_amd64.deb
 754e5304dfec79b4afeda46491ad7cf8ca3582f5 471692 
libdrm-nouveau2-dbg_2.4.45-3_amd64.deb
 cf66f3b88b6c8a21da8dccb62b894821eee799fe 468342 
libdrm-radeon1_2.4.45-3_amd64.deb
 394092e9c035d5a0dc7900a90775923580f99e36 490796 
libdrm-radeon1-dbg_2.4.45-3_amd64.deb
 6e3f919469d1a37d63d089a941e3e39c7c4025c7 451396 libkms1_2.4.45-3_amd64.deb
 bf54d0cc4d8dc1938ec11c0ea8de2ce6eaa5ff1c 464612 libkms1-dbg_2.4.45-3_amd64.deb
Checksums-Sha256: 
 3643f5b63e0c1a4f534e0a24fe034606415ad6cc2b73967cdca1564507cd225e 2004 
libdrm_2.4.45-3.dsc
 90b594b6c4d73af4b1c0976c472515c46ed056d896a93e0a1190f8252f681760 459729 
libdrm_2.4.45-3.diff.gz
 b1d36b08721213bee872c5a9a28c692b4ffb9e40dafa2f21f1fce20ad172067c 655956 
libdrm-dev_2.4.45-3_amd64.deb
 017b8a9f00b1c5586321a4999bfb420acb6b83ea08ae5c7637072d8a01d5af4a 467550 
libdrm2_2.4.45-3_amd64.deb
 11cac4ef212c296f7adf70b433f90b9669a39d3277bd77ed09fe474e1993 17994 
libdrm2-udeb_2.4.45-3_amd64.udeb
 cc0ea25a14126c10e81491e243872569e0e756da44ec7554337ba6bfd91d0fe3 495890 
libdrm2-dbg_2.4.45-3_amd64.deb
 cd1ecba1940c7867256b6d978955a77ff7477061cc6a307f7df6788bb5274633 505882 
libdrm-intel1_2.4.45-3_amd64.deb
 091aa56a38ede2b527d8b6940b1a84f251ea445948782cb00192d4b6c2859bef 541740 
libdrm-intel1-dbg_2.4.45-3_amd64.deb
 9bea57411ae122c4d6bf96dcaf66df824ee41d65a4de902716445336b05c3144 457682 
libdrm-nouveau2_2.4.45-3_amd64.deb
 81795e88c0cefe984fec20f7de800471a590e372f4a7d6a54d90f6f3f60ab49b 471692 
libdrm-nouveau2-dbg_2.4.45-3_amd64.deb
 b38b215b8068830ae0e166942d2aa3f3675564dabf973130b28aa535d7dfe460 468342 
libdrm-radeon1_2.4.45-3_amd64.deb
 ef10aff2dfbeb81c3d6b12353b78d15c615dd1d568d3df8bce58d928de64c8dd 490796 
libdrm-radeon1-dbg_2.4.45-3_amd64.deb
 569673edce55b204d384ac7b7c937a169df3d20d4f0828441fbc5836c703704e 451396 
libkms1_2.4.45-3_amd64.deb
 7f389febd3aa71e3344940cb2568be8939e3b80b9611eb1eaee3874b26b8cba3 464612 
libkms1-dbg_2.4.45-3_amd64.deb
Files: 
 ef0108d25c1bf0e48bb162d5ee924446 2004 libs optional libdrm_2.4.45-3.dsc
 5a3617a5e9545bd1413c41fd79e29d8d 459729 libs optional libdrm_2.4.45-3.diff.gz
 23488be615d9fde7dfde84af3ba45796 655956 libdevel optional 
libdrm-dev_2.4.45-3_amd64.deb
 828fdb2225ae6ac9180aec14404ebdc2 467550 libs optional 
libdrm2_2.4.45-3_amd64.deb
 988a56cf83fef8b8374512fe34f35d76 17994 debian-installer optional 

wayland_1.1.0-2_amd64.changes ACCEPTED into unstable

2013-06-06 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 06 Jun 2013 23:22:34 +0200
Source: wayland
Binary: libwayland-client0 libwayland-client0-dbg libwayland-server0 
libwayland-server0-dbg libwayland-cursor0 libwayland-cursor0-dbg libwayland-dev
Architecture: source amd64
Version: 1.1.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Emilio Pozuelo Monfort po...@debian.org
Description: 
 libwayland-client0 - wayland compositor infrastructure - client library
 libwayland-client0-dbg - wayland compositor infrastructure - client library 
(debug)
 libwayland-cursor0 - wayland compositor infrastructure - cursor library
 libwayland-cursor0-dbg - wayland compositor infrastructure - cursor library 
(debug)
 libwayland-dev - wayland compositor infrastructure - development files
 libwayland-server0 - wayland compositor infrastructure - server library
 libwayland-server0-dbg - wayland compositor infrastructure - server library 
(debug)
Changes: 
 wayland (1.1.0-2) unstable; urgency=low
 .
   * Team upload.
   * Upload to unstable.
Checksums-Sha1: 
 7132b2d4a061e2503dbbd999d2d7edc1c35a892e 1687 wayland_1.1.0-2.dsc
 2309b7be3afafa5a66348708ec479b5857102599 5756 wayland_1.1.0-2.diff.gz
 edb954d2dac5b4f0825ef48a94d5753e3c90b064 23048 
libwayland-client0_1.1.0-2_amd64.deb
 55da7be951a3cfc750319396c0eed14bfdc17ad2 44250 
libwayland-client0-dbg_1.1.0-2_amd64.deb
 5be9207b5cc42a91f18ffaafe3414fc8effb95c9 32954 
libwayland-server0_1.1.0-2_amd64.deb
 81a457f51936f5093d996e5c695b0a39de9dde6b 77848 
libwayland-server0-dbg_1.1.0-2_amd64.deb
 e7e7ab8ec21b85c01ccb5f7e90d6a5b5ec493866 12840 
libwayland-cursor0_1.1.0-2_amd64.deb
 d56d03ade808622ad6786d5e510f12dac85b5647 23058 
libwayland-cursor0-dbg_1.1.0-2_amd64.deb
 549c65a103cf1af343e668709f0ebb16211e6f57 122014 
libwayland-dev_1.1.0-2_amd64.deb
Checksums-Sha256: 
 ae5785614300a5c64ec7c5ae66a09e42a42e5a2c0bb57fd449e078c2ffa7c076 1687 
wayland_1.1.0-2.dsc
 78a0ac03ba2313d2a0d439cde21aaaeb4ff8094fedf171166d0b0247760ba13f 5756 
wayland_1.1.0-2.diff.gz
 e0f50a18ec4f68bf3496b83a02e9631553ae68208862d76f7fca807d8a4bb4b2 23048 
libwayland-client0_1.1.0-2_amd64.deb
 f9a9ee767a94b100707307f91dfd751ba52f97a3c4e3c1313eb08e03ecf86ff1 44250 
libwayland-client0-dbg_1.1.0-2_amd64.deb
 d3f5b8b786e4b86d6e8d2da6cfcba2a9fe3b90b5c8b8e515975c070d9452843f 32954 
libwayland-server0_1.1.0-2_amd64.deb
 568ad3304026b9e8d2a630c5f65bec900171c1a021ea963c1e9e107df4374272 77848 
libwayland-server0-dbg_1.1.0-2_amd64.deb
 bb80d290346f59df1830b3331c7a1fd375c17c0367a322e9153af0259766e0d2 12840 
libwayland-cursor0_1.1.0-2_amd64.deb
 0f598f8d0359098091ddb5e8cffbf37070f43ca4eb9d2bbc26d6272bcb801b03 23058 
libwayland-cursor0-dbg_1.1.0-2_amd64.deb
 c6780ba2b83be3742b95f1a436b5c0d0eceba01de795b6cd9d767ae5fc1ac08a 122014 
libwayland-dev_1.1.0-2_amd64.deb
Files: 
 78192c6eba38c1728b829af78b92e74c 1687 x11 optional wayland_1.1.0-2.dsc
 fcf41ad5451f268c7bd6c7604bd29421 5756 x11 optional wayland_1.1.0-2.diff.gz
 0759ba087e40cb5ac24294a58d77ffa9 23048 libs optional 
libwayland-client0_1.1.0-2_amd64.deb
 8af251e7cb1ef323bec8b6a096f301ef 44250 debug extra 
libwayland-client0-dbg_1.1.0-2_amd64.deb
 bb19e8b145f5f7eafa049d6f1250cf88 32954 libs optional 
libwayland-server0_1.1.0-2_amd64.deb
 7b0bf86b162a5d1559a124acd1eedab9 77848 debug extra 
libwayland-server0-dbg_1.1.0-2_amd64.deb
 2d9a5a3c89f4c2e3f81237a3eb99ba71 12840 libs optional 
libwayland-cursor0_1.1.0-2_amd64.deb
 6264503a40f631030f2bf50bb4225df2 23058 debug extra 
libwayland-cursor0-dbg_1.1.0-2_amd64.deb
 b9bab182f2e832c2ae5266d8df273559 122014 libdevel extra 
libwayland-dev_1.1.0-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAlGxGPUACgkQhTV17EoIsv5UAwCdFFYQ49+/sMwsKdm/9tIj7XfB
MNQAoJkR9q4z1Z7ctyXSknsh3xE6VeaY
=ciK1
-END PGP SIGNATURE-


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ukjh0-0003de...@franck.debian.org



Processing of mesa_9.1.3-4_amd64.changes

2013-06-06 Thread Debian FTP Masters
mesa_9.1.3-4_amd64.changes uploaded successfully to localhost
along with the files:
  mesa_9.1.3-4.dsc
  mesa_9.1.3-4.diff.gz
  libgl1-mesa-swx11_9.1.3-4_amd64.deb
  libgl1-mesa-swx11-dbg_9.1.3-4_amd64.deb
  libgl1-mesa-swx11-dev_9.1.3-4_amd64.deb
  libxatracker1_9.1.3-4_amd64.deb
  libxatracker1-dbg_9.1.3-4_amd64.deb
  libxatracker-dev_9.1.3-4_amd64.deb
  libgbm1_9.1.3-4_amd64.deb
  libgbm1-dbg_9.1.3-4_amd64.deb
  libgbm-dev_9.1.3-4_amd64.deb
  libegl1-mesa_9.1.3-4_amd64.deb
  libegl1-mesa-dbg_9.1.3-4_amd64.deb
  libegl1-mesa-dev_9.1.3-4_amd64.deb
  libegl1-mesa-drivers_9.1.3-4_amd64.deb
  libegl1-mesa-drivers-dbg_9.1.3-4_amd64.deb
  libopenvg1-mesa_9.1.3-4_amd64.deb
  libopenvg1-mesa-dbg_9.1.3-4_amd64.deb
  libopenvg1-mesa-dev_9.1.3-4_amd64.deb
  libgles1-mesa_9.1.3-4_amd64.deb
  libgles1-mesa-dbg_9.1.3-4_amd64.deb
  libgles1-mesa-dev_9.1.3-4_amd64.deb
  libgles2-mesa_9.1.3-4_amd64.deb
  libgles2-mesa-dbg_9.1.3-4_amd64.deb
  libgles2-mesa-dev_9.1.3-4_amd64.deb
  libglapi-mesa_9.1.3-4_amd64.deb
  libglapi-mesa-dbg_9.1.3-4_amd64.deb
  libgl1-mesa-glx_9.1.3-4_amd64.deb
  libgl1-mesa-glx-dbg_9.1.3-4_amd64.deb
  libgl1-mesa-dri_9.1.3-4_amd64.deb
  libgl1-mesa-dri-dbg_9.1.3-4_amd64.deb
  libgl1-mesa-dri-experimental_9.1.3-4_amd64.deb
  libgl1-mesa-dri-experimental-dbg_9.1.3-4_amd64.deb
  libgl1-mesa-dev_9.1.3-4_amd64.deb
  mesa-common-dev_9.1.3-4_amd64.deb
  libosmesa6_9.1.3-4_amd64.deb
  libosmesa6-dev_9.1.3-4_amd64.deb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ukjiq-0003ty...@franck.debian.org



mesa_9.1.3-4_amd64.changes ACCEPTED into unstable

2013-06-06 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Jun 2013 00:50:34 +0200
Source: mesa
Binary: libgl1-mesa-swx11 libgl1-mesa-swx11-dbg libgl1-mesa-swx11-i686 
libgl1-mesa-swx11-dev libxatracker1 libxatracker1-dbg libxatracker-dev libgbm1 
libgbm1-dbg libgbm-dev libegl1-mesa libegl1-mesa-dbg libegl1-mesa-dev 
libegl1-mesa-drivers libegl1-mesa-drivers-dbg libopenvg1-mesa 
libopenvg1-mesa-dbg libopenvg1-mesa-dev libgles1-mesa libgles1-mesa-dbg 
libgles1-mesa-dev libgles2-mesa libgles2-mesa-dbg libgles2-mesa-dev 
libglapi-mesa libglapi-mesa-dbg libgl1-mesa-glx libgl1-mesa-glx-dbg 
libgl1-mesa-dri libgl1-mesa-dri-dbg libgl1-mesa-dri-experimental 
libgl1-mesa-dri-experimental-dbg libgl1-mesa-dev mesa-common-dev libosmesa6 
libosmesa6-dev
Architecture: source amd64
Version: 9.1.3-4
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Emilio Pozuelo Monfort po...@debian.org
Description: 
 libegl1-mesa - free implementation of the EGL API -- runtime
 libegl1-mesa-dbg - free implementation of the EGL API -- debugging symbols
 libegl1-mesa-dev - free implementation of the EGL API -- development files
 libegl1-mesa-drivers - free implementation of the EGL API -- hardware drivers
 libegl1-mesa-drivers-dbg - free implementation of the EGL API -- driver 
debugging symbols
 libgbm-dev - generic buffer management API -- development files
 libgbm1- generic buffer management API -- runtime
 libgbm1-dbg - generic buffer management API -- debugging symbols
 libgl1-mesa-dev - free implementation of the OpenGL API -- GLX development 
files
 libgl1-mesa-dri - free implementation of the OpenGL API -- DRI modules
 libgl1-mesa-dri-dbg - Debugging symbols for the Mesa DRI modules
 libgl1-mesa-dri-experimental - free implementation of the OpenGL API -- Extra 
DRI modules
 libgl1-mesa-dri-experimental-dbg - Debugging symbols for the experimental Mesa 
DRI modules
 libgl1-mesa-glx - free implementation of the OpenGL API -- GLX runtime
 libgl1-mesa-glx-dbg - Debugging symbols for the Mesa GLX runtime
 libgl1-mesa-swx11 - free implementation of the OpenGL API -- runtime
 libgl1-mesa-swx11-dbg - free implementation of the OpenGL API -- debugging 
symbols
 libgl1-mesa-swx11-dev - free implementation of the OpenGL API -- development 
files
 libgl1-mesa-swx11-i686 - Mesa OpenGL runtime [i686 optimized]
 libglapi-mesa - free implementation of the GL API -- shared library
 libglapi-mesa-dbg - free implementation of the GL API -- debugging symbols
 libgles1-mesa - free implementation of the OpenGL|ES 1.x API -- runtime
 libgles1-mesa-dbg - free implementation of the OpenGL|ES 1.x API -- debugging 
symbols
 libgles1-mesa-dev - free implementation of the OpenGL|ES 1.x API -- 
development files
 libgles2-mesa - free implementation of the OpenGL|ES 2.x API -- runtime
 libgles2-mesa-dbg - free implementation of the OpenGL|ES 2.x API -- debugging 
symbols
 libgles2-mesa-dev - free implementation of the OpenGL|ES 2.x API -- 
development files
 libopenvg1-mesa - free implementation of the OpenVG API -- runtime
 libopenvg1-mesa-dbg - free implementation of the OpenVG API -- debugging 
symbols
 libopenvg1-mesa-dev - free implementation of the OpenVG API -- development 
files
 libosmesa6 - Mesa Off-screen rendering extension
 libosmesa6-dev - Mesa Off-screen rendering extension -- development files
 libxatracker-dev - X acceleration library -- development files
 libxatracker1 - X acceleration library -- runtime
 libxatracker1-dbg - X acceleration library -- debugging symbols
 mesa-common-dev - Developer documentation for Mesa
Changes: 
 mesa (9.1.3-4) unstable; urgency=low
 .
   * Team upload.
 .
   [ Andreas Boll ]
   * debian: Fix another kfreebsd-* FTBFS with adding libgl1-mesa-
 dri.install.kfreebsd.in, where we don't install gallium-pipe/*.so
 .
   [ Emilio Pozuelo Monfort ]
   * Release to unstable.
Checksums-Sha1: 
 c6fde91e80a5e0a0e0e4dec55e45ec63fc573a84 3701 mesa_9.1.3-4.dsc
 75195ac8b17be5a9ccc7ee8aaa5843700f25bf2d 53178 mesa_9.1.3-4.diff.gz
 d595bd3aca0dee6fa3faf5a1dead09c420cce9e0 1058158 
libgl1-mesa-swx11_9.1.3-4_amd64.deb
 ae93c5b77d03506352d554cbc0b43e606c3b4ee0 3207192 
libgl1-mesa-swx11-dbg_9.1.3-4_amd64.deb
 5724c19020f29a395e9eb070f5857daa32382027 1178496 
libgl1-mesa-swx11-dev_9.1.3-4_amd64.deb
 6c6ee81a5fc4f69a830e088289d201efb1407078 572432 libxatracker1_9.1.3-4_amd64.deb
 a16e1d752e3b30c9875f1a4d7a54b521ae2d6b45 1844330 
libxatracker1-dbg_9.1.3-4_amd64.deb
 cad484bc4e15ef392176d4e53a612902124b6869 36706 
libxatracker-dev_9.1.3-4_amd64.deb
 c846ca05d6e7784180375670bdf83a41f0da4893 462954 libgbm1_9.1.3-4_amd64.deb
 9d113b897f6f0d7b5e69df097eed895513ca3d52 1423256 libgbm1-dbg_9.1.3-4_amd64.deb
 f7c37570e07fdbcf7ee59d77ebd9d5980693e771 36314 libgbm-dev_9.1.3-4_amd64.deb
 ec4c688894d450440b11e97388573ea55782ce3f 83772 libegl1-mesa_9.1.3-4_amd64.deb
 4b1ef9f6ff32e10f4f69877205579726ec6b75ed 186938 
libegl1-mesa-dbg_9.1.3-4_amd64.deb