Processed: reassign 145048 to libx11-6

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

 reassign 145048 libx11-6
Bug #145048 [libxt6] libxt6: XtAppInitialize() SEGVs if an app-defaults file 
#includes itself
Bug #447836 [libxt6] segfault in xterm (reading resources database?)
Bug reassigned from package 'libxt6' to 'libx11-6'.
Bug reassigned from package 'libxt6' to 'libx11-6'.
No longer marked as found in versions libxt/1:1.1.0-1.
No longer marked as found in versions libxt/1:1.1.0-1.
Ignoring request to alter fixed versions of bug #145048 to the same values 
previously set
Ignoring request to alter fixed versions of bug #447836 to the same values 
previously set
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
145048: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=145048
447836: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=447836
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.136929034810807.transcr...@bugs.debian.org



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

2013-05-23 Thread Maarten Lankhorst
 Makefile.am  |2 
 NEWS |   32 +++
 configure.ac |7 
 m4/ac_define_dir.m4  |   49 
 src/intel_dri.c  |   15 +
 src/intel_driver.h   |   51 +++-
 src/intel_module.c   |   99 +++--
 src/sna/Makefile.am  |2 
 src/sna/compiler.h   |2 
 src/sna/gen4_render.c|   10 
 src/sna/gen4_vertex.c|6 
 src/sna/gen5_render.c|7 
 src/sna/gen6_render.c|2 
 src/sna/gen7_render.c|   31 ++
 src/sna/kgem.c   |  144 ++---
 src/sna/kgem.h   |9 
 src/sna/sna.h|   18 +
 src/sna/sna_accel.c  |  445 +--
 src/sna/sna_blt.c|   46 +++-
 src/sna/sna_composite.c  |   20 +
 src/sna/sna_display.c|   23 +-
 src/sna/sna_dri.c|   27 ++
 src/sna/sna_driver.c |   23 +-
 src/sna/sna_render.c |   13 -
 src/sna/sna_trapezoids.c |   85 +---
 src/sna/sna_video.c  |   10 
 src/sna/sna_video.h  |   19 +
 src/sna/sna_video_hwmc.c |   75 +++
 src/sna/sna_video_hwmc.h |4 
 src/sna/sna_video_overlay.c  |   53 +++--
 src/sna/sna_video_sprite.c   |   46 +++-
 src/sna/sna_video_textured.c |   57 -
 32 files changed, 1087 insertions(+), 345 deletions(-)

New commits:
commit e65ee10dfd7155230ac18a6d24a67b68336dc973
Author: Chris Wilson ch...@chris-wilson.co.uk
Date:   Tue May 21 11:01:50 2013 +0100

2.21.7 release

diff --git a/NEWS b/NEWS
index 4fc9a6b..3173f21 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,35 @@
+Release 2.21.7 (2013-05-21)
+===
+A couple of weeks turned into a month and a couple of weeks... Amidst
+the usual bug fixes, we have added the complete set of Haswell PCI IDs -
+hopefully future proofing ourselves against being surprised by new
+products. We can also now use the correct term for the top of the range
+Haswell variants, GT3.
+
+ * Fix several assertion failures hit by Jiri Slaby.
+
+ * Allow XvMC to also target overlay/sprite planes.
+
+ * Throw in a paranoid MI_FLUSH between BLT and RENDER operations on
+   Ironlake.
+   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1168066
+
+ * Prevent reuse of old framebuffers after a resize.
+   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1157678
+
+ * Fix compilation with --enable-valgrind and no --enable-debug
+
+ * Improve partial migration of render sources.
+
+ * Fix origin of trapezoids.
+   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1178020
+
+ * Introduce copy-on-write support for cloning pixmaps. The ultimate
+   goal here is to efficiently support the TearFree mode of operation,
+   but this provides immediate benefits with firefox - most importantly
+   because of the inefficient way it now implements scrolling.
+
+
 Release 2.21.6 (2013-04-06)
 ===
 A surprising highlight of this release is a little refresh to the KMS
diff --git a/configure.ac b/configure.ac
index d30686f..be1e8d1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ([2.60])
 AC_INIT([xf86-video-intel],
-[2.21.6],
+[2.21.7],
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 [xf86-video-intel])
 AC_CONFIG_SRCDIR([Makefile.am])

commit ef9dc6fae585d5616446eedc1e6e91173f4064c1
Author: Chris Wilson ch...@chris-wilson.co.uk
Date:   Mon May 20 11:08:51 2013 +0100

sna: Undo a few more overwritten operations upon a bo

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

diff --git a/src/sna/sna.h b/src/sna/sna.h
index aed3e08..ee3f821 100644
--- a/src/sna/sna.h
+++ b/src/sna/sna.h
@@ -507,6 +507,7 @@ struct kgem_bo *sna_pixmap_change_tiling(PixmapPtr pixmap, 
uint32_t tiling);
 #define FORCE_GPU  0x2
 #define RENDER_GPU 0x4
 #define IGNORE_CPU 0x8
+#define REPLACES   0x10
 struct kgem_bo *
 sna_drawable_use_bo(DrawablePtr drawable, unsigned flags, const BoxRec *box,
struct sna_damage ***damage);
diff --git a/src/sna/sna_accel.c b/src/sna/sna_accel.c
index 2c78570..6ed9e77 100644
--- a/src/sna/sna_accel.c
+++ b/src/sna/sna_accel.c
@@ -2946,6 +2946,8 @@ sna_drawable_use_bo(DrawablePtr drawable, unsigned flags, 
const BoxRec *box,
 box-x1, box-y1, box-x2, box-y2,
 flags));
 
+   assert((hint  REPLACES) == 0 || (hint  IGNORE_CPU));
+
assert(box-x2  box-x1  box-y2  box-y1);
assert(pixmap-refcnt);
assert_pixmap_damage(pixmap);
@@ -3001,7 +3003,7 @@ sna_drawable_use_bo(DrawablePtr drawable, unsigned flags, 
const BoxRec *box,
 __FUNCTION__, priv-flush, priv-shm, priv-cpu, flags));
 
