email.txt

2013-07-06 Thread Thomas Dickey
Patch #295 - 2013/07/06

 * adjust   order  of  libraries  to  work  around  incomplete  symbol
   resolution when using --as-needed option (ArchLinux #36047).
 * minor fix for plink.sh, for IRIX64.


-- 
Thomas E. Dickey 
http://invisible-island.net
ftp://invisible-island.net


signature.asc
Description: Digital signature


Bug#621702: [PATCH libXRes] Compute number of bytes correctly in XResQueryClientPixmapBytes

2013-07-06 Thread Julien Cristau
Control: tags -1 fixed-upstream

On Sat, Jul  6, 2013 at 11:29:52 -0700, Alan Coopersmith wrote:

> On 06/30/13 11:09 AM, Julien Cristau wrote:
> >64-bit servers send the upper 32-bit in bytes_overflow.  We were
> >multiplying by 2^32 - 1 instead of 2^32 when putting things back
> >together.
> >
> >Debian bug#621702
> >
> >Reported-by: Kevin Ryde 
> >Signed-off-by: Julien Cristau 
> >---
> >  src/XRes.c |2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
[...]
> 
> Reviewed-by: Alan Coopersmith 
> 
Thanks, pushed as 0f5cfdc.  I don't know if this should also go on
libXres-1.0-branch, I guess it can always be cherry-picked if we need a
1.0.8 release before 1.2.

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: Re: [PATCH libXRes] Compute number of bytes correctly in XResQueryClientPixmapBytes

2013-07-06 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 fixed-upstream
Bug #621702 [libxres1] libxres1: pixmap size "bytes_overflow" multiplier on 
64-bit system
Added tag(s) fixed-upstream.

-- 
621702: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=621702
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.b621702.13731486278106.transcr...@bugs.debian.org



Bug#488535: [PATCH:xrdb] Ensure we don't read out of ClassName array bounds for unknown visual type

2013-07-06 Thread Alan Coopersmith
Should never happen, but has been reported as happening at least once:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=488535

Instead prints warning messages to stderr to help diagnose where the
bad visual information is coming from.

(Tested by temporarily commenting out names in the ClassName array.)

Signed-off-by: Alan Coopersmith 
---
 xrdb.c |   28 ++--
 1 file changed, 22 insertions(+), 6 deletions(-)

diff --git a/xrdb.c b/xrdb.c
index b7c9fa3..d42a519 100644
--- a/xrdb.c
+++ b/xrdb.c
@@ -605,6 +605,8 @@ static char *ClassNames[] = {
 "DirectColor"
 };
 
+#define NUM_CLASS_NAMES (int)(sizeof(ClassNames) / sizeof(ClassNames[0]))
+
 static void
 DoScreenDefines(Display *display, int scrno, String *defs)
 {
@@ -625,9 +627,16 @@ DoScreenDefines(Display *display, int scrno, String *defs)
 AddNum(defs, "Y_RESOLUTION", Resolution(screen->height,screen->mheight));
 AddNum(defs, "PLANES", DisplayPlanes(display, scrno));
 AddNum(defs, "BITS_PER_RGB", visual->bits_per_rgb);
-AddDefQ(defs, "CLASS", ClassNames[visual->class]);
-snprintf(name, sizeof(name), "CLASS_%s", ClassNames[visual->class]);
-AddNum(defs, name, (int)visual->visualid);
+if (visual->class >= 0 && visual->class < NUM_CLASS_NAMES) {
+   AddDefQ(defs, "CLASS", ClassNames[visual->class]);
+   snprintf(name, sizeof(name), "CLASS_%s", ClassNames[visual->class]);
+   AddNum(defs, name, (int)visual->visualid);
+}
+else {
+   fprintf(stderr,
+   "%s: unknown visual type %d for default visual id 0x%lx\n",
+   ProgramName, visual->class, visual->visualid);
+}
 switch(visual->class) {
case StaticColor:
case PseudoColor:
@@ -643,9 +652,16 @@ DoScreenDefines(Display *display, int scrno, String *defs)
break;
}
if (j < 0) {
-   snprintf(name, sizeof(name), "CLASS_%s_%d",
-   ClassNames[vinfos[i].class], vinfos[i].depth);
-   AddNum(defs, name, (int)vinfos[i].visualid);
+   if (vinfos[i].class >= 0 && vinfos[i].class < NUM_CLASS_NAMES) {
+   snprintf(name, sizeof(name), "CLASS_%s_%d",
+ClassNames[vinfos[i].class], vinfos[i].depth);
+   AddNum(defs, name, (int)vinfos[i].visualid);
+   }
+   else {
+   fprintf(stderr,
+   "%s: unknown visual type %d for visual id 0x%lx\n",
+   ProgramName, vinfos[i].class, vinfos[i].visualid);
+   }
}
 }
 XFree((char *)vinfos);
-- 
1.7.9.2


-- 
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/1373137566-6437-1-git-send-email-alan.coopersm...@oracle.com



Bug#621702: [PATCH libXRes] Compute number of bytes correctly in XResQueryClientPixmapBytes

2013-07-06 Thread Alan Coopersmith

On 06/30/13 11:09 AM, Julien Cristau wrote:

64-bit servers send the upper 32-bit in bytes_overflow.  We were
multiplying by 2^32 - 1 instead of 2^32 when putting things back
together.

Debian bug#621702

Reported-by: Kevin Ryde 
Signed-off-by: Julien Cristau 
---
  src/XRes.c |2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/XRes.c b/src/XRes.c
index 51e905f..89fab82 100644
--- a/src/XRes.c
+++ b/src/XRes.c
@@ -240,7 +240,7 @@ Status XResQueryClientPixmapBytes (
  }

  #ifdef LONG64
-*bytes = (rep.bytes_overflow * 4294967295) + rep.bytes;
+*bytes = (rep.bytes_overflow * 4294967296UL) + rep.bytes;
  #else
  *bytes = rep.bytes_overflow ? 0x : rep.bytes;
  #endif



Reviewed-by: Alan Coopersmith 

--
-Alan Coopersmith-  alan.coopersm...@oracle.com
 Oracle Solaris Engineering - http://blogs.oracle.com/alanc


--
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/51d86220.7020...@oracle.com



mesa_9.1.4-1_amd64.changes ACCEPTED into unstable

2013-07-06 Thread Debian FTP Masters
Mapping sid to unstable.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 06 Jul 2013 11:37:34 +0200
Source: mesa
Binary: libgl1-mesa-swx11 libgl1-mesa-swx11-dbg libgl1-mesa-swx11-i686 
libgl1-mesa-swx11-dev libxatracker1 libxatracker1-dbg libxatracker-dev libgbm1 
libgbm1-dbg libgbm-dev libegl1-mesa libegl1-mesa-dbg libegl1-mesa-dev 
libegl1-mesa-drivers libegl1-mesa-drivers-dbg libopenvg1-mesa 
libopenvg1-mesa-dbg libopenvg1-mesa-dev libgles1-mesa libgles1-mesa-dbg 
libgles1-mesa-dev libgles2-mesa libgles2-mesa-dbg libgles2-mesa-dev 
libglapi-mesa libglapi-mesa-dbg libgl1-mesa-glx libgl1-mesa-glx-dbg 
libgl1-mesa-dri libgl1-mesa-dri-dbg libgl1-mesa-dri-experimental 
libgl1-mesa-dri-experimental-dbg libgl1-mesa-dev mesa-common-dev libosmesa6 
libosmesa6-dev
Architecture: source amd64
Version: 9.1.4-1
Distribution: sid
Urgency: low
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description: 
 libegl1-mesa - free implementation of the EGL API -- runtime
 libegl1-mesa-dbg - free implementation of the EGL API -- debugging symbols
 libegl1-mesa-dev - free implementation of the EGL API -- development files
 libegl1-mesa-drivers - free implementation of the EGL API -- hardware drivers
 libegl1-mesa-drivers-dbg - free implementation of the EGL API -- driver 
debugging symbols
 libgbm-dev - generic buffer management API -- development files
 libgbm1- generic buffer management API -- runtime
 libgbm1-dbg - generic buffer management API -- debugging symbols
 libgl1-mesa-dev - free implementation of the OpenGL API -- GLX development 
files
 libgl1-mesa-dri - free implementation of the OpenGL API -- DRI modules
 libgl1-mesa-dri-dbg - Debugging symbols for the Mesa DRI modules
 libgl1-mesa-dri-experimental - free implementation of the OpenGL API -- Extra 
DRI modules
 libgl1-mesa-dri-experimental-dbg - Debugging symbols for the experimental Mesa 
DRI modules
 libgl1-mesa-glx - free implementation of the OpenGL API -- GLX runtime
 libgl1-mesa-glx-dbg - Debugging symbols for the Mesa GLX runtime
 libgl1-mesa-swx11 - free implementation of the OpenGL API -- runtime
 libgl1-mesa-swx11-dbg - free implementation of the OpenGL API -- debugging 
symbols
 libgl1-mesa-swx11-dev - free implementation of the OpenGL API -- development 
files
 libgl1-mesa-swx11-i686 - Mesa OpenGL runtime [i686 optimized]
 libglapi-mesa - free implementation of the GL API -- shared library
 libglapi-mesa-dbg - free implementation of the GL API -- debugging symbols
 libgles1-mesa - free implementation of the OpenGL|ES 1.x API -- runtime
 libgles1-mesa-dbg - free implementation of the OpenGL|ES 1.x API -- debugging 
symbols
 libgles1-mesa-dev - free implementation of the OpenGL|ES 1.x API -- 
development files
 libgles2-mesa - free implementation of the OpenGL|ES 2.x API -- runtime
 libgles2-mesa-dbg - free implementation of the OpenGL|ES 2.x API -- debugging 
symbols
 libgles2-mesa-dev - free implementation of the OpenGL|ES 2.x API -- 
development files
 libopenvg1-mesa - free implementation of the OpenVG API -- runtime
 libopenvg1-mesa-dbg - free implementation of the OpenVG API -- debugging 
symbols
 libopenvg1-mesa-dev - free implementation of the OpenVG API -- development 
files
 libosmesa6 - Mesa Off-screen rendering extension
 libosmesa6-dev - Mesa Off-screen rendering extension -- development files
 libxatracker-dev - X acceleration library -- development files
 libxatracker1 - X acceleration library -- runtime
 libxatracker1-dbg - X acceleration library -- debugging symbols
 mesa-common-dev - Developer documentation for Mesa
Closes: 712556 714828
Changes: 
 mesa (9.1.4-1) unstable; urgency=low
 .
   [ Julien Cristau ]
   * Don't call wayland_buffer_is_drm from libgbm, it's in libEGL
 (closes: #712556).
   * Make sure libgbm doesn't have undefined symbols.
 .
   [ Andreas Boll ]
   * Use dpkg-buildflags.
   * Disable silent rules.
   * Cherry-pick commit 0829b89 (mesa: Fix ieee fp on Alpha) from upstream
 (Fixes FTBFS on alpha)
 .
   [ Timo Aaltonen ]
   * New upstream release.
 .
   [ Julien Cristau ]
   * libegl1-mesa-drivers depends on libgl1-mesa-dri for libllvmradeon
 (closes: #714828)
Checksums-Sha1: 
 3f39c975120e6eb97c7a715624937ba068c4cbbc 4339 mesa_9.1.4-1.dsc
 16574f804cbadf86c091dc2f98492685b55ddc17 8202499 mesa_9.1.4.orig.tar.gz
 d1230001982f301362b782e5bd419a7d216cfe0e 51718 mesa_9.1.4-1.diff.gz
 dae772da35da740629cc726e4612b84110ec689c 1055328 
libgl1-mesa-swx11_9.1.4-1_amd64.deb
 e4282e5e1203002d2aeff5e9c9e9bed03b4031b7 3153996 
libgl1-mesa-swx11-dbg_9.1.4-1_amd64.deb
 629b8054f8b08d41282bb1d176d384f5061b2148 1181212 
libgl1-mesa-swx11-dev_9.1.4-1_amd64.deb
 26b3df30671a14226f26dddbfd261f60b40883c0 579952 libxatracker1_9.1.4-1_amd64.deb
 a5bbeba7ab10f9333994f8cf3481881f0d16d55d 1808314 
libxatracker1-dbg_9.1.4-1_amd64.deb
 f8730c8a8448ca19911b2aa732a63cef3831ad4e 37028 
libxatracker-dev_9.1.4-1_amd64.deb
 fc30674b5b0149fc602e8969a0ae0a36b15ca78b 469298 libgbm1_9.1.

Processing of mesa_9.1.4-1_amd64.changes

2013-07-06 Thread Debian FTP Masters
mesa_9.1.4-1_amd64.changes uploaded successfully to localhost
along with the files:
  mesa_9.1.4-1.dsc
  mesa_9.1.4.orig.tar.gz
  mesa_9.1.4-1.diff.gz
  libgl1-mesa-swx11_9.1.4-1_amd64.deb
  libgl1-mesa-swx11-dbg_9.1.4-1_amd64.deb
  libgl1-mesa-swx11-dev_9.1.4-1_amd64.deb
  libxatracker1_9.1.4-1_amd64.deb
  libxatracker1-dbg_9.1.4-1_amd64.deb
  libxatracker-dev_9.1.4-1_amd64.deb
  libgbm1_9.1.4-1_amd64.deb
  libgbm1-dbg_9.1.4-1_amd64.deb
  libgbm-dev_9.1.4-1_amd64.deb
  libegl1-mesa_9.1.4-1_amd64.deb
  libegl1-mesa-dbg_9.1.4-1_amd64.deb
  libegl1-mesa-dev_9.1.4-1_amd64.deb
  libegl1-mesa-drivers_9.1.4-1_amd64.deb
  libegl1-mesa-drivers-dbg_9.1.4-1_amd64.deb
  libopenvg1-mesa_9.1.4-1_amd64.deb
  libopenvg1-mesa-dbg_9.1.4-1_amd64.deb
  libopenvg1-mesa-dev_9.1.4-1_amd64.deb
  libgles1-mesa_9.1.4-1_amd64.deb
  libgles1-mesa-dbg_9.1.4-1_amd64.deb
  libgles1-mesa-dev_9.1.4-1_amd64.deb
  libgles2-mesa_9.1.4-1_amd64.deb
  libgles2-mesa-dbg_9.1.4-1_amd64.deb
  libgles2-mesa-dev_9.1.4-1_amd64.deb
  libglapi-mesa_9.1.4-1_amd64.deb
  libglapi-mesa-dbg_9.1.4-1_amd64.deb
  libgl1-mesa-glx_9.1.4-1_amd64.deb
  libgl1-mesa-glx-dbg_9.1.4-1_amd64.deb
  libgl1-mesa-dri_9.1.4-1_amd64.deb
  libgl1-mesa-dri-dbg_9.1.4-1_amd64.deb
  libgl1-mesa-dri-experimental_9.1.4-1_amd64.deb
  libgl1-mesa-dri-experimental-dbg_9.1.4-1_amd64.deb
  libgl1-mesa-dev_9.1.4-1_amd64.deb
  mesa-common-dev_9.1.4-1_amd64.deb
  libosmesa6_9.1.4-1_amd64.deb
  libosmesa6-dev_9.1.4-1_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/e1uvqtq-0006ud...@franck.debian.org



Bug#714828: marked as done (no dependency information for libllvmradeon9.1.3.so)

2013-07-06 Thread Debian Bug Tracking System
Your message dated Sat, 06 Jul 2013 11:18:37 +
with message-id 
and subject line Bug#714828: fixed in mesa 9.1.4-1
has caused the Debian Bug report #714828,
regarding no dependency information for libllvmradeon9.1.3.so
to be marked as done.

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

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


-- 
714828: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=714828
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: weston
Version: 1.1.1-1
Severity: important

Dear Maintainer,

   The first start of weston (in an X session, run "weston" in a 
terminal) failed with the error:

undefined symbol: cairo_egl_device_create

Since I expected weston to start I looked at the package libcairo2, the 
version 1.12.14-4 was installed.

The changelog indicates:
==
cairo (1.12.14-5) unstable; urgency=low

  * Add gl/egl support back now that wayland has been multi-archified.
Closes: #712022.

 -- Emilio Pozuelo Monfort   Wed, 12 Jun 2013 
19:33:43 +0200


cairo (1.12.14-4) unstable; urgency=low

  * debian/control:
+ Make libcairo2-dev depend on libxext-dev.

 -- Emilio Pozuelo Monfort   Wed, 08 May 2013 
15:26:06 +0200


cairo (1.12.14-3) unstable; urgency=low

  * Team upload.
  * Disable EGL/GL support for now until libwayland has support for
multi-arch.

 -- Michael Biebl   Wed, 08 May 2013 11:43:53 +0200
==

So I updated to version 1.12.14-5 and the error goes away. It seems
that version (1.12.14-3) and (1.12.14-4) of libcairo2 should be 
forbidden for weston.


(after that weston was not starting because of another error:
libEGL warning: Could not open driver 
/usr/lib/x86_64-linux-gnu/egl/egl_gallium.so (libllvmradeon9.1.3.so: 
cannot open shared object file: No such file or directory)


that leads to:
[09:30:24.596] caught signal: 11
zsh: segmentation fault  weston

I had version 8.0.5-6 of libgl1-mesa-dri:amd64. Upgrading to
9.1.3-6 solve the warning and failure. Now I can see the weston 
compositor and run a terminal in it. To which package should I report 
this problem? )


Thanks for packaging weston and updating it.

-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (900, 'testing'), (700, 'stable'), (500, 'unstable'), 
(500, 'oldstable'), (1, 'experimental')

Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.10.0 (SMP w/8 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages weston depends on:
ii  libc6 2.17-6
ii  libcairo2 1.12.14-5
ii  libdrm2   2.4.45-3
ii  libegl1-mesa  9.1.3-6
ii  libegl1-mesa-drivers  9.1.3-6
ii  libgbm1   9.1.3-6
ii  libgl1-mesa-glx [libgl1]  9.1.3-6
ii  libgles2-mesa 9.1.3-6
ii  libglu1-mesa [libglu1]8.0.5-6
ii  libjpeg8  8d-1
ii  libmtdev1 1.1.3-1
ii  libpam0g  1.1.3-9
ii  libpixman-1-0 0.26.0-4
ii  libpng12-01.2.49-4
ii  libsystemd-login0 44-12
ii  libudev0  175-7.2
ii  libwayland-client01.1.0-2
ii  libwayland-cursor01.1.0-2
ii  libwayland-server01.1.0-2
ii  libx11-6  2:1.6.0-1
ii  libx11-xcb1   2:1.6.0-1
ii  libxcb-render01.9.1-3
ii  libxcb-shape0 1.9.1-3
ii  libxcb-shm0   1.9.1-3
ii  libxcb-xfixes01.9.1-3
ii  libxcb1   1.9.1-3
ii  libxcursor1   1:1.1.13-1+deb7u1
ii  libxkbcommon0 0.3.1-1

Versions of packages weston recommends:
ii  libgl1-mesa-dri  9.1.3-6

weston suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: mesa
Source-Version: 9.1.4-1

We believe that the bug you reported is fixed in the latest version of
mesa, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 714...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Julien Cristau  (supplier of updated mesa package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 06 Jul 2013 11:37:34 +0200
Source: mesa
Binary

Bug#714325: marked as done (ImportError: /usr/lib/i386-linux-gnu/libgbm.so.1: undefined symbol: wayland_buffer_is_drm)

2013-07-06 Thread Debian Bug Tracking System
Your message dated Sat, 06 Jul 2013 11:18:37 +
with message-id 
and subject line Bug#712556: fixed in mesa 9.1.4-1
has caused the Debian Bug report #712556,
regarding ImportError: /usr/lib/i386-linux-gnu/libgbm.so.1: undefined symbol: 
wayland_buffer_is_drm
to be marked as done.

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

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


-- 
712556: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=712556
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: bleachbit
Version: 0.9.5-2
Severity: grave
Justification: renders package unusable

Dear Maintainer,

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?

See below.  Also tried to start bleachbit from X directly (KDE 4 Quick Launch)
to no avail.

   * What was the outcome of this action?

$ bleachbit
Traceback (most recent call last):
  File "/usr/bin/bleachbit", line 41, in 
import gtk
  File "/usr/lib/python2.7/dist-packages/gtk-2.0/gtk/__init__.py", line 40, in 

from gtk import _gtk
ImportError: /usr/lib/i386-linux-gnu/libgbm.so.1: undefined symbol: 
wayland_buffer_is_drm

$

(Bleachbit did not start at all.)

   * What outcome did you expect instead?

Bleachbit starting normally.

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (500, 'stable'), (500, 
'oldstable'), (1, 'experimental')
Architecture: i386 (i686)
Foreign Architectures: amd64

Kernel: Linux 3.4.48-pe (SMP w/2 CPU cores)
Locale: LANG=de_CH.UTF-8, LC_CTYPE=de_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages bleachbit depends on:
ii  menu 2.1.46
ii  python   2.7.5-2
ii  python-gtk2  2.24.0-3+b1

Versions of packages bleachbit recommends:
ii  python-notify  0.1.1-3

bleachbit suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: mesa
Source-Version: 9.1.4-1

We believe that the bug you reported is fixed in the latest version of
mesa, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 712...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Julien Cristau  (supplier of updated mesa package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 06 Jul 2013 11:37:34 +0200
Source: mesa
Binary: libgl1-mesa-swx11 libgl1-mesa-swx11-dbg libgl1-mesa-swx11-i686 
libgl1-mesa-swx11-dev libxatracker1 libxatracker1-dbg libxatracker-dev libgbm1 
libgbm1-dbg libgbm-dev libegl1-mesa libegl1-mesa-dbg libegl1-mesa-dev 
libegl1-mesa-drivers libegl1-mesa-drivers-dbg libopenvg1-mesa 
libopenvg1-mesa-dbg libopenvg1-mesa-dev libgles1-mesa libgles1-mesa-dbg 
libgles1-mesa-dev libgles2-mesa libgles2-mesa-dbg libgles2-mesa-dev 
libglapi-mesa libglapi-mesa-dbg libgl1-mesa-glx libgl1-mesa-glx-dbg 
libgl1-mesa-dri libgl1-mesa-dri-dbg libgl1-mesa-dri-experimental 
libgl1-mesa-dri-experimental-dbg libgl1-mesa-dev mesa-common-dev libosmesa6 
libosmesa6-dev
Architecture: source amd64
Version: 9.1.4-1
Distribution: sid
Urgency: low
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
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

Bug#712556: marked as done (python-gtk2: Fails with undefined symbol)

2013-07-06 Thread Debian Bug Tracking System
Your message dated Sat, 06 Jul 2013 11:18:37 +
with message-id 
and subject line Bug#712556: fixed in mesa 9.1.4-1
has caused the Debian Bug report #712556,
regarding python-gtk2: Fails with undefined symbol
to be marked as done.

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

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


-- 
712556: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=712556
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: python-gtk2
Version: 2.24.0-3+b1
Severity: important

Not usre if that belongs to python-gtk2. When I launch pytrainer (a
logging tool for sports activities, written in Python and using, among
others , the GTK2 Python libraries), I get:

cperrier@mykerinos:~/travail/debian/rewrite/LCFC $ pytrainer 
Traceback (most recent call last):
  File "/usr/bin/pytr", line 24, in 
  import gtk.glade
File "/usr/lib/python2.7/dist-packages/gtk-2.0/gtk/__init__.py", line 
40, in 
from gtk import _gtk
ImportError: /usr/lib/i386-linux-gnu/libgbm.so.1: undefined symbol: 
wayland_buffer_is_drm

This is a fairly new error, happening since about last week or so. My
system is usually updated automatically with unstable every day.


-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.8-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages python-gtk2 depends on:
ii  libatk1.0-0   2.8.0-2
ii  libc6 2.17-5
ii  libcairo2 1.12.14-5
ii  libfontconfig12.9.0-7.1
ii  libfreetype6  2.4.9-1.1
ii  libgdk-pixbuf2.0-02.28.2-1
ii  libglib2.0-0  2.36.3-1
ii  libgtk2.0-0   2.24.18-1
ii  libpango1.0-0 1.32.5-5
ii  python2.7.3-5
ii  python-cairo  1.8.8-1+b2
ii  python-gobject-2  2.28.6-12
ii  python-numpy [python-numpy-abi9]  1:1.7.1-2

python-gtk2 recommends no packages.

Versions of packages python-gtk2 suggests:
pn  python-gtk2-doc  

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: mesa
Source-Version: 9.1.4-1

We believe that the bug you reported is fixed in the latest version of
mesa, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 712...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Julien Cristau  (supplier of updated mesa package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 06 Jul 2013 11:37:34 +0200
Source: mesa
Binary: libgl1-mesa-swx11 libgl1-mesa-swx11-dbg libgl1-mesa-swx11-i686 
libgl1-mesa-swx11-dev libxatracker1 libxatracker1-dbg libxatracker-dev libgbm1 
libgbm1-dbg libgbm-dev libegl1-mesa libegl1-mesa-dbg libegl1-mesa-dev 
libegl1-mesa-drivers libegl1-mesa-drivers-dbg libopenvg1-mesa 
libopenvg1-mesa-dbg libopenvg1-mesa-dev libgles1-mesa libgles1-mesa-dbg 
libgles1-mesa-dev libgles2-mesa libgles2-mesa-dbg libgles2-mesa-dev 
libglapi-mesa libglapi-mesa-dbg libgl1-mesa-glx libgl1-mesa-glx-dbg 
libgl1-mesa-dri libgl1-mesa-dri-dbg libgl1-mesa-dri-experimental 
libgl1-mesa-dri-experimental-dbg libgl1-mesa-dev mesa-common-dev libosmesa6 
libosmesa6-dev
Architecture: source amd64
Version: 9.1.4-1
Distribution: sid
Urgency: low
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
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

Bug#715154: xinput won't accept device names with --set-prop

2013-07-06 Thread Prekates Alexandros
Package: xinput
Version: 1.6.0-1
Severity: normal

$ xinput list
⎡ Virtual core pointerid=2[master pointer  (3)]
⎜   ↳ Virtual core XTEST pointerid=4[slave  pointer
(2)]
⎜   ↳ USB Mouse id=8[slave  pointer
(2)]
⎜   ↳ Wacom BambooFun 4x5 stylusid=9[slave  pointer
(2)]
⎜   ↳ Logitech Logitech Illuminated Keyboardid=11   [slave  pointer
(2)]
⎜   ↳ Wacom BambooFun 4x5 eraserid=13   [slave  pointer
(2)]
..
.

And

 $ xinput --list-prop  "USB Mouse"
usage :
xinput get-feedbacks 
xinput set-ptr-feedback
xinput set-integer-feedback   
xinput get-button-map 
   .
   

But:


$ xinput --set-prop  "USB Mouse" 254 1
unable to find device USB Mouse

And
$  xinput --set-prop  8  254 1   // works ok


I think the issue below is related:
http://tinyurl.com/oxjrv47



-- System Information:
Debian Release: 7.1
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=el_GR.UTF-8, LC_CTYPE=el_GR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xinput depends on:
ii  libc6 2.13-38
ii  libx11-6  2:1.5.0-1+deb7u1
ii  libxext6  2:1.3.1-2+deb7u1
ii  libxi62:1.6.1-1+deb7u1
ii  libxinerama1  2:1.1.2-1+deb7u1
ii  libxrandr22:1.3.2-2+deb7u1

xinput recommends no packages.

xinput suggests no packages.

-- no debconf information


-- 
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/20130706105909.12934.69793.reportbug@enous.homenet



mesa_9.1.4-1_amd64.changes REJECTED

2013-07-06 Thread Debian FTP Masters

libegl1-mesa-drivers-dbg_9.1.4-1_amd64.deb: trying to install to unstable, but 
could not find source


===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.


-- 
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/e1uvpny-0003ro...@franck.debian.org



Processing of mesa_9.1.4-1_amd64.changes

2013-07-06 Thread Debian FTP Masters
mesa_9.1.4-1_amd64.changes uploaded successfully to localhost
along with the files:
  libgl1-mesa-swx11_9.1.4-1_amd64.deb
  libgl1-mesa-swx11-dbg_9.1.4-1_amd64.deb
  libgl1-mesa-swx11-dev_9.1.4-1_amd64.deb
  libxatracker1_9.1.4-1_amd64.deb
  libxatracker1-dbg_9.1.4-1_amd64.deb
  libxatracker-dev_9.1.4-1_amd64.deb
  libgbm1_9.1.4-1_amd64.deb
  libgbm1-dbg_9.1.4-1_amd64.deb
  libgbm-dev_9.1.4-1_amd64.deb
  libegl1-mesa_9.1.4-1_amd64.deb
  libegl1-mesa-dbg_9.1.4-1_amd64.deb
  libegl1-mesa-dev_9.1.4-1_amd64.deb
  libegl1-mesa-drivers_9.1.4-1_amd64.deb
  libegl1-mesa-drivers-dbg_9.1.4-1_amd64.deb
  libopenvg1-mesa_9.1.4-1_amd64.deb
  libopenvg1-mesa-dbg_9.1.4-1_amd64.deb
  libopenvg1-mesa-dev_9.1.4-1_amd64.deb
  libgles1-mesa_9.1.4-1_amd64.deb
  libgles1-mesa-dbg_9.1.4-1_amd64.deb
  libgles1-mesa-dev_9.1.4-1_amd64.deb
  libgles2-mesa_9.1.4-1_amd64.deb
  libgles2-mesa-dbg_9.1.4-1_amd64.deb
  libgles2-mesa-dev_9.1.4-1_amd64.deb
  libglapi-mesa_9.1.4-1_amd64.deb
  libglapi-mesa-dbg_9.1.4-1_amd64.deb
  libgl1-mesa-glx_9.1.4-1_amd64.deb
  libgl1-mesa-glx-dbg_9.1.4-1_amd64.deb
  libgl1-mesa-dri_9.1.4-1_amd64.deb
  libgl1-mesa-dri-dbg_9.1.4-1_amd64.deb
  libgl1-mesa-dri-experimental_9.1.4-1_amd64.deb
  libgl1-mesa-dri-experimental-dbg_9.1.4-1_amd64.deb
  libgl1-mesa-dev_9.1.4-1_amd64.deb
  mesa-common-dev_9.1.4-1_amd64.deb
  libosmesa6_9.1.4-1_amd64.deb
  libosmesa6-dev_9.1.4-1_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/e1uvphk-0001ab...@franck.debian.org



mesa: Changes to 'refs/tags/mesa-9.1.4-1'

2013-07-06 Thread Julien Cristau
Tag 'mesa-9.1.4-1' created by Julien Cristau  at 
2013-07-06 10:04 +

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

iQIcBAABAgAGBQJR1+uyAAoJEDEBgAUJBeQMyzkQANNcNpsfkAEsJ1l8beaQa3CG
oYFP+uzQT9NYpPF7d409cYtGOmyjVfHkWkfcpcq0vxORB0TM5Mfm66vdPBIfDPWy
y3D5BO+U8vmhQJ5mq8EbFnKKpG7MneqMiy4CFmkeV95FxzJjg9YocuJ54Q4g6Foe
bHLPQX8FoeSGrqMsw7AILyC1DIDzQsSsBVLyeUnwfALJP9gJaSCnb/5zSIDEAZaK
2ggaPz9Q6LhuvQYr0QpD0Z4XRpJsb2cokOCnUDtxZcQdtMFaZe5honey4uJOylxh
c9FDKHojTdAubh6D4MOyIxyBmC8b6ZMzL8e+Zsa9Khtwhwqtz+q/MtuLW/TcUJQZ
F2VAN4X/DOMk1zZxfUfpkWvaeEAqEA4kGwR+5450TLab9VLv9xkePC2xSsWFz2s3
H5fIRScoqeCjxbnCVfUIVXlZlcDcEdbYOinAa0yHXz3VkUSJZ2K5UUTbUD3bDJE6
BsQHnDRZjrHVOScFvT9qlbqdQvcusEdj8zuf7/TP11Ja/Rls3YI8DOFIpVBuPSHp
GwuFFdcN9VZI0fITCtCBQqYcBRh4Vn7kOIKh2ee2IpBDYZ0PZFHampL1fyBv+Caq
3BAteV39OuR9UqMkejasLVoUjYwifIKejxaTjHS+pEkNBhYDeI8TYKkmA22R82wd
WcJonR+gUI9mi0aIfInn
=Mlp/
-END PGP SIGNATURE-

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

Alex Deucher (3):
  radeonsi: add support for hainan chips
  radeonsi: add Hainan pci ids
  winsys/radeon: add env var to disable VM on Cayman/Trinity

Andreas Boll (4):
  glapi: Add some missing static_dispatch="false" annotations to es_EXT.xml
  Use dpkg-buildflags.
  Disable silent rules.
  debian/changelog: Add changelog entry

Anuj Phogat (1):
  intel: Add a null pointer check before dereferencing the pointer

Armin K (1):
  gallivm: Fix build with LLVM 3.3

Brian Paul (9):
  mesa: fix the compressed TexSubImage size checking code
  st/mesa: generate GL_OUT_OF_MEMORY if we can't create the index buffer
  mesa: fix error checking of DXT sRGB formats in _mesa_base_tex_format()
  st/glx/xlib: check for null ctx pointer in glXIsDirect()
  xlib: check for null ctx pointer in glXIsDirect()
  st/glx: add null ctx check in glXDestroyContext()
  xlib: add null ctx check in glXDestroyContext()
  meta: move vertex array enables for mipmap generation
  mesa: handle missing read buffer in _mesa_get_color_read_format/type()

Bryan Cain (1):
  nv50: initialize kick_notify callback in nv50_create

Chad Versace (3):
  egl/android: Fix error condition for EGL_ANDROID_image_native_buffer
  i965: Fix glColorPointer(GL_FIXED)
  intel: Return early if miptree allocation fails

Chia-I Wu (1):
  u_vbuf: fix index buffer leak

Chris Forbes (8):
  mesa: add accessor for effective stencil ref
  intel: Use accessor for stencil reference values
  nouveau: Use accessor for stencil reference values
  radeon: Use accessor for stencil reference values
  st: Use accessor for stencil reference values
  swrast: Use accessor for stencil reference values
  mesa: Stop clamping stencil reference value at specification time
  mesa: Use accessor for stencil reference values in glGet

Chí-Thanh Christopher Nguyễn (1):
  targets/dri-i915: Force c++ linker in all cases

Daniel Martin (1):
  Fix build of swrast only without libdrm

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

Eric Anholt (10):
  mesa: Make core Mesa allocate the texture renderbuffer wrapper.
  mesa: Make gl_renderbuffers backed by EGL images use FinishRenderTexture.
  i965/fs: Bake regs_written into the IR instead of recomputing it later.
  i965/vs: Fix implied_mrf_writes() for integer division pre-gen6.
  intel: Add support for writing to our linear-temporary-CPU-map case.
  intel: Do temporary CPU maps of textures that are too big to GTT map.
  intel: Avoid making tiled miptrees we won't be able to blit.
  intel: Fix MRT handling of glBitmap().
  intel: Fix format handling of blit glBitmap()
  i965: Shut up the last release build warning.

Fabian Bieler (2):
  mesa/st: Don't copy propagate from swizzles.
  mesa/program: Don't copy propagate from swizzles.

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

Ian Romanick (3):
  docs: Add 9.1.3 release md5sums
  mesa: Bump version to 9.1.4
  docs: 9.1.4 release notes

José Fonseca (1):
  scons: Fix implicit python dependency discovery on Windows.

Julien Cristau (7):
  Upload to unstable
  Upload to sid
  Upload to unstable
  Don't call wayland_buffer_is_drm from libgbm, it's in libEGL
  Make sure libgbm doesn't have undefined symbols.
  libegl1-mesa-drivers depends on libgl1-mesa-dri for libllvmradeon
  Upload to unstable

Kenneth Graunke (17):

mesa: Changes to 'debian-unstable'

2013-07-06 Thread Julien Cristau
 debian/changelog |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit fe3484cf63705aade942491d991ce8cbd9bc7dc5
Author: Julien Cristau 
Date:   Sat Jul 6 11:38:07 2013 +0200

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 3ff62ca..0127bf3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-mesa (9.1.4-1) UNRELEASED; urgency=low
+mesa (9.1.4-1) unstable; urgency=low
 
   [ Julien Cristau ]
   * Don't call wayland_buffer_is_drm from libgbm, it's in libEGL
@@ -18,7 +18,7 @@ mesa (9.1.4-1) UNRELEASED; urgency=low
   * libegl1-mesa-drivers depends on libgl1-mesa-dri for libllvmradeon
 (closes: #714828)
 
- -- Julien Cristau   Tue, 25 Jun 2013 21:26:56 +0200
+ -- Julien Cristau   Sat, 06 Jul 2013 11:37:34 +0200
 
 mesa (9.1.3-6) unstable; urgency=low
 


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