if ((flags  PREFER_GPU) == 0 
-   (!priv-gpu_damage || !kgem_bo_is_busy(priv-gpu_bo))) {
+   (flags  REPLACES || !priv-gpu_damage 

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

2013-05-23 Thread Maarten Lankhorst
 ChangeLog|  494 +++
 Makefile.am  |2 
 NEWS |   32 ++
 configure.ac |7 
 debian/changelog |3 
 m4/ac_define_dir.m4  |   49 
 src/intel_dri.c  |   15 +
 src/intel_driver.h   |   51 +++-
 src/intel_module.c   |   99 ++--
 src/sna/Makefile.am  |2 
 src/sna/compiler.h   |2 
 src/sna/gen4_render.c|   10 
 src/sna/gen4_vertex.c|6 
 src/sna/gen5_render.c|7 
 src/sna/gen6_render.c|2 
 src/sna/gen7_render.c|   31 ++
 src/sna/kgem.c   |  144 +---
 src/sna/kgem.h   |9 
 src/sna/sna.h|   18 +
 src/sna/sna_accel.c  |  445 +-
 src/sna/sna_blt.c|   46 +++-
 src/sna/sna_composite.c  |   20 +
 src/sna/sna_display.c|   23 +-
 src/sna/sna_dri.c|   27 +-
 src/sna/sna_driver.c |   23 +-
 src/sna/sna_render.c |   13 -
 src/sna/sna_trapezoids.c |   85 ---
 src/sna/sna_video.c  |   10 
 src/sna/sna_video.h  |   19 +
 src/sna/sna_video_hwmc.c |   75 +++---
 src/sna/sna_video_hwmc.h |4 
 src/sna/sna_video_overlay.c  |   53 +++-
 src/sna/sna_video_sprite.c   |   46 +++-
 src/sna/sna_video_textured.c |   57 
 34 files changed, 1583 insertions(+), 346 deletions(-)

New commits:
commit 428431b1b274624da2a172beff2ef32bb22741bc
Author: Maarten Lankhorst maarten.lankho...@canonical.com
Date:   Thu May 23 09:38:53 2013 +0200

bump changelogs

diff --git a/ChangeLog b/ChangeLog
index 38312d2..abcd8c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,497 @@
+commit e65ee10dfd7155230ac18a6d24a67b68336dc973
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Tue May 21 11:01:50 2013 +0100
+
+2.21.7 release
+
+commit ef9dc6fae585d5616446eedc1e6e91173f4064c1
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Mon May 20 11:08:51 2013 +0100
+
+sna: Undo a few more overwritten operations upon a bo
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit d6c30d1d4df6bcdfa075bd29da7c8aabee20774c
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Fri May 17 12:11:34 2013 +0100
+
+sna: Clear the cow_list when discarding the clone upon pixmap destroy
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 21f17455650d52848467290f609c678e85b8ceab
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Fri May 17 11:46:16 2013 +0100
+
+sna: Add the missing ref(bo) when undoing the source clone
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit ee166ca856ac02ca8900b9ff44ed3899add2c72a
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Fri May 17 11:30:03 2013 +0100
+
+sna: Undo the clone when replacing the DRI pixmap
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 8d31fe771b423a3768cbd05db994d49e941369e1
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Fri May 17 11:14:34 2013 +0100
+
+sna: Transfer ownership of the cloned bo to the pixmaps
+
+Fix the leak from the previous commit.
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 5d9315873e02d4acc5ddffc698dbf8984cbd5c42
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Fri May 17 10:51:44 2013 +0100
+
+sna: Avoid replacing pinned bo when undoing a clone
+
+Otherwise we end up cloning the scanout only to leave it dangling if the
+client copies the from the front-buffer and then writes to it.
+
+Reported-by: Nick Bowler nbow...@draconx.ca
+Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=64675
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 3efe143e367acfa2ff38c63388d24a8d06331944
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Fri May 17 10:30:51 2013 +0100
+
+sna: Clear mapped hints upon cloning a pair of pixmaps
+
+Once cloned, we do not want to use inplace operations and instead force
+a copy. However, if we do not relinquish the hints when copying across
+the bo, then those hints become stale and lead to corruption.
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit f57a65c35268f215c17f1a02b3af50a6678ce3c1
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Tue May 14 16:15:57 2013 +0100
+
+sna: Correct assertions to allow discarding of cpu hint for inplace ops
+
+Reported-by: Zdenek Kabelac zkabe...@redhat.com
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit bb0969e6a5c2bddcd0499d81c0c241003f8b07ef
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Tue May 14 15:22:59 2013 +0100
+
+sna: Assert that the mapping is released before closing the GEM handle
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 

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

2013-05-23 Thread Maarten Lankhorst
 ChangeLog   |  494 
 Makefile.am |2 
 NEWS|   32 
 configure.ac|7 
 debian/changelog|   32 
 debian/patches/series   |1 
 debian/patches/sna-flush-scanout-cache-after-resizing.patch |  228 -
 debian/rules|2 
 m4/ac_define_dir.m4 |   49 +
 src/intel_dri.c |   15 
 src/intel_driver.h  |   51 -
 src/intel_module.c  |   99 +-
 src/sna/Makefile.am |2 
 src/sna/compiler.h  |2 
 src/sna/gen4_render.c   |   10 
 src/sna/gen4_vertex.c   |6 
 src/sna/gen5_render.c   |7 
 src/sna/gen6_render.c   |2 
 src/sna/gen7_render.c   |   31 
 src/sna/kgem.c  |  144 ++-
 src/sna/kgem.h  |9 
 src/sna/sna.h   |   18 
 src/sna/sna_accel.c |  445 +-
 src/sna/sna_blt.c   |   46 -
 src/sna/sna_composite.c |   20 
 src/sna/sna_display.c   |   23 
 src/sna/sna_dri.c   |   27 
 src/sna/sna_driver.c|   23 
 src/sna/sna_render.c|   13 
 src/sna/sna_trapezoids.c|   85 +-
 src/sna/sna_video.c |   10 
 src/sna/sna_video.h |   19 
 src/sna/sna_video_hwmc.c|   75 -
 src/sna/sna_video_hwmc.h|4 
 src/sna/sna_video_overlay.c |   53 -
 src/sna/sna_video_sprite.c  |   46 -
 src/sna/sna_video_textured.c|   57 -
 37 files changed, 1603 insertions(+), 586 deletions(-)

New commits:
commit 2ce7b7f10c82bee6617e5efb4fc7713cb6d86861
Author: Maarten Lankhorst maarten.lankho...@canonical.com
Date:   Thu May 23 09:45:05 2013 +0200

Release to saucy.

* Merge from unreleased debian git, remaining changes:
  - Use SNA by default.
* rules: Add --enable-valgrind again.
* Drop sna-flush-scanout-cache-after-resizing.patch, upstreamed.

diff --git a/debian/changelog b/debian/changelog
index ab24457..68a7410 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+xserver-xorg-video-intel (2:2.21.7-0ubuntu1) saucy; urgency=low
+
+  * Merge from unreleased debian git, remaining changes:
+- Use SNA by default.
+  * rules: Add --enable-valgrind again.
+  * Drop sna-flush-scanout-cache-after-resizing.patch, upstreamed.
+
+ -- Maarten Lankhorst maarten.lankho...@ubuntu.com  Thu, 23 May 2013 
09:44:44 +0200
+
 xserver-xorg-video-intel (2:2.21.7-1) UNRELEASED; urgency=low
 
   [ Timo Aaltonen ]
@@ -10,12 +19,6 @@ xserver-xorg-video-intel (2:2.21.7-1) UNRELEASED; urgency=low
 
  -- Timo Aaltonen tjaal...@ubuntu.com  Fri, 07 Dec 2012 09:33:39 +0200
 
-xserver-xorg-video-intel (2:2.21.6-0ubuntu5) UNRELEASED; urgency=low
-
-  * rules: Add --enable-valgrind again.
-
- -- Maarten Lankhorst maarten.lankho...@ubuntu.com  Thu, 23 May 2013 
09:24:06 +0200
-
 xserver-xorg-video-intel (2:2.21.6-0ubuntu4) raring-proposed; urgency=low
 
   [Chris Arges]
diff --git a/debian/patches/series b/debian/patches/series
index df7cb15..23ed8a4 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1 @@
 0002-Update-manpage-for-new-accelmethod-option.patch
-sna-flush-scanout-cache-after-resizing.patch
diff --git a/debian/patches/sna-flush-scanout-cache-after-resizing.patch 
b/debian/patches/sna-flush-scanout-cache-after-resizing.patch
deleted file mode 100644
index bb4928f..000
--- a/debian/patches/sna-flush-scanout-cache-after-resizing.patch
+++ /dev/null
@@ -1,228 +0,0 @@
-From e083fbdc3f2025f4ccc199070e2488afc5afb2a7 Mon Sep 17 00:00:00 2001
-From: Chris Wilson ch...@chris-wilson.co.uk
-Date: Fri, 12 Apr 2013 11:01:08 +0100
-Subject: [PATCH] sna: Flush the scanout cache after resizing the display
-
-And ensure that any new scanout allocations make the requested size.
-
-Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
-(cherry picked from commit 

mesa: Changes to 'debian-experimental'

2013-05-23 Thread Maarten Lankhorst
 Makefile.am   |2 
 bin/.cherry-ignore|6 
 bin/bugzilla_mesa.sh  |   52 +
 bin/get-pick-list.sh  |6 
 bin/shortlog_mesa.sh  |6 
 configure.ac  |2 
 debian/changelog  |2 
 docs/relnotes-9.1.2.html  |4 
 docs/relnotes-9.1.3.html  |  228 +
 include/pci_ids/r600_pci_ids.h|2 
 include/pci_ids/radeonsi_pci_ids.h|3 
 src/egl/drivers/dri2/egl_dri2.c   |6 
 src/egl/drivers/dri2/platform_x11.c   |   21 
 src/gallium/auxiliary/gallivm/lp_bld_sample.c |2 
 src/gallium/auxiliary/util/u_blitter.c|  113 ++
 src/gallium/auxiliary/util/u_blitter.h|   18 
 src/gallium/drivers/nvc0/nvc0_video.c |4 
 src/gallium/drivers/r600/r600_blit.c  |   31 
 src/gallium/drivers/r600/r600_pipe.c  |   39 
 src/gallium/drivers/r600/r600_pipe.h  |7 
 src/gallium/drivers/r600/r600_shader.c|   51 -
 src/gallium/drivers/r600/r600_texture.c   |   10 
 src/gallium/drivers/radeonsi/r600_blit.c  |   18 
 src/gallium/include/state_tracker/st_api.h|1 
 src/gallium/state_trackers/dri/common/dri_context.c   |2 
 src/gallium/state_trackers/dri/common/dri_screen.c|3 
 src/gallium/winsys/sw/xlib/xlib_sw_winsys.c   |6 
 src/glsl/ast_to_hir.cpp   |   15 
 src/glsl/ir_constant_expression.cpp   |2 
 src/glsl/link_varyings.cpp|   36 
 src/glsl/lower_jumps.cpp  |4 
 src/glsl/lower_packed_varyings.cpp|8 
 src/glsl/ralloc.c |2 
 src/glx/glxcmds.c |4 
 src/mesa/drivers/dri/i965/brw_context.h   |   26 
 src/mesa/drivers/dri/i965/brw_fs.cpp  |   49 -
 src/mesa/drivers/dri/i965/brw_fs.h|3 
 src/mesa/drivers/dri/i965/brw_fs_cse.cpp  |   43 -
 src/mesa/drivers/dri/i965/brw_fs_emit.cpp |1 
 src/mesa/drivers/dri/i965/brw_fs_visitor.cpp  |   14 
 src/mesa/drivers/dri/i965/brw_lower_texture_gradients.cpp |   27 
 src/mesa/drivers/dri/i965/brw_misc_state.c|  195 ++--
 src/mesa/drivers/dri/i965/brw_shader.cpp  |3 
 src/mesa/drivers/dri/i965/brw_state.h |5 
 src/mesa/drivers/dri/i965/brw_vec4_emit.cpp   |4 
 src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp|   10 
 src/mesa/drivers/dri/i965/brw_vs_surface_state.c  |7 
 src/mesa/drivers/dri/i965/brw_vtbl.c  |2 
 src/mesa/drivers/dri/i965/brw_wm_surface_state.c  |   18 
 src/mesa/drivers/dri/i965/gen6_blorp.cpp  |   35 
 src/mesa/drivers/dri/i965/gen6_sol.c  |   11 
 src/mesa/drivers/dri/i965/gen7_blorp.cpp  |  103 ++
 src/mesa/drivers/dri/i965/gen7_misc_state.c   |   93 --
 src/mesa/drivers/dri/i965/gen7_sol_state.c|   18 
 src/mesa/drivers/dri/i965/gen7_wm_surface_state.c |8 
 src/mesa/drivers/dri/intel/intel_context.h|   18 
 src/mesa/drivers/dri/intel/intel_fbo.c|4 
 src/mesa/drivers/dri/intel/intel_mipmap_tree.c|6 
 src/mesa/drivers/dri/intel/intel_tex.c|4 
 src/mesa/main/context.c   |2 
 src/mesa/main/extensions.c|4 
 src/mesa/main/format_unpack.c |  597 +-
 src/mesa/main/get.c   |   19 
 src/mesa/main/get_hash_params.py  |   14 
 src/mesa/main/hash.c  |4 
 src/mesa/main/imports.h   |6 
 src/mesa/main/mtypes.h|1 
 src/mesa/main/shaderapi.c |6 
 src/mesa/main/stencil.c   |5 
 src/mesa/main/version.h   |4 
 src/mesa/program/prog_cache.c |   11 
 src/mesa/state_tracker/st_atom_constbuf.c |1 
 src/mesa/state_tracker/st_atom_depth.c|2 
 src/mesa/state_tracker/st_extensions.c|3 
 

mesa: Changes to 'upstream-experimental'

2013-05-23 Thread Maarten Lankhorst
 Makefile.am   |2 
 bin/.cherry-ignore|6 
 bin/bugzilla_mesa.sh  |   52 +
 bin/get-pick-list.sh  |6 
 bin/shortlog_mesa.sh  |6 
 configure.ac  |2 
 docs/relnotes-9.1.2.html  |4 
 docs/relnotes-9.1.3.html  |  228 +
 include/pci_ids/r600_pci_ids.h|2 
 include/pci_ids/radeonsi_pci_ids.h|3 
 src/egl/drivers/dri2/egl_dri2.c   |6 
 src/egl/drivers/dri2/platform_x11.c   |   21 
 src/gallium/auxiliary/gallivm/lp_bld_sample.c |2 
 src/gallium/auxiliary/util/u_blitter.c|  113 ++
 src/gallium/auxiliary/util/u_blitter.h|   18 
 src/gallium/drivers/nvc0/nvc0_video.c |4 
 src/gallium/drivers/r600/r600_blit.c  |   31 
 src/gallium/drivers/r600/r600_pipe.c  |   39 
 src/gallium/drivers/r600/r600_pipe.h  |7 
 src/gallium/drivers/r600/r600_shader.c|   51 -
 src/gallium/drivers/r600/r600_texture.c   |   10 
 src/gallium/drivers/radeonsi/r600_blit.c  |   18 
 src/gallium/include/state_tracker/st_api.h|1 
 src/gallium/state_trackers/dri/common/dri_context.c   |2 
 src/gallium/state_trackers/dri/common/dri_screen.c|3 
 src/gallium/winsys/sw/xlib/xlib_sw_winsys.c   |6 
 src/glsl/ast_to_hir.cpp   |   15 
 src/glsl/ir_constant_expression.cpp   |2 
 src/glsl/link_varyings.cpp|   36 
 src/glsl/lower_jumps.cpp  |4 
 src/glsl/lower_packed_varyings.cpp|8 
 src/glsl/ralloc.c |2 
 src/glx/glxcmds.c |4 
 src/mesa/drivers/dri/i965/brw_context.h   |   26 
 src/mesa/drivers/dri/i965/brw_fs.cpp  |   49 -
 src/mesa/drivers/dri/i965/brw_fs.h|3 
 src/mesa/drivers/dri/i965/brw_fs_cse.cpp  |   43 -
 src/mesa/drivers/dri/i965/brw_fs_emit.cpp |1 
 src/mesa/drivers/dri/i965/brw_fs_visitor.cpp  |   14 
 src/mesa/drivers/dri/i965/brw_lower_texture_gradients.cpp |   27 
 src/mesa/drivers/dri/i965/brw_misc_state.c|  195 ++--
 src/mesa/drivers/dri/i965/brw_shader.cpp  |3 
 src/mesa/drivers/dri/i965/brw_state.h |5 
 src/mesa/drivers/dri/i965/brw_vec4_emit.cpp   |4 
 src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp|   10 
 src/mesa/drivers/dri/i965/brw_vs_surface_state.c  |7 
 src/mesa/drivers/dri/i965/brw_vtbl.c  |2 
 src/mesa/drivers/dri/i965/brw_wm_surface_state.c  |   18 
 src/mesa/drivers/dri/i965/gen6_blorp.cpp  |   35 
 src/mesa/drivers/dri/i965/gen6_sol.c  |   11 
 src/mesa/drivers/dri/i965/gen7_blorp.cpp  |  103 ++
 src/mesa/drivers/dri/i965/gen7_misc_state.c   |   93 --
 src/mesa/drivers/dri/i965/gen7_sol_state.c|   18 
 src/mesa/drivers/dri/i965/gen7_wm_surface_state.c |8 
 src/mesa/drivers/dri/intel/intel_context.h|   18 
 src/mesa/drivers/dri/intel/intel_fbo.c|4 
 src/mesa/drivers/dri/intel/intel_mipmap_tree.c|6 
 src/mesa/drivers/dri/intel/intel_tex.c|4 
 src/mesa/main/context.c   |2 
 src/mesa/main/extensions.c|4 
 src/mesa/main/format_unpack.c |  597 +-
 src/mesa/main/get.c   |   19 
 src/mesa/main/get_hash_params.py  |   14 
 src/mesa/main/hash.c  |4 
 src/mesa/main/imports.h   |6 
 src/mesa/main/mtypes.h|1 
 src/mesa/main/shaderapi.c |6 
 src/mesa/main/stencil.c   |5 
 src/mesa/main/version.h   |4 
 src/mesa/program/prog_cache.c |   11 
 src/mesa/state_tracker/st_atom_constbuf.c |1 
 src/mesa/state_tracker/st_atom_depth.c|2 
 src/mesa/state_tracker/st_extensions.c|3 
 src/mesa/swrast/s_blit.c  |   49 -
 74 

mesa: Changes to 'ubuntu'

2013-05-23 Thread Maarten Lankhorst
 Makefile.am   |2 
 bin/.cherry-ignore|6 
 bin/bugzilla_mesa.sh  |   52 +
 bin/get-pick-list.sh  |6 
 bin/shortlog_mesa.sh  |6 
 configure.ac  |2 
 debian/changelog  |   71 -
 debian/patches/revert-a64c1eb9b110.diff   |  392 -
 debian/patches/series |2 
 docs/relnotes-9.1.2.html  |4 
 docs/relnotes-9.1.3.html  |  228 +
 include/pci_ids/r600_pci_ids.h|2 
 include/pci_ids/radeonsi_pci_ids.h|3 
 src/egl/drivers/dri2/egl_dri2.c   |6 
 src/egl/drivers/dri2/platform_x11.c   |   21 
 src/gallium/auxiliary/gallivm/lp_bld_sample.c |2 
 src/gallium/auxiliary/util/u_blitter.c|  113 ++
 src/gallium/auxiliary/util/u_blitter.h|   18 
 src/gallium/drivers/nvc0/nvc0_video.c |4 
 src/gallium/drivers/r600/r600_blit.c  |   31 
 src/gallium/drivers/r600/r600_pipe.c  |   39 
 src/gallium/drivers/r600/r600_pipe.h  |7 
 src/gallium/drivers/r600/r600_shader.c|   51 -
 src/gallium/drivers/r600/r600_texture.c   |   10 
 src/gallium/drivers/radeonsi/r600_blit.c  |   18 
 src/gallium/include/state_tracker/st_api.h|1 
 src/gallium/state_trackers/dri/common/dri_context.c   |2 
 src/gallium/state_trackers/dri/common/dri_screen.c|3 
 src/gallium/winsys/sw/xlib/xlib_sw_winsys.c   |6 
 src/glsl/ast_to_hir.cpp   |   15 
 src/glsl/ir_constant_expression.cpp   |2 
 src/glsl/link_varyings.cpp|   36 
 src/glsl/lower_jumps.cpp  |4 
 src/glsl/lower_packed_varyings.cpp|8 
 src/glsl/ralloc.c |2 
 src/glx/glxcmds.c |4 
 src/mesa/drivers/dri/i965/brw_context.h   |   26 
 src/mesa/drivers/dri/i965/brw_fs.cpp  |   49 -
 src/mesa/drivers/dri/i965/brw_fs.h|3 
 src/mesa/drivers/dri/i965/brw_fs_cse.cpp  |   43 -
 src/mesa/drivers/dri/i965/brw_fs_emit.cpp |1 
 src/mesa/drivers/dri/i965/brw_fs_visitor.cpp  |   14 
 src/mesa/drivers/dri/i965/brw_lower_texture_gradients.cpp |   27 
 src/mesa/drivers/dri/i965/brw_misc_state.c|  195 ++--
 src/mesa/drivers/dri/i965/brw_shader.cpp  |3 
 src/mesa/drivers/dri/i965/brw_state.h |5 
 src/mesa/drivers/dri/i965/brw_vec4_emit.cpp   |4 
 src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp|   10 
 src/mesa/drivers/dri/i965/brw_vs_surface_state.c  |7 
 src/mesa/drivers/dri/i965/brw_vtbl.c  |2 
 src/mesa/drivers/dri/i965/brw_wm_surface_state.c  |   18 
 src/mesa/drivers/dri/i965/gen6_blorp.cpp  |   35 
 src/mesa/drivers/dri/i965/gen6_sol.c  |   11 
 src/mesa/drivers/dri/i965/gen7_blorp.cpp  |  103 ++
 src/mesa/drivers/dri/i965/gen7_misc_state.c   |   93 --
 src/mesa/drivers/dri/i965/gen7_sol_state.c|   18 
 src/mesa/drivers/dri/i965/gen7_wm_surface_state.c |8 
 src/mesa/drivers/dri/intel/intel_context.h|   18 
 src/mesa/drivers/dri/intel/intel_fbo.c|4 
 src/mesa/drivers/dri/intel/intel_mipmap_tree.c|6 
 src/mesa/drivers/dri/intel/intel_tex.c|4 
 src/mesa/main/context.c   |2 
 src/mesa/main/extensions.c|4 
 src/mesa/main/format_unpack.c |  597 +-
 src/mesa/main/get.c   |   19 
 src/mesa/main/get_hash_params.py  |   14 
 src/mesa/main/hash.c  |4 
 src/mesa/main/imports.h   |6 
 src/mesa/main/mtypes.h|1 
 src/mesa/main/shaderapi.c |6 
 src/mesa/main/stencil.c   |5 
 src/mesa/main/version.h   |4 
 src/mesa/program/prog_cache.c |   11 
 src/mesa/state_tracker/st_atom_constbuf.c |

mesa: Changes to 'ubuntu-raring'

2013-05-23 Thread Maarten Lankhorst
New branch 'ubuntu-raring' available with the following commits:


-- 
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/e1ufsg6-0001xm...@vasks.debian.org



mesa: Changes to 'ubuntu-raring'

2013-05-23 Thread Maarten Lankhorst
 debian/changelog |9 +
 1 file changed, 9 insertions(+)

New commits:
commit aa72c1d7c32007c06d2478524ca08837e5050ba1
Author: Maarten Lankhorst maarten.lankho...@canonical.com
Date:   Thu May 23 11:56:57 2013 +0200

New upstream micro-release. (LP: #1183269)

* New upstream micro-release. (LP: #1183269)
* Drop revert-a64c1eb9b110.diff; it no longer applies.
  - The patch reverted the regression where the unity dash appeared
very slowly, but should no longer be needed with the upstream fixes.

diff --git a/debian/changelog b/debian/changelog
index ab966cd..5d5bc9e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+mesa (9.1.3-0ubuntu0.1) raring-proposed; urgency=low
+
+  * New upstream micro-release. (LP: #1183269)
+  * Drop revert-a64c1eb9b110.diff; it no longer applies.
+- The patch reverted the regression where the unity dash appeared
+  very slowly, but should no longer be needed with the upstream fixes.
+
+ -- Maarten Lankhorst maarten.lankho...@ubuntu.com  Thu, 23 May 2013 
11:33:44 +0200
+
 mesa (9.1.3-0ubuntu1) saucy; urgency=low
 
   [ Robert Hooker ]


-- 
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/e1ufsga-0001yh...@vasks.debian.org



libxi: Changes to 'debian-experimental'

2013-05-23 Thread Timo Aaltonen
 ChangeLog   |   71 
 autogen.sh  |4 +
 configure.ac|5 +
 debian/changelog|5 -
 debian/control  |2 
 debian/patches/add-missing-xi_rawtouch.diff |   29 ---
 debian/patches/series   |2 
 include/X11/extensions/XInput2.h|2 
 src/Makefile.am |1 
 src/XExtInt.c   |3 +
 xi.pc.in|2 
 11 files changed, 88 insertions(+), 38 deletions(-)

New commits:
commit 517ac1a9130fa5a83ccbdc0605bf9fd91ec04612
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Thu May 23 13:18:28 2013 +0300

drop upstreamed patch

diff --git a/debian/changelog b/debian/changelog
index 2a6ba02..2b028c1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,8 +2,6 @@ libxi (2:1.7.1-1) UNRELEASED; urgency=low
 
   * New upstream release.
   * control: Bump policy to 3.9.4, no changes.
-  * add-missing-xi_rawtouch.diff: Upstream commit to add XI_RawTouch in
-XInputCopyCookie.
   * control: Bump x11proto-input-dev build-dep to 2.2.99.1.
   * libxi6.symbols: Added new symbols.
   * rules: Bump shlibs.
diff --git a/debian/patches/add-missing-xi_rawtouch.diff 
b/debian/patches/add-missing-xi_rawtouch.diff
deleted file mode 100644
index 4ee049e..000
--- a/debian/patches/add-missing-xi_rawtouch.diff
+++ /dev/null
@@ -1,29 +0,0 @@
-commit 236be512c81b76dad711bec481e2139584006c4c
-Author: Benjamin Tissoires benjamin.tissoi...@gmail.com
-Date:   Mon Jan 14 18:32:05 2013 +0100
-
-Add missing XI_RawTouch* in XInputCopyCookie
-
-Looks like XI_RawTouch* events are missing in the big switch in this 
function.
-When running XIT tests for multitouch devices, several following errors 
appears:
-XInputCopyCookie: Failed to copy evtype 22
-XInputCopyCookie: Failed to copy evtype 23
-XInputCopyCookie: Failed to copy evtype 24
-
-Signed-off-by: Benjamin Tissoires benjamin.tissoi...@gmail.com
-Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
-
-diff --git a/src/XExtInt.c b/src/XExtInt.c
-index 57d071d..507573b 100644
 a/src/XExtInt.c
-+++ b/src/XExtInt.c
-@@ -1484,6 +1484,9 @@ XInputCopyCookie(Display *dpy, XGenericEventCookie *in, 
XGenericEventCookie *out
- case XI_RawButtonPress:
- case XI_RawButtonRelease:
- case XI_RawMotion:
-+case XI_RawTouchBegin:
-+case XI_RawTouchUpdate:
-+case XI_RawTouchEnd:
- ret = copyRawEvent(in, out);
- break;
- case XI_BarrierHit:
diff --git a/debian/patches/series b/debian/patches/series
index 67f42a8..a82d1b4 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1 @@
-add-missing-xi_rawtouch.diff
+#placeholder

commit a0e42ce397fc79d549f33cd95acea568112aff66
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Thu May 23 13:14:07 2013 +0300

fix the version

diff --git a/debian/changelog b/debian/changelog
index 52333eb..2a6ba02 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libxi (2:1.7.1.1-1) UNRELEASED; urgency=low
+libxi (2:1.7.1-1) UNRELEASED; urgency=low
 
   * New upstream release.
   * control: Bump policy to 3.9.4, no changes.

commit b01118776c622f478bee760127e41c87be8eb8c1
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Thu May 23 13:10:36 2013 +0300

control: Add libfixes-dev to build-deps and libxi-dev Depends.

diff --git a/debian/changelog b/debian/changelog
index a4659f6..52333eb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ libxi (2:1.7.1.1-1) UNRELEASED; urgency=low
   * control: Bump x11proto-input-dev build-dep to 2.2.99.1.
   * libxi6.symbols: Added new symbols.
   * rules: Bump shlibs.
+  * control: Add libfixes-dev to build-deps and libxi-dev Depends.
 
  -- Timo Aaltonen tjaal...@ubuntu.com  Wed, 06 Feb 2013 23:43:08 +0200
 
diff --git a/debian/control b/debian/control
index 6e7964f..3161890 100644
--- a/debian/control
+++ b/debian/control
@@ -10,6 +10,7 @@ Build-Depends:
  x11proto-input-dev (= 2.2.99.1),
  libx11-dev (= 2:1.4.99.1),
  libxext-dev (= 2:1.1.1-3),
+ libxfixes-dev (= 5),
  xmlto,
  asciidoc (= 8.4.5),
  pkg-config,
@@ -86,6 +87,7 @@ Depends:
  libxi6 (= ${binary:Version}),
  libx11-dev,
  libxext-dev,
+ libxfixes-dev,
  x11proto-input-dev (= 2.1.99.6),
  xorg-sgml-doctools (= 1:1.5),
 Replaces:

commit f99893ef9882fad6a41bda08cf6fecc7a265c8b5
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Thu May 23 13:08:41 2013 +0300

update the changelogs

diff --git a/ChangeLog b/ChangeLog
index 40f5556..4e2a391 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,74 @@
+commit 26cb4573cbb8808ce9d5c75c16bd613b2f03a368
+Author: Peter Hutterer peter.hutte...@who-t.net
+Date:   Fri Apr 5 09:34:48 2013 +1000
+
+libXi 1.7.1
+
+Signed-off-by: 

libxi: Changes to 'ubuntu'

2013-05-23 Thread Timo Aaltonen
 ChangeLog   |   71 
 autogen.sh  |4 
 configure.ac|5 -
 debian/changelog|  119 
 debian/control  |2 
 debian/patches/add-missing-xi_rawtouch.diff |   29 --
 debian/patches/series   |2 
 include/X11/extensions/XInput2.h|2 
 src/Makefile.am |1 
 src/XExtInt.c   |3 
 xi.pc.in|2 
 11 files changed, 103 insertions(+), 137 deletions(-)

New commits:
commit 6d61acf42b73e3ce8a5b8ea2de64e70bbe5320a1
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Thu May 23 14:27:03 2013 +0300

release to saucy

diff --git a/debian/changelog b/debian/changelog
index fc9730f..8b03783 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libxi (2:1.7.1-0ubuntu1) saucy; urgency=low
+
+  * Sync from unreleased debian git.
+
+ -- Timo Aaltonen tjaal...@ubuntu.com  Thu, 23 May 2013 13:18:49 +0300
+
 libxi (2:1.7.1-1) UNRELEASED; urgency=low
 
   * New upstream release.

commit 517ac1a9130fa5a83ccbdc0605bf9fd91ec04612
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Thu May 23 13:18:28 2013 +0300

drop upstreamed patch

diff --git a/debian/changelog b/debian/changelog
index 2a6ba02..2b028c1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,8 +2,6 @@ libxi (2:1.7.1-1) UNRELEASED; urgency=low
 
   * New upstream release.
   * control: Bump policy to 3.9.4, no changes.
-  * add-missing-xi_rawtouch.diff: Upstream commit to add XI_RawTouch in
-XInputCopyCookie.
   * control: Bump x11proto-input-dev build-dep to 2.2.99.1.
   * libxi6.symbols: Added new symbols.
   * rules: Bump shlibs.
diff --git a/debian/patches/add-missing-xi_rawtouch.diff 
b/debian/patches/add-missing-xi_rawtouch.diff
deleted file mode 100644
index 4ee049e..000
--- a/debian/patches/add-missing-xi_rawtouch.diff
+++ /dev/null
@@ -1,29 +0,0 @@
-commit 236be512c81b76dad711bec481e2139584006c4c
-Author: Benjamin Tissoires benjamin.tissoi...@gmail.com
-Date:   Mon Jan 14 18:32:05 2013 +0100
-
-Add missing XI_RawTouch* in XInputCopyCookie
-
-Looks like XI_RawTouch* events are missing in the big switch in this 
function.
-When running XIT tests for multitouch devices, several following errors 
appears:
-XInputCopyCookie: Failed to copy evtype 22
-XInputCopyCookie: Failed to copy evtype 23
-XInputCopyCookie: Failed to copy evtype 24
-
-Signed-off-by: Benjamin Tissoires benjamin.tissoi...@gmail.com
-Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
-
-diff --git a/src/XExtInt.c b/src/XExtInt.c
-index 57d071d..507573b 100644
 a/src/XExtInt.c
-+++ b/src/XExtInt.c
-@@ -1484,6 +1484,9 @@ XInputCopyCookie(Display *dpy, XGenericEventCookie *in, 
XGenericEventCookie *out
- case XI_RawButtonPress:
- case XI_RawButtonRelease:
- case XI_RawMotion:
-+case XI_RawTouchBegin:
-+case XI_RawTouchUpdate:
-+case XI_RawTouchEnd:
- ret = copyRawEvent(in, out);
- break;
- case XI_BarrierHit:
diff --git a/debian/patches/series b/debian/patches/series
index 67f42a8..a82d1b4 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1 @@
-add-missing-xi_rawtouch.diff
+#placeholder

commit a0e42ce397fc79d549f33cd95acea568112aff66
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Thu May 23 13:14:07 2013 +0300

fix the version

diff --git a/debian/changelog b/debian/changelog
index 52333eb..2a6ba02 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libxi (2:1.7.1.1-1) UNRELEASED; urgency=low
+libxi (2:1.7.1-1) UNRELEASED; urgency=low
 
   * New upstream release.
   * control: Bump policy to 3.9.4, no changes.

commit b01118776c622f478bee760127e41c87be8eb8c1
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Thu May 23 13:10:36 2013 +0300

control: Add libfixes-dev to build-deps and libxi-dev Depends.

diff --git a/debian/changelog b/debian/changelog
index a4659f6..52333eb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ libxi (2:1.7.1.1-1) UNRELEASED; urgency=low
   * control: Bump x11proto-input-dev build-dep to 2.2.99.1.
   * libxi6.symbols: Added new symbols.
   * rules: Bump shlibs.
+  * control: Add libfixes-dev to build-deps and libxi-dev Depends.
 
  -- Timo Aaltonen tjaal...@ubuntu.com  Wed, 06 Feb 2013 23:43:08 +0200
 
diff --git a/debian/control b/debian/control
index 6e7964f..3161890 100644
--- a/debian/control
+++ b/debian/control
@@ -10,6 +10,7 @@ Build-Depends:
  x11proto-input-dev (= 2.2.99.1),
  libx11-dev (= 2:1.4.99.1),
  libxext-dev (= 2:1.1.1-3),
+ libxfixes-dev (= 5),
  xmlto,
  asciidoc (= 8.4.5),
  pkg-config,
@@ -86,6 +87,7 @@ Depends:
  libxi6 (= ${binary:Version}),
  libx11-dev,
  libxext-dev,
+ 

libxi: Changes to 'upstream-experimental'

2013-05-23 Thread Timo Aaltonen
 autogen.sh   |4 +++-
 configure.ac |5 +++--
 include/X11/extensions/XInput2.h |2 +-
 src/Makefile.am  |1 +
 src/XExtInt.c|3 +++
 xi.pc.in |2 +-
 6 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit 26cb4573cbb8808ce9d5c75c16bd613b2f03a368
Author: Peter Hutterer peter.hutte...@who-t.net
Date:   Fri Apr 5 09:34:48 2013 +1000

libXi 1.7.1

Signed-off-by: Peter Hutterer peter.hutte...@who-t.net

diff --git a/configure.ac b/configure.ac
index c2897d2..8dbca38 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
 
 # Initialize Autoconf
 AC_PREREQ([2.60])
-AC_INIT([libXi], [1.7],
+AC_INIT([libXi], [1.7.1],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXi])
 AC_CONFIG_SRCDIR([Makefile.am])
 AC_CONFIG_HEADERS([src/config.h])

commit 0358bb20384b759d6d41dc44f3aed30583689d53
Author: Peter Hutterer peter.hutte...@who-t.net
Date:   Tue Mar 26 14:46:06 2013 +1000

Require XFixes for PointerBarrier, remove duplicate typedef

The PointerBarrier typedef is duplicate if a client includes both Xfixes.h
and XInput2.h.

gcc 4.6 won't complain about that, but earlier versions do:

http://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=ce3765bf44e49ef0568a1ad4a0b7f807591d6412

gcc 4.6 with -pedantic-errors shows:
/opt/xorg/include/X11/extensions/XInput2.h:172:13: error: redefinition of
typedef ‘PointerBarrier’ [-pedantic]
In file included from test.c:1:0:
/opt/xorg/include/X11/extensions/Xfixes.h:255:13: note: previous declaration
of ‘PointerBarrier’ was here

Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
Reviewed-by: Julien Cristau jcris...@debian.org

diff --git a/configure.ac b/configure.ac
index ab8a63c..c2897d2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -28,6 +28,8 @@ XORG_CHECK_MALLOC_ZERO
 
 # Obtain compiler/linker options for dependencies
 PKG_CHECK_MODULES(XI, [xproto = 7.0.13] [x11 = 1.4.99.1] [xextproto = 
7.0.3] [xext = 1.0.99.1] [inputproto = 2.2.99.1])
+# CFLAGS only for PointerBarrier typedef
+PKG_CHECK_MODULES(XFIXES, [xfixes = 5])
 
 # Check for xmlto and asciidoc for man page conversion
 # (only needed by people building tarballs)
diff --git a/include/X11/extensions/XInput2.h b/include/X11/extensions/XInput2.h
index a746012..33670eb 100644
--- a/include/X11/extensions/XInput2.h
+++ b/include/X11/extensions/XInput2.h
@@ -30,6 +30,7 @@
 #include X11/Xlib.h
 #include X11/extensions/XI2.h
 #include X11/extensions/Xge.h
+#include X11/extensions/Xfixes.h /* PointerBarrier */
 
 /***
  *
@@ -169,7 +170,6 @@ typedef struct
 int status;
 } XIGrabModifiers;
 
-typedef XID PointerBarrier;
 typedef unsigned int BarrierEventID;
 
 typedef struct
diff --git a/src/Makefile.am b/src/Makefile.am
index ee40753..fbbca45 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -70,6 +70,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/include \
   -I$(top_srcdir)/include/X11/extensions
 
 AM_CFLAGS = $(XI_CFLAGS) \
+$(XFIXES_CFLAGS) \
 $(MALLOC_ZERO_CFLAGS) \
 $(CWARNFLAGS)
 
diff --git a/xi.pc.in b/xi.pc.in
index 3f05dd8..d97db20 100644
--- a/xi.pc.in
+++ b/xi.pc.in
@@ -7,6 +7,6 @@ Name: Xi
 Description: X Input Extension Library
 Version: @VERSION@
 Requires: inputproto
-Requires.private: x11 xext
+Requires.private: x11 xext xfixes
 Cflags: -I${includedir}
 Libs: -L${libdir} -lXi

commit 081e06492c0ffd003d4a0c34418c882332e58ac3
Author: Peter Hutterer peter.hutte...@who-t.net
Date:   Thu Mar 7 11:16:02 2013 +1000

libXi 1.7

Signed-off-by: Peter Hutterer peter.hutte...@who-t.net

diff --git a/configure.ac b/configure.ac
index 0396aaf..ab8a63c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
 
 # Initialize Autoconf
 AC_PREREQ([2.60])
-AC_INIT([libXi], [1.6.99.1],
+AC_INIT([libXi], [1.7],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXi])
 AC_CONFIG_SRCDIR([Makefile.am])
 AC_CONFIG_HEADERS([src/config.h])

commit 9b26b81477cf3486e5aa0ef8d81af68a0f04df1b
Author: Colin Walters walt...@verbum.org
Date:   Wed Jan 4 17:37:06 2012 -0500

autogen.sh: Implement GNOME Build API

http://people.gnome.org/~walters/docs/build-api.txt

Signed-off-by: Adam Jackson a...@redhat.com

diff --git a/autogen.sh b/autogen.sh
index 904cd67..fc34bd5 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -9,4 +9,6 @@ cd $srcdir
 autoreconf -v --install || exit 1
 cd $ORIGDIR || exit $?
 
-$srcdir/configure --enable-maintainer-mode $@
+if test -z $NOCONFIGURE; then
+$srcdir/configure $@
+fi

commit fb67e7c99b8e95fa667b90837d312a98fa0a8a64
Author: Adam Jackson a...@redhat.com
Date:   Tue Jan 15 14:28:48 2013 -0500

configure: Remove AM_MAINTAINER_MODE

Signed-off-by: Adam Jackson a...@redhat.com

diff --git 

Processing of libxi_1.3-8_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxi_1.3-8_amd64.changes uploaded successfully to localhost
along with the files:
  libxi_1.3-8.dsc
  libxi_1.3.orig.tar.gz
  libxi_1.3-8.diff.gz
  libxi6_1.3-8_amd64.deb
  libxi6-udeb_1.3-8_amd64.udeb
  libxi6-dbg_1.3-8_amd64.deb
  libxi-dev_1.3-8_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/e1ufxew-00044a...@franck.debian.org



Processing of mesa_7.7.1-6_amd64.changes

2013-05-23 Thread Debian FTP Masters
mesa_7.7.1-6_amd64.changes uploaded successfully to localhost
along with the files:
  mesa_7.7.1-6.dsc
  mesa_7.7.1.orig.tar.gz
  mesa_7.7.1-6.diff.gz
  libgl1-mesa-swx11_7.7.1-6_amd64.deb
  libgl1-mesa-swx11-dbg_7.7.1-6_amd64.deb
  libgl1-mesa-swx11-dev_7.7.1-6_amd64.deb
  libgl1-mesa-glx_7.7.1-6_amd64.deb
  libgl1-mesa-glx-dbg_7.7.1-6_amd64.deb
  libgl1-mesa-dri_7.7.1-6_amd64.deb
  libgl1-mesa-dri-dbg_7.7.1-6_amd64.deb
  libgl1-mesa-dev_7.7.1-6_amd64.deb
  mesa-common-dev_7.7.1-6_amd64.deb
  libosmesa6_7.7.1-6_amd64.deb
  libosmesa6-dev_7.7.1-6_amd64.deb
  libglu1-mesa_7.7.1-6_amd64.deb
  libglu1-mesa-dev_7.7.1-6_amd64.deb
  libglw1-mesa_7.7.1-6_amd64.deb
  libglw1-mesa-dev_7.7.1-6_amd64.deb
  mesa-utils_7.7.1-6_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/e1ufxju-0004zf...@franck.debian.org



libxi_1.3-8_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 May 2013 20:23:57 +
Source: libxi
Binary: libxi6 libxi6-udeb libxi6-dbg libxi-dev
Architecture: source amd64
Version: 2:1.3-8
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libxi-dev  - X11 Input extension library (development headers)
 libxi6 - X11 Input extension library
 libxi6-dbg - X11 Input extension library (debug package)
 libxi6-udeb - X11 Input extension library (udeb)
Changes: 
 libxi (2:1.3-8) oldstable-security; urgency=low
 .
   * CVE-2013-1984 CVE-2013-1995 CVE-2013-1998
Checksums-Sha1: 
 5fc70cb27629228c2c2250d90ea0a9ffc8ee74a6 1449 libxi_1.3-8.dsc
 21295adce7b1652a9a5145966941a956a6685d8d 434729 libxi_1.3.orig.tar.gz
 f9e2ebc9ae462fce80c76ac6c2b0fc8683497be8 27484 libxi_1.3-8.diff.gz
 e88a4dca0b37cd568a64bc1318a2fd4a38d4379d 57024 libxi6_1.3-8_amd64.deb
 c704a16451f7f71597e91309795a0abd4fe9661d 26582 libxi6-udeb_1.3-8_amd64.udeb
 7494f7bea31f9699a70f78dd7b770d8626146278 414312 libxi6-dbg_1.3-8_amd64.deb
 7d949128b4e05b6ecc9f03bc5de64799eb51e14c 140408 libxi-dev_1.3-8_amd64.deb
Checksums-Sha256: 
 974e197713a95b851100fcd0a81949fdd8f4013c1fc1bb44f9879b568dae04c3 1449 
libxi_1.3-8.dsc
 1739a14403ec2e74e208f1748da005b98c376a9a43b63ce5f117e3f9fb6f29a5 434729 
libxi_1.3.orig.tar.gz
 326a9d6e91cf9212248faafb4b5762231b92fa953017b6c434e5bcdb03813ffe 27484 
libxi_1.3-8.diff.gz
 cadf5622655f05b23f282dd8049536d8078a7e0f8473b3e9de4feb805254efe4 57024 
libxi6_1.3-8_amd64.deb
 4f68743e7d011e90dc31918786d549214a05a3bfad8cc6afe9c2fef46aa0f1cf 26582 
libxi6-udeb_1.3-8_amd64.udeb
 b6904553691534266b9160b8623aafc3c8eaa2d2ee1ba369dffe6983f7827bc5 414312 
libxi6-dbg_1.3-8_amd64.deb
 8b80e4ced60b30c3af37365e7b8d1f8fc2211c231dc88994a665942c42ab440c 140408 
libxi-dev_1.3-8_amd64.deb
Files: 
 9d3c7747a492aa71171b5aedeb3d811d 1449 x11 optional libxi_1.3-8.dsc
 1c038312e4f9b61fe72e52d0f59a01d5 434729 x11 optional libxi_1.3.orig.tar.gz
 7d74571c71abb7a37ab8e92f4837b222 27484 x11 optional libxi_1.3-8.diff.gz
 184a61760e03b47ce3f56b5a3c735d5b 57024 libs optional libxi6_1.3-8_amd64.deb
 40aa39d04780cf12007c965f4c0ac572 26582 debian-installer optional 
libxi6-udeb_1.3-8_amd64.udeb
 febb3d97b33096eaf16a49ed8ad43162 414312 debug extra libxi6-dbg_1.3-8_amd64.deb
 357986adfc9c042ec417cce76f5542cc 140408 libdevel optional 
libxi-dev_1.3-8_amd64.deb
Package-Type: udeb

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

iEYEARECAAYFAlGZJ68ACgkQXm3vHE4uylp3WQCgv/HTV4KZ7aNFplOwg83dtcM2
ZD4An15meMnKspfBFhKHZgoQknYg9rdD
=qCLX
-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/e1ufxkb-0004g5...@franck.debian.org



mesa_7.7.1-6_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 May 2013 01:07:04 +
Source: mesa
Binary: libgl1-mesa-swx11 libgl1-mesa-swx11-dbg libgl1-mesa-swx11-i686 
libgl1-mesa-swx11-dev libgl1-mesa-glx libgl1-mesa-glx-dbg libgl1-mesa-dri 
libgl1-mesa-dri-dbg libgl1-mesa-dev mesa-common-dev libosmesa6 libosmesa6-dev 
libglu1-mesa libglu1-mesa-dev libglw1-mesa libglw1-mesa-dev mesa-utils
Architecture: source amd64
Version: 7.7.1-6
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libgl1-mesa-dev - A free implementation of the OpenGL API -- GLX development 
files
 libgl1-mesa-dri - A free implementation of the OpenGL API -- DRI modules
 libgl1-mesa-dri-dbg - Debugging symbols for the Mesa DRI modules
 libgl1-mesa-glx - A free implementation of the OpenGL API -- GLX runtime
 libgl1-mesa-glx-dbg - Debugging symbols for the Mesa GLX runtime
 libgl1-mesa-swx11 - A free implementation of the OpenGL API -- runtime
 libgl1-mesa-swx11-dbg - A free implementation of the OpenGL API -- debugging 
symbols
 libgl1-mesa-swx11-dev - A free implementation of the OpenGL API -- development 
files
 libgl1-mesa-swx11-i686 - Mesa OpenGL runtime [i686 optimized]
 libglu1-mesa - The OpenGL utility library (GLU)
 libglu1-mesa-dev - The OpenGL utility library -- development files
 libglw1-mesa - A free implementation of the OpenGL API -- runtime
 libglw1-mesa-dev - A free implementation of the OpenGL API -- development files
 libosmesa6 - Mesa Off-screen rendering extension
 libosmesa6-dev - Mesa Off-screen rendering extension -- development files
 mesa-common-dev - Developer documentation for Mesa
 mesa-utils - Miscellaneous Mesa GL utilities
Changes: 
 mesa (7.7.1-6) oldstable-security; urgency=low
 .
   * CVE-2013-1993
Checksums-Sha1: 
 016784c4b363b6053b8bfeb01bfe28f0cd71452d 1873 mesa_7.7.1-6.dsc
 42d0c97657fd57569f44fdf3ffe76e90a3d59ff8 26229038 mesa_7.7.1.orig.tar.gz
 66ab663f652a9d20c008f93d4d407303833d15e5 2472115 mesa_7.7.1-6.diff.gz
 216805c8b99f43ee3e4cd06d769f95f08d5a62c5 1122912 
libgl1-mesa-swx11_7.7.1-6_amd64.deb
 e662bcc48f560c9bde9d0e54847b6b988e88ecf5 4370298 
libgl1-mesa-swx11-dbg_7.7.1-6_amd64.deb
 149c700bfbc758555f04b9a20062a7992567 1318120 
libgl1-mesa-swx11-dev_7.7.1-6_amd64.deb
 6d36a118e7db4d9548a2c5288a789d28442da1fb 182148 
libgl1-mesa-glx_7.7.1-6_amd64.deb
 1493a21fc7a855975864e25543f7ea12c29aefc8 626338 
libgl1-mesa-glx-dbg_7.7.1-6_amd64.deb
 edfd865a48cc9152d28e3f0b89d9e2f8be2714f6 14651130 
libgl1-mesa-dri_7.7.1-6_amd64.deb
 c0f2f77a0c8d1c822dcd59f73bc398951bde0064 65045634 
libgl1-mesa-dri-dbg_7.7.1-6_amd64.deb
 e31a2e95eb124118264d05ad065b8662d51a0218 24036 
libgl1-mesa-dev_7.7.1-6_amd64.deb
 1ded9dd2a4bf0c168c3ebb4894c05fc085ec76e8 2362756 
mesa-common-dev_7.7.1-6_amd64.deb
 486163d4b22957a7bcefc8b301efb4b22c3fd2a8 2966236 libosmesa6_7.7.1-6_amd64.deb
 3bb71267b3344f00cb62ea59b2c10dc4a832 3524580 
libosmesa6-dev_7.7.1-6_amd64.deb
 33254578e42fa2eff55a54e667b96a8c29dd2c88 216436 libglu1-mesa_7.7.1-6_amd64.deb
 7907b48c5d942607b9203cab32761306df582724 292558 
libglu1-mesa-dev_7.7.1-6_amd64.deb
 c3490807f5eaf90054fcdd731bf8491379a4392b 32814 libglw1-mesa_7.7.1-6_amd64.deb
 5edd0a0fe4b6beb8dfa3a2943f4bbf348b3122fc 33850 
libglw1-mesa-dev_7.7.1-6_amd64.deb
 0595b3a265841eca9cfa9febe2790c9480539592 48438 mesa-utils_7.7.1-6_amd64.deb
Checksums-Sha256: 
 8d1aca74ce13a36963510e844113a91ef1dcf88f201b192e84cd5a420f635891 1873 
mesa_7.7.1-6.dsc
 9b9ae2345d9604633600434300c705162db6d3c813a0ace10a34bba3c74c4869 26229038 
mesa_7.7.1.orig.tar.gz
 faa2f9f05ca82ed377f1b5b8eff4e577d76be5c321dd0ba783fd017944813cee 2472115 
mesa_7.7.1-6.diff.gz
 aed4e06d6ae6436a92c0bf3db8d798d17a8654701a2a342721ab1082956ae70c 1122912 
libgl1-mesa-swx11_7.7.1-6_amd64.deb
 f2d0bb54a79129116f56c5eaaa12dd0641931ad5b6974fbac39f6b494d2a 4370298 
libgl1-mesa-swx11-dbg_7.7.1-6_amd64.deb
 daa717329b2e8f148ffed322b182d9dc157767f5ded3e29cab1b348ea9231376 1318120 
libgl1-mesa-swx11-dev_7.7.1-6_amd64.deb
 79633e512d1664566e14442c823eeabc5bcc9d27cabb22fb10acd8062dff8479 182148 
libgl1-mesa-glx_7.7.1-6_amd64.deb
 e03794d94fe0203e3c9c0d14308894f8f71484cca939807eed9e3f7743e5ecc1 626338 
libgl1-mesa-glx-dbg_7.7.1-6_amd64.deb
 ddfbaaf0d56bffb10764bafecc147c8503d2ce470b8a92d81d5f8cca2f5e8ebf 14651130 
libgl1-mesa-dri_7.7.1-6_amd64.deb
 530f3614ac6cbcc4983c0a7ca616ecd71f94dd532f5011b5071333a0b20c7062 65045634 
libgl1-mesa-dri-dbg_7.7.1-6_amd64.deb
 1f885204ae2f11f85c55dc919a6f7c4753b852eb9920307b953268a213c32db9 24036 
libgl1-mesa-dev_7.7.1-6_amd64.deb
 bdea7591f3d0871a218db0e9625553803398c5fe18bf306e7fcc6b7b3318c73c 2362756 
mesa-common-dev_7.7.1-6_amd64.deb
 0cd6da140b5bfce376390a625dd7c2019035db9703494c3afa0ca621d74d76c9 2966236 
libosmesa6_7.7.1-6_amd64.deb
 d45c1e1cffaa0d95bec4dae7f2ecb840ebff5f59c597a078720c732fd1956229 3524580 

Processing of mesa_8.0.5-4+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
mesa_8.0.5-4+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  mesa_8.0.5.orig.tar.gz
  mesa_8.0.5-4+deb7u1.dsc
  mesa_8.0.5-4+deb7u1.diff.gz
  libgl1-mesa-swx11_8.0.5-4+deb7u1_amd64.deb
  libgl1-mesa-swx11-dbg_8.0.5-4+deb7u1_amd64.deb
  libgl1-mesa-swx11-dev_8.0.5-4+deb7u1_amd64.deb
  libxatracker1_8.0.5-4+deb7u1_amd64.deb
  libxatracker1-dbg_8.0.5-4+deb7u1_amd64.deb
  libxatracker-dev_8.0.5-4+deb7u1_amd64.deb
  libgbm1_8.0.5-4+deb7u1_amd64.deb
  libgbm1-dbg_8.0.5-4+deb7u1_amd64.deb
  libgbm-dev_8.0.5-4+deb7u1_amd64.deb
  libegl1-mesa_8.0.5-4+deb7u1_amd64.deb
  libegl1-mesa-dbg_8.0.5-4+deb7u1_amd64.deb
  libegl1-mesa-dev_8.0.5-4+deb7u1_amd64.deb
  libegl1-mesa-drivers_8.0.5-4+deb7u1_amd64.deb
  libegl1-mesa-drivers-dbg_8.0.5-4+deb7u1_amd64.deb
  libopenvg1-mesa_8.0.5-4+deb7u1_amd64.deb
  libopenvg1-mesa-dbg_8.0.5-4+deb7u1_amd64.deb
  libopenvg1-mesa-dev_8.0.5-4+deb7u1_amd64.deb
  libgles1-mesa_8.0.5-4+deb7u1_amd64.deb
  libgles1-mesa-dbg_8.0.5-4+deb7u1_amd64.deb
  libgles1-mesa-dev_8.0.5-4+deb7u1_amd64.deb
  libgles2-mesa_8.0.5-4+deb7u1_amd64.deb
  libgles2-mesa-dbg_8.0.5-4+deb7u1_amd64.deb
  libgles2-mesa-dev_8.0.5-4+deb7u1_amd64.deb
  libglapi-mesa_8.0.5-4+deb7u1_amd64.deb
  libglapi-mesa-dbg_8.0.5-4+deb7u1_amd64.deb
  libgl1-mesa-glx_8.0.5-4+deb7u1_amd64.deb
  libgl1-mesa-glx-dbg_8.0.5-4+deb7u1_amd64.deb
  libgl1-mesa-dri_8.0.5-4+deb7u1_amd64.deb
  libgl1-mesa-dri-dbg_8.0.5-4+deb7u1_amd64.deb
  libgl1-mesa-dri-experimental_8.0.5-4+deb7u1_amd64.deb
  libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u1_amd64.deb
  libgl1-mesa-dev_8.0.5-4+deb7u1_amd64.deb
  mesa-common-dev_8.0.5-4+deb7u1_amd64.deb
  libosmesa6_8.0.5-4+deb7u1_amd64.deb
  libosmesa6-dev_8.0.5-4+deb7u1_amd64.deb
  libglu1-mesa_8.0.5-4+deb7u1_amd64.deb
  libglu1-mesa-dev_8.0.5-4+deb7u1_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/e1ufxow-0006yr...@franck.debian.org



mesa: Changes to 'debian-unstable'

2013-05-23 Thread Julien Cristau
 debian/changelog  |6 ++
 src/glx/XF86dri.c |   15 +++
 2 files changed, 17 insertions(+), 4 deletions(-)

New commits:
commit efb55da89fe36fda5e507fbfd9a53442bfaa00b1
Author: Julien Cristau jcris...@debian.org
Date:   Thu May 23 10:50:28 2013 +0200

Upload to sid

diff --git a/debian/changelog b/debian/changelog
index 8b9461c..ed6f909 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+mesa (8.0.5-6) sid; urgency=high
+
+  * integer overflows calculating memory needs for replies [CVE-2013-1993]
+
+ -- Julien Cristau jcris...@debian.org  Thu, 23 May 2013 10:50:24 +0200
+
 mesa (8.0.5-5) sid; urgency=low
 
   * Reupload with no source changes to restore multiarch installability

commit fa3c521d66ec1b767f231b79fbd5dd9f13a244cf
Author: Alan Coopersmith alan.coopersm...@oracle.com
Date:   Fri Apr 26 16:33:03 2013 -0700

integer overflow in XF86DRIGetClientDriverName() [CVE-2013-1993 2/2]

clientDriverNameLength is a CARD32 and needs to be bounds checked before
adding one to it to come up with the total size to allocate, to avoid
integer overflow leading to underallocation and writing data from the
network past the end of the allocated buffer.

Reported-by: Ilja Van Sprundel ivansprun...@ioactive.com
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
Signed-off-by: Julien Cristau jcris...@debian.org

diff --git a/src/glx/XF86dri.c b/src/glx/XF86dri.c
index 24facfe..a6d3a40 100644
--- a/src/glx/XF86dri.c
+++ b/src/glx/XF86dri.c
@@ -305,9 +305,11 @@ XF86DRIGetClientDriverName(Display * dpy, int screen,
*ddxDriverPatchVersion = rep.ddxDriverPatchVersion;
 
if (rep.length) {
-  if (!
-  (*clientDriverName =
-   (char *) Xcalloc(rep.clientDriverNameLength + 1, 1))) {
+  if (rep.clientDriverNameLength  INT_MAX)
+*clientDriverName = Xcalloc(rep.clientDriverNameLength + 1, 1);
+  else
+*clientDriverName = NULL;
+  if (*clientDriverName == NULL) {
  _XEatData(dpy, ((rep.clientDriverNameLength + 3)  ~3));
  UnlockDisplay(dpy);
  SyncHandle();

commit 7eae38c8c7f3a0ef10acecfac8c2a4d9e57b3577
Author: Alan Coopersmith alan.coopersm...@oracle.com
Date:   Fri Apr 26 16:31:58 2013 -0700

integer overflow in XF86DRIOpenConnection() [CVE-2013-1993 1/2]

busIdStringLength is a CARD32 and needs to be bounds checked before adding
one to it to come up with the total size to allocate, to avoid integer
overflow leading to underallocation and writing data from the network past
the end of the allocated buffer.

Reported-by: Ilja Van Sprundel ivansprun...@ioactive.com
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
Signed-off-by: Julien Cristau jcris...@debian.org

diff --git a/src/glx/XF86dri.c b/src/glx/XF86dri.c
index 5c181d6..24facfe 100644
--- a/src/glx/XF86dri.c
+++ b/src/glx/XF86dri.c
@@ -43,6 +43,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 #include X11/extensions/Xext.h
 #include X11/extensions/extutil.h
 #include xf86dristr.h
+#include limits.h
 
 static XExtensionInfo _xf86dri_info_data;
 static XExtensionInfo *xf86dri_info = _xf86dri_info_data;
@@ -201,7 +202,11 @@ XF86DRIOpenConnection(Display * dpy, int screen, 
drm_handle_t * hSAREA,
}
 
if (rep.length) {
-  if (!(*busIdString = (char *) Xcalloc(rep.busIdStringLength + 1, 1))) {
+  if (rep.busIdStringLength  INT_MAX)
+*busIdString = Xcalloc(rep.busIdStringLength + 1, 1);
+  else
+*busIdString = NULL;
+  if (*busIdString == NULL) {
  _XEatData(dpy, ((rep.busIdStringLength + 3)  ~3));
  UnlockDisplay(dpy);
  SyncHandle();


-- 
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/e1ufxxb-0001eb...@vasks.debian.org



mesa: Changes to 'refs/tags/mesa-8.0.5-6'

2013-05-23 Thread Julien Cristau
Tag 'mesa-8.0.5-6' created by Julien Cristau jcris...@debian.org at 
2013-05-23 08:50 +

Tagging upload of mesa 8.0.5-6 to sid.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAABCAAGBQJRndhbAAoJEDEBgAUJBeQMKDAP/j02hW4armPvMyFQo28D3CpM
3mjGVJ1qeLG8+Zkj0wIE6OiM6fFiV0z84CrsvG+oYoTeIqkmI/s0CqhXX+EAzUsL
wO6+Vl+DaxKIMYC84lniaElguUyDqSsRdSy1/4zTgg51jgu+AfEzX00E6dPIoPf/
Oy/+2ED38izE2dLQRgtcsl2fNgqKurNCeQEqMdX05apXTKtmw02BphI5NZpxl9VO
nuxQtR/kjAxNOoFzk475w6aJB+RfmzdQDiTtU1lBFssxfu8aFLFqkm2LusHaXMUJ
cHhR8eNKQ+IX0+vWzoZ5K24S/JaNlVKVATAbU2U+iJBs/BYZFRh4pcQ7GT1xJ/d8
lk75Nw/JcnNXu2wGR4DVjj9auoPtYbGsJuwwlcrBrEGwaY8hjnvdH3h47XO63a+b
MvMCbfTEAeJw4FwmvjTGI2DQM9aC7uZio8e5penl7lEw8B5vmPUW/GewAv9jav9+
lqXuJPAdHvSkR1Dx3wJuYo8yW3laOdJrkRCO2Xwvm9ZxQjh8D46OneyZ5LVi02Tu
2Lw6d7rpgv6enOeold8O+8IOKKSX7usNEuPXAAaJ2d0p8M+/SSURDjWCWx6XqU0R
h1fWmNk494k7OebTkaZnZ+zv4VMD6uTa4pRVNZ46AqJ/vt4AjAAsR1CYQqYgiEbL
2ecojD0J84wf+fUYIqcf
=H+v4
-END PGP SIGNATURE-

Changes since mesa-8.0.5-5:
Alan Coopersmith (2):
  integer overflow in XF86DRIOpenConnection() [CVE-2013-1993 1/2]
  integer overflow in XF86DRIGetClientDriverName() [CVE-2013-1993 2/2]

Julien Cristau (1):
  Upload to sid

---
 debian/changelog  |6 ++
 src/glx/XF86dri.c |   15 +++
 2 files changed, 17 insertions(+), 4 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/e1ufxxc-0001f0...@vasks.debian.org



Processing of libdmx_1.1.2-1+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libdmx_1.1.2-1+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libdmx_1.1.2-1+deb7u1.dsc
  libdmx_1.1.2.orig.tar.gz
  libdmx_1.1.2-1+deb7u1.diff.gz
  libdmx1_1.1.2-1+deb7u1_amd64.deb
  libdmx1-dbg_1.1.2-1+deb7u1_amd64.deb
  libdmx-dev_1.1.2-1+deb7u1_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/e1ufxyl-0008ai...@franck.debian.org



Processing of libxfixes_5.0-4+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxfixes_5.0-4+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libxfixes_5.0-4+deb7u1.dsc
  libxfixes_5.0.orig.tar.gz
  libxfixes_5.0-4+deb7u1.diff.gz
  libxfixes3_5.0-4+deb7u1_amd64.deb
  libxfixes3-udeb_5.0-4+deb7u1_amd64.udeb
  libxfixes3-dbg_5.0-4+deb7u1_amd64.deb
  libxfixes-dev_5.0-4+deb7u1_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/e1ufxym-0008b3...@franck.debian.org



Processing of libxres_1.0.6-1+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxres_1.0.6-1+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libxres_1.0.6-1+deb7u1.dsc
  libxres_1.0.6.orig.tar.gz
  libxres_1.0.6-1+deb7u1.diff.gz
  libxres1_1.0.6-1+deb7u1_amd64.deb
  libxres1-dbg_1.0.6-1+deb7u1_amd64.deb
  libxres-dev_1.0.6-1+deb7u1_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/e1ufxyo-0008br...@franck.debian.org



mesa_8.0.5-4+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 15 May 2013 21:18:58 +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 libglu1-mesa libglu1-mesa-dev
Architecture: source amd64
Version: 8.0.5-4+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@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
 libglu1-mesa - Mesa OpenGL utility library (GLU)
 libglu1-mesa-dev - Mesa OpenGL utility library -- 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 (8.0.5-4+deb7u1) wheezy-security; urgency=high
 .
   * integer overflows calculating memory needs for replies [CVE-2013-1993]
Checksums-Sha1: 
 9a2c32899a4ca04a92438456d7499da4d0bdbaa4 7455203 mesa_8.0.5.orig.tar.gz
 ebf2a567e55b10223ace7efa28e3d4ac91b153ce 4451 mesa_8.0.5-4+deb7u1.dsc
 1cc9dfd0aea4b9cf94ce86725cfbd87401b9cab3 52364 mesa_8.0.5-4+deb7u1.diff.gz
 c06e7f7675a83934584c5b5b1dc213e5c95cbf00 955448 
libgl1-mesa-swx11_8.0.5-4+deb7u1_amd64.deb
 45f5ffcd49c479930a03c5e53a7a82949a41c263 2909068 
libgl1-mesa-swx11-dbg_8.0.5-4+deb7u1_amd64.deb
 20bcdf9732608c03ebffaa43b35320e30467a942 1107150 
libgl1-mesa-swx11-dev_8.0.5-4+deb7u1_amd64.deb
 75eaed4e4d21d5f5e6438a1796a96d636f0c7d57 2922512 
libxatracker1_8.0.5-4+deb7u1_amd64.deb
 9061374ea4c7fdcec8c8f13bb74c6837e966b35a 1439388 
libxatracker1-dbg_8.0.5-4+deb7u1_amd64.deb
 896caac5c7ed21aba74604a9ee07f726e4c95b22 35214 
libxatracker-dev_8.0.5-4+deb7u1_amd64.deb
 2ab6eaef0299986a2936d1080ac70348916dfaaf 9689548 
libgbm1_8.0.5-4+deb7u1_amd64.deb
 ca202ff6489ea8950d2610e5607d7d512313849a 4381856 
libgbm1-dbg_8.0.5-4+deb7u1_amd64.deb
 21491f3631ba0a37f83d212270879b4bf8cb0224 

Processing of mesa_8.0.5-6_amd64.changes

2013-05-23 Thread Debian FTP Masters
mesa_8.0.5-6_amd64.changes uploaded successfully to localhost
along with the files:
  mesa_8.0.5-6.dsc
  mesa_8.0.5-6.diff.gz
  libgl1-mesa-swx11_8.0.5-6_amd64.deb
  libgl1-mesa-swx11-dbg_8.0.5-6_amd64.deb
  libgl1-mesa-swx11-dev_8.0.5-6_amd64.deb
  libxatracker1_8.0.5-6_amd64.deb
  libxatracker1-dbg_8.0.5-6_amd64.deb
  libxatracker-dev_8.0.5-6_amd64.deb
  libgbm1_8.0.5-6_amd64.deb
  libgbm1-dbg_8.0.5-6_amd64.deb
  libgbm-dev_8.0.5-6_amd64.deb
  libegl1-mesa_8.0.5-6_amd64.deb
  libegl1-mesa-dbg_8.0.5-6_amd64.deb
  libegl1-mesa-dev_8.0.5-6_amd64.deb
  libegl1-mesa-drivers_8.0.5-6_amd64.deb
  libegl1-mesa-drivers-dbg_8.0.5-6_amd64.deb
  libopenvg1-mesa_8.0.5-6_amd64.deb
  libopenvg1-mesa-dbg_8.0.5-6_amd64.deb
  libopenvg1-mesa-dev_8.0.5-6_amd64.deb
  libgles1-mesa_8.0.5-6_amd64.deb
  libgles1-mesa-dbg_8.0.5-6_amd64.deb
  libgles1-mesa-dev_8.0.5-6_amd64.deb
  libgles2-mesa_8.0.5-6_amd64.deb
  libgles2-mesa-dbg_8.0.5-6_amd64.deb
  libgles2-mesa-dev_8.0.5-6_amd64.deb
  libglapi-mesa_8.0.5-6_amd64.deb
  libglapi-mesa-dbg_8.0.5-6_amd64.deb
  libgl1-mesa-glx_8.0.5-6_amd64.deb
  libgl1-mesa-glx-dbg_8.0.5-6_amd64.deb
  libgl1-mesa-dri_8.0.5-6_amd64.deb
  libgl1-mesa-dri-dbg_8.0.5-6_amd64.deb
  libgl1-mesa-dri-experimental_8.0.5-6_amd64.deb
  libgl1-mesa-dri-experimental-dbg_8.0.5-6_amd64.deb
  libgl1-mesa-dev_8.0.5-6_amd64.deb
  mesa-common-dev_8.0.5-6_amd64.deb
  libosmesa6_8.0.5-6_amd64.deb
  libosmesa6-dev_8.0.5-6_amd64.deb
  libglu1-mesa_8.0.5-6_amd64.deb
  libglu1-mesa-dev_8.0.5-6_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/e1ufy3n-000183...@franck.debian.org



Processing of libxrandr_1.3.0-3+squeeze1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxrandr_1.3.0-3+squeeze1_amd64.changes uploaded successfully to localhost
along with the files:
  libxrandr_1.3.0-3+squeeze1.dsc
  libxrandr_1.3.0.orig.tar.gz
  libxrandr_1.3.0-3+squeeze1.diff.gz
  libxrandr2_1.3.0-3+squeeze1_amd64.deb
  libxrandr2-dbg_1.3.0-3+squeeze1_amd64.deb
  libxrandr-dev_1.3.0-3+squeeze1_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/e1ufydz-0003an...@franck.debian.org



Processing of libxv_1.0.7-1+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxv_1.0.7-1+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libxv_1.0.7-1+deb7u1.dsc
  libxv_1.0.7.orig.tar.gz
  libxv_1.0.7-1+deb7u1.diff.gz
  libxv1_1.0.7-1+deb7u1_amd64.deb
  libxv1-dbg_1.0.7-1+deb7u1_amd64.deb
  libxv-dev_1.0.7-1+deb7u1_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/e1ufydb-0003bb...@franck.debian.org



Processing of libdmx_1.1.0-2+squeeze1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libdmx_1.1.0-2+squeeze1_amd64.changes uploaded successfully to localhost
along with the files:
  libdmx_1.1.0-2+squeeze1.dsc
  libdmx_1.1.0.orig.tar.gz
  libdmx_1.1.0-2+squeeze1.diff.gz
  libdmx1_1.1.0-2+squeeze1_amd64.deb
  libdmx1-dbg_1.1.0-2+squeeze1_amd64.deb
  libdmx-dev_1.1.0-2+squeeze1_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/e1ufydd-0003cj...@franck.debian.org



Processing of libxinerama_1.1-3+squeeze1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxinerama_1.1-3+squeeze1_amd64.changes uploaded successfully to localhost
along with the files:
  libxinerama_1.1-3+squeeze1.dsc
  libxinerama_1.1.orig.tar.gz
  libxinerama_1.1-3+squeeze1.diff.gz
  libxinerama1_1.1-3+squeeze1_amd64.deb
  libxinerama1-udeb_1.1-3+squeeze1_amd64.udeb
  libxinerama1-dbg_1.1-3+squeeze1_amd64.deb
  libxinerama-dev_1.1-3+squeeze1_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/e1ufydf-0003d9...@franck.debian.org



Processing of libxp_1.0.1-2+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxp_1.0.1-2+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libxp_1.0.1-2+deb7u1.dsc
  libxp_1.0.1.orig.tar.gz
  libxp_1.0.1-2+deb7u1.diff.gz
  libxp6_1.0.1-2+deb7u1_amd64.deb
  libxp6-dbg_1.0.1-2+deb7u1_amd64.deb
  libxp-dev_1.0.1-2+deb7u1_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/e1ufyiz-0003er...@franck.debian.org



Processing of libxv_1.0.5-1+squeeze1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxv_1.0.5-1+squeeze1_amd64.changes uploaded successfully to localhost
along with the files:
  libxv_1.0.5-1+squeeze1.dsc
  libxv_1.0.5.orig.tar.gz
  libxv_1.0.5-1+squeeze1.diff.gz
  libxv1_1.0.5-1+squeeze1_amd64.deb
  libxv1-dbg_1.0.5-1+squeeze1_amd64.deb
  libxv-dev_1.0.5-1+squeeze1_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/e1ufyia-0003fp...@franck.debian.org



Processing of libxt_1.1.3-1+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxt_1.1.3-1+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libxt_1.1.3-1+deb7u1.dsc
  libxt_1.1.3.orig.tar.gz
  libxt_1.1.3-1+deb7u1.diff.gz
  libxt6_1.1.3-1+deb7u1_amd64.deb
  libxt6-dbg_1.1.3-1+deb7u1_amd64.deb
  libxt-dev_1.1.3-1+deb7u1_amd64.deb
  libxt-doc_1.1.3-1+deb7u1_all.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/e1ufyib-0003fk...@franck.debian.org



Processing of libxres_1.0.4-1+squeeze_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxres_1.0.4-1+squeeze_amd64.changes uploaded successfully to localhost
along with the files:
  libxres_1.0.4-1+squeeze.dsc
  libxres_1.0.4.orig.tar.gz
  libxres_1.0.4-1+squeeze.diff.gz
  libxres1_1.0.4-1+squeeze_amd64.deb
  libxres1-dbg_1.0.4-1+squeeze_amd64.deb
  libxres-dev_1.0.4-1+squeeze_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/e1ufyib-0003fw...@franck.debian.org



Processing of libxxf86dga_1.1.1-2+squeeze1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxxf86dga_1.1.1-2+squeeze1_amd64.changes uploaded successfully to localhost
along with the files:
  libxxf86dga_1.1.1-2+squeeze1.dsc
  libxxf86dga_1.1.1.orig.tar.gz
  libxxf86dga_1.1.1-2+squeeze1.diff.gz
  libxxf86dga1_1.1.1-2+squeeze1_amd64.deb
  libxxf86dga1-dbg_1.1.1-2+squeeze1_amd64.deb
  libxxf86dga-dev_1.1.1-2+squeeze1_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/e1ufyig-0003hz...@franck.debian.org



Processing of libxt_1.0.7-1+squeeze1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxt_1.0.7-1+squeeze1_amd64.changes uploaded successfully to localhost
along with the files:
  libxt_1.0.7-1+squeeze1.dsc
  libxt_1.0.7.orig.tar.gz
  libxt_1.0.7-1+squeeze1.diff.gz
  libxt6_1.0.7-1+squeeze1_amd64.deb
  libxt6-dbg_1.0.7-1+squeeze1_amd64.deb
  libxt-dev_1.0.7-1+squeeze1_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/e1ufynx-00048e...@franck.debian.org



Processing of xserver-xorg-video-openchrome_0.2.906-2+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
xserver-xorg-video-openchrome_0.2.906-2+deb7u1_amd64.changes uploaded 
successfully to localhost
along with the files:
  xserver-xorg-video-openchrome_0.2.906-2+deb7u1.dsc
  xserver-xorg-video-openchrome_0.2.906.orig.tar.gz
  xserver-xorg-video-openchrome_0.2.906-2+deb7u1.diff.gz
  xserver-xorg-video-openchrome_0.2.906-2+deb7u1_amd64.deb
  xserver-xorg-video-openchrome-dbg_0.2.906-2+deb7u1_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/e1ufyna-00049l...@franck.debian.org



Processing of libxxf86dga_1.1.3-2+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxxf86dga_1.1.3-2+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libxxf86dga_1.1.3-2+deb7u1.dsc
  libxxf86dga_1.1.3.orig.tar.gz
  libxxf86dga_1.1.3-2+deb7u1.diff.gz
  libxxf86dga1_1.1.3-2+deb7u1_amd64.deb
  libxxf86dga1-dbg_1.1.3-2+deb7u1_amd64.deb
  libxxf86dga-dev_1.1.3-2+deb7u1_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/e1ufynd-0004an...@franck.debian.org



libdmx_1.1.0-2+squeeze1_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 13 May 2013 21:05:51 +
Source: libdmx
Binary: libdmx1 libdmx1-dbg libdmx-dev
Architecture: source amd64
Version: 1:1.1.0-2+squeeze1
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libdmx-dev - X11 Distributed Multihead extension library (development headers)
 libdmx1- X11 Distributed Multihead extension library
 libdmx1-dbg - X11 Distributed Multihead library (debug package)
Changes: 
 libdmx (1:1.1.0-2+squeeze1) oldstable-security; urgency=low
 .
   * CVE-2013-1992
Checksums-Sha1: 
 dad0e9d91244762406e0aa98bb3530812ec497af 1365 libdmx_1.1.0-2+squeeze1.dsc
 f27fce84d55008ba142abe1de37a4317ae28a1d8 308511 libdmx_1.1.0.orig.tar.gz
 0131dcf9a99a843ba6dddfb0e483628dada3a6e1 16336 libdmx_1.1.0-2+squeeze1.diff.gz
 4a1c7771709f818c5fde75fdfb6b1c2965fa3611 10428 
libdmx1_1.1.0-2+squeeze1_amd64.deb
 fa1eadfc48b6490b61df5c5c5590eee28a2dcaac 26638 
libdmx1-dbg_1.1.0-2+squeeze1_amd64.deb
 f0c4b6b513c9d9cd8637169ef8e1edc81bab764b 37284 
libdmx-dev_1.1.0-2+squeeze1_amd64.deb
Checksums-Sha256: 
 5914e49e2352df42000917c62a04c341cd59eae57bdad7db9c9dbe1b6dcef757 1365 
libdmx_1.1.0-2+squeeze1.dsc
 4ebc634ff5b921bb5d095fa9dffc2565048fd618c4f4878cea60515fda4c2f81 308511 
libdmx_1.1.0.orig.tar.gz
 bf5719d22e337fc989d52566e210d74daf1d270f6d67393a84b081ea8f305b53 16336 
libdmx_1.1.0-2+squeeze1.diff.gz
 efde56bc2bb25123292a0de98205f1f2c5af3d7943de490bb178928eac5ddd1f 10428 
libdmx1_1.1.0-2+squeeze1_amd64.deb
 e5425597fd47234d0c757c7702e7675c892dbb265d736989bd51590965e637a3 26638 
libdmx1-dbg_1.1.0-2+squeeze1_amd64.deb
 1f26ec392584441411ecc320ee0aad341a3c5a0be94ba16a43b2e455b803149b 37284 
libdmx-dev_1.1.0-2+squeeze1_amd64.deb
Files: 
 2e261e6f4e038e1ea0bf47c3ab02e309 1365 x11 optional libdmx_1.1.0-2+squeeze1.dsc
 dc7177c84d1ccc577db138abab32c81b 308511 x11 optional libdmx_1.1.0.orig.tar.gz
 78670e7d85809f68b6bf6876bd5a211a 16336 x11 optional 
libdmx_1.1.0-2+squeeze1.diff.gz
 b8fabb409b5f75cf4fa2baca4a7597ed 10428 libs optional 
libdmx1_1.1.0-2+squeeze1_amd64.deb
 16013f01d479c1129327c5598a7e9d7b 26638 debug extra 
libdmx1-dbg_1.1.0-2+squeeze1_amd64.deb
 d162c9c83068a323dbccc407fb9d84e1 37284 libdevel optional 
libdmx-dev_1.1.0-2+squeeze1_amd64.deb

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

iEYEARECAAYFAlGRV3MACgkQXm3vHE4uylpZVACeMJZ8bMPI5e59VSUAmb9QEyaG
pbIAoLPUUvBaegGcSZhV1X8NB5gBCuy/
=rKEg
-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/e1ufysj-00057w...@franck.debian.org



libdmx_1.1.2-1+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 15 May 2013 20:12:21 +0200
Source: libdmx
Binary: libdmx1 libdmx1-dbg libdmx-dev
Architecture: source amd64
Version: 1:1.1.2-1+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libdmx-dev - X11 Distributed Multihead extension library (development headers)
 libdmx1- X11 Distributed Multihead extension library
 libdmx1-dbg - X11 Distributed Multihead library (debug package)
Changes: 
 libdmx (1:1.1.2-1+deb7u1) wheezy-security; urgency=high
 .
   * integer overflows calculating memory needs for replies [CVE-2013-1992]
Checksums-Sha1: 
 d8ec4cfb911f2dbf23d476708c694e4c970d5895 2079 libdmx_1.1.2-1+deb7u1.dsc
 f2b0d3b105b5a0a4725ac59a0def34915acee294 347823 libdmx_1.1.2.orig.tar.gz
 eea1a3066a4c14258ca2760c79309e6037715cf2 7951 libdmx_1.1.2-1+deb7u1.diff.gz
 32db74959cea1988fe1d0992e76ea74d00dfd8c6 10740 libdmx1_1.1.2-1+deb7u1_amd64.deb
 73886b280e72f44594fc531adc7556b8f56663a8 30848 
libdmx1-dbg_1.1.2-1+deb7u1_amd64.deb
 bfca76f4abfe34d55d63104cc0e2d04988f71ad4 37020 
libdmx-dev_1.1.2-1+deb7u1_amd64.deb
Checksums-Sha256: 
 5da65cc00755052c8726fde949552f7ecf34787b67b2758cd7f09634907dd2d3 2079 
libdmx_1.1.2-1+deb7u1.dsc
 76b7e1833f7bbaed206018c0ea8cb4cdb6ad8f104d1e3736d71226a3010b2634 347823 
libdmx_1.1.2.orig.tar.gz
 51f1507dd41fc401cfa18bb14de4cfdb5b35a9b2ef70c8f7d0a97f64c9624c26 7951 
libdmx_1.1.2-1+deb7u1.diff.gz
 9e0a297eb0ce75e9a7720b9f01d6377998f5f8ece702451f9aeadba8de453c77 10740 
libdmx1_1.1.2-1+deb7u1_amd64.deb
 7920c4bdc0086109e3ee552cef453e60825dde6f7ba2c3f5f0e4533f7110d786 30848 
libdmx1-dbg_1.1.2-1+deb7u1_amd64.deb
 bb8ddf11e396e5e75b78b4c3faeee1834ee6e452411bf651da9f7eeac1bcdabb 37020 
libdmx-dev_1.1.2-1+deb7u1_amd64.deb
Files: 
 ceb92577fb315610c9b53cc1a6ac73d6 2079 x11 optional libdmx_1.1.2-1+deb7u1.dsc
 2509eb75340a45d8ee402be5aaf43d9e 347823 x11 optional libdmx_1.1.2.orig.tar.gz
 8e655c44801b5ef0475791f007a9759b 7951 x11 optional 
libdmx_1.1.2-1+deb7u1.diff.gz
 2e4dfa5fad009b590a392005e8e9f81d 10740 libs optional 
libdmx1_1.1.2-1+deb7u1_amd64.deb
 7227820c85da6f2e3aceb5a2ba2ea7bb 30848 debug extra 
libdmx1-dbg_1.1.2-1+deb7u1_amd64.deb
 c3598deb97ca3e4b35babf6144e900fc 37020 libdevel optional 
libdmx-dev_1.1.2-1+deb7u1_amd64.deb

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

iQIcBAEBCAAGBQJRk9EkAAoJEDEBgAUJBeQMvG4P/11vlaRPNz/pkwYDp/L8lnVl
HgcL1bU+57OoFxSEt9Dp1Rco4zpLvUCIPeNMZKmxZQsGSJKveKpRsujbu04Tm2sO
sSHs3YLbKRWSnwvErw3cy/nzH6JmWUQRNYVQvG5qLbGaG47P/8FGGLxa10Bgg7B+
QDxBGntk2Wy9xHiEp3/+EurwFtaej9YHVJ0TgJVKtcbD1qL3hte3wID05x9336ZX
Xffe/tbSeBXRMFYmaixvDdIQechSceq1sjwChyOt2cjOhaNofeiXRak7edn7kg55
Hu2ql5FAzFLQSz3CK7xw6rT+WCk+IjaeY2Nnt7i0WIQ+fowh/T/Xa+P6MgsFvBGi
v/CdKo3X7OesKxoREo3CypH3m0Nq0MTEvW1/DAVg/FxR/DDmTvi2H6R3nTYS0wbF
V7f0TOODlKKYobiWJDMgQzoqyGPVsH0TZKJ+1VQs2SN0KwnFDQZOyiFvHTbvoh8d
YXA3bSxLoVxaK4AfdxHefWs9k2WXAnQyPIk41Fr6+FHog8oFhWJyo2PbrVXOFu7S
E6Y/HeCszkXJ8Hj9tsJPQokbCoRz49RpaH6ELuK3OmcYivrw5htWFZqFGk+ij8Tc
JmmXQYWX/ezo32XqgbB+hFjVv1C58ToUFLWLLN0MlvDUgq/hCAhX+IaN/i+TgWu4
yWKkBw2+N7K3LHzidHkO
=CKOS
-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/e1ufyt5-0005co...@franck.debian.org



Processing of libxrender_0.9.7-1+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxrender_0.9.7-1+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libxrender_0.9.7-1+deb7u1.dsc
  libxrender_0.9.7.orig.tar.gz
  libxrender_0.9.7-1+deb7u1.diff.gz
  libxrender1_0.9.7-1+deb7u1_amd64.deb
  libxrender1-udeb_0.9.7-1+deb7u1_amd64.udeb
  libxrender1-dbg_0.9.7-1+deb7u1_amd64.deb
  libxrender-dev_0.9.7-1+deb7u1_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/e1ufyxm-0006yt...@franck.debian.org



Processing of libxvmc_1.0.5-1+squeeze1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxvmc_1.0.5-1+squeeze1_amd64.changes uploaded successfully to localhost
along with the files:
  libxvmc_1.0.5-1+squeeze1.dsc
  libxvmc_1.0.5.orig.tar.gz
  libxvmc_1.0.5-1+squeeze1.diff.gz
  libxvmc1_1.0.5-1+squeeze1_amd64.deb
  libxvmc1-dbg_1.0.5-1+squeeze1_amd64.deb
  libxvmc-dev_1.0.5-1+squeeze1_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/e1ufyxn-0006zd...@franck.debian.org



Processing of libfs_1.0.4-1+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libfs_1.0.4-1+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libfs_1.0.4-1+deb7u1.dsc
  libfs_1.0.4.orig.tar.gz
  libfs_1.0.4-1+deb7u1.diff.gz
  libfs6_1.0.4-1+deb7u1_amd64.deb
  libfs6-dbg_1.0.4-1+deb7u1_amd64.deb
  libfs-dev_1.0.4-1+deb7u1_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/e1ufyxo-0006zr...@franck.debian.org



Processing of libfs_1.0.2-1+squeeze1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libfs_1.0.2-1+squeeze1_amd64.changes uploaded successfully to localhost
along with the files:
  libfs_1.0.2-1+squeeze1.dsc
  libfs_1.0.2.orig.tar.gz
  libfs_1.0.2-1+squeeze1.diff.gz
  libfs6_1.0.2-1+squeeze1_amd64.deb
  libfs6-dbg_1.0.2-1+squeeze1_amd64.deb
  libfs-dev_1.0.2-1+squeeze1_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/e1ufyxu-0006cr...@franck.debian.org



Processing of libxvmc_1.0.7-1+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxvmc_1.0.7-1+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libxvmc_1.0.7-1+deb7u1.dsc
  libxvmc_1.0.7.orig.tar.gz
  libxvmc_1.0.7-1+deb7u1.diff.gz
  libxvmc1_1.0.7-1+deb7u1_amd64.deb
  libxvmc1-dbg_1.0.7-1+deb7u1_amd64.deb
  libxvmc-dev_1.0.7-1+deb7u1_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/e1ufyxs-0006bn...@franck.debian.org



Processing of libxcursor_1.1.13-1+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxcursor_1.1.13-1+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libxcursor_1.1.13-1+deb7u1.dsc
  libxcursor_1.1.13.orig.tar.gz
  libxcursor_1.1.13-1+deb7u1.diff.gz
  libxcursor1_1.1.13-1+deb7u1_amd64.deb
  libxcursor1-udeb_1.1.13-1+deb7u1_amd64.udeb
  libxcursor1-dbg_1.1.13-1+deb7u1_amd64.deb
  libxcursor-dev_1.1.13-1+deb7u1_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/e1ufycm-0007ym...@franck.debian.org



Processing of libxcursor_1.1.10-2+squeeze1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxcursor_1.1.10-2+squeeze1_amd64.changes uploaded successfully to localhost
along with the files:
  libxcursor_1.1.10-2+squeeze1.dsc
  libxcursor_1.1.10.orig.tar.gz
  libxcursor_1.1.10-2+squeeze1.diff.gz
  libxcursor1_1.1.10-2+squeeze1_amd64.deb
  libxcursor1-udeb_1.1.10-2+squeeze1_amd64.udeb
  libxcursor1-dbg_1.1.10-2+squeeze1_amd64.deb
  libxcursor-dev_1.1.10-2+squeeze1_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/e1ufycm-0007y3...@franck.debian.org



Processing of libxext_1.1.2-1+squeeze1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxext_1.1.2-1+squeeze1_amd64.changes uploaded successfully to localhost
along with the files:
  libxext_1.1.2-1+squeeze1.dsc
  libxext_1.1.2.orig.tar.gz
  libxext_1.1.2-1+squeeze1.diff.gz
  libxext6_1.1.2-1+squeeze1_amd64.deb
  libxext6-udeb_1.1.2-1+squeeze1_amd64.udeb
  libxext6-dbg_1.1.2-1+squeeze1_amd64.deb
  libxext-dev_1.1.2-1+squeeze1_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/e1ufycm-0007yd...@franck.debian.org



Processing of libxrender_0.9.6-1+squeeze1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxrender_0.9.6-1+squeeze1_amd64.changes uploaded successfully to localhost
along with the files:
  libxrender_0.9.6-1+squeeze1.dsc
  libxrender_0.9.6.orig.tar.gz
  libxrender_0.9.6-1+squeeze1.diff.gz
  libxrender1_0.9.6-1+squeeze1_amd64.deb
  libxrender1-udeb_0.9.6-1+squeeze1_amd64.udeb
  libxrender1-dbg_0.9.6-1+squeeze1_amd64.deb
  libxrender-dev_0.9.6-1+squeeze1_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/e1ufycn-0007yd...@franck.debian.org



Processing of libxinerama_1.1.2-1+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxinerama_1.1.2-1+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libxinerama_1.1.2-1+deb7u1.dsc
  libxinerama_1.1.2.orig.tar.gz
  libxinerama_1.1.2-1+deb7u1.diff.gz
  libxinerama1_1.1.2-1+deb7u1_amd64.deb
  libxinerama1-udeb_1.1.2-1+deb7u1_amd64.udeb
  libxinerama1-dbg_1.1.2-1+deb7u1_amd64.deb
  libxinerama-dev_1.1.2-1+deb7u1_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/e1ufyct-0007ea...@franck.debian.org



libxfixes_5.0-4+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 May 2013 10:12:48 +0200
Source: libxfixes
Binary: libxfixes3 libxfixes3-udeb libxfixes3-dbg libxfixes-dev
Architecture: source amd64
Version: 1:5.0-4+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libxfixes-dev - X11 miscellaneous 'fixes' extension library (development 
headers)
 libxfixes3 - X11 miscellaneous 'fixes' extension library
 libxfixes3-dbg - X11 miscellaneous 'fixes' extension library (debug package)
 libxfixes3-udeb - X11 miscellaneous 'fixes' extension library (udeb)
Changes: 
 libxfixes (1:5.0-4+deb7u1) wheezy-security; urgency=high
 .
   * integer overflow in XFixesGetCursorImage() [CVE-2013-1983]
Checksums-Sha1: 
 976361be414130cde0ea25eb1baab48e811dcbeb 2165 libxfixes_5.0-4+deb7u1.dsc
 694ef9e36e4fa4e1e8fb7c129e839019f8c12e1b 314994 libxfixes_5.0.orig.tar.gz
 546067f6c5b05ff31cab90b6cd94fd9ddeace063 7469 libxfixes_5.0-4+deb7u1.diff.gz
 8df7fec87579ae7ac4ce9ad80bd714963868b505 21290 
libxfixes3_5.0-4+deb7u1_amd64.deb
 7f0bfcf945984009a7da1d068e39c1a1e853a18b 7118 
libxfixes3-udeb_5.0-4+deb7u1_amd64.udeb
 6c8c1b44538279fc6a58a603a1e17d02b52fab0f 57184 
libxfixes3-dbg_5.0-4+deb7u1_amd64.deb
 de6e2d3b89e377fb3591f5d0608dec8e309dd2fc 22974 
libxfixes-dev_5.0-4+deb7u1_amd64.deb
Checksums-Sha256: 
 6d384fa5c2d2dbb93e4b15774f5c7fdc8e282c8b59a50aa28d2e8762e1e6cf09 2165 
libxfixes_5.0-4+deb7u1.dsc
 3c25f2fcf2983834b932756399cb538e69beb0d739f992f9719073fcedaa4405 314994 
libxfixes_5.0.orig.tar.gz
 c732e46f27ae8e67f761490aad301c1e197888bd730103735cb94fb10e2d41e0 7469 
libxfixes_5.0-4+deb7u1.diff.gz
 7433a045e9015829e4dd42c9972108afb0a4a24c160504bc4e9e0d539e0b3d58 21290 
libxfixes3_5.0-4+deb7u1_amd64.deb
 97cf7ed69e2a8477ea6c34b1576464f6aaf1d0456e1a3eddb3beeb9dc099c987 7118 
libxfixes3-udeb_5.0-4+deb7u1_amd64.udeb
 8ff076c430b51006daa7e3c8b775981f6dfb69d460a183af437c19ae11223a71 57184 
libxfixes3-dbg_5.0-4+deb7u1_amd64.deb
 9ec14caef75d53e6e0dc4a26c212da00ce9745ad5d994cbd9c0550de0d62f869 22974 
libxfixes-dev_5.0-4+deb7u1_amd64.deb
Files: 
 41f9c0b66c8e9a27b1e2b8f585d34db3 2165 x11 optional libxfixes_5.0-4+deb7u1.dsc
 0a2139e91df4758218e0fddbd549e13c 314994 x11 optional libxfixes_5.0.orig.tar.gz
 1c3734abd0e3c7e284b7f8ee23512f28 7469 x11 optional 
libxfixes_5.0-4+deb7u1.diff.gz
 1fe12b1ac8afe86524ef7410ee0b6eea 21290 libs optional 
libxfixes3_5.0-4+deb7u1_amd64.deb
 116e3d474026120e1d4243ddc7781729 7118 debian-installer optional 
libxfixes3-udeb_5.0-4+deb7u1_amd64.udeb
 c0d29c86a5d030c24dba33b7181e0732 57184 debug extra 
libxfixes3-dbg_5.0-4+deb7u1_amd64.deb
 a5c689bbb0ca0008a248ae5e4c8cba8f 22974 libdevel optional 
libxfixes-dev_5.0-4+deb7u1_amd64.deb
Package-Type: udeb

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

iQIcBAEBCAAGBQJRkkAGAAoJEDEBgAUJBeQM2BMQAOgyoNVWB6Q0Y/lGINjm5WKD
umseke4HzccMixw+FLxvPZmyY5ujqH4o9h/zwv8xRCt2vXZCglgE+btdX8t4hQgH
MasTKuVgnNrxGgbp14kXe7HyrOdTv6chObf+wDb3L02WFkZmapd/QEkeBBKUvyAr
pL8Xl0jFiEeNY7DDqzHnqy7z8IEtk1HkqWpVi8fEVe/dS7nJp3DRUxsQXo7gfn1I
qIbDJYvGudCZ+T9whkBYWFbVK0xTKDX7FZLUsUFvTmWfppfqVki7wKaxyzZAFKFA
X/sCXcT+0jnwzSFCGnIykOuLvzG2kQcVNTEMUFUrGoT0BI3GwvuhXDvsjGJee2M6
Nhz67paz83MLaA01J1POH0j8hWIm+ENYqCQCxzJvE15swQJA4FY8a1W9kmlpkFZ/
i0xKELzZbjsuPcEj/604NVGLCuHgwqR+KoYJzjMWqmXu/cf0DL3tYcrnRxIsYP9k
Z2WdFbKm1Cvtc4Vh6bIOw9qfVE4K2RRfMMTXUnLukAjxxAYS9KlNYxCxv0nxDAiX
E/kRJRcFiV1hcKl6mcAvjH2XtMtEN4NpsdbeKlwygsytuaZ2MkkxdSdEy2DFxRII
Bjd06dy6SUXDXAznnBeGP9oLNFfLGDaXq6eWdll+8tH0GvY2bWhm9YbnEcED0oGk
hMkxEk72H82/fCOsnCeU
=k3V1
-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/e1ufyd4-0007gi...@franck.debian.org



libxinerama_1.1-3+squeeze1_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 May 2013 19:43:25 +
Source: libxinerama
Binary: libxinerama1 libxinerama1-udeb libxinerama1-dbg libxinerama-dev
Architecture: source amd64
Version: 2:1.1-3+squeeze1
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libxinerama-dev - X11 Xinerama extension library (development headers)
 libxinerama1 - X11 Xinerama extension library
 libxinerama1-dbg - X11 Xinerama extension library (debug package)
 libxinerama1-udeb - X11 Xinerama extension library (udeb)
Changes: 
 libxinerama (2:1.1-3+squeeze1) oldstable-security; urgency=low
 .
   * CVE-2013-1985
Checksums-Sha1: 
 f002bb6604a60ec50987afefe39fca2eef06405c 1427 libxinerama_1.1-3+squeeze1.dsc
 ca6d7f12eca8125a418922f95df8750995c2bfe4 298301 libxinerama_1.1.orig.tar.gz
 a9015c349dfd11f067e37c6d3967fd1ef4698122 16006 
libxinerama_1.1-3+squeeze1.diff.gz
 457165a24c5cd4884eafd75bb018525b8e796fc8 12560 
libxinerama1_1.1-3+squeeze1_amd64.deb
 20cb5754cccaf90ff7c939ee58a6d9a01d586285 4080 
libxinerama1-udeb_1.1-3+squeeze1_amd64.udeb
 5570d6913fec15e8b4a58c6653721af6e5f571fd 26906 
libxinerama1-dbg_1.1-3+squeeze1_amd64.deb
 8bc41b6c95344d04026661febdeb57f54711154f 15186 
libxinerama-dev_1.1-3+squeeze1_amd64.deb
Checksums-Sha256: 
 b5118845dfa97da173861b16918ac67dd121e0a67781fc7f83c4cff935433d63 1427 
libxinerama_1.1-3+squeeze1.dsc
 5825a8cd41781c5532a1ed522e59f89d59091538c53dc8d2aa98a7349c79ee92 298301 
libxinerama_1.1.orig.tar.gz
 913241d4f6847329aea2ae03a37108b1fde9fb71c7f84c3bcf0840ee935d076c 16006 
libxinerama_1.1-3+squeeze1.diff.gz
 ce17fbdaa0f8dccc20559e633ebc090fd7c0a67ca87339abf4d15ea0b9d3b210 12560 
libxinerama1_1.1-3+squeeze1_amd64.deb
 14652e56037ae7eafdfcc4e443ad55b331a3ca7c31576796c7c4449a1e82cd0c 4080 
libxinerama1-udeb_1.1-3+squeeze1_amd64.udeb
 dffe7367872e4e3bc8789ce1f6b7b937670e4825a29c718349a8882e850b7098 26906 
libxinerama1-dbg_1.1-3+squeeze1_amd64.deb
 d82b78d77340abbab399d7573e4b7f0561e073be41e1afe422b57e35c7149f01 15186 
libxinerama-dev_1.1-3+squeeze1_amd64.deb
Files: 
 2f74c7f84fad3d3151b4dda6ba1e9707 1427 x11 optional 
libxinerama_1.1-3+squeeze1.dsc
 42b9fc01984c452ee416076c0977b0b3 298301 x11 optional 
libxinerama_1.1.orig.tar.gz
 c921db63f6632e14d61e6258c3ef3066 16006 x11 optional 
libxinerama_1.1-3+squeeze1.diff.gz
 4c240c62fe822dbbe1a6d180d9fff280 12560 libs optional 
libxinerama1_1.1-3+squeeze1_amd64.deb
 5e2a314da495c1b4d1acacd084e7e91c 4080 debian-installer optional 
libxinerama1-udeb_1.1-3+squeeze1_amd64.udeb
 8261bf44c3bbeba029ba4793bbf1ccf1 26906 debug extra 
libxinerama1-dbg_1.1-3+squeeze1_amd64.deb
 b9e49addf4a0c7f80657566ed82df56d 15186 libdevel optional 
libxinerama-dev_1.1-3+squeeze1_amd64.deb
Package-Type: udeb

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

iEYEARECAAYFAlGVOoMACgkQXm3vHE4uylo+oACghGy5IwMSSqMedTOJf5fsp7Xj
XbgAn2oXrVL/sV5n0BSYyQUQ+4CC5Ucr
=6yN4
-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/e1ufydb-0007lr...@franck.debian.org



libxp_1.0.1-2+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 May 2013 17:04:24 +0200
Source: libxp
Binary: libxp6 libxp6-dbg libxp-dev
Architecture: source amd64
Version: 1:1.0.1-2+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libxp-dev  - X Printing Extension (Xprint) client library (development files)
 libxp6 - X Printing Extension (Xprint) client library
 libxp6-dbg - X Printing Extension (Xprint) client library (unstripped)
Changes: 
 libxp (1:1.0.1-2+deb7u1) wheezy-security; urgency=high
 .
   * integer overflows calculating memory needs for replies [CVE-2013-2062]
Checksums-Sha1: 
 4a32b38d6fe51de9d3d56266bddfc8fbf08802a3 2078 libxp_1.0.1-2+deb7u1.dsc
 b13317d263d3e2b4bddfd9f32be0b0070f34d06f 361703 libxp_1.0.1.orig.tar.gz
 7c90d57d37d3448c71721ef2c105b9238c477430 557218 libxp_1.0.1-2+deb7u1.diff.gz
 1f757c4ec5191de5b395f848bb665851f974af3c 24082 libxp6_1.0.1-2+deb7u1_amd64.deb
 19c6e16e8a9773962a00ead797507bdcbda14f59 121364 
libxp6-dbg_1.0.1-2+deb7u1_amd64.deb
 7756db835e65787093e39e0e42b05d2333c970bc 90012 
libxp-dev_1.0.1-2+deb7u1_amd64.deb
Checksums-Sha256: 
 9405c91d28297bf79924b029ef7f7ef86e68e4832db3fbbc4c9c5959cf527450 2078 
libxp_1.0.1-2+deb7u1.dsc
 8204fe105909f0312922a51773413183831d45e4c3a800f897fc8b89d2ba8dfb 361703 
libxp_1.0.1.orig.tar.gz
 c54873f42ecc59551f671548dbf4fc13fab9a95917e5bd2fbbd3ebee56ca1d1d 557218 
libxp_1.0.1-2+deb7u1.diff.gz
 60e667e3f7fc0b3324f542bc712442e96c94b3a1fc4de50739a5bf2cc7473b05 24082 
libxp6_1.0.1-2+deb7u1_amd64.deb
 eb35859a9dfec9a2fa03d6fb9c488bb39a229f7640e3bc40861dd3d682c4d05b 121364 
libxp6-dbg_1.0.1-2+deb7u1_amd64.deb
 2abf335677530305d9a946428cb2a77ffd0d7b599242f29178de4fa0d1cf3d55 90012 
libxp-dev_1.0.1-2+deb7u1_amd64.deb
Files: 
 035b90bdeac7fca5e5b9412ca061086e 2078 x11 optional libxp_1.0.1-2+deb7u1.dsc
 a960c831f11e6b4249fde78a5b969000 361703 x11 optional libxp_1.0.1.orig.tar.gz
 057523130c913769ebb3544d4f9c3a05 557218 x11 optional 
libxp_1.0.1-2+deb7u1.diff.gz
 45846c3c268baca4c99c3f26535c3242 24082 libs optional 
libxp6_1.0.1-2+deb7u1_amd64.deb
 5354d8b8435e4dba2c9849d5e7dfbc1a 121364 debug extra 
libxp6-dbg_1.0.1-2+deb7u1_amd64.deb
 5904f426ec948e9525b7426241e0c498 90012 libdevel optional 
libxp-dev_1.0.1-2+deb7u1_amd64.deb

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

iQIcBAEBCAAGBQJRkl8pAAoJEDEBgAUJBeQMtGEQAJvpuhJOmRSxCjnU5O/Grihx
U7pG2O3wi0QZm1Id8nZCB+syTrBez4D0a+OxCS5eBZcDJ0MEA8OMas3oqmtTt3PB
vyFLU2FxQxfv6XJ86PuGa5XWrqrG1Dj5oEC3bhYgIGmgwKGegI/QqzsOmPCsDLM8
kYarbgtfSlhBHt4CalT13APD3rMoFWu0H1/ACns7vR5Xf8amCD9oJH+hRKtbJSEp
QxcS4x/XcnH/pQR8L52DkSIlQrMmlXDMQyGMX1mCocevzsifJjgMw6NbhMYS/8Uv
sb1QSABYdSFNAtpJIWDokv0V5WbNemxmDUHlVtyPMWc013i5rysM99futbij1m/Z
YtCCG62x0isweIn/aNY6Cs1br3LmBIntmpdDVn+GF/qV7aTdbS7hV9kJc67PzRxq
gtJLE31QWdYVToln3XZtiKxLXOE+6uXmnF8yoZu06YooTGi7a1SmW0yVM0pQMs/k
pXR+BBQlXD1zFQJkUKlSqkPSHlopjMAXAv85ZvosxGXXIms9LryQUJJrDY6GsP5x
gTQGO/aoeHVTYt8OwXMz3aFtg+rNqzyQ+zeRakyH3zL3ammejAFn+4NsAB88oYaH
PJPtSFsVIicpfwS1TDtoN+JyAXs95ppFOXvgO2rHtSpg/mhHb+IGk/9kW8760nOL
wc9llk4VfgWrngNLh77U
=dBnC
-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/e1ufye2-0007pt...@franck.debian.org



libxrandr_1.3.0-3+squeeze1_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 May 2013 10:25:39 +
Source: libxrandr
Binary: libxrandr2 libxrandr2-dbg libxrandr-dev
Architecture: source amd64
Version: 2:1.3.0-3+squeeze1
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libxrandr-dev - X11 RandR extension library (development headers)
 libxrandr2 - X11 RandR extension library
 libxrandr2-dbg - X11 RandR extension library (debug package)
Changes: 
 libxrandr (2:1.3.0-3+squeeze1) oldstable-security; urgency=low
 .
   * CVE-2013-1986
Checksums-Sha1: 
 979b21ced0a6b321d207af7353b27ab5cb0ce13c 1404 libxrandr_1.3.0-3+squeeze1.dsc
 ab410ec41be47652bd919446806b68311f1a38da 313819 libxrandr_1.3.0.orig.tar.gz
 72a2c8419566f12ecea6100a074e29aa0d73312c 18533 
libxrandr_1.3.0-3+squeeze1.diff.gz
 e6d615cc8b38864abf8f1c7ae8c6a23463f63ab7 28778 
libxrandr2_1.3.0-3+squeeze1_amd64.deb
 7eb089504a4eca46c51c5337ce23fa9fe43294a9 77834 
libxrandr2-dbg_1.3.0-3+squeeze1_amd64.deb
 440225ffcd94c5792ace31cbc09ac8d833378a37 36948 
libxrandr-dev_1.3.0-3+squeeze1_amd64.deb
Checksums-Sha256: 
 3b96a57784413608b1d7285b331b49d012d3c10ad93b45375ef1a80aa06eeb12 1404 
libxrandr_1.3.0-3+squeeze1.dsc
 c2a7cfeb8506734bca4c23321c1ba5d9e6f9b1bd2f2434033a6bd9eea6814b7a 313819 
libxrandr_1.3.0.orig.tar.gz
 c878ca5122d50ca461e61afbd5f281ac5151c791d3ee4170676cee3ab0a5e9dd 18533 
libxrandr_1.3.0-3+squeeze1.diff.gz
 323e88e733e22cab18d088bbf4cae943cf88942e61f63004238292ed8e1733f2 28778 
libxrandr2_1.3.0-3+squeeze1_amd64.deb
 9773d0dfea4c876cd1ae3f2ab87722dfe1b0537de454b316d9e3b2a160a363dc 77834 
libxrandr2-dbg_1.3.0-3+squeeze1_amd64.deb
 08cbb9d6fe26e1055bd9c459bec096d88d1f7e4adc78aef8820b00b0870c4fe2 36948 
libxrandr-dev_1.3.0-3+squeeze1_amd64.deb
Files: 
 8ba6645a0757e8b389ab45e04299388b 1404 x11 optional 
libxrandr_1.3.0-3+squeeze1.dsc
 2ad5e56b03ea3a647778172dccb4e6b9 313819 x11 optional 
libxrandr_1.3.0.orig.tar.gz
 53ade0cf394ea8cc44b9ec222f0ad625 18533 x11 optional 
libxrandr_1.3.0-3+squeeze1.diff.gz
 0d84c13bcb25710ba2c105a9734188b2 28778 libs optional 
libxrandr2_1.3.0-3+squeeze1_amd64.deb
 679254771ed0a630bbd77daeca86be24 77834 debug extra 
libxrandr2-dbg_1.3.0-3+squeeze1_amd64.deb
 e22fda071480d316294b2f873555d247 36948 libdevel optional 
libxrandr-dev_1.3.0-3+squeeze1_amd64.deb

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

iEYEARECAAYFAlGXV7UACgkQXm3vHE4uylpefwCghAfuDWDLmjF3FWvVU02hFqUN
pOYAn2ukm+WBGBqygeFPIgy+Uzob+RGB
=ot1t
-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/e1ufyes-0007wo...@franck.debian.org



libxres_1.0.4-1+squeeze_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 14 May 2013 20:42:01 +
Source: libxres
Binary: libxres1 libxres1-dbg libxres-dev
Architecture: source amd64
Version: 2:1.0.4-1+squeeze
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libxres-dev - X11 Resource extension library (development headers)
 libxres1   - X11 Resource extension library
 libxres1-dbg - X11 Resource extension library (debug package)
Changes: 
 libxres (2:1.0.4-1+squeeze) oldstable-security; urgency=low
 .
   * CVE-2013-1988
Checksums-Sha1: 
 db6f352491d9d00f95ee216d9df506f616c6493c 1459 libxres_1.0.4-1+squeeze.dsc
 247017602baa1f7ee1cef3af290f26044a6be038 337993 libxres_1.0.4.orig.tar.gz
 841817f51dfd4e221772c6e7cf958876ed7b8e88 15305 libxres_1.0.4-1+squeeze.diff.gz
 70f4b0059a9c4371120d5add4772ef22749edb79 11548 
libxres1_1.0.4-1+squeeze_amd64.deb
 ed542a3a4943b9fc9867b30e3ef5d6418c34bbfc 25438 
libxres1-dbg_1.0.4-1+squeeze_amd64.deb
 bdd42822015382444fb469219e03b454a0330a35 13368 
libxres-dev_1.0.4-1+squeeze_amd64.deb
Checksums-Sha256: 
 2a3109e8786097e9635e0355ff8e45ee99fbf3135459fde800e0d4e0c0ce6c50 1459 
libxres_1.0.4-1+squeeze.dsc
 e847cfed8277c4b06321595d577f4308964bbbce4f242d8f51c1a440ae7a1dee 337993 
libxres_1.0.4.orig.tar.gz
 146b026f2a2780ef797711ee2adb80e332ab932cac24b3a9589d49eb79810b78 15305 
libxres_1.0.4-1+squeeze.diff.gz
 d5b68eaba3c96dfd824254e0b76c08114635da53a009340fd23134beb2cb9ec1 11548 
libxres1_1.0.4-1+squeeze_amd64.deb
 e1c00cf04683c096fb2244f574ddc41168f8399e0d2ea55ba3e78be47fe4cca1 25438 
libxres1-dbg_1.0.4-1+squeeze_amd64.deb
 da401aa2dd4a53fac1bfd7d90e8fc872a257cefd843b89cf6a1a0229fb5f1bc0 13368 
libxres-dev_1.0.4-1+squeeze_amd64.deb
Files: 
 1ed56c883a0dce2a322b7de5e95c8d86 1459 x11 optional libxres_1.0.4-1+squeeze.dsc
 4e56ff6934f81503145a9c6452683329 337993 x11 optional libxres_1.0.4.orig.tar.gz
 ff000625fa43229206b5192322b56a20 15305 x11 optional 
libxres_1.0.4-1+squeeze.diff.gz
 dc184de1414bd22f0b3b6be788762d55 11548 libs optional 
libxres1_1.0.4-1+squeeze_amd64.deb
 a535254bbf0a7ca0b3b600713e080c5a 25438 debug extra 
libxres1-dbg_1.0.4-1+squeeze_amd64.deb
 c74965c5f0325ba419ddb8e078a9cbb8 13368 libdevel optional 
libxres-dev_1.0.4-1+squeeze_amd64.deb

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

iEYEARECAAYFAlGSohsACgkQXm3vHE4uylpe6gCePUqqAJ+pionJuUJ3HpNDC1z4
kIAAnjnB8dOFSY5+ON0PhbIISSqU7f9/
=7F1B
-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/e1ufyen-00081s...@franck.debian.org



libxres_1.0.6-1+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 May 2013 00:32:14 +0200
Source: libxres
Binary: libxres1 libxres1-dbg libxres-dev
Architecture: source amd64
Version: 2:1.0.6-1+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libxres-dev - X11 Resource extension library (development headers)
 libxres1   - X11 Resource extension library
 libxres1-dbg - X11 Resource extension library (debug package)
Changes: 
 libxres (2:1.0.6-1+deb7u1) wheezy-security; urgency=high
 .
   * integer overflows calculating memory needs for replies [CVE-2013-1988]
Checksums-Sha1: 
 9e1e94c9a4ce02ee2ef4ae31e64a8d7834c41e63 2128 libxres_1.0.6-1+deb7u1.dsc
 a2d7bcfddacecc94e4c6ff6e443a01460891abae 339980 libxres_1.0.6.orig.tar.gz
 b11103dc053441827d4a1fe7ee9ec0fba2f6b8bd 15240 libxres_1.0.6-1+deb7u1.diff.gz
 5e6f3aa73f74bc0626458dc3ac5d3a6582d2fd36 15084 
libxres1_1.0.6-1+deb7u1_amd64.deb
 63faa6cfeb3b703c86e581bf4998d9baa4f30645 29920 
libxres1-dbg_1.0.6-1+deb7u1_amd64.deb
 3688519859a952fe0c9445591e442bfabf580c80 16628 
libxres-dev_1.0.6-1+deb7u1_amd64.deb
Checksums-Sha256: 
 699350925103cce10dce59b0fcc96f54c5a280e06166d80e972da8c90adb35c6 2128 
libxres_1.0.6-1+deb7u1.dsc
 a1e00be68b93532467e10e658dc56d75148c45127707e2376358bec66fcf5aff 339980 
libxres_1.0.6.orig.tar.gz
 9b5877adfd35a8655f6c5ec2a5487ff96efcc619360e12b2c27c1247f4a92dd1 15240 
libxres_1.0.6-1+deb7u1.diff.gz
 f8b36416ebdc33c8732b99eafda42ca04516a8edb37e39ef20ce44ad7fac9a9e 15084 
libxres1_1.0.6-1+deb7u1_amd64.deb
 7c4a13047382417f7752b4fb1770da5a443e1b224b131b1915f7b5fa59a827ff 29920 
libxres1-dbg_1.0.6-1+deb7u1_amd64.deb
 7d46843b001c4dafeb37f2c638e08c30aa0f52fa21b9c960e40a56fe75b364d2 16628 
libxres-dev_1.0.6-1+deb7u1_amd64.deb
Files: 
 896f388d5cdc38444f3a319c39dc70b6 2128 x11 optional libxres_1.0.6-1+deb7u1.dsc
 9205eaaa7d085b5f7bc23235bd9637b6 339980 x11 optional libxres_1.0.6.orig.tar.gz
 9ff17498f2ebe918bb262600280d63bb 15240 x11 optional 
libxres_1.0.6-1+deb7u1.diff.gz
 451a504b57565acbbab7959874418f29 15084 libs optional 
libxres1_1.0.6-1+deb7u1_amd64.deb
 d29a19b871130dfc4b802ab18539eb91 29920 debug extra 
libxres1-dbg_1.0.6-1+deb7u1_amd64.deb
 844064f4e9e6d99e3d33221298fd30ab 16628 libdevel optional 
libxres-dev_1.0.6-1+deb7u1_amd64.deb

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

iQIcBAEBCAAGBQJRkiYnAAoJEDEBgAUJBeQMpToP/1itDEq1yqIBrrS6w6padKdP
uGLUlyLC0/7xpI5bW3fxZ0Xl2HxqqqkBd8ZGYa6pa84KZonLl2pRX1v7brD8Shvx
whvl/i1mubxMAGVONkviSi47xIbvJ4WAidd8U9tiF15ynM6XDWrduNrihkq6aaeg
uFxXyPQ7eiJPEAxg1vgHXJ+a+K2V9cTIZY+XoAt04eFTh1X4GMVDGn0rkVJR23Qs
htGfgTcgtppJG3cKp8QSrQ8glIsaxpv6W2AJr5YwpoCqXuCmzOmdNiujcKxPnV4q
6UO5S3Ey3qzv9bkOxLpTrPv+3wJCYEbNzWP0SWqJ2b9Dl7YmgYbGobb65BE/NWY5
PwRvxoBjIPBocrqlMjS3Ah+JM3H67XwdJqc2MQJMoDnhXmkwgsLdXWx2nJT2FYyE
8GsqANSy9hE3Ou7PFBvXY4VReEgrJ0pLxYmlD79cJOwQNzB1CuZhB+qJyUbw7pMB
ogGgDwRO6TN82jCldMB1qyq4KXZVVZhwGtfS4wr93QeW0Frues4EszbnQ7h3AmT9
sYK72HAw41F4LbJ8wuFDM3VU0iNoKeHVU6B+PD8lrTGWr9Fx7weLFkYU9G2kPTV0
NJV7ZS3xoYJXYUXkWjrKpsfQBDwQsfmj6Od/GpnuY6ggmzGvdxvMs9jQOj65AN92
A61ayD12rAAIfHMoc/zP
=hhD2
-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/e1ufyf8-000854...@franck.debian.org



libxt_1.0.7-1+squeeze1_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 14 May 2013 19:41:49 +
Source: libxt
Binary: libxt6 libxt6-dbg libxt-dev
Architecture: source amd64
Version: 1:1.0.7-1+squeeze1
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libxt-dev  - X11 toolkit intrinsics library (development headers)
 libxt6 - X11 toolkit intrinsics library
 libxt6-dbg - X11 toolkit intrinsics library (debug package)
Changes: 
 libxt (1:1.0.7-1+squeeze1) oldstable-security; urgency=low
 .
   * CVE-2013-2002 CVE-2013-2005
Checksums-Sha1: 
 a68938c0358b27552d083f3264b80b4d90063f58 1312 libxt_1.0.7-1+squeeze1.dsc
 51638fa9326464da7ea3f158d19421ce04659f54 717173 libxt_1.0.7.orig.tar.gz
 c3250e286b513ea7600cf49364e3468b84a574d3 18958 libxt_1.0.7-1+squeeze1.diff.gz
 55224ab179fd5910f77b060b23c0317755931889 194518 
libxt6_1.0.7-1+squeeze1_amd64.deb
 9e2ed1156bf99c35c64da669f0b70d76ed35f0d2 516288 
libxt6-dbg_1.0.7-1+squeeze1_amd64.deb
 3dc21f0ff720b6b612657e1d68f4850d1d7bebfd 523638 
libxt-dev_1.0.7-1+squeeze1_amd64.deb
Checksums-Sha256: 
 4abcb94ec3a92d0f42bf0dcae02bfe26a4f3078fdf7290b94667ac4bb0dd3159 1312 
libxt_1.0.7-1+squeeze1.dsc
 d97006defd690d5c1616b88838fe93111dcb0d050816653936092a138b9a83a7 717173 
libxt_1.0.7.orig.tar.gz
 d42aaece888786f7cb98dfe93a4e7be9d17797f02cde9788dfaa458ab1ff7bd2 18958 
libxt_1.0.7-1+squeeze1.diff.gz
 6f7c1e052e7054f4a9fa4cfdd81e3546ba8529def28b4edaaece665853e895f0 194518 
libxt6_1.0.7-1+squeeze1_amd64.deb
 b92bf10f2ef26e4c9f4051e2dda981f265d0dbf5af6f78013a98248e807e1d71 516288 
libxt6-dbg_1.0.7-1+squeeze1_amd64.deb
 cdd0e842926494ca9bc92fa7939c87ddcf48900f15fd1d6faf1336e3a8560d02 523638 
libxt-dev_1.0.7-1+squeeze1_amd64.deb
Files: 
 d435860b3e38b404acd5a9493555bf17 1312 x11 optional libxt_1.0.7-1+squeeze1.dsc
 28f627c7a5ca08c2413ce91d21c177d8 717173 x11 optional libxt_1.0.7.orig.tar.gz
 e3d8f74249fc3d9bc5b480d2ff64d484 18958 x11 optional 
libxt_1.0.7-1+squeeze1.diff.gz
 85c56f6b7f871e98b88996d41e937440 194518 libs optional 
libxt6_1.0.7-1+squeeze1_amd64.deb
 670e8bc0ba442913c3d35e588b4c740e 516288 debug extra 
libxt6-dbg_1.0.7-1+squeeze1_amd64.deb
 d6f582bdf176415ddd85f0f6a6ba9d15 523638 libdevel optional 
libxt-dev_1.0.7-1+squeeze1_amd64.deb

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

iEYEARECAAYFAlGWii4ACgkQXm3vHE4uyloEvQCgixM4UwS0XxZN2i5T/nY7kwJc
8b4AoNFo3JtmbosN8UtOYJPuWuZ6r9Z9
=2zS5
-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/e1ufyfy-0008db...@franck.debian.org



libxt_1.1.3-1+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 May 2013 19:53:37 +0200
Source: libxt
Binary: libxt6 libxt6-dbg libxt-dev libxt-doc
Architecture: source amd64 all
Version: 1:1.1.3-1+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libxt-dev  - X11 toolkit intrinsics library (development headers)
 libxt-doc  - X11 toolkit intrinsics library (documentation)
 libxt6 - X11 toolkit intrinsics library
 libxt6-dbg - X11 toolkit intrinsics library (debug package)
Changes: 
 libxt (1:1.1.3-1+deb7u1) wheezy-security; urgency=high
 .
   * Unchecked return values of XGetWindowProperty [CVE-2013-2005]
   * unvalidated length in _XtResourceConfigurationEH [CVE-2013-2002]
Checksums-Sha1: 
 2887a076f26f98de1eaa306112b59af28420c21a 2160 libxt_1.1.3-1+deb7u1.dsc
 43c5428311eb851796bde60f77ab3fe4f9eb2666 939673 libxt_1.1.3.orig.tar.gz
 3b7122398db211c87c5c2658680dde662388c180 13014 libxt_1.1.3-1+deb7u1.diff.gz
 7fbf19b0a6db1160dbb30e956ebd9f513b871e38 212070 libxt6_1.1.3-1+deb7u1_amd64.deb
 f42c9d467ac09a8e5f166cffde9e89771c930bc3 664418 
libxt6-dbg_1.1.3-1+deb7u1_amd64.deb
 396ff701f2458100d988c46600ee087486990193 517762 
libxt-dev_1.1.3-1+deb7u1_amd64.deb
 b8192fe6f81a9e23e21d50cdfba3160a410e2bbb 482646 
libxt-doc_1.1.3-1+deb7u1_all.deb
Checksums-Sha256: 
 4bd14b84d6ebd6fd3b77304d1e0169e45f1db5f77b8181d47c3ce2409ea5fdd0 2160 
libxt_1.1.3-1+deb7u1.dsc
 a56f1c13430f8ee0c040de1e3a7f439c9707d2f9c9b5ceee8bdbb74fddbe5560 939673 
libxt_1.1.3.orig.tar.gz
 39b0ebb5858d62c3a57b0f02998e81310e064201cdc444f6c6718f2ac7d99f7b 13014 
libxt_1.1.3-1+deb7u1.diff.gz
 6c847f31f53a9756650184126e64eadbdd02c2c75a8d2218befadf866f993a41 212070 
libxt6_1.1.3-1+deb7u1_amd64.deb
 5d90a0dcc97c417e0edd6ea5b9cfec3cdfcfcdc276a5ac80a66b3c8eb853e66b 664418 
libxt6-dbg_1.1.3-1+deb7u1_amd64.deb
 73a91920dca46923dbfcd33056fba75ce00d9aa4179a548729fbc921bacc8866 517762 
libxt-dev_1.1.3-1+deb7u1_amd64.deb
 d45716772ce0191a58a8952e3f94d6a6273d0ab043a86a846d3db20f5daa6b3a 482646 
libxt-doc_1.1.3-1+deb7u1_all.deb
Files: 
 b1e80635fd2e7b60324b5b5859220ec8 2160 x11 optional libxt_1.1.3-1+deb7u1.dsc
 7a80ed7aba06668b12ebd0910318a1f1 939673 x11 optional libxt_1.1.3.orig.tar.gz
 32c9e29e6e104ff5ec9b161ddd8385ef 13014 x11 optional 
libxt_1.1.3-1+deb7u1.diff.gz
 fc4ad0a9f4971e7158e45657a0e4a94b 212070 libs optional 
libxt6_1.1.3-1+deb7u1_amd64.deb
 6291c38f1e87018c363b0d9692c600cd 664418 debug extra 
libxt6-dbg_1.1.3-1+deb7u1_amd64.deb
 5b1a0bb747a308c35eda1eed72d723a8 517762 libdevel optional 
libxt-dev_1.1.3-1+deb7u1_amd64.deb
 588dfdbd1e59a90b593d1ae74a48dd44 482646 doc optional 
libxt-doc_1.1.3-1+deb7u1_all.deb

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

iQIcBAEBCAAGBQJRknurAAoJEDEBgAUJBeQMvaYP/ixDEuxCvW2URHX10AeNU1wS
H1QFfJyNHv8GJ2IdcnBdYcp1ahcLL9V7I0YXpBplOCsj1zLoCoRPp+cOTfHTsmCg
Bv4E4s58T/MoimYUBK4VBsvYplYJYUtHCZMTXnYgwe9tNAlHf/ho/MBKUwUaohP1
59LyiZF50LQvIGE8Hv1iFdPY3nVSWn2wevMUw+chZPDBOZLDcHmCt983dgKy9JXa
aPtRBbHeKwKtISglDXxWzVzpytr+4j6IJoMUjxDHO+4tc+pW69r1xMN09lb7Fykn
C+PRHooCwO1Wp5KamoCEHrTTWVK+i54tHhBGviZ3zSPEwWmp//nyad6CugHT8rnT
spYKUqxcCFK3+qTQkqK0qRy0b5lf1sCDD9AI0ojslE/FzqP63C7HyYhdT4G/id6H
FVKxUptJQl/T2F2Q/KcpL2yFyOFS6gGnGUHvieZc7nVO3bBoEAnGwC50BqsTq5RI
u/qTcHJhq8m+u7MMrVQnsTHOmTD3TvK/STniQkltckAnHfBlJyVlCvXRYENdJmRP
fWh1KRwLl8GjE/ZkPbfE3y7FJ1virn1QyclnUngEb8n/h954sgrY38YBzgk7B1kU
z0ftY/nUnqKqSP+6+UA4iErBucOt08vjXzzmQyAWa0hetuZwV8/Ml4Gb72hnQwqP
hKtZXEM+GV2SC+Gn8POD
=r1Db
-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/e1ufyfu-0008p8...@franck.debian.org



libxv_1.0.5-1+squeeze1_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 13 May 2013 21:18:21 +
Source: libxv
Binary: libxv1 libxv1-dbg libxv-dev
Architecture: source amd64
Version: 2:1.0.5-1+squeeze1
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libxv-dev  - X11 Video extension library (development headers)
 libxv1 - X11 Video extension library
 libxv1-dbg - X11 Video extension library (debug package)
Changes: 
 libxv (2:1.0.5-1+squeeze1) oldstable-security; urgency=low
 .
   * CVE-2013-1989 CVE-2013-2066
Checksums-Sha1: 
 1f7ae79ddea8cc75ac0f6c7d1a05254c0f4000c5 1384 libxv_1.0.5-1+squeeze1.dsc
 b7eec220d9a591d34bb080857d7bf0d6a5312de3 367331 libxv_1.0.5.orig.tar.gz
 0e04467ffda05533e9fd0cca026a66dfc37afb6d 16196 libxv_1.0.5-1+squeeze1.diff.gz
 d17d84d8309b48c81911adb14103a47caa6f5985 18100 
libxv1_1.0.5-1+squeeze1_amd64.deb
 18ad59891e1ba51c3f12e2ff7a6525424b913f1c 37112 
libxv1-dbg_1.0.5-1+squeeze1_amd64.deb
 af6cf6f099075e0be507bc10c3d6a67dd7f2beb0 42764 
libxv-dev_1.0.5-1+squeeze1_amd64.deb
Checksums-Sha256: 
 aedf739c827ef1ff0f7e0230680f2a82e55ac284bf33cec45d260c00fdb97795 1384 
libxv_1.0.5-1+squeeze1.dsc
 289b7133458e7db981edc0fe0a6b59d0606b3749cfd944b97dfdea95f6a4c1b6 367331 
libxv_1.0.5.orig.tar.gz
 50006a4d350924faf14196dfa7505f5fc8292bebbf72d63d367ae2b9a33eb4bd 16196 
libxv_1.0.5-1+squeeze1.diff.gz
 ea9910dd08be5f5f2e646b4a76ec1a95520f8cac635079b51085d449669fe9ec 18100 
libxv1_1.0.5-1+squeeze1_amd64.deb
 29771138bf84503a04b277fc9da0438a632ebe25f7a951894dbff48ea4087e01 37112 
libxv1-dbg_1.0.5-1+squeeze1_amd64.deb
 e08034f0c5e1b40542fc455469791405e94c38b7707ae460655cc23b9f509200 42764 
libxv-dev_1.0.5-1+squeeze1_amd64.deb
Files: 
 850c73aa740d5072cf56adefe2d93ca3 1384 x11 optional libxv_1.0.5-1+squeeze1.dsc
 6ee98790de6b3cd470074e60057d5c5c 367331 x11 optional libxv_1.0.5.orig.tar.gz
 8ba3699a2a1ff44e5247d023b9366c51 16196 x11 optional 
libxv_1.0.5-1+squeeze1.diff.gz
 a20a9f077bb96b19e8f657980ff38cb5 18100 libs optional 
libxv1_1.0.5-1+squeeze1_amd64.deb
 9e39dd108940a0cdf4498693c2d5399a 37112 debug extra 
libxv1-dbg_1.0.5-1+squeeze1_amd64.deb
 2f4542dc350bbc94e13c3b51c70713ae 42764 libdevel optional 
libxv-dev_1.0.5-1+squeeze1_amd64.deb

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

iEYEARECAAYFAlGRWZ0ACgkQXm3vHE4uylqFSwCfdmyxxKfeqPC4Un+XQxlKKklB
IzEAniXGaebzwZ7AhBHZQMHDZgtCrTSV
=R4Dd
-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/e1ufygk-0008sl...@franck.debian.org



libxv_1.0.7-1+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 May 2013 23:08:52 +0200
Source: libxv
Binary: libxv1 libxv1-dbg libxv-dev
Architecture: source amd64
Version: 2:1.0.7-1+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libxv-dev  - X11 Video extension library (development headers)
 libxv1 - X11 Video extension library
 libxv1-dbg - X11 Video extension library (debug package)
Changes: 
 libxv (2:1.0.7-1+deb7u1) wheezy-security; urgency=high
 .
   * integer overflows calculating memory needs for replies [CVE-2013-1989]
   * buffer overflow in XvQueryPortAttributes() [CVE-2013-2066]
Checksums-Sha1: 
 3ca6c4374b80f6ad2b7c9f311a289108696767ec 2040 libxv_1.0.7-1+deb7u1.dsc
 07d751da29493f35932dbd4c9a43277a68fe5fa6 368108 libxv_1.0.7.orig.tar.gz
 d9ae4537783de8500910d7867efc4ba0660330ff 16403 libxv_1.0.7-1+deb7u1.diff.gz
 10d301c08d33f1f1cb7c4be9fe76a33922a84a5e 22140 libxv1_1.0.7-1+deb7u1_amd64.deb
 69839007060cb4a41402618c45dc591b5f609320 44672 
libxv1-dbg_1.0.7-1+deb7u1_amd64.deb
 c00b17455c1a187b03e59beaad4f7569e80d1e9a 45998 
libxv-dev_1.0.7-1+deb7u1_amd64.deb
Checksums-Sha256: 
 40bc15447518a908016efa9ef622105d984db3720407b5297508a64da2803e76 2040 
libxv_1.0.7-1+deb7u1.dsc
 e597d2d4443ce25048ffb808a6276f28afb1a92f10d0d645abd4079c9b813570 368108 
libxv_1.0.7.orig.tar.gz
 63f571d0dcb14203b7f4001ab48ab7a2a10aedf561afa66f93e7499729b803b3 16403 
libxv_1.0.7-1+deb7u1.diff.gz
 9ac823a51a60ce4761693b2720298e34b9b0575c65676ad9d3ceddee7bde 22140 
libxv1_1.0.7-1+deb7u1_amd64.deb
 6c1764796f3aab071d8714e0cccbee5fa901a09db01380bed073ab1ed3531869 44672 
libxv1-dbg_1.0.7-1+deb7u1_amd64.deb
 489f0126f04c035107cc2cd21ee33df8f367876fb1e93d9f9563acf285c2b882 45998 
libxv-dev_1.0.7-1+deb7u1_amd64.deb
Files: 
 16a3d4ad5adbdd67b9553c11d633fbef 2040 x11 optional libxv_1.0.7-1+deb7u1.dsc
 066145bab1f182476589af0ee9c18152 368108 x11 optional libxv_1.0.7.orig.tar.gz
 33839b0135376b02b148b9fa47a27df7 16403 x11 optional 
libxv_1.0.7-1+deb7u1.diff.gz
 766392eb890231b4c784d13d2cd86c1d 22140 libs optional 
libxv1_1.0.7-1+deb7u1_amd64.deb
 aa8594c77add33fe20d769a61a0d10f6 44672 debug extra 
libxv1-dbg_1.0.7-1+deb7u1_amd64.deb
 e23f5d7ad64036806c0b6a8b6aa3cf94 45998 libdevel optional 
libxv-dev_1.0.7-1+deb7u1_amd64.deb

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

iQIcBAEBCAAGBQJRksQSAAoJEDEBgAUJBeQMc3wQAL9rYM9Y4T7JZyhduKA0vKih
Xy7b/zICILcWX/dGrC0+0fmusqScDUmoIWwxGLYTgOLoB9toU3XFjKfR7pfwyDZR
HRbn7GFG82JV2J/dv+Eh7xsv2V9xGN9TPR+bWa1S/NWxpqe+FrE1ue2NabZ28hnH
j6D5vwe9s0dD1uraFSWdei+qJEnq7QERzh4f1/xj3MntvSFskM/auqzyFCz8wjws
e35J3XJSruspig3jnJssPHSa0s1pxwhL6SKMTUvWINcR7tlZyvaKcxBCqSP0THvh
AD1uM+g2PBoifMOi/1Xudlj+CyXBvYETPVcv5b2fRwVBCGbjTEXEC2Xuxf8isgwA
j5OgwddQNlOpxTMS8dmpvmzIy6AZ3FnCnEr5juHz3RozATeYzBAohre4wEJzh7hk
DutTSpI3kSTvPFIO0XykJidCnEEOaPLCCoEni8dHnle6SGtV4Q69M0WaFSRBL2iv
PgnCDsG4+LOMR+IN80x6h6e1kylf+lcvbooOU9O/9NZGQLELjEfPvRzC5NUqhZsC
UVBXpfB9MzTJqHZnUPnGSXsInK2EFZoCyGsj+BdQKYT31AyJu0XIO0BC5baUVpw1
TPZ05NXpzoHdHjy95+bY60kekJQnswiM4vmeOITU1kydL7fr5sqHrNdc2MPawLMQ
yuIWhX03Mu5dmI52SJfs
=ik4H
-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/e1ufygg-0008vq...@franck.debian.org



libxxf86dga_1.1.1-2+squeeze1_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 May 2013 20:17:41 +
Source: libxxf86dga
Binary: libxxf86dga1 libxxf86dga1-dbg libxxf86dga-dev
Architecture: source amd64
Version: 2:1.1.1-2+squeeze1
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libxxf86dga-dev - X11 Direct Graphics Access extension library (development 
headers
 libxxf86dga1 - X11 Direct Graphics Access extension library
 libxxf86dga1-dbg - X11 Direct Graphics Access extension library (debug package)
Changes: 
 libxxf86dga (2:1.1.1-2+squeeze1) oldstable-security; urgency=low
 .
   * CVE-2013-2000 CVE-2013-1991
Checksums-Sha1: 
 fd936aee72fb1a97f478d3d42a20072fce0d5dfc 1472 libxxf86dga_1.1.1-2+squeeze1.dsc
 7d933b59eae3b40c6822438e04365c2164afed50 309436 libxxf86dga_1.1.1.orig.tar.gz
 cc33daef50f03170fcf10ee9a93d248fd056ee7a 15982 
libxxf86dga_1.1.1-2+squeeze1.diff.gz
 1af0d9d7ffe80fa2befc2631923e5c23e7411ed5 19452 
libxxf86dga1_1.1.1-2+squeeze1_amd64.deb
 70274dff502d3cba8a3a8e0e4b7efadf00db101f 50658 
libxxf86dga1-dbg_1.1.1-2+squeeze1_amd64.deb
 8f28c088962db67e54b45b9863c74b26717b7f58 25200 
libxxf86dga-dev_1.1.1-2+squeeze1_amd64.deb
Checksums-Sha256: 
 6881184abd38d4f4cf26a4421515b74541d114fabb8bc04fab816c18335c73a8 1472 
libxxf86dga_1.1.1-2+squeeze1.dsc
 f18cb12c73d8ef8861ae00eefcebcf7d542051887c92a99935da2707fdec355c 309436 
libxxf86dga_1.1.1.orig.tar.gz
 c9c22073ac306f4607358562cd4c280230d8e86846be67ca9aa630d2683c88fe 15982 
libxxf86dga_1.1.1-2+squeeze1.diff.gz
 4ab1fe2ee469a10cee2ae7b4f07ddd27c7036343f8644d25e2dcbe36c54a1b6a 19452 
libxxf86dga1_1.1.1-2+squeeze1_amd64.deb
 bc5a951fcce2e4b7034721572210b41987e4898232c0184fb94d7f0cba0b5647 50658 
libxxf86dga1-dbg_1.1.1-2+squeeze1_amd64.deb
 f2d3feea3526b9a8570ff474e91680d488f0bdb289252e9c4a00d56481a9b470 25200 
libxxf86dga-dev_1.1.1-2+squeeze1_amd64.deb
Files: 
 baf8f0c2dbc24098b8538be63ee5a487 1472 x11 optional 
libxxf86dga_1.1.1-2+squeeze1.dsc
 ecb81708157e1a1eeaba0e124f0ade08 309436 x11 optional 
libxxf86dga_1.1.1.orig.tar.gz
 d54989dccf1a75389afbcbea6ce9db50 15982 x11 optional 
libxxf86dga_1.1.1-2+squeeze1.diff.gz
 29d4f7f7db0650e892441dd702517e90 19452 libs optional 
libxxf86dga1_1.1.1-2+squeeze1_amd64.deb
 1f5bb589b31fbd787fb1110ff0ffc9b8 50658 debug extra 
libxxf86dga1-dbg_1.1.1-2+squeeze1_amd64.deb
 bc01e73d14d2b60608473eeac0bc3726 25200 libdevel optional 
libxxf86dga-dev_1.1.1-2+squeeze1_amd64.deb

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

iEYEARECAAYFAlGVP2AACgkQXm3vHE4uylprzQCfZAk0qENg9bt0llRk0bPYNEiY
904AniX6cix5STm8EiepSWfnhfiuxSJq
=0sSu
-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/e1ufyh6-7b...@franck.debian.org



Processing of libxp_1.0.0.xsf1-2+squeeze1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxp_1.0.0.xsf1-2+squeeze1_amd64.changes uploaded successfully to localhost
along with the files:
  libxp_1.0.0.xsf1-2+squeeze1.dsc
  libxp_1.0.0.xsf1.orig.tar.gz
  libxp_1.0.0.xsf1-2+squeeze1.diff.gz
  libxp6_1.0.0.xsf1-2+squeeze1_amd64.deb
  libxp6-dbg_1.0.0.xsf1-2+squeeze1_amd64.deb
  libxp-dev_1.0.0.xsf1-2+squeeze1_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/e1ufyhl-9y...@franck.debian.org



Processing of libxext_1.3.1-2+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxext_1.3.1-2+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libxext_1.3.1-2+deb7u1.dsc
  libxext_1.3.1.orig.tar.gz
  libxext_1.3.1-2+deb7u1.diff.gz
  libxext-doc_1.3.1-2+deb7u1_all.deb
  libxext6_1.3.1-2+deb7u1_amd64.deb
  libxext6-udeb_1.3.1-2+deb7u1_amd64.udeb
  libxext6-dbg_1.3.1-2+deb7u1_amd64.deb
  libxext-dev_1.3.1-2+deb7u1_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/e1ufyhn-bm...@franck.debian.org



Processing of libxfixes_4.0.5-1+squeeze1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxfixes_4.0.5-1+squeeze1_amd64.changes uploaded successfully to localhost
along with the files:
  libxfixes_4.0.5-1+squeeze1.dsc
  libxfixes_4.0.5.orig.tar.gz
  libxfixes_4.0.5-1+squeeze1.diff.gz
  libxfixes3_4.0.5-1+squeeze1_amd64.deb
  libxfixes3-udeb_4.0.5-1+squeeze1_amd64.udeb
  libxfixes3-dbg_4.0.5-1+squeeze1_amd64.deb
  libxfixes-dev_4.0.5-1+squeeze1_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/e1ufyhs-eh...@franck.debian.org



Processing of libxrandr_1.3.2-2+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxrandr_1.3.2-2+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libxrandr_1.3.2-2+deb7u1.dsc
  libxrandr_1.3.2.orig.tar.gz
  libxrandr_1.3.2-2+deb7u1.diff.gz
  libxrandr2_1.3.2-2+deb7u1_amd64.deb
  libxrandr2-dbg_1.3.2-2+deb7u1_amd64.deb
  libxrandr-dev_1.3.2-2+deb7u1_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/e1ufyhs-el...@franck.debian.org



libxxf86dga_1.1.3-2+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 15 May 2013 18:55:18 +0200
Source: libxxf86dga
Binary: libxxf86dga1 libxxf86dga1-dbg libxxf86dga-dev
Architecture: source amd64
Version: 2:1.1.3-2+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libxxf86dga-dev - X11 Direct Graphics Access extension library (development 
headers
 libxxf86dga1 - X11 Direct Graphics Access extension library
 libxxf86dga1-dbg - X11 Direct Graphics Access extension library (debug package)
Changes: 
 libxxf86dga (2:1.1.3-2+deb7u1) wheezy-security; urgency=high
 .
   * integer overflows calculating memory needs for replies [CVE-2013-1991]
   * buffer overflows due to not validating length or offset values in replies
 [CVE-2013-2000]
Checksums-Sha1: 
 af7f808222fb4fac93403c709d965b6d7ba2e923 2146 libxxf86dga_1.1.3-2+deb7u1.dsc
 ce8a4859f317fcf74877731667330843c9872289 351699 libxxf86dga_1.1.3.orig.tar.gz
 5135979072d0eb5b212bc8b8d983f474a5193cf6 16532 
libxxf86dga_1.1.3-2+deb7u1.diff.gz
 5d19ad7188dc6778b6fdec47144871f99513890d 22876 
libxxf86dga1_1.1.3-2+deb7u1_amd64.deb
 0e0e8839bcff5283bd48fa91218a3436c7026ea4 59562 
libxxf86dga1-dbg_1.1.3-2+deb7u1_amd64.deb
 ed6a8242356435a6d664a5394eb09bdf96f0eda7 27820 
libxxf86dga-dev_1.1.3-2+deb7u1_amd64.deb
Checksums-Sha256: 
 ac5981873bb851aa8745134cc8f3165af36a035f81b96e53949c800e227c2816 2146 
libxxf86dga_1.1.3-2+deb7u1.dsc
 25d0f161905277c5eb3aba21226d63fd5ac6c22e3c40f99f4b3e380a7a08e7ce 351699 
libxxf86dga_1.1.3.orig.tar.gz
 9aa7a202b7d53870f6334dc38a21400a9e173482855d4f7117a4711f74b00eef 16532 
libxxf86dga_1.1.3-2+deb7u1.diff.gz
 daf75cd654a904f2863e3673e89f2fdf7ba5eb603aaf8f0f555390cf3cf514de 22876 
libxxf86dga1_1.1.3-2+deb7u1_amd64.deb
 0aba4dc6f4cf7a5f89dac8bfba0ab0e52782df81fadc6b62a64e6ca0e5193543 59562 
libxxf86dga1-dbg_1.1.3-2+deb7u1_amd64.deb
 089321f3c53161b603e70baf9185f8afd168467f7fb01c1320e7c6b34cdc5c9c 27820 
libxxf86dga-dev_1.1.3-2+deb7u1_amd64.deb
Files: 
 e4920be33f25ce4fc6a09df12182b02e 2146 x11 optional 
libxxf86dga_1.1.3-2+deb7u1.dsc
 3d58873171c7765956ce257e6a7e4865 351699 x11 optional 
libxxf86dga_1.1.3.orig.tar.gz
 6bd9c459bf4267cb0afb4aae04867273 16532 x11 optional 
libxxf86dga_1.1.3-2+deb7u1.diff.gz
 9d603cc2cab1d26ba937bbb3d900abe2 22876 libs optional 
libxxf86dga1_1.1.3-2+deb7u1_amd64.deb
 dd264fdd7eed4dc9c134f52253fbc56a 59562 debug extra 
libxxf86dga1-dbg_1.1.3-2+deb7u1_amd64.deb
 2abb38df8b8f2b6e0ce1fe0a4d14a125 27820 libdevel optional 
libxxf86dga-dev_1.1.3-2+deb7u1_amd64.deb

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

iQIcBAEBCAAGBQJRk8DJAAoJEDEBgAUJBeQMHZ4P/RwRLuodqZVPrWAL1oKRkK7c
sCnb8/ggXFopF+HAB/fgHGMzymnIWLu1Ce2BmNpJrwdNIBubFG3d0654jCv1UZnc
bg1JfsOrwZBNfbE6YwWblaJdeG8l3/rBKQNXQrRuHu2kEV/Q12tvI8LGki6Vk8lU
cjnwkixfy9nWNjCH+SPMkEcbEV7zSDR4HeG1u9PoPPRKlurroF8vPHdUjhWVAL7p
LhwIjW6UbJvXC9K2Mu7KRNWDNh620La2sv8UjN5CuUdHKsRFgaOPm+8kriuEJFhE
Bk3jgat44XcKn10THxxf9G+wnkupTm1+8/cFxCrHkrcpeXzXeHXE8lozcktdUpBI
wlRn+lTKe0+KjsxQbcceor32BNEmTe3SIKOP1N9l2IvHXp+i65484kfMHGGdHhBf
omzUFrXEiPeRAnTfOS3BGGcrhbzBaacC6UitCDYw2yflCCwl8Y7vh24SqMxf2mjb
f1fKVQdE8ewvMlf/Eliclyo3t8xuJGA93YeMkwZ+A77CCvvT0lXfOUX6hCwSjipe
hlVJHyXoKbeqHgZ1H4KW3WPOtyiyMaKm3hvi6804XHIrcf1kKf7qkDB09O89hJvP
dRhdBiCAON0pGDEyXqCdCTHyCWuFLHK2IzDkv5s3YFy4nyBcSq6D8y+STqVL+CfD
qjrwAnh0369KI0Pu/W2D
=oW8c
-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/e1ufyhr-dd...@franck.debian.org



Processing of xserver-xorg-video-openchrome_0.2.904+svn842-2+squeeze1_amd64.changes

2013-05-23 Thread Debian FTP Masters
xserver-xorg-video-openchrome_0.2.904+svn842-2+squeeze1_amd64.changes uploaded 
successfully to localhost
along with the files:
  xserver-xorg-video-openchrome_0.2.904+svn842-2+squeeze1.dsc
  xserver-xorg-video-openchrome_0.2.904+svn842.orig.tar.gz
  xserver-xorg-video-openchrome_0.2.904+svn842-2+squeeze1.diff.gz
  xserver-xorg-video-openchrome_0.2.904+svn842-2+squeeze1_amd64.deb
  xserver-xorg-video-via_0.2.904+svn842-2+squeeze1_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/e1ufyhs-e9...@franck.debian.org



Processing of libxtst_1.1.0-3+squeeze1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxtst_1.1.0-3+squeeze1_amd64.changes uploaded successfully to localhost
along with the files:
  libxtst_1.1.0-3+squeeze1.dsc
  libxtst_1.1.0.orig.tar.gz
  libxtst_1.1.0-3+squeeze1.diff.gz
  libxtst6_1.1.0-3+squeeze1_amd64.deb
  libxtst6-dbg_1.1.0-3+squeeze1_amd64.deb
  libxtst-dev_1.1.0-3+squeeze1_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/e1ufyhs-ep...@franck.debian.org



mesa_8.0.5-6_amd64.changes ACCEPTED into unstable

2013-05-23 Thread Debian FTP Masters
Mapping sid to unstable.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 23 May 2013 10:50:24 +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 libglu1-mesa libglu1-mesa-dev
Architecture: source amd64
Version: 8.0.5-6
Distribution: sid
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@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
 libglu1-mesa - Mesa OpenGL utility library (GLU)
 libglu1-mesa-dev - Mesa OpenGL utility library -- 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 (8.0.5-6) sid; urgency=high
 .
   * integer overflows calculating memory needs for replies [CVE-2013-1993]
Checksums-Sha1: 
 3a0782beb1f3eb450f33e101e15575d83b510bb4 4423 mesa_8.0.5-6.dsc
 f4d07c6a467edb02f89ed80f990ef4f8241d9b53 52363 mesa_8.0.5-6.diff.gz
 3130f1cc6e25b6a64c9e15059833a2cb29e0cc62 952830 
libgl1-mesa-swx11_8.0.5-6_amd64.deb
 0fe22aa4943c8a3791f03056e16e23623e83f018 2916908 
libgl1-mesa-swx11-dbg_8.0.5-6_amd64.deb
 56972242c5464ce7507df5d40c563cf5d805906d 110 
libgl1-mesa-swx11-dev_8.0.5-6_amd64.deb
 26513e9e01937709a5b4972b53c101ce835408a3 2923074 
libxatracker1_8.0.5-6_amd64.deb
 bd065e4fd37ad3dcbd69883544ddb6134fce48a7 1439602 
libxatracker1-dbg_8.0.5-6_amd64.deb
 3c2cf80abc295c7953f96c5d6343be34163d00d6 35254 
libxatracker-dev_8.0.5-6_amd64.deb
 575dd6ae0f008a5aef2512ca9e1fc34b76a84282 9611928 libgbm1_8.0.5-6_amd64.deb
 d92be3c085b3d566861ee61466f7d7df0771481e 4372646 libgbm1-dbg_8.0.5-6_amd64.deb
 7ee9f34d37660e0206f5d8b613777a92b27710ca 33730 libgbm-dev_8.0.5-6_amd64.deb
 bd1ac56a0ba9a59d9743c1f9b37b7ecc24489102 78290 libegl1-mesa_8.0.5-6_amd64.deb
 31811add0295d18ea4bb416b3bdb0accbfba57e3 176986 
libegl1-mesa-dbg_8.0.5-6_amd64.deb
 

xserver-xorg-video-openchrome_0.2.906-2+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 15 May 2013 20:50:12 +0200
Source: xserver-xorg-video-openchrome
Binary: xserver-xorg-video-openchrome xserver-xorg-video-openchrome-dbg
Architecture: source amd64
Version: 1:0.2.906-2+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 xserver-xorg-video-openchrome - X.Org X server -- VIA display driver
 xserver-xorg-video-openchrome-dbg - X.Org X server -- VIA display driver -- 
debugging symbols
Changes: 
 xserver-xorg-video-openchrome (1:0.2.906-2+deb7u1) wheezy-security; 
urgency=high
 .
   * integer overflows calculating memory needs for replies [CVE-2013-1994]
Checksums-Sha1: 
 e084f23dd66e268e8f58136223e8fa651ddbf3d5 2685 
xserver-xorg-video-openchrome_0.2.906-2+deb7u1.dsc
 1d81160bd9eb8da2d7f2bfbb7eb05ed8a09e7d97 625459 
xserver-xorg-video-openchrome_0.2.906.orig.tar.gz
 0482b075184900e1bf00024cd89cee68aa2e83ce 11662 
xserver-xorg-video-openchrome_0.2.906-2+deb7u1.diff.gz
 d8fb1c5f07df98613c953d7dfc0796ccd09b59f9 205416 
xserver-xorg-video-openchrome_0.2.906-2+deb7u1_amd64.deb
 72b9859e2e4bffb3e3482237282b84db11a87f35 930998 
xserver-xorg-video-openchrome-dbg_0.2.906-2+deb7u1_amd64.deb
Checksums-Sha256: 
 db3d83438005eb668bfa38ff948ba465d9a3921fb5228a19660c428d0555b3f0 2685 
xserver-xorg-video-openchrome_0.2.906-2+deb7u1.dsc
 ac0af57015fe176a1a934bf3a1adbbe89747d59ff089b7fdb6bb20e830e02ab4 625459 
xserver-xorg-video-openchrome_0.2.906.orig.tar.gz
 6ba11bb0369b1e948bd84ba683fc030151996d8b8704d720533d9d8a43339c8c 11662 
xserver-xorg-video-openchrome_0.2.906-2+deb7u1.diff.gz
 e7654242833023f7fbdb9e6959095be174e73df7ce1963ff00137f50dc37865e 205416 
xserver-xorg-video-openchrome_0.2.906-2+deb7u1_amd64.deb
 617d7c435fd9cd8177899e69085a0bc3fc9d386f07a57d32253f9c9e5a005cf5 930998 
xserver-xorg-video-openchrome-dbg_0.2.906-2+deb7u1_amd64.deb
Files: 
 e6f0ae86174ccbd32ebf74e0b27aa439 2685 x11 optional 
xserver-xorg-video-openchrome_0.2.906-2+deb7u1.dsc
 d1831aae8dfcf5b5a5ae2df1143f9eb8 625459 x11 optional 
xserver-xorg-video-openchrome_0.2.906.orig.tar.gz
 8f96ba4ddb4a8e5132ea8626bfdba01b 11662 x11 optional 
xserver-xorg-video-openchrome_0.2.906-2+deb7u1.diff.gz
 bb64386b32391084eb25f1f1f814051f 205416 x11 optional 
xserver-xorg-video-openchrome_0.2.906-2+deb7u1_amd64.deb
 7bff35e1574e58eff8545ee40230d17f 930998 debug extra 
xserver-xorg-video-openchrome-dbg_0.2.906-2+deb7u1_amd64.deb

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

iQIcBAEBCAAGBQJRk9r7AAoJEDEBgAUJBeQMjkgP+wQKOf68Ib/WDDFdExOb673E
QqeYtiZsAy2+9SG3wdZHHjheuMtUNTBkKEKfcuuWrl6LwXO817YDUufmhh4jddwl
PgQlEwI3PzCUF2CLiC/HMomd9R7We+5gbt+4VOzfwySrFV9vVmI+WhT3vipW7555
mbPYFY5v4YwSmGJYDd1f3JaGGncVvuSwZVfzr7LPHoC/aXiz+5x7UyoLRTfwEeph
fA0NaB3GGEyM135P6eqhTXS/URFJU3hMiQnLvIyTbuR8D9XajweOOIuhYLTAFRhQ
0UutjilpuFTmFRnfj2H9rXOgI9TP+bSfXl4gpL9VaZUkdZgF3I88TjyS88uEpUTo
nHLLZgoBJ8cO7zl8wmXrv5KdTrVMbly6p3xK9sX2rfjca8JrukKnHDOIA1rjWnwj
NyNSyK1JPZXzGZ5jwblM7M0wPZtCyEtr+eaAEttQXNLbrLZG2e9cdLl2san+kG/4
1k7J8fqZ/GFBBbOCR/GJa2H7bJxWatYzonlQpIr5EhwFZrmXdbEJzhpG8MxtdtJJ
NI7tKK+2quHZF9A7blIDMVXosiJFTizlVxDLbgBvsbCAgIXaJHU04JGYp9DoITtb
YxdU6M4BXoCddqRzmp2ilxMfSx8kewEMBiF/DIQ3nSaHXcJeOznJ/ww9lQahvevZ
YHQtl0+DEwT1C48vm1J3
=XDSI
-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/e1ufyjv-x8...@franck.debian.org



Processing of libxi_1.6.1-1+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxi_1.6.1-1+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libxi_1.6.1-1+deb7u1.dsc
  libxi_1.6.1.orig.tar.gz
  libxi_1.6.1-1+deb7u1.diff.gz
  libxi6_1.6.1-1+deb7u1_amd64.deb
  libxi6-udeb_1.6.1-1+deb7u1_amd64.udeb
  libxi6-dbg_1.6.1-1+deb7u1_amd64.deb
  libxi-dev_1.6.1-1+deb7u1_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/e1ufymm-00023l...@franck.debian.org



Processing of libxxf86vm_1.1.2-1+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxxf86vm_1.1.2-1+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libxxf86vm_1.1.2-1+deb7u1.dsc
  libxxf86vm_1.1.2.orig.tar.gz
  libxxf86vm_1.1.2-1+deb7u1.diff.gz
  libxxf86vm1_1.1.2-1+deb7u1_amd64.deb
  libxxf86vm1-dbg_1.1.2-1+deb7u1_amd64.deb
  libxxf86vm-dev_1.1.2-1+deb7u1_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/e1ufymn-00024k...@franck.debian.org



Processing of libxtst_1.2.1-1+deb7u1_amd64.changes

2013-05-23 Thread Debian FTP Masters
libxtst_1.2.1-1+deb7u1_amd64.changes uploaded successfully to localhost
along with the files:
  libxtst_1.2.1-1+deb7u1.dsc
  libxtst_1.2.1.orig.tar.gz
  libxtst_1.2.1-1+deb7u1.diff.gz
  libxtst-doc_1.2.1-1+deb7u1_all.deb
  libxtst6_1.2.1-1+deb7u1_amd64.deb
  libxtst6-udeb_1.2.1-1+deb7u1_amd64.udeb
  libxtst6-dbg_1.2.1-1+deb7u1_amd64.deb
  libxtst-dev_1.2.1-1+deb7u1_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/e1ufymr-00028r...@franck.debian.org



libfs_1.0.2-1+squeeze1_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 14 May 2013 19:25:14 +
Source: libfs
Binary: libfs6 libfs6-dbg libfs-dev
Architecture: source amd64
Version: 2:1.0.2-1+squeeze1
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libfs-dev  - X11 Font Services library (development headers)
 libfs6 - X11 Font Services library
 libfs6-dbg - X11 Font Services library (debug package)
Changes: 
 libfs (2:1.0.2-1+squeeze1) oldstable-security; urgency=low
 .
   * CVE-2013-1996
Checksums-Sha1: 
 b7ea4ef7c23fd91d4597e0379adb4f6ba03d6e37 1339 libfs_1.0.2-1+squeeze1.dsc
 83ea394d81be3c452af63f07b620ff995d830fc7 358796 libfs_1.0.2.orig.tar.gz
 36b1b46dfcc4d86bdb96561e363e462ce05ff267 223186 libfs_1.0.2-1+squeeze1.diff.gz
 2aeaae6603ac1f38b112cc5df5d43be9ee3a36e6 31866 
libfs6_1.0.2-1+squeeze1_amd64.deb
 a16f37835838097a1b982d4e0ac9baeb08820723 61458 
libfs6-dbg_1.0.2-1+squeeze1_amd64.deb
 681f4698271402cdddc1c5fd67c5d4af1ffa3020 37204 
libfs-dev_1.0.2-1+squeeze1_amd64.deb
Checksums-Sha256: 
 5078f7f903f9f3551727b4a79274e0842da3039c8e528193701c432dfd1ba496 1339 
libfs_1.0.2-1+squeeze1.dsc
 72b10caec887591f1dcc65658e1635cba4d9a0e7b915b2e1989d8ece2fd0bafd 358796 
libfs_1.0.2.orig.tar.gz
 3a4f2ccdbb25797eea1fd05ecdc6c2444f9bb757b249b082f141d37ed5258013 223186 
libfs_1.0.2-1+squeeze1.diff.gz
 06a6266faca22a5e26dd6d5102625176b173ad78082c99174fc8cc23f5953687 31866 
libfs6_1.0.2-1+squeeze1_amd64.deb
 af77b11893663d1f21fd42056239bf10332fed63e11ae26695cb3ff31c0d7d24 61458 
libfs6-dbg_1.0.2-1+squeeze1_amd64.deb
 fc3f2767c3ccc7da1cedda856d8956bed815df472a51793c7294c6c7c9a9f765 37204 
libfs-dev_1.0.2-1+squeeze1_amd64.deb
Files: 
 e8d0e5bee242afb759e004c8e5b39488 1339 x11 optional libfs_1.0.2-1+squeeze1.dsc
 4c5527bc7f5773e6714ef2ebdfa99c49 358796 x11 optional libfs_1.0.2.orig.tar.gz
 4dd0a85c43fbcdddfcb65fc2832e73fa 223186 x11 optional 
libfs_1.0.2-1+squeeze1.diff.gz
 abb1e89064f3812967e0c4f4fd8e2d05 31866 libs optional 
libfs6_1.0.2-1+squeeze1_amd64.deb
 380fe43934b9b8ba08e42a2f7d559a7c 61458 debug extra 
libfs6-dbg_1.0.2-1+squeeze1_amd64.deb
 c6a2738ece2dff3424b9d8d6115970af 37204 libdevel optional 
libfs-dev_1.0.2-1+squeeze1_amd64.deb

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

iEYEARECAAYFAlGSkCUACgkQXm3vHE4uylrN1wCfRroWrniBTKbSFrm3CdnCiP9n
7YQAoL6Pb6zPrVzYKYgoXl2u8sDcYqi/
=soqT
-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/e1ufyw6-0005bh...@franck.debian.org



libfs_1.0.4-1+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 13 May 2013 23:32:48 +0200
Source: libfs
Binary: libfs6 libfs6-dbg libfs-dev
Architecture: source amd64
Version: 2:1.0.4-1+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libfs-dev  - X11 Font Services library (development headers)
 libfs6 - X11 Font Services library
 libfs6-dbg - X11 Font Services library (debug package)
Changes: 
 libfs (2:1.0.4-1+deb7u1) wheezy-security; urgency=high
 .
   * Sign extension issue and integer overflow in FSOpenServer()
 [CVE-2013-1996]
Checksums-Sha1: 
 d41c1c6dab91fba0ed2eaae567e058efb57cb95d 2043 libfs_1.0.4-1+deb7u1.dsc
 2e2fbe92551a2ae913fdaf1d99b7ee00d416c113 374702 libfs_1.0.4.orig.tar.gz
 096f7d76755a71172d4748a3cf44daf16b47e829 6678 libfs_1.0.4-1+deb7u1.diff.gz
 a6cda37d3ba4226e0a8dc760f5fa566a9d130edd 36402 libfs6_1.0.4-1+deb7u1_amd64.deb
 a0926eab7693767264330e8e49f97aef4616d53f 81966 
libfs6-dbg_1.0.4-1+deb7u1_amd64.deb
 88127a1edb94a4279fe8e009dd167b6b3be0425c 44454 
libfs-dev_1.0.4-1+deb7u1_amd64.deb
Checksums-Sha256: 
 8417d207b0cbe9bb39deee8c4377f94794b06c3754fb88af7e04cedbce832126 2043 
libfs_1.0.4-1+deb7u1.dsc
 092a5ff2b75a6d74b3498637665bdc21fccc3a2434d7745412e89286c10cbd1c 374702 
libfs_1.0.4.orig.tar.gz
 f981aeb382e310b1a72a8112d42c362d639b9615d81b22a7c5e0d30992d53400 6678 
libfs_1.0.4-1+deb7u1.diff.gz
 3d7c502a96272c0de4dfda6a164e1253245b8c89a8cb4134250a1095453c7033 36402 
libfs6_1.0.4-1+deb7u1_amd64.deb
 6512f8d87ec02f9cce20ba02b612b4528c89ea684818a63dc63d688e1ea3c5e2 81966 
libfs6-dbg_1.0.4-1+deb7u1_amd64.deb
 7116f6251e71820011628c22e678b17bee1f232732bccd4b721b4eda5eef71c1 44454 
libfs-dev_1.0.4-1+deb7u1_amd64.deb
Files: 
 3380960b3c574da1fef18f9412cc8670 2043 x11 optional libfs_1.0.4-1+deb7u1.dsc
 32ccecc4d82492de7aee4c8abc3a857d 374702 x11 optional libfs_1.0.4.orig.tar.gz
 dbf9bc85551569ff9ea515a947f9d320 6678 x11 optional libfs_1.0.4-1+deb7u1.diff.gz
 634696150f2529b6b082c37b49167369 36402 libs optional 
libfs6_1.0.4-1+deb7u1_amd64.deb
 5846cf3da0b3c4e44586a019f4e4a9b6 81966 debug extra 
libfs6-dbg_1.0.4-1+deb7u1_amd64.deb
 3c396f3797946ab17b83271498b45edd 44454 libdevel optional 
libfs-dev_1.0.4-1+deb7u1_amd64.deb

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

iQIcBAEBCAAGBQJRkiShAAoJEDEBgAUJBeQMe20P/jK1CmRzYYtxnWePDH0DOvHv
NBk7r6LN+MKRZXgNBAw4yHjpw6w8AjOVcmv18FrkY+/Oh01gk0fUG7XsEQNbHSlI
/MWo9eqNDsej3uL+IP0oKqHrbnrrq9ARLzpuhMC+mpmPCRGpAism4jiNTF/13cZp
9oBq7PrXJZPH1gq4rF5Qgx/7+iCzONFaTaX6yuGdJldI3t2Wp8P+nHiVo1fGMmNa
DZCT258Kok/BsNwlwmborme25Qv18pK8Quf3vfwlKj1m8UYlJw+tlHULMLoInVzt
gpQVMkyOTmnIojnbzD1XGnv/75R+1OB1bkIsPojR9S023iA2U2tMQXfbVDL6Q3bk
s1Opsak90HrfH2O6MogJnWftdjWv+jtN1qVRKH13XCn8B/6hD65ii/WoVWyQsgVm
4LR3Yx5xGoyi2z+hFM1xjhmAQ/yUBpAJbwgGqUoIUszUH6U7hq43WT3E/D+W68Zr
rDAnqwHHWjCxhAF9nIp2FSAnGPFVcu6HaYT3p3B7zKqFYHDWakqJ3b0EQyaz2LJj
gskAb7JalNZBvyAaephs4CASiHPhKbpsHrIjx+uqnwYsevJIorzZWgcioLDdhHU9
c9aQoEY/IQDzw6PP8j5gjarkZv65blN0ZWmxFNaj+sHOIKQcMzxLmn6k/n++CDMY
z/6tQfUDd28+EX9pbs19
=KaJj
-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/e1ufywt-0005eu...@franck.debian.org



libxcursor_1.1.10-2+squeeze1_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 14 May 2013 19:36:22 +
Source: libxcursor
Binary: libxcursor1 libxcursor1-udeb libxcursor1-dbg libxcursor-dev
Architecture: source amd64
Version: 1:1.1.10-2+squeeze1
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libxcursor-dev - X cursor management library (development files)
 libxcursor1 - X cursor management library
 libxcursor1-dbg - X cursor management library (unstripped)
 libxcursor1-udeb - X cursor management library (udeb)
Changes: 
 libxcursor (1:1.1.10-2+squeeze1) oldstable-security; urgency=low
 .
   * CVE-2013-2003
Checksums-Sha1: 
 142853d860e9b66d7124772c96e29c142c041f60 1522 libxcursor_1.1.10-2+squeeze1.dsc
 58d885838b5cd0f4116370b6fa69fda9d576a4a0 321468 libxcursor_1.1.10.orig.tar.gz
 9e97d4e30e00165f46ef54b3ab5dd3fc6af1e315 18029 
libxcursor_1.1.10-2+squeeze1.diff.gz
 6d88c67840da7354366641da87814261cabfdeda 26466 
libxcursor1_1.1.10-2+squeeze1_amd64.deb
 a86e71606612daf8693463d8decb2f2be24a9e29 19784 
libxcursor1-udeb_1.1.10-2+squeeze1_amd64.udeb
 d0547dee5d315021d2827876bffc3a39ba9e37cc 67362 
libxcursor1-dbg_1.1.10-2+squeeze1_amd64.deb
 8416c7aee283421f01ef35c21b947b42da6eba5b 34104 
libxcursor-dev_1.1.10-2+squeeze1_amd64.deb
Checksums-Sha256: 
 9be761459bf40b4fb6f05790cbc611efa0972f6af47c2f79f804e80b124764d0 1522 
libxcursor_1.1.10-2+squeeze1.dsc
 c42638a14fb9af6f2b602c8dccdf23d4994b5c067097c78c65df2d081c3f204d 321468 
libxcursor_1.1.10.orig.tar.gz
 2676b703604e9692e1ba42ba9d5c512cee185537683abaf702576cc4add5b8b3 18029 
libxcursor_1.1.10-2+squeeze1.diff.gz
 419f4332e3e38c0d36ed95bd8427f2aa896cefa5ff850990490ce71d29230d5b 26466 
libxcursor1_1.1.10-2+squeeze1_amd64.deb
 28dc1e7544c713815f9970fc9303e0ed05e7eb8b5cfa0aa688bba06c71c95689 19784 
libxcursor1-udeb_1.1.10-2+squeeze1_amd64.udeb
 ad199f92cdc8d0cba6c784ec9e9290b5d289f0fc607ad4b7765aa054760bf02e 67362 
libxcursor1-dbg_1.1.10-2+squeeze1_amd64.deb
 b89fc259597386ddfc6513c670ed088160b03c43218457ed0f41568f217e3d09 34104 
libxcursor-dev_1.1.10-2+squeeze1_amd64.deb
Files: 
 dcc798b72ed5476932c2ae231c9ebe8c 1522 devel optional 
libxcursor_1.1.10-2+squeeze1.dsc
 325dab5edb808b855392e55546a0e557 321468 devel optional 
libxcursor_1.1.10.orig.tar.gz
 3f5e71b42ba38e98515f92e17c688695 18029 devel optional 
libxcursor_1.1.10-2+squeeze1.diff.gz
 cecbe0db895f6de45ca5f430c4f4fee3 26466 libs optional 
libxcursor1_1.1.10-2+squeeze1_amd64.deb
 8fa58f6f6204068ada67f8bfa7577eb4 19784 debian-installer optional 
libxcursor1-udeb_1.1.10-2+squeeze1_amd64.udeb
 86918be1ca5a751bd282ef5ca480a8a1 67362 debug extra 
libxcursor1-dbg_1.1.10-2+squeeze1_amd64.deb
 76a81cd3d4fd0f5c48bbf1abe035145f 34104 libdevel optional 
libxcursor-dev_1.1.10-2+squeeze1_amd64.deb
Package-Type: udeb

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

iEYEARECAAYFAlGSkxIACgkQXm3vHE4uylrXUQCfUF6VeCb3LGKlG5htvrAK++Cd
ktYAn3sQ5eYpyU8QEE1f1Q6Cka4xtQSw
=CpoQ
-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/e1ufz1v-000665...@franck.debian.org



libxcursor_1.1.13-1+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 May 2013 00:38:17 +0200
Source: libxcursor
Binary: libxcursor1 libxcursor1-udeb libxcursor1-dbg libxcursor-dev
Architecture: source amd64
Version: 1:1.1.13-1+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libxcursor-dev - X cursor management library (development files)
 libxcursor1 - X cursor management library
 libxcursor1-dbg - X cursor management library (unstripped)
 libxcursor1-udeb - X cursor management library (udeb)
Changes: 
 libxcursor (1:1.1.13-1+deb7u1) wheezy-security; urgency=high
 .
   * signedness bug  integer overflow in _XcursorFileHeaderCreate()
 [CVE-2013-2003]
Checksums-Sha1: 
 373e8b1b076f99045148809feb4c3efac41b6fe1 2283 libxcursor_1.1.13-1+deb7u1.dsc
 703c8809d34648607072036b02264cdf0c2ad5ff 365362 libxcursor_1.1.13.orig.tar.gz
 f4fea35a431ce07fd4a22857f29158e5984277ae 18083 
libxcursor_1.1.13-1+deb7u1.diff.gz
 bc98033a782432ffef60893af683fee9dbe996a8 27092 
libxcursor1_1.1.13-1+deb7u1_amd64.deb
 3767698dda4f61de71068227ea2a0618f7bc10ae 17068 
libxcursor1-udeb_1.1.13-1+deb7u1_amd64.udeb
 2d81afabc1bae5a22fa1b18406eda823d2ebca4c 80132 
libxcursor1-dbg_1.1.13-1+deb7u1_amd64.deb
 3aad977eab67aed9ff0a40f7a4890d6ea3ffd16d 34610 
libxcursor-dev_1.1.13-1+deb7u1_amd64.deb
Checksums-Sha256: 
 61d5c088d7b320de87c442d99016b0051ca5ed570990d3a576c46128e82afe48 2283 
libxcursor_1.1.13-1+deb7u1.dsc
 df4475096192ad60c1300df7b5e2509019ad1a733a0cadcad13b5d3f4b7d615b 365362 
libxcursor_1.1.13.orig.tar.gz
 d0edf9a850d49b149f16ccc17b6a6138647ea715291aa81f65201759952ef7b2 18083 
libxcursor_1.1.13-1+deb7u1.diff.gz
 aef2fd6c1bd86a89eb0e8e6b946329a088bdcc99ce76ec18a9acf5eb2a7f399e 27092 
libxcursor1_1.1.13-1+deb7u1_amd64.deb
 5ee2864d143e90c9dd7c0b191cda082c026853d926210eb1937a8603e187325e 17068 
libxcursor1-udeb_1.1.13-1+deb7u1_amd64.udeb
 64a7b0f928d0563af21e328829fcd0d6c798b155a443a5d9124973aeb638952d 80132 
libxcursor1-dbg_1.1.13-1+deb7u1_amd64.deb
 9326bf145bc671d8a79ad5c12c0717a244a9360b3792933ffa6edd86c913dd2d 34610 
libxcursor-dev_1.1.13-1+deb7u1_amd64.deb
Files: 
 80e366464f3bbf6c158d61b6c9685d2f 2283 devel optional 
libxcursor_1.1.13-1+deb7u1.dsc
 38a6c7ce393cb5bc10e67de087f9d582 365362 devel optional 
libxcursor_1.1.13.orig.tar.gz
 7cc3f73d16d00079a680a232949f525b 18083 devel optional 
libxcursor_1.1.13-1+deb7u1.diff.gz
 d740c38d6f688be9032cd979bbe1ac7b 27092 libs optional 
libxcursor1_1.1.13-1+deb7u1_amd64.deb
 1a0bd0f25d629564c5e2565da259cdbf 17068 debian-installer optional 
libxcursor1-udeb_1.1.13-1+deb7u1_amd64.udeb
 53fa096259a918fc3026433c23ece854 80132 debug extra 
libxcursor1-dbg_1.1.13-1+deb7u1_amd64.deb
 afbccd88fde14b4ce16e13918d8161a7 34610 libdevel optional 
libxcursor-dev_1.1.13-1+deb7u1_amd64.deb
Package-Type: udeb

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

iQIcBAEBCAAGBQJRkifzAAoJEDEBgAUJBeQMXp4QANzcN7LQzZrOUjYTi9/e7o2Z
Nm7DWhas/HYYz74CfeP105aZbR49usPuyDSOACMa4LzlwshE/wBP49k0Dom9k25j
jCMUdw6RCeLbCPgsMrOVR3umIfzPbp76fYm2adVRRk/vd91AO2nLy5Sq69dWZyrQ
mBDwmsH2KPGE0V/jkR8Jv3DERWfXoWjVZyNB94eGeNf4cx9SDbZzTsOGKvuOT21x
S3rgXIDoFSUOuPCjiUDNJVmJW3KaABKnzT2KuCSDRezZradFC1P/hnswdmUZCI6S
oERMDYwwWl0IUGn17GsQaE+B+JNWAq5TRrP50MjelIidWtw/WHg/AdTBIEypkHRI
LLdbQBnhWeCg7/R2d2COrPhUzCSWwIPIRrsZwIihJN4k3EbyQnLnKYmRK6dHioy0
Rt6eTN85o5vHJzUFtobug2Jbu9+eHDiHP7RQD5qX/466tGcoE4Nujk/5AbMglJoQ
6pcTpcTWjl52JifXyb/Hc+LzH8+xCBNiL6PZSvaX50nGhs/JityhpXExyqJ39gts
K34UyDj2EBGaDHXLU7dBsLppyP9F2417ZHF0gWdgl6HEh4jYKLuG/q2OyKr6Ztw8
1HKC2f4QL8f4kClA78AjMgf2Y3OBX4oay5Qq3qFEQVJilFX2sXo4AjQ3JNPzXVqP
utkC3NbUzLjXLm1M68ut
=Q2Ya
-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/e1ufz1w-0006af...@franck.debian.org



libxext_1.1.2-1+squeeze1_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 14 May 2013 19:43:51 +
Source: libxext
Binary: libxext6 libxext6-udeb libxext6-dbg libxext-dev
Architecture: source amd64
Version: 2:1.1.2-1+squeeze1
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libxext-dev - X11 miscellaneous extensions library (development headers)
 libxext6   - X11 miscellaneous extension library
 libxext6-dbg - X11 miscellaneous extensions library (debug package)
 libxext6-udeb - X11 miscellaneous extension library (udeb)
Changes: 
 libxext (2:1.1.2-1+squeeze1) oldstable-security; urgency=low
 .
   * CVE-2013-1982
Checksums-Sha1: 
 7d36c9f26d6a45e7dd99f17cc72fa99c7d659f76 1428 libxext_1.1.2-1+squeeze1.dsc
 c5b7ac50d56a65c62eb5d205b64f8fef84c72474 384803 libxext_1.1.2.orig.tar.gz
 118be0b4a8b6256cfc6c9dc1b1ed3d082b33f430 21610 libxext_1.1.2-1+squeeze1.diff.gz
 b26e4e485b46891fbb066afad64f86be7a7b113f 45530 
libxext6_1.1.2-1+squeeze1_amd64.deb
 243c57b1eaf0c1054dcde7d3dae5111fb5913c38 27158 
libxext6-udeb_1.1.2-1+squeeze1_amd64.udeb
 1c2b106bafa5e560554803ff6ec75fbd14dd6206 202478 
libxext6-dbg_1.1.2-1+squeeze1_amd64.deb
 e06d5ff9c9dc0a88f93c5f15a2f193ca03e47bb8 108906 
libxext-dev_1.1.2-1+squeeze1_amd64.deb
Checksums-Sha256: 
 2a895c71c51ffc244e4f728e38699a1aaf4f9c929481da891290c39b61b7a044 1428 
libxext_1.1.2-1+squeeze1.dsc
 29cec41a51b28109a37d9de23b6664c167c50aee6ef4ec772bf92dd01984497a 384803 
libxext_1.1.2.orig.tar.gz
 bf48e3de038d1524b4a44454d980a4e55be24e2dfa759262594b48782c1ece4a 21610 
libxext_1.1.2-1+squeeze1.diff.gz
 42315417e9e5bdd2ba7afafbff131c6f1d17e67634512695eb8da2ad663e6055 45530 
libxext6_1.1.2-1+squeeze1_amd64.deb
 eee80efab1e7256c6986c924552d58a62e89a7a41ffe686ed9c165331324caa5 27158 
libxext6-udeb_1.1.2-1+squeeze1_amd64.udeb
 b53eef969940285956d6459c889d3eb454dc9c77c49815c371d3ff3fd263fc11 202478 
libxext6-dbg_1.1.2-1+squeeze1_amd64.deb
 d983e109aae437ff4956fa7b55cc395afcc16627ec0ebf11935ea75aa2736d5c 108906 
libxext-dev_1.1.2-1+squeeze1_amd64.deb
Files: 
 c623392ead04f5b1938505600f0b534b 1428 x11 optional libxext_1.1.2-1+squeeze1.dsc
 2e49224d7753319a34cd7ca7429679f8 384803 x11 optional libxext_1.1.2.orig.tar.gz
 ceb0f4234802993f94b6bba0b59eb19e 21610 x11 optional 
libxext_1.1.2-1+squeeze1.diff.gz
 ea5e2795c25b4305abed9882b1ad72a5 45530 libs optional 
libxext6_1.1.2-1+squeeze1_amd64.deb
 61dc13e719d18ac1ee118d4fc11aa593 27158 debian-installer optional 
libxext6-udeb_1.1.2-1+squeeze1_amd64.udeb
 c040bbf138aa201a19bb8fffb7e1e2d6 202478 debug extra 
libxext6-dbg_1.1.2-1+squeeze1_amd64.deb
 59e7f0ffe0a9f4d574ccf00df915061e 108906 libdevel optional 
libxext-dev_1.1.2-1+squeeze1_amd64.deb
Package-Type: udeb

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

iEYEARECAAYFAlGSlHcACgkQXm3vHE4uylp6GQCgwGcngGhVhskUndtA1ZaDoVx7
CkAAn12tQbHn6WG7d1BDIddKiMl4Xw/8
=oUQR
-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/e1ufz2t-0006j3...@franck.debian.org



libxext_1.3.1-2+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 May 2013 00:46:19 +0200
Source: libxext
Binary: libxext6 libxext6-udeb libxext6-dbg libxext-dev libxext-doc
Architecture: source all amd64
Version: 2:1.3.1-2+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libxext-dev - X11 miscellaneous extensions library (development headers)
 libxext-doc - X11 miscellaneous extensions library (documentation)
 libxext6   - X11 miscellaneous extension library
 libxext6-dbg - X11 miscellaneous extensions library (debug package)
 libxext6-udeb - X11 miscellaneous extension library (udeb)
Changes: 
 libxext (2:1.3.1-2+deb7u1) wheezy-security; urgency=high
 .
   * integer overflows calculating memory needs for replies [CVE-2013-1982]
Checksums-Sha1: 
 ca0aedbf68b3472ace4bb72d452610124b575a8e 2252 libxext_1.3.1-2+deb7u1.dsc
 9dfdc22866002a35302263b8017932aac5299ea9 453050 libxext_1.3.1.orig.tar.gz
 853e55f6aa6565df3f880db056bd39834c4b7e08 23167 libxext_1.3.1-2+deb7u1.diff.gz
 ab16b4c789b6e40a5e909d04329fbc74bc001834 93428 
libxext-doc_1.3.1-2+deb7u1_all.deb
 6e32735b14abcd879c811ea44a06453f7a026155 54768 
libxext6_1.3.1-2+deb7u1_amd64.deb
 c2df8e65eb435c0704e628db2eea70ffd48b300b 23356 
libxext6-udeb_1.3.1-2+deb7u1_amd64.udeb
 b85a05e0401bd1b1594fed40876f34d9ec434f0c 233340 
libxext6-dbg_1.3.1-2+deb7u1_amd64.deb
 361341596b22a10c360c591084fbc4f8912a7c29 113842 
libxext-dev_1.3.1-2+deb7u1_amd64.deb
Checksums-Sha256: 
 31fb859b355608bae6ef9db93c9cb0abaf729dee40c71dc08f72311c813ad296 2252 
libxext_1.3.1-2+deb7u1.dsc
 fa0d5ed2fa7dc7be3b2e0b95a1bb8f0cbaabfaff124904f7e5bc70d3159980d1 453050 
libxext_1.3.1.orig.tar.gz
 a9535d7f34b685862502636a7bea6db7765dc491d1b68ccf19887556fad43ec4 23167 
libxext_1.3.1-2+deb7u1.diff.gz
 386258a29639ebbc55d184ebf44ad75a905a8ed3071e6d2b6860ea0f239e532f 93428 
libxext-doc_1.3.1-2+deb7u1_all.deb
 24309ce0e8752cdb4021cc14c8a5b688fcea6ae4f70040fdbd036ae834f046f2 54768 
libxext6_1.3.1-2+deb7u1_amd64.deb
 0733e40872e996f021141e52fd0c9767a3f79977be212113b466ec6e396e289a 23356 
libxext6-udeb_1.3.1-2+deb7u1_amd64.udeb
 93ef9a695b307f8e6b8dfcbd77e4186e1a607cde78f78166b0119fe3b91dc879 233340 
libxext6-dbg_1.3.1-2+deb7u1_amd64.deb
 a171202d6bd293febe411fed92254b0910d3537a7a73180bf3793779a3ea0ebc 113842 
libxext-dev_1.3.1-2+deb7u1_amd64.deb
Files: 
 850ec27a0f0e430abab6e98172ca6e3b 2252 x11 optional libxext_1.3.1-2+deb7u1.dsc
 249478eae5c4fab7722894cb99565405 453050 x11 optional libxext_1.3.1.orig.tar.gz
 77d701e1901dde3aa606896bd6432bed 23167 x11 optional 
libxext_1.3.1-2+deb7u1.diff.gz
 24999db121cc716c3f0e0bbd31cde43c 93428 doc optional 
libxext-doc_1.3.1-2+deb7u1_all.deb
 4567f7ffd55760e79db54577c0948cc5 54768 libs optional 
libxext6_1.3.1-2+deb7u1_amd64.deb
 8e6c75f6c0516a45152fa417d678cbe9 23356 debian-installer optional 
libxext6-udeb_1.3.1-2+deb7u1_amd64.udeb
 9225deae8f8c775ab4785a2616cbcef6 233340 debug extra 
libxext6-dbg_1.3.1-2+deb7u1_amd64.deb
 d13f6ebca63a76ab5f71896eda3100f6 113842 libdevel optional 
libxext-dev_1.3.1-2+deb7u1_amd64.deb
Package-Type: udeb

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

iQIcBAEBCAAGBQJRki+0AAoJEDEBgAUJBeQMsioP/04Tc+XXEPZYsPVE/k3LNY03
L3RFnbWVHsLNpLBNVnj5/VvSY9r6L4gJdcdluFMfRdp92qhJ7DkyCkvQqmw7FHuF
4SjsOtABqkE2auPdpSs5F1u4dtxU/HmJsvL9dv0uF+RkFUVwbx8fi/sLh+lpz7Tq
JJHpcjQ65yQ/j28Fl+mCYsawSOPQB0Ax5m1kfZowmXjtqYdIt3PPgy+wGYTw66KE
POLr0IGYWmpTDLFBgUdexMe1l9Qxwjlj2KxUOwJl/Ji5LirAb5yybWQltzg37tA8
FDdQWpwc11aLqIEN3RieRtcB6PPXe4r1ZPc7fk05x0hjH/zahBp4e6KFbbebKG+r
M8McE0kDolY+7iqi6owHstFcn5lc/n+CKNYBkaNV6nfPUy5glSmrtcqXLIYVUClr
6G4CLlFhNOUqUxDkevRVWFf7AYWyBAK8CporC0ghDuAkdAqSEoQRsxaZ6LcCjjBY
+7R9SI5BA/IaGTLfUy4aopSmfCsu/ODL6unZRId6WFhJwwI975bynrznhZEWu8QG
E1376+C/GnnZ9k97OehuFwcvFQOmxw8knZ+2vPcxf6y8UKzhW4w7yebUl+t7GUDN
eKVqEpysslOE1v/oowZwAlIq3VrB8JkoMYw5AmoJGv98xvSq5zIdLDNnt+FnWCD0
YZGarpQ2w0ENkxvKlm/C
=j/BH
-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/e1ufz2v-0006ml...@franck.debian.org



libxfixes_4.0.5-1+squeeze1_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 14 May 2013 20:48:34 +
Source: libxfixes
Binary: libxfixes3 libxfixes3-udeb libxfixes3-dbg libxfixes-dev
Architecture: source amd64
Version: 1:4.0.5-1+squeeze1
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libxfixes-dev - X11 miscellaneous 'fixes' extension library (development 
headers)
 libxfixes3 - X11 miscellaneous 'fixes' extension library
 libxfixes3-dbg - X11 miscellaneous 'fixes' extension library (debug package)
 libxfixes3-udeb - X11 miscellaneous 'fixes' extension library (udeb)
Changes: 
 libxfixes (1:4.0.5-1+squeeze1) oldstable-security; urgency=low
 .
   * CVE-2013-1983
Checksums-Sha1: 
 df58629dbce9b757c728889816f3abaf5f443523 1423 libxfixes_4.0.5-1+squeeze1.dsc
 32586cb570f22fa458e714037e92d6be5d8cfcdd 313854 libxfixes_4.0.5.orig.tar.gz
 2539f9564badbb17e78d5697c9b783eced22c8ea 16551 
libxfixes_4.0.5-1+squeeze1.diff.gz
 7a4232feb5198c534143407500913028092268eb 19250 
libxfixes3_4.0.5-1+squeeze1_amd64.deb
 1be51296a024895e59557d78d58e78201266e714 8114 
libxfixes3-udeb_4.0.5-1+squeeze1_amd64.udeb
 bfaa031209cca7a550e90cc090e6c9ce02da1e6a 53158 
libxfixes3-dbg_4.0.5-1+squeeze1_amd64.deb
 596934f80c871782e7d07fd812cd030ad9a9c189 21566 
libxfixes-dev_4.0.5-1+squeeze1_amd64.deb
Checksums-Sha256: 
 ad9762c72ccae659b864ba282b9c376392ea4771d46231e0e9a7e1589dced860 1423 
libxfixes_4.0.5-1+squeeze1.dsc
 06147863d774a1aadd8b04ab1fb42e77df9c7c9fd286ac94d46036451f7505c6 313854 
libxfixes_4.0.5.orig.tar.gz
 de418da355aa770128eebb381b7d662659436e263276b9ec36479a592625f9e0 16551 
libxfixes_4.0.5-1+squeeze1.diff.gz
 046c7520c6dfc2ec902f63a347294e36cfc51c832cb11c19629175bb2534af7a 19250 
libxfixes3_4.0.5-1+squeeze1_amd64.deb
 091de110de83451bda5dee0380dbf8f2ba9d2602e6ac4acf81a05508693e732b 8114 
libxfixes3-udeb_4.0.5-1+squeeze1_amd64.udeb
 6c05a841f7d9cd8f7a514d9d3498d76f5752bf8a2402f38d15f51b9ef1158a7f 53158 
libxfixes3-dbg_4.0.5-1+squeeze1_amd64.deb
 70b1a50b378e271e5f15338d7b3013a960208d12350383576095a2ed43387625 21566 
libxfixes-dev_4.0.5-1+squeeze1_amd64.deb
Files: 
 bc6af7b0c306f54690a9570ff2500ca3 1423 x11 optional 
libxfixes_4.0.5-1+squeeze1.dsc
 556ffa2e75f2a3b5d92d004a6b124a6d 313854 x11 optional 
libxfixes_4.0.5.orig.tar.gz
 a0240c0105b728272852ea8280633a1e 16551 x11 optional 
libxfixes_4.0.5-1+squeeze1.diff.gz
 a4b9d6049695f630a8476848e19b801e 19250 libs optional 
libxfixes3_4.0.5-1+squeeze1_amd64.deb
 63ebde620035fed3dfbd038bf6e6920c 8114 debian-installer optional 
libxfixes3-udeb_4.0.5-1+squeeze1_amd64.udeb
 4305f4ad456722179a62e04a1368ba4d 53158 debug extra 
libxfixes3-dbg_4.0.5-1+squeeze1_amd64.deb
 81ad61afa35ae1cccaaf1466fd06c942 21566 libdevel optional 
libxfixes-dev_4.0.5-1+squeeze1_amd64.deb
Package-Type: udeb

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

iEYEARECAAYFAlGSo3wACgkQXm3vHE4uylo+AwCg5YWDc+3mfTc/IzYNUzaePUsW
Ym0AoIEUjymfZ8VpGOngJmFXAG4AVv58
=/Q5j
-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/e1ufz3r-0006rx...@franck.debian.org



libxi_1.6.1-1+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 15 May 2013 13:52:52 +0200
Source: libxi
Binary: libxi6 libxi6-udeb libxi6-dbg libxi-dev
Architecture: source amd64
Version: 2:1.6.1-1+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libxi-dev  - X11 Input extension library (development headers)
 libxi6 - X11 Input extension library
 libxi6-dbg - X11 Input extension library (debug package)
 libxi6-udeb - X11 Input extension library (udeb)
Changes: 
 libxi (2:1.6.1-1+deb7u1) wheezy-security; urgency=high
 .
   * integer overflows calculating memory needs for replies [CVE-2013-1984]
   * sign extension issue in XListInputDevices() [CVE-2013-1995]
   * buffer overflows due to not validating length or offset values in replies
 [CVE-2013-1998]
Checksums-Sha1: 
 39e4b5ad369c307d690289bb25c2b54dad77df3b 2285 libxi_1.6.1-1+deb7u1.dsc
 5a27e61f35e443114cac9a3bba046222e1fb667a 556404 libxi_1.6.1.orig.tar.gz
 e197c327083e15ce0bd8c16a414be45c55a02a8e 23688 libxi_1.6.1-1+deb7u1.diff.gz
 b413526b5d523bca7663d2fcb494e2c33c71d7ac 75710 libxi6_1.6.1-1+deb7u1_amd64.deb
 c34c5e25573adb6a873fe9a2f9a0a0ccde818b65 23226 
libxi6-udeb_1.6.1-1+deb7u1_amd64.udeb
 1f77f39b142600cf0763c5bb12516f816448a18d 437874 
libxi6-dbg_1.6.1-1+deb7u1_amd64.deb
 bc3f6393be0f886f8937c31a90f1edb36ce4a278 247750 
libxi-dev_1.6.1-1+deb7u1_amd64.deb
Checksums-Sha256: 
 3ee031c5da29df4145afcd15074af14de76100465cb047b768266b5240c79ca5 2285 
libxi_1.6.1-1+deb7u1.dsc
 a2aab210068af017314888c64c3a7dd6b5a7933fe50ab89b6e039aadc07dac46 556404 
libxi_1.6.1.orig.tar.gz
 f448d225e2054279b131712a4ca811d2d18930dc7af75d8aec8aef4f84885a01 23688 
libxi_1.6.1-1+deb7u1.diff.gz
 b1066625b15a29c6f7fb51e3263f490213965f5f4c12ad59d5b2a4806a1f095b 75710 
libxi6_1.6.1-1+deb7u1_amd64.deb
 aa919ae88b218576c3b9b1d2fe2cacadb04461f0d8179750521e821c2c058221 23226 
libxi6-udeb_1.6.1-1+deb7u1_amd64.udeb
 4c496ce7a334bf4de5fb07cca70f7c9473bc5026596001460d4d232fa3bd4ed1 437874 
libxi6-dbg_1.6.1-1+deb7u1_amd64.deb
 6d0a5e66f85ec099807ca7f34e41140cf27f773b9d64f003debf91e51539b7b7 247750 
libxi-dev_1.6.1-1+deb7u1_amd64.deb
Files: 
 bb1c05c976e7c37ab454c44ee4e03f0d 2285 x11 optional libxi_1.6.1-1+deb7u1.dsc
 d024a9de73191628f9772893f02054d8 556404 x11 optional libxi_1.6.1.orig.tar.gz
 a94397297f2a2f86840ebeb613df5649 23688 x11 optional 
libxi_1.6.1-1+deb7u1.diff.gz
 3bac47ed048d744e916058d25e1f6584 75710 libs optional 
libxi6_1.6.1-1+deb7u1_amd64.deb
 057302a025180a87b334efd663c97d20 23226 debian-installer optional 
libxi6-udeb_1.6.1-1+deb7u1_amd64.udeb
 be6c732fc8e20225d5442f0ae44a5df0 437874 debug extra 
libxi6-dbg_1.6.1-1+deb7u1_amd64.deb
 e9f3a8e34a4318bd3d1362f2c19b7cc5 247750 libdevel optional 
libxi-dev_1.6.1-1+deb7u1_amd64.deb
Package-Type: udeb

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

iQIcBAEBCAAGBQJRk4S1AAoJEDEBgAUJBeQMft4P/RQrRQDxiSsd5Nu5kxygWGUV
bwDrPJnE239Q0dUfh6gRLifNqp5FXEZZY8yr8BD54G1zbCfByDa3fcB7aIMSMz5R
bcxZw58dbn+ITEjpWpo2fp+17pH+cBwjbb9arwxL2cp2TRlBqSBbRXAJjC0IvuFH
sIb16IVXMiAuQtxgO7+98dboIdOSoMUF1LmosfKHQF//s/zzyw2C/JfVDEe415/b
tV83rIoQipIMiOkDWO/Vcm+2aM8pQIThlyhTtpd5CJJ1qm+w52a982GBJ+C5TVCX
sge+HIT1yMmixWIr17tKahiSwEkXQsOoEi2NTjB/8wp0dVOjj/jI5Gq+UsKH6J0/
39b3Vvqv5V2Q2RhfAJtJHQ5JyvW605twOIl3uM+aRQScfDGSWBpuCgL7C4jhA8PZ
f6olaDsrJji4xe+TAYr9TvTzNKiPisomSuAO/qvkfpV/Ldfq7WBdH1coCP7bYtOs
lkd0nozcSyJgwT0wcpQXc/GKSNg1IBZ06THvWsGgg7vxRlc4/AwDR8jWnxlbvbsr
6NFynEm3iUXibC8UiCb4MlBaGNW7LVqyC9gLlNfLRwXoLjWU+hQKnSeg5MviGSoI
zU2SAF4pDHXNJNNO5NxTrNflV69RZU3Yrt46ggfU8x5qpziz6h4vamHvNZcR5NT1
3elCknCyXd5/c5WsiHT4
=HSKh
-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/e1ufz3t-0006h7...@franck.debian.org



libxinerama_1.1.2-1+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 May 2013 16:48:48 +0200
Source: libxinerama
Binary: libxinerama1 libxinerama1-udeb libxinerama1-dbg libxinerama-dev
Architecture: source amd64
Version: 2:1.1.2-1+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libxinerama-dev - X11 Xinerama extension library (development headers)
 libxinerama1 - X11 Xinerama extension library
 libxinerama1-dbg - X11 Xinerama extension library (debug package)
 libxinerama1-udeb - X11 Xinerama extension library (udeb)
Changes: 
 libxinerama (2:1.1.2-1+deb7u1) wheezy-security; urgency=high
 .
   * integer overflow in XineramaQueryScreens() [CVE-2013-1985]
Checksums-Sha1: 
 8d0a3154e9af025c6edc554c0907543efe5b611b 2206 libxinerama_1.1.2-1+deb7u1.dsc
 969302e2d4b172ca07ccce42d947cdcb1aa8c539 343408 libxinerama_1.1.2.orig.tar.gz
 cd5b415c89213480aa958a3017d81a4b02eca618 16845 
libxinerama_1.1.2-1+deb7u1.diff.gz
 edde34df15234e0faa56d0136835d8ced9785840 16880 
libxinerama1_1.1.2-1+deb7u1_amd64.deb
 1f9cb1e72c43150b2403614725339895f181e84a 3670 
libxinerama1-udeb_1.1.2-1+deb7u1_amd64.udeb
 ec8826ebf6be1e8b0e24ab80609ec1928568a72c 32294 
libxinerama1-dbg_1.1.2-1+deb7u1_amd64.deb
 fd74ecaa9b5e98752d641cc727ae00edba05c1eb 18988 
libxinerama-dev_1.1.2-1+deb7u1_amd64.deb
Checksums-Sha256: 
 86f079e1c72fa04d7e7fc471e76fb8a2bb8195a78c541e9eb149bb4b8c0b3448 2206 
libxinerama_1.1.2-1+deb7u1.dsc
 5f21113464febeac0536e140ff36a8e0cd8ae919ce690c4768f479ea48473fed 343408 
libxinerama_1.1.2.orig.tar.gz
 7bc0f6a0cdc3e55260c0d2458ac4f6a7ffacb391b1db064a1170ed1abd8a9813 16845 
libxinerama_1.1.2-1+deb7u1.diff.gz
 9d9e42b59718426e10fffb6d047ba5736ebc97c68edf90d36fe705e2eab40410 16880 
libxinerama1_1.1.2-1+deb7u1_amd64.deb
 c504f925fb1169a18a61e2163dbf737f4535a7e01956bfaa88cfd15152bea9db 3670 
libxinerama1-udeb_1.1.2-1+deb7u1_amd64.udeb
 f4efa4d9e94686ce4f13389794f8afb62c024df1ea2fc8bede3a1a18565e2938 32294 
libxinerama1-dbg_1.1.2-1+deb7u1_amd64.deb
 e3e1048899d5e9f83ebd3dcfb50779801a3b3e3d3eee74ad31a67f2c2f091c2b 18988 
libxinerama-dev_1.1.2-1+deb7u1_amd64.deb
Files: 
 d6c66d742155276b3eeb6cfbc49c0be1 2206 x11 optional 
libxinerama_1.1.2-1+deb7u1.dsc
 29a813b3850d499a3524a8d5d5ecb099 343408 x11 optional 
libxinerama_1.1.2.orig.tar.gz
 6bcd1f59b30374458099bd6c74f6bcb9 16845 x11 optional 
libxinerama_1.1.2-1+deb7u1.diff.gz
 620980099c8c1c944f1ba115e9c1f59e 16880 libs optional 
libxinerama1_1.1.2-1+deb7u1_amd64.deb
 25434202157b890f4ff0dd13a0ae36b8 3670 debian-installer optional 
libxinerama1-udeb_1.1.2-1+deb7u1_amd64.udeb
 59879eb64c5e71ca14d6871d3ac5c9e2 32294 debug extra 
libxinerama1-dbg_1.1.2-1+deb7u1_amd64.deb
 ea7809d87dc831cdc32d1d8ca62dc556 18988 libdevel optional 
libxinerama-dev_1.1.2-1+deb7u1_amd64.deb
Package-Type: udeb

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

iQIcBAEBCAAGBQJRklADAAoJEDEBgAUJBeQMgCAQAPTsix+5PuH0iob/Da31L8z7
fTCxjFJEPZYCn26u7JUiJVEklFAJh1LZfJclFLDane+/K/y9PZvZGxaWHYCo5ucf
I59oAH3YsvvwCH50V6UYjn5lxlKwdPx5YvvIozl9QlEHnJ3dtXXpeW13aR/ss0eN
w+S1HEs05vX6Fq3wfzUNTD3NXdwskEOkJXAJOc4PLYZIUVliqEYwm9L2g+tAlWyG
nmGmhVUxuj0tEUaEqxEXE7pRXoGX0nxFzusqAKeVHRweHDNhXEWw464L8qSnqUGx
0iMZEESPRle1rV/4WSxX/7y/3mC/+HWncGkcTQGgMV+QIvuTCgbFbppWI9rCWdzq
p79AfBdTcoo5njDpV0w+bFL12o/xLeWLYgc2i+9Y/wFg8mrt7FL0inTH+BcR26Fw
KWs8LqVhzVHzCvOUXuH+9ItlE9hoYy/moKgVkameAA3FrJyHw5/ZEwL0NksscMv0
i8aj9J4p7Pcga21yupl+sDv7pokL5KrXFRBySxUNkhYI9Jq9P5+MjRSRzWMlua5L
RrUtj9mQ0DXsaDFrOs7+4uCor1CCpQ96p7HFx46HO9bYUJyuwK+Fyra96SupLljP
OhQn4z9G2TkGYbtNonJzPcLJADKE0Ey++JR2IaRK89CJr/SnTaRbr/4oP9SZ0R5K
T27DRsUmhUXUQkWzNAs/
=nkT7
-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/e1ufz4p-0006na...@franck.debian.org



libxp_1.0.0.xsf1-2+squeeze1_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 May 2013 21:19:09 +
Source: libxp
Binary: libxp6 libxp6-dbg libxp-dev
Architecture: source amd64
Version: 1:1.0.0.xsf1-2+squeeze1
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libxp-dev  - X Printing Extension (Xprint) client library (development files)
 libxp6 - X Printing Extension (Xprint) client library
 libxp6-dbg - X Printing Extension (Xprint) client library (unstripped)
Changes: 
 libxp (1:1.0.0.xsf1-2+squeeze1) oldstable-security; urgency=low
 .
   * CVE-2013-2062
Checksums-Sha1: 
 afb589963cd056285814ab23f88d3865b25b476e 1316 libxp_1.0.0.xsf1-2+squeeze1.dsc
 443ffd87213f3d9c6aae9a9e39416dfe41646fb3 328411 libxp_1.0.0.xsf1.orig.tar.gz
 e5b33db1dbdbb81f0d2c878a8428f3c6a4e51a0f 370933 
libxp_1.0.0.xsf1-2+squeeze1.diff.gz
 b5b815f29206a315c1f4c3fea29c38581f6eb29f 18386 
libxp6_1.0.0.xsf1-2+squeeze1_amd64.deb
 192705e396156322734e8611d64a0339ec94d43c 113130 
libxp6-dbg_1.0.0.xsf1-2+squeeze1_amd64.deb
 a712b2f43d1a26f8088ff02e01580af99aee3260 84826 
libxp-dev_1.0.0.xsf1-2+squeeze1_amd64.deb
Checksums-Sha256: 
 ea6e78ff8c935cf1ca9e7a55067ddd95120897b054004b13daa2c40180ed9dae 1316 
libxp_1.0.0.xsf1-2+squeeze1.dsc
 2e37b40261c6604ddb84529cf04e88491bde77557211b5963a9c62a0d0dcf535 328411 
libxp_1.0.0.xsf1.orig.tar.gz
 583ad734aa4a9a9dc7b59297435859f3ec3fe7fa3d828b2ada9e1c0b2f5c624a 370933 
libxp_1.0.0.xsf1-2+squeeze1.diff.gz
 2abaa36aa183c3ca804d46989ff68531f793d0ba63aee53ef5c7c138ef3f8020 18386 
libxp6_1.0.0.xsf1-2+squeeze1_amd64.deb
 9c783e402910272c9fe9d5a6bc282e81d8fa633f44b88abe24d536d0850dad98 113130 
libxp6-dbg_1.0.0.xsf1-2+squeeze1_amd64.deb
 2fb7b6c60bcc2e51ef3f5fef9bdb56c846d2d86d5ccb27ef19fad1ab105d842d 84826 
libxp-dev_1.0.0.xsf1-2+squeeze1_amd64.deb
Files: 
 3b7439967a2f9da862ce9f8621db43e9 1316 x11 optional 
libxp_1.0.0.xsf1-2+squeeze1.dsc
 1009bb547a3b5417a3485f15496b8f0f 328411 x11 optional 
libxp_1.0.0.xsf1.orig.tar.gz
 ce79dca2f5e642e4f3ff258f1a481ddd 370933 x11 optional 
libxp_1.0.0.xsf1-2+squeeze1.diff.gz
 3cd84f8b6695d5b08ccb4a79a5de45c7 18386 libs optional 
libxp6_1.0.0.xsf1-2+squeeze1_amd64.deb
 aa680f8ec576bf4e53c6ae3cb86e0636 113130 libdevel extra 
libxp6-dbg_1.0.0.xsf1-2+squeeze1_amd64.deb
 d18a0bca59e2cb1cdd64545e8b46c79a 84826 libdevel optional 
libxp-dev_1.0.0.xsf1-2+squeeze1_amd64.deb

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

iEYEARECAAYFAlGX8NMACgkQXm3vHE4uylp1pwCaAs+bAbArilLZx03/ZJadQc9a
yVgAn2wayLvAuqbUQHkBsH9/v8XqURe0
=oZ8Z
-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/e1ufz4w-0006rp...@franck.debian.org



libxrandr_1.3.2-2+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 May 2013 18:59:45 +0200
Source: libxrandr
Binary: libxrandr2 libxrandr2-dbg libxrandr-dev
Architecture: source amd64
Version: 2:1.3.2-2+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libxrandr-dev - X11 RandR extension library (development headers)
 libxrandr2 - X11 RandR extension library
 libxrandr2-dbg - X11 RandR extension library (debug package)
Changes: 
 libxrandr (2:1.3.2-2+deb7u1) wheezy-security; urgency=high
 .
   * integer overflows calculating memory needs for replies [CVE-2013-1986]
Checksums-Sha1: 
 e9c6bdd43019278a747f58e34c06ec7ee4366e9d 2161 libxrandr_1.3.2-2+deb7u1.dsc
 74d90555bf0772e25a5228c8dbad9d43fdd35b4f 359240 libxrandr_1.3.2.orig.tar.gz
 ddd60e90b7f0ed35689245e9fc4cbc0a987d604e 18221 libxrandr_1.3.2-2+deb7u1.diff.gz
 cf3513d1f93c4f4d6fc94af9893c8ff61776dfa4 33018 
libxrandr2_1.3.2-2+deb7u1_amd64.deb
 1fe37c3663a962cc710b9e0680b640db018d167b 91414 
libxrandr2-dbg_1.3.2-2+deb7u1_amd64.deb
 77b79f41147796fb1373c13362000637bcc9b235 41148 
libxrandr-dev_1.3.2-2+deb7u1_amd64.deb
Checksums-Sha256: 
 dc4407186d7a89b20e2aaef993cb9fe21f296d3bbbea5de96ab171fd0c2cb640 2161 
libxrandr_1.3.2-2+deb7u1.dsc
 c117a84ceda5a0744806efd4948594d4ec28a86c245768d721dbdabff1f7e073 359240 
libxrandr_1.3.2.orig.tar.gz
 0806070d9e4b8600f0ee3794149bdd8b008a4ce4af6bc6a7be84500c05f37239 18221 
libxrandr_1.3.2-2+deb7u1.diff.gz
 12067e6bc210fc3d76a4077216d760abbffd302454b809c06aa423e1ad872cbc 33018 
libxrandr2_1.3.2-2+deb7u1_amd64.deb
 db854d7b5b2c5b26d4d97d4b4d94417fe61bd38bdcc02180131a139931d3e095 91414 
libxrandr2-dbg_1.3.2-2+deb7u1_amd64.deb
 0865ee96c5b7f7c61bca46e5cec3b6079e3641807cb9add8253dca644aa87f73 41148 
libxrandr-dev_1.3.2-2+deb7u1_amd64.deb
Files: 
 6e62740c8f6a6022b5e9d6070619cc4f 2161 x11 optional libxrandr_1.3.2-2+deb7u1.dsc
 edacf83655be2e48348b626c0dc454f3 359240 x11 optional 
libxrandr_1.3.2.orig.tar.gz
 883179cc7e5bfe459d14ebaf9780065f 18221 x11 optional 
libxrandr_1.3.2-2+deb7u1.diff.gz
 59386ef8cb59008a2112059b73277950 33018 libs optional 
libxrandr2_1.3.2-2+deb7u1_amd64.deb
 296397d5b5540cea18619f6a1d1fb054 91414 debug extra 
libxrandr2-dbg_1.3.2-2+deb7u1_amd64.deb
 a74f7f66b3a1bf79a14e215ff53498b3 41148 libdevel optional 
libxrandr-dev_1.3.2-2+deb7u1_amd64.deb

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

iQIcBAEBCAAGBQJRkm+0AAoJEDEBgAUJBeQMSrAQAI088AaRldVDCad4prLOSrFt
Did3U3hXqmAmCJAxqpfp7qrCrnb6Bfo/JZen34jSopLFmuZXYrWvF+kjFLIaCulY
c1hGO8zWUqXuzDqja0cVrbe2dmyCD3AJQS8EMVko2ogjqoVrKH+bQUteQIdpokAH
k2vb1XZ3s/UILjbHDwhrG9stiuQ0JBppTlGubkIee2WTRVpFiTrbWagcB4OMyynJ
NpJzPLmYC8kPEi/2iHL/W57OWX18yBs4VUVUa97isg+sOpHDo082iAFutUjNFRK1
5gV3RQb/UrBM4gRtRFnKihN1HC3h8d9KKHhZFar+WQg+1KTXemy9yEk4rky3PQnc
CrCdGZ4LembaCQv95N8RPRMwC+yBvmKJAUDbpRJtNVe94JrVqT+GcQZIGGbg6BjM
E+nqpCybnW4G9A/8hWTleqfXIvePLnCECcglebhOXOLSfO1NvhiMcGlx5SsUk0V+
l1nGGinIL096Lojg6nZ4LStEIp4nEsUaoXH4WXoShhGnBqf7Y0Ac8EPUnnf4s61/
38/p+80IfGftC33XSb1NmPDzetnMqsMDweavkSd1WD46lJV+fKvb000gp4By0M4g
FXtt2m1rxOpbCAcp1WSZ/Dx0ZqV3YyVO8CnUhJ3l9U8otDP8f2ic6n1FNj20obUP
oR5PS30e94ktnkLo/ObD
=+q2d
-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/e1ufz5h-0006uy...@franck.debian.org



libxrender_0.9.6-1+squeeze1_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 May 2013 00:14:11 +
Source: libxrender
Binary: libxrender1 libxrender1-udeb libxrender1-dbg libxrender-dev
Architecture: source amd64
Version: 1:0.9.6-1+squeeze1
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libxrender-dev - X Rendering Extension client library (development files)
 libxrender1 - X Rendering Extension client library
 libxrender1-dbg - X Rendering Extension client library (unstripped)
 libxrender1-udeb - X Rendering Extension client library (udeb)
Changes: 
 libxrender (1:0.9.6-1+squeeze1) oldstable-security; urgency=low
 .
   * CVE-2013-1987
Checksums-Sha1: 
 9a26a6cb8126fbedfc2b65cf7372a07002ab81d8 1481 libxrender_0.9.6-1+squeeze1.dsc
 3dcd5c20bb6d98c06ff9ce024c20c6668ad5c0b9 327928 libxrender_0.9.6.orig.tar.gz
 6f84e0426ea70993ef987c8991f5d8ecc573bb0c 20589 
libxrender_0.9.6-1+squeeze1.diff.gz
 a45cefd63f905b3af47dbacf937a5c202296d32d 31156 
libxrender1_0.9.6-1+squeeze1_amd64.deb
 022d14a7cda055e2a9e7308868193fb734189400 17364 
libxrender1-udeb_0.9.6-1+squeeze1_amd64.udeb
 b5088174af3c39caa6287363b7e75a1785c27864 122664 
libxrender1-dbg_0.9.6-1+squeeze1_amd64.deb
 377ab8adabdb3e37907664f98c2c67724b50d98e 39968 
libxrender-dev_0.9.6-1+squeeze1_amd64.deb
Checksums-Sha256: 
 f9e9df79516f43d17008532709c993f77b1b89728c2d391a2cef15f9dfcc225a 1481 
libxrender_0.9.6-1+squeeze1.dsc
 7523a6f03c996b9fae27e9fffd3728634c71e8f8d5ef8a25199e699ded51b377 327928 
libxrender_0.9.6.orig.tar.gz
 563a07f2c06d67e98957b7ff185403dd55c796bfbeee0b6d59b291f4c055abee 20589 
libxrender_0.9.6-1+squeeze1.diff.gz
 e816d5f900566b78bad2ddaa72d133f2f03681e11f0f698451c6265228a0df99 31156 
libxrender1_0.9.6-1+squeeze1_amd64.deb
 aae0e5b23a8268bfdb7e2ed6e6a8e8b3bd80cd895d73f68c07586ffd9cb03097 17364 
libxrender1-udeb_0.9.6-1+squeeze1_amd64.udeb
 9d6dde6b80e6be81bade4e0547aa1a5eeb624bcbcfc422a360511a44f3676db3 122664 
libxrender1-dbg_0.9.6-1+squeeze1_amd64.deb
 74d209ee65e13d11b7a708f6360fbcb4b2a2697998a52bd7de4c7df112c4b72d 39968 
libxrender-dev_0.9.6-1+squeeze1_amd64.deb
Files: 
 87e808118c0a887c3c6d9275f1abf5da 1481 x11 optional 
libxrender_0.9.6-1+squeeze1.dsc
 5dba047cf278e5ac77cd0f19f7195fb9 327928 x11 optional 
libxrender_0.9.6.orig.tar.gz
 0cc5e76b9f030f647fdbb37902918bf2 20589 x11 optional 
libxrender_0.9.6-1+squeeze1.diff.gz
 fec8541c7a7435ccc10f03b6af8159d8 31156 libs optional 
libxrender1_0.9.6-1+squeeze1_amd64.deb
 8febefcba7544bbaaf0cdb5b7d860766 17364 debian-installer optional 
libxrender1-udeb_0.9.6-1+squeeze1_amd64.udeb
 96ea470b3086ad79a44872abe33afe9e 122664 debug extra 
libxrender1-dbg_0.9.6-1+squeeze1_amd64.deb
 379be8a9a233e677c3a3356767074b51 39968 libdevel optional 
libxrender-dev_0.9.6-1+squeeze1_amd64.deb
Package-Type: udeb

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

iEYEARECAAYFAlGWZh4ACgkQXm3vHE4uylq02gCg3jq8xkFYnvbhwH+lHrbv8yY4
sMIAoI0MkRbct4UjTOjjH6uNi02F0rBP
=7BRP
-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/e1ufz5i-0006yy...@franck.debian.org



libxrender_0.9.7-1+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 May 2013 19:28:26 +0200
Source: libxrender
Binary: libxrender1 libxrender1-udeb libxrender1-dbg libxrender-dev
Architecture: source amd64
Version: 1:0.9.7-1+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libxrender-dev - X Rendering Extension client library (development files)
 libxrender1 - X Rendering Extension client library
 libxrender1-dbg - X Rendering Extension client library (unstripped)
 libxrender1-udeb - X Rendering Extension client library (udeb)
Changes: 
 libxrender (1:0.9.7-1+deb7u1) wheezy-security; urgency=high
 .
   * integer overflows calculating memory needs for replies [CVE-2013-1987]
Checksums-Sha1: 
 e4ed5a6a9384bb788a42c8195bfb39de1f8eb8d4 2169 libxrender_0.9.7-1+deb7u1.dsc
 8463ff5f1ea2db1a6d0e50b28d30b8c6ea6bb538 357264 libxrender_0.9.7.orig.tar.gz
 9505763f5ed2d56877d8b82624882bec362ee54a 20546 
libxrender_0.9.7-1+deb7u1.diff.gz
 e4ca4f5123602f901da7fa6a01c9e529a674bfa1 32704 
libxrender1_0.9.7-1+deb7u1_amd64.deb
 06edca946d0266c27ad10a6e91408064232fc2fc 14858 
libxrender1-udeb_0.9.7-1+deb7u1_amd64.udeb
 fbecae559422d0d5df1f6e248bde9d0f7f3d8311 137350 
libxrender1-dbg_0.9.7-1+deb7u1_amd64.deb
 e2b400e7639406f80a330c9b94e4e192231d31e2 41110 
libxrender-dev_0.9.7-1+deb7u1_amd64.deb
Checksums-Sha256: 
 aa4ac0930d7d16b9883ecdc7014779177826426ec471cb3bee761ed916225c06 2169 
libxrender_0.9.7-1+deb7u1.dsc
 89f36e896018f5b8c00768af59e052019ae79fab69a647eb1fe61b565d7dd18e 357264 
libxrender_0.9.7.orig.tar.gz
 05126eec77eada376964323906f433da864f8cda9a7bab7986ffa7f5f107af88 20546 
libxrender_0.9.7-1+deb7u1.diff.gz
 43e76a563578401509d755317a3b730fa8e8e83f3ae3dffecf5d38a7cddd51f0 32704 
libxrender1_0.9.7-1+deb7u1_amd64.deb
 8f707f015eb8d5cc683635bb0454c567000b19fbc61cbad6810c35e7246d1db7 14858 
libxrender1-udeb_0.9.7-1+deb7u1_amd64.udeb
 3f198e14188b4350eb4e0e16fdb5447e61a87fbba6b1db78ba6d413ccf162cd2 137350 
libxrender1-dbg_0.9.7-1+deb7u1_amd64.deb
 cb7387cf07671281d621d2b91fb457718c12b925638413dba6f907319b55bd2e 41110 
libxrender-dev_0.9.7-1+deb7u1_amd64.deb
Files: 
 8b755485d47712a93d3abcfe7511fe9f 2169 x11 optional 
libxrender_0.9.7-1+deb7u1.dsc
 b6702e6f56f9d9103dc688f4336529a9 357264 x11 optional 
libxrender_0.9.7.orig.tar.gz
 c972c369f706864645bb5a4267610e6b 20546 x11 optional 
libxrender_0.9.7-1+deb7u1.diff.gz
 db8ac424ee69f37873ef1627818324c5 32704 libs optional 
libxrender1_0.9.7-1+deb7u1_amd64.deb
 18d8c7b6c9ea6ec75680290f47240c9f 14858 debian-installer optional 
libxrender1-udeb_0.9.7-1+deb7u1_amd64.udeb
 c723f924c85e343a0ca68fb2263adc9b 137350 debug extra 
libxrender1-dbg_0.9.7-1+deb7u1_amd64.deb
 068d86d2047e0bb166dbe4c9f5e1fe87 41110 libdevel optional 
libxrender-dev_0.9.7-1+deb7u1_amd64.deb
Package-Type: udeb

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

iQIcBAEBCAAGBQJRknXZAAoJEDEBgAUJBeQMkYAP/1x4uNVndVJQdMiJOZZgKWkL
0c2LNrInYZK2sBKs4m0aygxlG0DaZKkeZw6f5s1D9kPCa4EleLwVqn8H0r6z3Tbt
g+7vPpFVQwbfPewkadZlRlHAyWtLGBNdv95McWMBXyadmOgtG/9HIBLipkHh0BEz
G1SbTTK4Ohravoke9BsRr6rAUzZ7qjBPVJuEQLJ9xzLtI4OAZqJg984Wb5KsDGtT
vPwvEjoxygZkWSIG2QCyWO7KLJH/hiWIwXwIFH436/faau8ZMxByniPEzoT+WedC
aJuRMXX0hWR36XeAsLp0bhTQO73v/JlhiMz69E2/5Ecb5wuCSjvRJSqCuE8YkrI6
N6FeDCBzqNJEAgSUuzHWCa160UUPV8S9ORk1B7tUttTuRl9KUJ5ecZyXaRGCMk6G
1/Wx9qegaQYjfr+DGoJlfzFO7ZVAHenouSA2HRXHWga7DYr5Csp50RikN4Q1D1Br
R+WIfTDe/6Y4zy13z46WttjFD8XDh7t8r6O8hWfh7ajn1DtpE9GCHpP3NGVwuY5S
M2sazncB4Z/9vvSq9L5GKKwCuqrH9nxTKR9JfactXd9+DgAZX860a6xJLarqWkbW
8A+ocGc7xHWRG2qr24KgV5FhcgXYPm1k+KtnK9x+rLmQgNYqmZ63hx2PJ4f9E4Kw
uO3QVR6vod2AMtWAEEh3
=uSZX
-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/e1ufz69-00073e...@franck.debian.org



libxtst_1.1.0-3+squeeze1_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 14 May 2013 19:09:41 +
Source: libxtst
Binary: libxtst6 libxtst6-dbg libxtst-dev
Architecture: source amd64
Version: 2:1.1.0-3+squeeze1
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libxtst-dev - X11 Record extension library (development headers)
 libxtst6   - X11 Testing -- Record extension library
 libxtst6-dbg - X11 Record extension library (debug package)
Changes: 
 libxtst (2:1.1.0-3+squeeze1) oldstable-security; urgency=low
 .
   * CVE-2013-2063
Checksums-Sha1: 
 2dc5b23e08243c1de05e0ee30467bbfbc57ee39b 1494 libxtst_1.1.0-3+squeeze1.dsc
 f2574937930955e4d6df9e20f863d83b07f2fe64 313664 libxtst_1.1.0.orig.tar.gz
 bb935d968c03acf66bee51de6f652a8228ce32c0 16925 libxtst_1.1.0-3+squeeze1.diff.gz
 06f9d2c0a29338f574885c94556ef8c128b3b6c0 19880 
libxtst6_1.1.0-3+squeeze1_amd64.deb
 22ff676cbaaaede66478fa9cce99937c3c29777d 48464 
libxtst6-dbg_1.1.0-3+squeeze1_amd64.deb
 f8c4a4dcf835a2c6552db568755a7fbdfa19e65b 24348 
libxtst-dev_1.1.0-3+squeeze1_amd64.deb
Checksums-Sha256: 
 88c24406b038e1ff8e2ef1cfadfa2aeaf580f21ba521f76d194756198269d6fe 1494 
libxtst_1.1.0-3+squeeze1.dsc
 43fe00d14460525d2c6a23e64dbdd9545ed444208a590cfae2ceae9e122462b4 313664 
libxtst_1.1.0.orig.tar.gz
 c634da1db50800d37776244329a9e6b02e460ca8fe3c3d9627a14cd8cac16e83 16925 
libxtst_1.1.0-3+squeeze1.diff.gz
 695c78a63e24c5e4967ca7e132722d79383cdb4fe7b0109438a7da059244d46f 19880 
libxtst6_1.1.0-3+squeeze1_amd64.deb
 c488640a375fe45eb94f61460d0a95d9ebbe71b0d585fdf7ff3a7faf8e5f64b4 48464 
libxtst6-dbg_1.1.0-3+squeeze1_amd64.deb
 a28886b5bfebbffbb5d0f51c60b840eca86088df6fccaf10d0b2bdb162a7e3a2 24348 
libxtst-dev_1.1.0-3+squeeze1_amd64.deb
Files: 
 e10e6eede0e534ae4fbef9c4a8bc8c5f 1494 x11 optional libxtst_1.1.0-3+squeeze1.dsc
 abb902a4417d3d118599fda630ef3342 313664 x11 optional libxtst_1.1.0.orig.tar.gz
 f4a99161c36c781eeb02d1514500a874 16925 x11 optional 
libxtst_1.1.0-3+squeeze1.diff.gz
 c9e7b6b9981f9c0ba08b2521a40e10d1 19880 libs optional 
libxtst6_1.1.0-3+squeeze1_amd64.deb
 0debc3e8ae1ef846ea163d1e27b8f525 48464 debug extra 
libxtst6-dbg_1.1.0-3+squeeze1_amd64.deb
 8be1f3a0dce92bca7f66032e1765479f 24348 libdevel optional 
libxtst-dev_1.1.0-3+squeeze1_amd64.deb

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

iEYEARECAAYFAlGSjGoACgkQXm3vHE4uylpRlgCdHnYCDzMuT3GyUXC6cbjCxXm5
dskAoKnVNBzBoor7VYnCgcbk40ZTwXFh
=/vsF
-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/e1ufz6f-00077f...@franck.debian.org



libxtst_1.2.1-1+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 May 2013 20:12:48 +0200
Source: libxtst
Binary: libxtst6 libxtst6-udeb libxtst6-dbg libxtst-dev libxtst-doc
Architecture: source all amd64
Version: 2:1.2.1-1+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libxtst-dev - X11 Record extension library (development headers)
 libxtst-doc - X11 Record extension library (documentation)
 libxtst6   - X11 Testing -- Record extension library
 libxtst6-dbg - X11 Record extension library (debug package)
 libxtst6-udeb - X11 Testing -- Record extension library (udeb)
Changes: 
 libxtst (2:1.2.1-1+deb7u1) wheezy-security; urgency=high
 .
   * integer overflow in XRecordGetContext() [CVE-2013-2063]
Checksums-Sha1: 
 b9c8bdda9390cf1d9ce45341bbc76db500c3ba2b 2335 libxtst_1.2.1-1+deb7u1.dsc
 c9c68a91dc2e6824c659dc036722f347b037b188 383788 libxtst_1.2.1.orig.tar.gz
 9268b765de7fae6cd625610874d2f9ae82f1b863 17838 libxtst_1.2.1-1+deb7u1.diff.gz
 4f9382b30c461ec14d2d0124022474a36f23e8e8 71764 
libxtst-doc_1.2.1-1+deb7u1_all.deb
 00a9a577e25c99c74bf9291f3b6ffb36d8757d7c 26796 
libxtst6_1.2.1-1+deb7u1_amd64.deb
 ec82b87260e191bdddfd6ac1c26bd354f5c093bd 8816 
libxtst6-udeb_1.2.1-1+deb7u1_amd64.udeb
 d93a283e661bdbce4b0c8eb39dfef73c1707247c 60004 
libxtst6-dbg_1.2.1-1+deb7u1_amd64.deb
 f91672c4846b67b252add85d5b75a9f96df159ba 31028 
libxtst-dev_1.2.1-1+deb7u1_amd64.deb
Checksums-Sha256: 
 3ebc7c8c536181c5c323de6cf01e83c4b23837e35cc326c7a506164c6b127a99 2335 
libxtst_1.2.1-1+deb7u1.dsc
 99d7c7335439c00b8d1664d77f1ea2d857598a5ed52d32826d879cb3863cbb7a 383788 
libxtst_1.2.1.orig.tar.gz
 81cf9717c4b4c69ffaec6896ecff20c9f43b22bb71849a1f9b7634f845cc1505 17838 
libxtst_1.2.1-1+deb7u1.diff.gz
 ac1d1425da033412e94f5131ff26a992454d1eb4daca1e35abf307c633b6c4c0 71764 
libxtst-doc_1.2.1-1+deb7u1_all.deb
 8420e35b4e20a5aae4d8f36b555fce033b55446cc62407fea887aa5a4e0d0406 26796 
libxtst6_1.2.1-1+deb7u1_amd64.deb
 7855107f78e07c9ba4170bfd5ce44737eea3440a42610e3ae269e65e489beb25 8816 
libxtst6-udeb_1.2.1-1+deb7u1_amd64.udeb
 69c2fe49d1b64d24b11c52513585a8994022a49d53faf53216eca6c38add05b3 60004 
libxtst6-dbg_1.2.1-1+deb7u1_amd64.deb
 98cfb37146727d37c372f1d9ad7e38d5ce51427e72d464718c1c74e6b40d49f6 31028 
libxtst-dev_1.2.1-1+deb7u1_amd64.deb
Files: 
 c4ceeef51d7a7cd3217c016b30dd46bc 2335 x11 optional libxtst_1.2.1-1+deb7u1.dsc
 8918809e47c29b44d25eb16b1586a15b 383788 x11 optional libxtst_1.2.1.orig.tar.gz
 302a7df9459898471f381f4bdffd9093 17838 x11 optional 
libxtst_1.2.1-1+deb7u1.diff.gz
 37f886e2699702f10fde12e8dd33f7ef 71764 doc optional 
libxtst-doc_1.2.1-1+deb7u1_all.deb
 eec8fb87d860eba248d9ee7ce3d0dff9 26796 libs optional 
libxtst6_1.2.1-1+deb7u1_amd64.deb
 3c390009dbf04c183b4916d125d47180 8816 debian-installer optional 
libxtst6-udeb_1.2.1-1+deb7u1_amd64.udeb
 d851f899139197eedd25f06f8edd52af 60004 debug extra 
libxtst6-dbg_1.2.1-1+deb7u1_amd64.deb
 9a58422449a24fbc2b25b6e5979347d8 31028 libdevel optional 
libxtst-dev_1.2.1-1+deb7u1_amd64.deb
Package-Type: udeb

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

iQIcBAEBCAAGBQJRkn/eAAoJEDEBgAUJBeQMC7gP/jAqbAmOBwvG2HVkubogBIvR
S8MpfhdpR4eexXqr+8kA8K4iY9vV+PXOI/mYmIdKHxS8BhsmuTl8kJHPAv8GCy1x
gjW83qc/uUxB9XFZgJ4Zv0kTs6H6QKJvkLl+lET0vqEIeog5ZQ23UD3gXjqaCgPT
eNubQbpP9NeUcC9EZ4+38mzps2zmilzF+D4mq+pEpGkidbouI3NDs2+DGRcw7BNO
o/9HJqZM1i7vWq5FeaIrxCEocGPy5fDPVjxRppIMBvj2TbYh4ix3bcB0/XNn0Udx
gi7a4FrU0k5ET/23yGH939lLTbD2zEP2t8OFq+j7RAK7cXKS7GhnjRGGHD6CPY0R
9Gpxp7/eo0Vpne6KOOwPRJuWzg84tdB4WRlxdM7TuGUWA+pTawTd70Q30FJxtT7I
HkkHai1GZkJOvCyPRjWMcwo/YvY+Ekho6zFhEf0dr8i1EzFZLEa/W/3c5He7P9fk
S+XwUU4+/+ZVCmaLM9rWQCNhsb/lE2H6h7W8oQ/GYGv8Me2ux899ZcARNfv/5Yh3
Lft6/A0NOr8MOL7FQXkrzawYPameZdN4K188S0jvAElztzUsNt4Xu0tCkmmSUgBJ
xXMk2DtplzHvhxZ5calMEkNWQQMdebFqvROcnmM5WjKR4bUtL+4502nMbtlWY5v2
WzuJWKG4h+secfUlDolM
=F2RX
-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/e1ufz71-0007b4...@franck.debian.org



libxvmc_1.0.5-1+squeeze1_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 13 May 2013 21:31:32 +
Source: libxvmc
Binary: libxvmc1 libxvmc1-dbg libxvmc-dev
Architecture: source amd64
Version: 2:1.0.5-1+squeeze1
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 libxvmc-dev - X11 Video extension library (development headers)
 libxvmc1   - X11 Video extension library
 libxvmc1-dbg - X11 Video extension library (debug package)
Changes: 
 libxvmc (2:1.0.5-1+squeeze1) oldstable-security; urgency=low
 .
   * CVE-2013-1990 CVE-2013-1994
Checksums-Sha1: 
 50e77283a86a62e6f6c91cb0ee2537699a500308 1431 libxvmc_1.0.5-1+squeeze1.dsc
 3409ff29c4ba873dbf0610086d15d43022395b3f 360741 libxvmc_1.0.5.orig.tar.gz
 bcf06b2bb1c7d0daa2377db5c37f300e6cfa637b 22185 libxvmc_1.0.5-1+squeeze1.diff.gz
 bbc39a685d0b53c19f2ecfc3645f37d535c6c3ab 21038 
libxvmc1_1.0.5-1+squeeze1_amd64.deb
 a7ac590d6073ed0dae17843e5500625e34e6bf31 43442 
libxvmc1-dbg_1.0.5-1+squeeze1_amd64.deb
 13ae8d56d38a98b9d0c9a22213ee41d806f10df0 30884 
libxvmc-dev_1.0.5-1+squeeze1_amd64.deb
Checksums-Sha256: 
 dcf744639c9eca2ef25609bb8466800c158afd7eea85bf44a509b22c5d3db1b5 1431 
libxvmc_1.0.5-1+squeeze1.dsc
 7e1652c0c518b6f3eab099b18e368f64494d0778d1d9cce1a24060e72193161a 360741 
libxvmc_1.0.5.orig.tar.gz
 ca268f85587f0999766c6078fdeb3968b73312a029cb717ac745575bdb5a133e 22185 
libxvmc_1.0.5-1+squeeze1.diff.gz
 c732f98f41b555e2fba152d41891052e9a35f805d13230d338c366e2d57ec271 21038 
libxvmc1_1.0.5-1+squeeze1_amd64.deb
 9e020ab04cc6de0b4faabd709c4275e164c495ba176d24c01e4ce0ab668b026e 43442 
libxvmc1-dbg_1.0.5-1+squeeze1_amd64.deb
 3ba505da8c6f74b228cfbd9af9fa6fd53c633ff91db1af7756615a6f78d03bd6 30884 
libxvmc-dev_1.0.5-1+squeeze1_amd64.deb
Files: 
 99303984ebc7bbfd2ae56354d0f97ae3 1431 x11 optional libxvmc_1.0.5-1+squeeze1.dsc
 0a5f17ec2ea9ce3681067c6d1c28b4a2 360741 x11 optional libxvmc_1.0.5.orig.tar.gz
 cdfbab9958bb04dd08edbaf7c1dbbfa1 22185 x11 optional 
libxvmc_1.0.5-1+squeeze1.diff.gz
 5ce6a7c6642f274a43de1e04b64ba219 21038 libs optional 
libxvmc1_1.0.5-1+squeeze1_amd64.deb
 dea2f6768f42fa72da371340989d1c99 43442 debug extra 
libxvmc1-dbg_1.0.5-1+squeeze1_amd64.deb
 5b543db8e81f8ada3c8828a9fdba3fd8 30884 libdevel optional 
libxvmc-dev_1.0.5-1+squeeze1_amd64.deb

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

iEYEARECAAYFAlGRXFUACgkQXm3vHE4uylp5vQCeIvxTHYDGUr9g9xPot5BXiSnJ
+7gAoJZXr1PZrVdCsgiUaQuwYqPixIGc
=zpLE
-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/e1ufz7y-0007jr...@franck.debian.org



libxvmc_1.0.7-1+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 May 2013 21:51:11 +0200
Source: libxvmc
Binary: libxvmc1 libxvmc1-dbg libxvmc-dev
Architecture: source amd64
Version: 2:1.0.7-1+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libxvmc-dev - X11 Video extension library (development headers)
 libxvmc1   - X11 Video extension library
 libxvmc1-dbg - X11 Video extension library (debug package)
Changes: 
 libxvmc (2:1.0.7-1+deb7u1) wheezy-security; urgency=high
 .
   * integer overflows calculating memory needs for replies [CVE-2013-1990]
   * Multiple unvalidated assumptions in XvMCGetDRInfo() [CVE-2013-1999]
Checksums-Sha1: 
 28edca8fb4611255c5c7bca56a0295460fdf30cc 2131 libxvmc_1.0.7-1+deb7u1.dsc
 51f6c6209d4f104d95d020352125eace001fa111 363686 libxvmc_1.0.7.orig.tar.gz
 706aa7c578cbd9b66f9106b9a36c9ceb329a66bd 16321 libxvmc_1.0.7-1+deb7u1.diff.gz
 6d6e42e94421af892891c412a99eccdf850e5307 24352 
libxvmc1_1.0.7-1+deb7u1_amd64.deb
 544c96aaa27f2a82440536ecf2d31886bcb3e6ef 51688 
libxvmc1-dbg_1.0.7-1+deb7u1_amd64.deb
 bb3bdacdb8e8bb311076e878be1ed49024de529d 33294 
libxvmc-dev_1.0.7-1+deb7u1_amd64.deb
Checksums-Sha256: 
 981904d0e96481a6693fb1ef1144d7b485164423a710dc0d7ff71a8c097de862 2131 
libxvmc_1.0.7-1+deb7u1.dsc
 7780eee481c802f196fefe140fe5ecf9a95ce47a89f3c6d735f0285402f6e8a1 363686 
libxvmc_1.0.7.orig.tar.gz
 ef2d36903422b0939c388e372eaffd0759b1ca2364c1d2f691b0c45ee98f6ab0 16321 
libxvmc_1.0.7-1+deb7u1.diff.gz
 45c51a7581926ba22152697c1031f9f79c0159499a6aa5cb1a40790073cb9ee9 24352 
libxvmc1_1.0.7-1+deb7u1_amd64.deb
 f06bd68b997cf8fc373d52797539669458d4b8dd907714bc5cd3537cd4926c48 51688 
libxvmc1-dbg_1.0.7-1+deb7u1_amd64.deb
 f267da2f1ab51e6b790a518a14b26e5211fecefdb5d3ac70a2acecd0ee275caf 33294 
libxvmc-dev_1.0.7-1+deb7u1_amd64.deb
Files: 
 eed811d978927c6800bc31c65a6d667a 2131 x11 optional libxvmc_1.0.7-1+deb7u1.dsc
 70b67621b8bca739831806fc6b354b79 363686 x11 optional libxvmc_1.0.7.orig.tar.gz
 32c4387d406a359840027d9ef5c6536f 16321 x11 optional 
libxvmc_1.0.7-1+deb7u1.diff.gz
 fa376a823081471e43bc925bb1fd1abb 24352 libs optional 
libxvmc1_1.0.7-1+deb7u1_amd64.deb
 0a4ea200f5dadc2d515de3a64f01fe98 51688 debug extra 
libxvmc1-dbg_1.0.7-1+deb7u1_amd64.deb
 ebb6d8d684e5789e9f3da6626504c9bb 33294 libdevel optional 
libxvmc-dev_1.0.7-1+deb7u1_amd64.deb

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

iQIcBAEBCAAGBQJRkyrFAAoJEDEBgAUJBeQMdnEQAMJdZCr7K5InEFC95J+u2TtM
CB4H16doNXEUZdK7/qR0f2phpBtq69G0sBn4h2tAkgT6J70hoCEkU92nwa2b1kt4
ZiNKlmkPP/q9+iSv7MAZkabSSOkKxsF/CsMuq6I9llhvF4EJ0qQApXRDRzfhThGa
oznXoM62dw/4PIiEfW9tVdE3C2vRuBa/A5yaBO16tCVbnfE/QZwpF2jE5U1zdWce
dYfin7i++dNK6LfZhuApJPaWq2ijYsXqKU7Vf0EHoybUubWs4/RfybYYC9cdBdgr
+T+h1qKFRjH2HLA0gwC3JN4NvVeA4WC9VF1jFFTxjqfe3kzi2Drn7P6upCBeSuwb
A1/2YUFhTSd3U57tTpVhScXKPYmRwahIIX0BVollMIROi53zZONaX0Fbq+wanjSm
65xv7mk9EFfsvYNrw5jxrBuIRly/wlm/HtAxRXV2hKo1Ck2e8BinMGWzlVzgi7Q4
p575jQm/Gl0N4Dl/5y6+ECFwl3RTqucOWS7BMUp6ytdfIGy3/DYrLuC1AJdd8iKk
LkPC2txQ6Bp+vOBDsF3JLkr97yAk4whgnhbmVpTXsrxTVB1Fc9E2GIsd4KUuXjiV
LfpfOKudZQCtm7LWQwRzq9iv0ex33dfCulpwbOLx1f86P2OIIFeUZ5AQpcLdfnj4
YT7FW83C/eiGlM6udolj
=UT+Y
-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/e1ufz7t-0007nk...@franck.debian.org



libxxf86vm_1.1.2-1+deb7u1_amd64.changes ACCEPTED into proposed-updates-stable-new

2013-05-23 Thread Debian FTP Masters
Mapping stable-security to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 15 May 2013 19:35:47 +0200
Source: libxxf86vm
Binary: libxxf86vm1 libxxf86vm1-dbg libxxf86vm-dev
Architecture: source amd64
Version: 1:1.1.2-1+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libxxf86vm-dev - X11 XFree86 video mode extension library (development headers)
 libxxf86vm1 - X11 XFree86 video mode extension library
 libxxf86vm1-dbg - X11 XFree86 video mode extension library (debug package)
Changes: 
 libxxf86vm (1:1.1.2-1+deb7u1) wheezy-security; urgency=high
 .
   * When Xcalloc() returns NULL, you don't need to Xfree() it
   * Improve error handling in XF86VidModeGetMonitor()
   * Unlock display before returning alloc error in XF86VidModeGetModeLine(),
 XF86VidModeGetAllModeLines(), XF86VidModeGetDotClocks()
   * memory corruption in XF86VidModeGetGammaRamp() [CVE-2013-2001]
   * avoid integer overflow in XF86VidModeGetModeLine()
Checksums-Sha1: 
 0b95a5c806c56425373638da0098f4a4ae6d92a7 2128 libxxf86vm_1.1.2-1+deb7u1.dsc
 842f5d837c100e2ac8cb35feb13185cc5fb67bea 346676 libxxf86vm_1.1.2.orig.tar.gz
 e4214b882df64905b309f1aa4265ac39fd07159c 7091 libxxf86vm_1.1.2-1+deb7u1.diff.gz
 1c7a5457ca41b6e8ea38debdefffcaa124891ed5 19542 
libxxf86vm1_1.1.2-1+deb7u1_amd64.deb
 094fe13473112acbb6ce953a69eb9df8e40de316 39624 
libxxf86vm1-dbg_1.1.2-1+deb7u1_amd64.deb
 9fce848009e6e17ab952ded8f3297d40005c0dcf 23848 
libxxf86vm-dev_1.1.2-1+deb7u1_amd64.deb
Checksums-Sha256: 
 5c75aa0be1d7b72b974a1901196f02e688c67fa6993fc49c7a563297596f5127 2128 
libxxf86vm_1.1.2-1+deb7u1.dsc
 a19c1e743a21da2c7243b47354afd911f0dbb79d6ac8fe560da1846863c181f6 346676 
libxxf86vm_1.1.2.orig.tar.gz
 babfe8b859ad2f1d9e8810d06039ce478e41c0b733fd27bccad5b23ed1d99389 7091 
libxxf86vm_1.1.2-1+deb7u1.diff.gz
 f58ec166fdf422f15d0cc16646ff8c5f00d3e4d5852fb09c300658c6cb199798 19542 
libxxf86vm1_1.1.2-1+deb7u1_amd64.deb
 47eb512cf7f5a6bc113dd0963f13de3694fecd771c7618a3081241ad954354b6 39624 
libxxf86vm1-dbg_1.1.2-1+deb7u1_amd64.deb
 1ef919bd9be2bd5420df74a463fc06eae3fccf34cc8f876c0a9cd19b4026 23848 
libxxf86vm-dev_1.1.2-1+deb7u1_amd64.deb
Files: 
 8a99735c65ef33b2c0984d80c9deda5e 2128 x11 optional 
libxxf86vm_1.1.2-1+deb7u1.dsc
 84d26e26c07f8cbcb5f447590df5b5c3 346676 x11 optional 
libxxf86vm_1.1.2.orig.tar.gz
 21b0239db9edbb69498ca3b9aaa45110 7091 x11 optional 
libxxf86vm_1.1.2-1+deb7u1.diff.gz
 59d876c23a2070df62b1a24d82f2acbb 19542 libs optional 
libxxf86vm1_1.1.2-1+deb7u1_amd64.deb
 ca9f930d590fa83ec441644bf4044347 39624 debug extra 
libxxf86vm1-dbg_1.1.2-1+deb7u1_amd64.deb
 2a7ecd127c9d602c95be02661f3bb152 23848 libdevel optional 
libxxf86vm-dev_1.1.2-1+deb7u1_amd64.deb

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

iQIcBAEBCAAGBQJRk88CAAoJEDEBgAUJBeQMXWcQAOP8+nJGN43a0JPOvz9a1SLM
g0XxKlbmDAXzYYN+mv1wMFVeqbkAk3R2IwN9wgvi96WUFFFPo37TJuFz8xk16JT4
PopMzyXmfiTIGWpkb0Cfis8+oSke4Ou6A7yUyLQcLtLYYGEowaefMo5xsKvLIxZv
3UMsMZX1CW2S9J9BwekPnAOkY0m/GdZoEpSN8MEzoa2ZeEd/TjUb014gpUt0UaCw
vt2Ia4Yx3w0qd/SuLOmmlgunwL0sTXcc2Vd56tyrUXgkC60qJSJH8XSCEx6XQPAz
f2pX0F82Kk3MP7U5lVTcXbfph0qpFO11uwWpuXr/b4dDlBR5vdyvOSce7B2z37c+
tBKngUvw2eF7ZTfoY0TadMnDBxEeS0rNFCuCht6uzRiEJ20eGLhWufCxWJTNN0t4
Gh/uq0F4OBmnOkOteb/kJ6znj8n1rXKLJ87UQsHRnaAUQtGCL6+a85pMPtIdqlcY
t/XxOFEU+0sTsEZJfGaOh5gVeCvNOcrjiSMJjBRYruw1YhA3dWFtXWjosbR/jzHe
vCpXnFZJwUabDACH2Xte3zbN+Q9X2yNDCPe3bbz31dsUge0oGlhCAYY47Rjcds5t
c7LPgGrz8qzkjVZPPxYeDUXKKZ3LIV04FoA+/L3U1B58pvA6A3MFQrHwgz5f3aM6
jwMyt5N6Mf8uhJNsUc78
=x4Ks
-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/e1ufz8i-0007rb...@franck.debian.org



xserver-xorg-video-openchrome_0.2.904+svn842-2+squeeze1_amd64.changes ACCEPTED into oldstable-proposed-updates-oldstable-new

2013-05-23 Thread Debian FTP Masters
Mapping oldstable-security to oldstable-proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 13 May 2013 21:50:32 +
Source: xserver-xorg-video-openchrome
Binary: xserver-xorg-video-openchrome xserver-xorg-video-via
Architecture: source amd64
Version: 1:0.2.904+svn842-2+squeeze1
Distribution: oldstable-security
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Moritz Muehlenhoff j...@debian.org
Description: 
 xserver-xorg-video-openchrome - X.Org X server -- VIA display driver
 xserver-xorg-video-via - X.Org X server -- VIA display driver (dummy 
transitional package)
Changes: 
 xserver-xorg-video-openchrome (1:0.2.904+svn842-2+squeeze1) 
oldstable-security; urgency=low
 .
   * CVE-2013-1994
Checksums-Sha1: 
 4530bf99cf8e1d01cd97341b1e1d371df9a8d793 1975 
xserver-xorg-video-openchrome_0.2.904+svn842-2+squeeze1.dsc
 d814d40f34d6d76c8da3face6321b75ecd90db6f 280881 
xserver-xorg-video-openchrome_0.2.904+svn842.orig.tar.gz
 3fcc7bfcf8bd2f2e676acd14e24df99f247796bd 18141 
xserver-xorg-video-openchrome_0.2.904+svn842-2+squeeze1.diff.gz
 6ce9c6bb8f79521425466ac626f43aebdf9e7fd3 197686 
xserver-xorg-video-openchrome_0.2.904+svn842-2+squeeze1_amd64.deb
 7c21577282e479aa4d662671feb6765be10bc9ac 25844 
xserver-xorg-video-via_0.2.904+svn842-2+squeeze1_amd64.deb
Checksums-Sha256: 
 c6aa342191bc90a1ce91978a28bf69e189c4545586c4f14291e5dabad8cd8ab3 1975 
xserver-xorg-video-openchrome_0.2.904+svn842-2+squeeze1.dsc
 e2041b72bdfd99fdc4ff95fe4450b67eb1b3fb372dda9f852589e0abcb5a8752 280881 
xserver-xorg-video-openchrome_0.2.904+svn842.orig.tar.gz
 854e64efd54773d13843bd7b4b096d9a59ffed7713d00697dd58d551990827b3 18141 
xserver-xorg-video-openchrome_0.2.904+svn842-2+squeeze1.diff.gz
 30fea62db9a2e1c62b6d74aa6617bf236e25075d4a816d797a57aa6c32435a25 197686 
xserver-xorg-video-openchrome_0.2.904+svn842-2+squeeze1_amd64.deb
 828bee6b818f6fe3e6822840646c6349bd964798cc2b4208a92b9008876ce38c 25844 
xserver-xorg-video-via_0.2.904+svn842-2+squeeze1_amd64.deb
Files: 
 be4a8301ab2f1b8e058a55b8cf8ddd57 1975 x11 optional 
xserver-xorg-video-openchrome_0.2.904+svn842-2+squeeze1.dsc
 47783795710c1163cf30aaf500dc2932 280881 x11 optional 
xserver-xorg-video-openchrome_0.2.904+svn842.orig.tar.gz
 002ded81369f61d7c599f04885fa7b41 18141 x11 optional 
xserver-xorg-video-openchrome_0.2.904+svn842-2+squeeze1.diff.gz
 040343ff3bf9f75fcf65785473fb1389 197686 x11 optional 
xserver-xorg-video-openchrome_0.2.904+svn842-2+squeeze1_amd64.deb
 6f459337928f603870f8236ae08f92a2 25844 x11 optional 
xserver-xorg-video-via_0.2.904+svn842-2+squeeze1_amd64.deb

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

iEYEARECAAYFAlGWk78ACgkQXm3vHE4uylozvQCdG/fCbWPkRYLUGRXWCpbWVHpG
OdkAoMTLoGoQniek7mnk3p4O+eau6vmW
=enOY
-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/e1ufz8r-0007v9...@franck.debian.org



mesa: Changes to 'refs/tags/mesa-8.0.5-4+deb7u1'

2013-05-23 Thread Julien Cristau
Tag 'mesa-8.0.5-4+deb7u1' created by Julien Cristau jcris...@debian.org at 
2013-05-16 20:44 +

Tagging upload of mesa 8.0.5-4+deb7u1 to wheezy-security.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAABCAAGBQJRlUUxAAoJEDEBgAUJBeQMpBcP/3v0ErmJjIx3PdlCq4WB28kl
LGcTelT/CkV8H6l6+uTxNOw++PD8eyR1Y0i4JKTv9gDYe4GHFwCz6KILXBd7aQ/n
JIwgt2SjFi6u8s7/2ImBl7RcK3rzKSd5h/RnbEN8skh6t9IhYKy3yOwQMYvtmYfx
5PexSC86aMZ7JQX7AnUQteC2MzpW3dK5GQJFujZQukAwvKMs55ljJivuiITJomk+
nPrSaeboGJD51MKnw5HxmirtvBwkb2WAW2IoaTMjatrwGHwcPO41NNUbgyzq5g7X
7rORdz62hvYn4YxBwoCPhpxRZKLYDd0XfWGFJeEHiVTJPJmqRB11wma1+FsL24qJ
3v/xZfczTO3ez1EeOZmPkxPIS1YDj6igwH/al6oDuj01UyGC5yfrf9qh0un9NkJM
oMq5FOfew0e30enVhDnIwcli9NFsalMQYcWWmPmA9bdSqw3+X4mna8DMJXwiiIi6
rAl8z+n75mSYu2LGDIPt8Sx1ySvv8wfeQhREE0rTbzdq+yt/dUsZ9ZQ3tEC1THUi
ZzOKy1Y06dgHYZ8fjUVTNQFkQJelYMfeySaJwSRrcdXfpPBg9W5q/ExYqWNCjxA+
NDLdNt7JukCFAXnV6VzQye4ovGEvdDNBy+Nr2QTzJzshFpzj/dLWGrB5FlUv0mRN
mWH1u8EJB3nQUGuSYpQM
=qvwO
-END PGP SIGNATURE-

Changes since mesa-8.0.5-4:
Alan Coopersmith (2):
  integer overflow in XF86DRIOpenConnection() [CVE-2013-1993 1/2]
  integer overflow in XF86DRIGetClientDriverName() [CVE-2013-1993 2/2]

Julien Cristau (1):
  Upload to wheezy-security

---
 debian/changelog  |6 ++
 src/glx/XF86dri.c |   15 +++
 2 files changed, 17 insertions(+), 4 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/e1ufaom-0007g5...@vasks.debian.org



mesa: Changes to 'debian-wheezy'

2013-05-23 Thread Julien Cristau
New branch 'debian-wheezy' available with the following commits:
commit b6ac53aac1d2822139f0fe283ffcfd9ece27843f
Author: Julien Cristau jcris...@debian.org
Date:   Wed May 15 21:19:38 2013 +0200

Upload to wheezy-security

commit b5ddbb414a1cdd456ab3077dc566e7c4a2835900
Author: Alan Coopersmith alan.coopersm...@oracle.com
Date:   Fri Apr 26 16:33:03 2013 -0700

integer overflow in XF86DRIGetClientDriverName() [CVE-2013-1993 2/2]

clientDriverNameLength is a CARD32 and needs to be bounds checked before
adding one to it to come up with the total size to allocate, to avoid
integer overflow leading to underallocation and writing data from the
network past the end of the allocated buffer.

Reported-by: Ilja Van Sprundel ivansprun...@ioactive.com
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
Signed-off-by: Julien Cristau jcris...@debian.org

commit 7acbf13aa7d1a2a0af734a551721125ab58ac320
Author: Alan Coopersmith alan.coopersm...@oracle.com
Date:   Fri Apr 26 16:31:58 2013 -0700

integer overflow in XF86DRIOpenConnection() [CVE-2013-1993 1/2]

busIdStringLength is a CARD32 and needs to be bounds checked before adding
one to it to come up with the total size to allocate, to avoid integer
overflow leading to underallocation and writing data from the network past
the end of the allocated buffer.

Reported-by: Ilja Van Sprundel ivansprun...@ioactive.com
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
Signed-off-by: Julien Cristau jcris...@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/e1ufaom-0007fg...@vasks.debian.org



libxp: Changes to 'debian-unstable'

2013-05-23 Thread Julien Cristau
 Makefile.in  |  120 
 aclocal.m4   |15044 --
 config.guess |  490 
 config.h.in  |   10 
 config.sub   |  278 
 configure|30814 ++-
 configure.ac |6 
 debian/changelog |   14 
 depcomp  |   83 
 install-sh   |5 
 ltmain.sh|14841 +++---
 man/Makefile.in  |  115 
 missing  |   45 
 mkinstalldirs|5 
 src/Makefile.in  |   65 
 src/XpAttr.c |   36 
 src/XpExtUtil.h  |   14 
 src/XpPrinter.c  |   43 
 src/XpScreens.c  |   16 
 19 files changed, 33369 insertions(+), 28675 deletions(-)

New commits:
commit 5d91b8db7a91735a1697e9989da411772a0a3ed9
Author: Julien Cristau jcris...@debian.org
Date:   Tue May 14 20:32:35 2013 +0200

autoreconf to pick up configure changes.

Unfortunately this doesn't seem to have been done since 2008, so we pick
up a lot more changes than the small one we care about :(

diff --git a/Makefile.in b/Makefile.in
index e1ffcf8..75da7f3 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,8 +1,9 @@
-# Makefile.in generated by automake 1.10.1 from Makefile.am.
+# Makefile.in generated by automake 1.10.3 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
+# Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -15,8 +16,6 @@
 @SET_MAKE@
 
 # 
-#  $Id$
-# 
 #  Copyright © 2003 Keith Packard, Noah Levitt
 # 
 #  Permission to use, copy, modify, distribute, and sell this software and its
@@ -58,7 +57,7 @@ host_triplet = @host@
 subdir = .
 DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in $(srcdir)/config.h.in $(srcdir)/xp.pc.in \
-   $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \
+   $(top_srcdir)/configure AUTHORS COPYING ChangeLog NEWS \
config.guess config.sub depcomp install-sh ltmain.sh missing \
mkinstalldirs
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
@@ -108,6 +107,7 @@ ACLOCAL = @ACLOCAL@
 ADMIN_MAN_DIR = @ADMIN_MAN_DIR@
 ADMIN_MAN_SUFFIX = @ADMIN_MAN_SUFFIX@
 AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 APP_MAN_DIR = @APP_MAN_DIR@
 APP_MAN_SUFFIX = @APP_MAN_SUFFIX@
 AR = @AR@
@@ -115,78 +115,88 @@ AUTOCONF = @AUTOCONF@
 AUTOHEADER = @AUTOHEADER@
 AUTOMAKE = @AUTOMAKE@
 AWK = @AWK@
+BASE_CFLAGS = @BASE_CFLAGS@
 CC = @CC@
 CCDEPMODE = @CCDEPMODE@
 CFLAGS = @CFLAGS@
+CHANGELOG_CMD = @CHANGELOG_CMD@
 CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
-CXX = @CXX@
-CXXCPP = @CXXCPP@
-CXXDEPMODE = @CXXDEPMODE@
-CXXFLAGS = @CXXFLAGS@
+CWARNFLAGS = @CWARNFLAGS@
 CYGPATH_W = @CYGPATH_W@
 DEFS = @DEFS@
 DEPDIR = @DEPDIR@
+DLLTOOL = @DLLTOOL@
 DRIVER_MAN_DIR = @DRIVER_MAN_DIR@
 DRIVER_MAN_SUFFIX = @DRIVER_MAN_SUFFIX@
 DSYMUTIL = @DSYMUTIL@
-ECHO = @ECHO@
+DUMPBIN = @DUMPBIN@
 ECHO_C = @ECHO_C@
 ECHO_N = @ECHO_N@
 ECHO_T = @ECHO_T@
 EGREP = @EGREP@
 EXEEXT = @EXEEXT@
-F77 = @F77@
-FFLAGS = @FFLAGS@
+FGREP = @FGREP@
 FILE_MAN_DIR = @FILE_MAN_DIR@
 FILE_MAN_SUFFIX = @FILE_MAN_SUFFIX@
 GREP = @GREP@
 INSTALL = @INSTALL@
+INSTALL_CMD = @INSTALL_CMD@
 INSTALL_DATA = @INSTALL_DATA@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+LD = @LD@
 LDFLAGS = @LDFLAGS@
 LIBOBJS = @LIBOBJS@
 LIBS = @LIBS@
 LIBTOOL = @LIBTOOL@
 LIB_MAN_DIR = @LIB_MAN_DIR@
 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@
+LIPO = @LIPO@
 LN_S = @LN_S@
 LTLIBOBJS = @LTLIBOBJS@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
-MALLOC_ZERO_CFLAGS = @MALLOC_ZERO_CFLAGS@
+MANIFEST_TOOL = @MANIFEST_TOOL@
+MAN_SUBSTS = @MAN_SUBSTS@
 MISC_MAN_DIR = @MISC_MAN_DIR@
 MISC_MAN_SUFFIX = @MISC_MAN_SUFFIX@
 MKDIR_P = @MKDIR_P@
+NM = @NM@
 NMEDIT = @NMEDIT@
+OBJDUMP = @OBJDUMP@
 OBJEXT = @OBJEXT@
+OTOOL = @OTOOL@
+OTOOL64 = @OTOOL64@
 PACKAGE = @PACKAGE@
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
 PACKAGE_NAME = @PACKAGE_NAME@
 PACKAGE_STRING = @PACKAGE_STRING@
 PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_URL = @PACKAGE_URL@
 PACKAGE_VERSION = @PACKAGE_VERSION@
 PATH_SEPARATOR = @PATH_SEPARATOR@
 PKG_CONFIG = @PKG_CONFIG@
+PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
+PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
 RANLIB = @RANLIB@
 SED = @SED@
 SET_MAKE = @SET_MAKE@
 SHELL = @SHELL@
+STRICT_CFLAGS = @STRICT_CFLAGS@
 STRIP = @STRIP@
 VERSION = @VERSION@
-XMALLOC_ZERO_CFLAGS = @XMALLOC_ZERO_CFLAGS@
+XORG_MAN_PAGE = @XORG_MAN_PAGE@
 XPRINT_CFLAGS = @XPRINT_CFLAGS@
 XPRINT_LIBS = @XPRINT_LIBS@
-XTMALLOC_ZERO_CFLAGS = @XTMALLOC_ZERO_CFLAGS@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
 abs_top_builddir = @abs_top_builddir@
 abs_top_srcdir = @abs_top_srcdir@
+ac_ct_AR = @ac_ct_AR@
 

libfs: Changes to 'debian-wheezy'

2013-05-23 Thread Julien Cristau
New branch 'debian-wheezy' available with the following commits:
commit 04dad3fde681c4381b55c24a7bfc828492834764
Author: Julien Cristau jcris...@debian.org
Date:   Mon May 13 23:32:54 2013 +0200

Upload to wheezy-security

commit ca658fd3238440a73553df48e3292da071bd3635
Author: Alan Coopersmith alan.coopersm...@oracle.com
Date:   Sun Apr 14 09:07:32 2013 -0700

Sign extension issue and integer overflow in FSOpenServer() [CVE-2013-1996]

   altlen = (int) *ad++; -- if char is 0xff, will sign extend to int 
(0x == -1)
   alts[i].name = (char *) FSmalloc(altlen + 1); -- -1 + 1 == 0
 ...
   memmove(alts[i].name, ad, altlen); -- memory corruption

Reported-by: Ilja Van Sprundel ivansprun...@ioactive.com
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
Signed-off-by: Julien Cristau jcris...@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/e1ufaj2-0002bn...@vasks.debian.org



libxres: Changes to 'debian-wheezy'

2013-05-23 Thread Julien Cristau
New branch 'debian-wheezy' available with the following commits:
commit ad7f2cb02dd3fa13f7fcfeae2d2f40df2729bb0e
Author: Julien Cristau jcris...@debian.org
Date:   Tue May 14 00:32:27 2013 +0200

Upload to wheezy-security

commit 1205f5ae76cc0114694f31ed24313f225eabb678
Author: Alan Coopersmith alan.coopersm...@oracle.com
Date:   Fri Apr 12 23:36:13 2013 -0700

integer overflow in XResQueryClientResources() [CVE-2013-1988 2/2]

The CARD32 rep.num_types needs to be bounds checked before multiplying
by sizeof(XResType) to avoid integer overflow leading to underallocation
and writing data from the network past the end of the allocated buffer.

Reported-by: Ilja Van Sprundel ivansprun...@ioactive.com
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
Signed-off-by: Julien Cristau jcris...@debian.org

commit 04762076eb40d1ea06e0c091ef6348b421dc709d
Author: Alan Coopersmith alan.coopersm...@oracle.com
Date:   Fri Apr 12 23:36:13 2013 -0700

integer overflow in XResQueryClients() [CVE-2013-1988 1/2]

The CARD32 rep.num_clients needs to be bounds checked before multiplying
by sizeof(XResClient) to avoid integer overflow leading to underallocation
and writing data from the network past the end of the allocated buffer.

Reported-by: Ilja Van Sprundel ivansprun...@ioactive.com
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
Signed-off-by: Julien Cristau jcris...@debian.org

commit 330eb63c6f7526cf65ccf41d35411ebd24f4165a
Author: Alan Coopersmith alan.coopersm...@oracle.com
Date:   Sat Apr 13 10:34:22 2013 -0700

Use _XEatDataWords to avoid overflow of rep.length shifting

rep.length is a CARD32, so rep.length  2 could overflow in 32-bit builds

Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
Signed-off-by: Julien Cristau jcris...@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/e1ufaj3-0002cj...@vasks.debian.org



libfs: Changes to 'refs/tags/libfs-2_1.0.4-1+deb7u1'

2013-05-23 Thread Julien Cristau
Tag 'libfs-2_1.0.4-1+deb7u1' created by Julien Cristau jcris...@debian.org at 
2013-05-14 11:42 +

Tagging upload of libfs 2:1.0.4-1+deb7u1 to wheezy-security.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAABCAAGBQJRkiMQAAoJEDEBgAUJBeQMc6UP/2mx5MkGD5jpY+ZizWoiXsy+
ZnVI+91gXYb2dQ6BrrhBfnVAKOPU/4opatG0l60+1o7znZ9dS1hmdKp/PJiix1QT
ku/9bD3oerqN6tRIRsTo8RRqyKRTNl5MGyMDfGwdn9+wiArv5JkDJ0ky2cvz1ID8
iUIUI+lbz9MGB9qiRfrq4XL5qzB18k20m+jjv2PWF4AesdzPkSK8p9lwjpnD0kRU
tN4aXBRW2esYXQ//AjUcDYQK70nPxqQ00oP3Dg8TjI+oCyeBLAWDJL5CSKXC5MU7
g/gS6DdAUlRdknwbzfYvtt7jBX3EpSXsDDEy97KhsrN1IHw/qsf62e3zBiZu1tct
Vk9t8vBe0v+X1BC4qD8CtK+epQl6eI2XTBeh3oxNgrDCp6RIO2bm5KhJVbXpPxhq
EX3cJXcrjKbZGF6BNzTqhH74dxWgK0Zp+MzETc/KuVu0ZaMCZc2hOD0Iv4skOhIk
rE9Os/vrOg1A6jqeH5784rzZHkqezBSLxgtUPwcVFxPsF/QVe4aheDlc6JE9pbNO
RViusAqFL80ybbV6CiO9sL+HzY3DvqSdcvYZPukw1eE8bpON9+3G47CeuPIld6Ft
kku7j3YJ2tNOZMLXAOOVEwiNyg5Z1FwdjTvZ7cgvUDdmuydRTcYLcBYAkI1LeHn+
Z5QnbOUKW9iIudKbB/dc
=2kBb
-END PGP SIGNATURE-

Changes since libfs-2_1.0.4-1:
Alan Coopersmith (1):
  Sign extension issue and integer overflow in FSOpenServer() 
[CVE-2013-1996]

Julien Cristau (1):
  Upload to wheezy-security

---
 debian/changelog |7 +++
 src/FSOpenServ.c |8 
 2 files changed, 11 insertions(+), 4 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/e1ufaj2-0002cd...@vasks.debian.org



libxres: Changes to 'refs/tags/libxres-2_1.0.6-1+deb7u1'

2013-05-23 Thread Julien Cristau
Tag 'libxres-2_1.0.6-1+deb7u1' created by Julien Cristau jcris...@debian.org 
at 2013-05-14 11:50 +

Tagging upload of libxres 2:1.0.6-1+deb7u1 to wheezy-security.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAABCAAGBQJRkiUTAAoJEDEBgAUJBeQMBFQQAJXCBtMTgTmWQKRj2QW7xlJR
1sxfvQXDrqf3u7W1WklrM4S/t/CCxSDpM/wQ6SkFFVXfOWGwyQmN1pqOiKbhzwLE
vUFia8LHCQuDdK18qx+kKlmEpJCdWUb+FMYnXwHjbFQNU5sbZlQq5KGic346ny3C
N4xzEBOd1WChqaB2kXyeZugIsE4h/ZIXWDX8r0wD8E3tuayjgJL07ffSxVkZAZMK
PzG0TnJLu5PkcriRVNeKYhj26OACmI7j7wTLFvOKyH2FukXGoJRplMlFG4eZO+Ze
pZ08JD1tmK3jbWkd2EOwbHDwojs5Kj1yVy+fqTCytUJYJwRmENHUTwEPxlhe9OtS
Z7ikQZzWqJyp4FaCrV65KN1e0bBjDnfv1f07neKFfokbr32PGEVE5yxnhC6Upvp7
I34s0kLg7Pr49Vdx54bo6eMqKJ//AG2PdEfN5Qpp+aXKkDWQdxFkzofxD07eCUg6
iNDK9Ew/OCeI8++d18V2/qlwObooQgB/62EkGX15PzA25fm5o0mvH8nlfZ2sB0sF
RcZ2iTy9gOMZUTVYwTAeL6Z3soiQgDUr0Q8k8FQ6nCYTEYOUhLk9DJr4ENGtLHYl
fZGuRMgpvOE/lct34daWiy9Ztrysi+XCvqpTj/KANk/ok9+PweANyjMXJb9yZcr+
YIgWp5Dp677UCsjBAhCG
=qYQu
-END PGP SIGNATURE-

Changes since libxres-2_1.0.6-1:
Alan Coopersmith (3):
  Use _XEatDataWords to avoid overflow of rep.length shifting
  integer overflow in XResQueryClients() [CVE-2013-1988 1/2]
  integer overflow in XResQueryClientResources() [CVE-2013-1988 2/2]

Julien Cristau (1):
  Upload to wheezy-security

---
 configure.ac |6 ++
 debian/changelog |6 ++
 src/XRes.c   |   29 +
 3 files changed, 37 insertions(+), 4 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/e1ufaj4-0002d7...@vasks.debian.org



libxcursor: Changes to 'debian-wheezy'

2013-05-23 Thread Julien Cristau
New branch 'debian-wheezy' available with the following commits:
commit 9dccb86d48d47d6735fb40c2c56858f7a299b0a3
Author: Julien Cristau jcris...@debian.org
Date:   Tue May 14 00:41:37 2013 +0200

Upload to wheezy-security

commit e9cba4fa285f4eb93cea8a8ea1d8d98bce205fb7
Author: Alan Coopersmith alan.coopersm...@oracle.com
Date:   Fri Apr 12 21:17:28 2013 -0700

signedness bug  integer overflow in _XcursorFileHeaderCreate() 
[CVE-2013-2003]

When parsing cursor files, a user defined (e.g. through environment
variables) cursor file is opened and parsed.

The header is read in _XcursorReadFileHeader(), which reads an unsigned
int for the number of toc structures in the header, but it was being
passed to _XcursorFileHeaderCreate() as a signed int to allocate those
structures.  If the number was negative, it would pass the bounds check
and could overflow the calculation for how much memory to allocate to
store the data being read, leading to overflowing the buffer with the
data read from the user controlled file.

Reported-by: Ilja Van Sprundel ivansprun...@ioactive.com
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
Signed-off-by: Julien Cristau jcris...@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/e1ufaj5-0002dx...@vasks.debian.org



libxcursor: Changes to 'refs/tags/libxcursor-1_1.1.13-1+deb7u1'

2013-05-23 Thread Julien Cristau
Tag 'libxcursor-1_1.1.13-1+deb7u1' created by Julien Cristau 
jcris...@debian.org at 2013-05-14 11:57 +

Tagging upload of libxcursor 1:1.1.13-1+deb7u1 to wheezy-security.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAABCAAGBQJRkiaRAAoJEDEBgAUJBeQMA1sP/0z6XAlhoo00eJLXnw0eok0v
EP5mlPnBlNh41NQRkUcJgtBhRjf2kgd/zCTevlEMUWOZtjNKzRRbskv3+HSbUcoj
VRMZErujSoh1Ux5j4LXerCj/rjmLhT0EuJk7Eott8WhFx5FDUIJNS4LjAFvrx3pi
T/+NouK2CXRpreymmy+Q8rayEeCycuAOw0BsooP8KdkEWT6TjPFkNNTSqrzvoWo0
ZsuDzeV6+nbRID+DuScAp/xcUZpXioU4WYmLeJOyYKNh0pKjf3wyvKFemNS3Uz9G
cnIwpE0ek91Ts7bCr2IxN8NjWMxvJqXtd7jBrOHsF5uO7VimKtdQnss6jtQzGbWg
83X73SpHvXdwLvAK/MwTGPKAg4lxFkERsI8dseS/Z6UYMNb/ltqfGInA+N4Kzc+f
9sM7tswds29ajoHFYBqSY+xvjb2YkYXFvvU9FQ/o+c+Vxxgg94Tvx7RbbuFxPP63
aph7aKvFFJmTz9F6YH0pZFFJ0xWTKpRW4v9Q7aJBK8bDtPNs6KT2R4yjQr0SriRc
pVZF6GmabIhfTmercuqRz7lzdT7VaW3122E/wGqKbBBzjsnjVLwARYwxrNM+us//
RBbIwxk2rfh4pmFrtHr5/0Zi3YfIstOM5Lu7AsIwvJGt+7WDMSnwqIO2S55X5/wm
LYYBFihS1ajmPkbSseaJ
=zvbv
-END PGP SIGNATURE-

Changes since libxcursor-1_1.1.13-1:
Alan Coopersmith (1):
  signedness bug  integer overflow in _XcursorFileHeaderCreate() 
[CVE-2013-2003]

Julien Cristau (1):
  Upload to wheezy-security

---
 debian/changelog |7 +++
 src/file.c   |2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)
---


-- 
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/e1ufaj5-0002dv...@vasks.debian.org



libxext: Changes to 'debian-wheezy'

2013-05-23 Thread Julien Cristau
New branch 'debian-wheezy' available with the following commits:
commit bd85c13141bf096377f219b631eaa0c31e54e282
Author: Julien Cristau jcris...@debian.org
Date:   Tue May 14 00:55:11 2013 +0200

Upload to wheezy-security

commit c835b658fed055a3c1ea6fe485fa56bc050f701d
Author: Alan Coopersmith alan.coopersm...@oracle.com
Date:   Sat Mar 9 14:40:33 2013 -0800

integer overflow in XSyncListSystemCounters() [CVE-2013-1982 6/6]

If the number of counters or amount of data reported by the server is
large enough that it overflows when multiplied by the size of the
appropriate struct, then memory corruption can occur when more bytes
are read from the X server than the size of the buffers we allocated
to hold them.

V2: Make sure we don't walk past the end of the reply when converting
data from wire format to the structures returned to the caller.

Reported-by: Ilja Van Sprundel ivansprun...@ioactive.com
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
Signed-off-by: Julien Cristau jcris...@debian.org

commit 4ab9367b58cbef5549be6ee45c48595b49e9140e
Author: Alan Coopersmith alan.coopersm...@oracle.com
Date:   Sat Mar 9 14:40:33 2013 -0800

integer overflow in XShapeGetRectangles() [CVE-2013-1982 5/6]

If the number of rectangles reported by the server is large enough that
it overflows when multiplied by the size of the appropriate struct, then
memory corruption can occur when more bytes are read from the X server
than the size of the buffer we allocated to hold them.

Reported-by: Ilja Van Sprundel ivansprun...@ioactive.com
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
Signed-off-by: Julien Cristau jcris...@debian.org

commit 836d056daf460fd174f4380957b66a3d46fc5506
Author: Alan Coopersmith alan.coopersm...@oracle.com
Date:   Sat Mar 9 14:40:33 2013 -0800

integer overflow in XeviGetVisualInfo() [CVE-2013-1982 4/6]

If the number of visuals or conflicts reported by the server is large
enough that it overflows when multiplied by the size of the appropriate
struct, then memory corruption can occur when more bytes are read from
the X server than the size of the buffer we allocated to hold them.

Reported-by: Ilja Van Sprundel ivansprun...@ioactive.com
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
Signed-off-by: Julien Cristau jcris...@debian.org

commit 3ea550613ed0267086934e6389fbef0656f6f501
Author: Alan Coopersmith alan.coopersm...@oracle.com
Date:   Sat Mar 9 14:40:33 2013 -0800

several integer overflows in XdbeGetVisualInfo() [CVE-2013-1982 3/6]

If the number of screens or visuals reported by the server is large enough
that it overflows when multiplied by the size of the appropriate struct,
then memory corruption can occur when more bytes are read from the X server
than the size of the buffer we allocated to hold them.

Reported-by: Ilja Van Sprundel ivansprun...@ioactive.com
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
Signed-off-by: Julien Cristau jcris...@debian.org

commit 1e99cf4a553712dd14882fca6982eabf877224c7
Author: Alan Coopersmith alan.coopersm...@oracle.com
Date:   Sat Mar 9 14:40:33 2013 -0800

integer overflow in XcupStoreColors() [CVE-2013-1982 2/6]

If the computed number of entries is large enough that it overflows when
multiplied by the size of a xColorItem struct, or is treated as negative
when compared to the size of the stack allocated buffer, then memory
corruption can occur when more bytes are read from the X server than the
size of the buffer we allocated to hold them.

The requirement to match the number of colors specified by the caller makes
this much harder to hit than the one in XcupGetReservedColormapEntries()

Reported-by: Ilja Van Sprundel ivansprun...@ioactive.com
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
Signed-off-by: Julien Cristau jcris...@debian.org

commit b4d2357dd8ef1938186a4ae1a6924eefc08ab591
Author: Alan Coopersmith alan.coopersm...@oracle.com
Date:   Sat Mar 9 14:40:33 2013 -0800

integer overflow in XcupGetReservedColormapEntries() [CVE-2013-1982 1/6]

If the computed number of entries is large enough that it overflows when
multiplied by the size of a xColorItem struct, or is treated as negative
when compared to the size of the stack allocated buffer, then memory
corruption can occur when more bytes are read from the X server than the
size of the buffer we allocated to hold them.

Reported-by: Ilja Van Sprundel ivansprun...@ioactive.com
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
Signed-off-by: Julien Cristau jcris...@debian.org

commit 3c773c2cedb7319ede5e5e9159c29af7ba9095b3
Author: Alan Coopersmith alan.coopersm...@oracle.com
Date:   Sat Apr 13 09:32:12 2013 -0700

Use _XEatDataWords to avoid 

  1   2   >