mesa: Changes to 'ubuntu-trusty'

2014-10-01 Thread Maarten Bernardus Lankhorst
 debian/changelog|8 +++-
 debian/patches/fix-svga-ioctl.patch |   64 
 debian/patches/series   |1 
 3 files changed, 71 insertions(+), 2 deletions(-)

New commits:
commit 9111b8fb9747266d2bd37195d092d8a1d2a1c076
Author: Maarten Lankhorst 
Date:   Tue Sep 30 09:50:25 2014 +0200

release to trusty

diff --git a/debian/changelog b/debian/changelog
index 25b0bc3..fec4ee1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-mesa (10.1.3-0ubuntu0.2) UNRELEASED; urgency=medium
+mesa (10.1.3-0ubuntu0.2) trusty; urgency=medium
 
   [ Timo Aaltonen ]
   * Drop fix-kwin.diff hack, as 10.1.3 has 0380ec467d78f40 which
@@ -7,7 +7,7 @@ mesa (10.1.3-0ubuntu0.2) UNRELEASED; urgency=medium
   [ Maarten Lankhorst ]
   * Add fix-svga-ioctl.patch (LP: #1365490)
 
- -- Timo Aaltonen   Tue, 08 Jul 2014 15:16:22 +0300
+ -- Maarten Lankhorst   Tue, 30 Sep 2014 
09:50:04 +0200
 
 mesa (10.1.3-0ubuntu0.1) trusty; urgency=medium
 

commit 19af4f066620a1ce1c287d21b1eac23fb701323b
Author: Maarten Lankhorst 
Date:   Tue Sep 30 09:49:59 2014 +0200

Add fix-svga-ioctl.patch (LP: #1365490)

diff --git a/debian/changelog b/debian/changelog
index e0e0b28..25b0bc3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,12 @@
 mesa (10.1.3-0ubuntu0.2) UNRELEASED; urgency=medium
 
+  [ Timo Aaltonen ]
   * Drop fix-kwin.diff hack, as 10.1.3 has 0380ec467d78f40 which
 fixes the issue properly.
 
+  [ Maarten Lankhorst ]
+  * Add fix-svga-ioctl.patch (LP: #1365490)
+
  -- Timo Aaltonen   Tue, 08 Jul 2014 15:16:22 +0300
 
 mesa (10.1.3-0ubuntu0.1) trusty; urgency=medium
diff --git a/debian/patches/fix-svga-ioctl.patch 
b/debian/patches/fix-svga-ioctl.patch
new file mode 100644
index 000..7a63322
--- /dev/null
+++ b/debian/patches/fix-svga-ioctl.patch
@@ -0,0 +1,64 @@
+commit 2d6206140afe9ecb551822ea00c36f7edfbf
+Author: Thomas Hellstrom 
+Date:   Wed Sep 3 11:14:51 2014 +0200
+
+winsys/svga: Fix incorrect type usage in IOCTL v2
+
+While similar in layout, the size of the SVGA3dSize type may be smaller 
than
+the struct drm_vmw_size type that is part of the ioctl interface. The 
kernel
+driver could accordingly overwrite a memory area following the size 
variable
+on the stack. Typically that would be another local variable, causing
+breakage in, for example, ubuntu 12.04.5 where the handle local variable
+becomes overwritten.
+
+v2: Fix whitespace errors
+
+Signed-off-by: Thomas Hellstrom 
+Reviewed-by: Jakob Bornecrantz 
+Cc: "10.1 10.2 10.3" 
+
+diff --git a/src/gallium/winsys/svga/drm/vmw_screen_dri.c 
b/src/gallium/winsys/svga/drm/vmw_screen_dri.c
+index 79a1b3e..9f33590 100644
+--- a/src/gallium/winsys/svga/drm/vmw_screen_dri.c
 b/src/gallium/winsys/svga/drm/vmw_screen_dri.c
+@@ -238,7 +238,7 @@ out_mip:
+ 
+ static struct svga_winsys_surface *
+ vmw_drm_surface_from_handle(struct svga_winsys_screen *sws,
+-  struct winsys_handle *whandle,
++struct winsys_handle *whandle,
+   SVGA3dSurfaceFormat *format)
+ {
+ struct vmw_svga_winsys_surface *vsrf;
+@@ -248,7 +248,8 @@ vmw_drm_surface_from_handle(struct svga_winsys_screen *sws,
+ struct drm_vmw_surface_arg *req = &arg.req;
+ struct drm_vmw_surface_create_req *rep = &arg.rep;
+ uint32_t handle = 0;
+-SVGA3dSize size;
++struct drm_vmw_size size;
++SVGA3dSize base_size;
+ int ret;
+ int i;
+ 
+@@ -274,7 +275,7 @@ vmw_drm_surface_from_handle(struct svga_winsys_screen *sws,
+ 
+ memset(&arg, 0, sizeof(arg));
+ req->sid = handle;
+-rep->size_addr = (size_t)&size;
++rep->size_addr = (unsigned long)&size;
+ 
+ ret = drmCommandWriteRead(vws->ioctl.drm_fd, DRM_VMW_REF_SURFACE,
+ &arg, sizeof(arg));
+@@ -324,7 +325,11 @@ vmw_drm_surface_from_handle(struct svga_winsys_screen 
*sws,
+ *format = rep->format;
+ 
+ /* Estimate usage, for early flushing. */
+-vsrf->size = svga3dsurface_get_serialized_size(rep->format, size,
++
++base_size.width = size.width;
++base_size.height = size.height;
++base_size.depth = size.depth;
++vsrf->size = svga3dsurface_get_serialized_size(rep->format, base_size,
+rep->mip_levels[0],
+FALSE);
+ 
diff --git a/debian/patches/series b/debian/patches/series
index e939400..0b36287 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -15,3 +15,4 @@ i965-dont-call-abort-on-unknown-dev.diff
 enable-bdw.diff
 fix-unity-on-bdw.diff
 fix-gpu-hangs-on-bdw.diff
+fix-svga-ioctl.patch


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xzfys-0005es...@moszumanska.debian.org



xcb-util-keysyms: Changes to 'refs/tags/0.2'

2014-10-01 Thread Arnaud Fontaine
Tag '0.2' created by Jamey Sharp  at 2007-03-03 01:38 +

Release xcb-util 0.2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQBF6NGrp1aplQ4I9mURApI/AJ9QuGxCHo7dq/7iEqBugfZy/hTK9wCcCQ8C
nbCbDuyz+FAnFvIW1D/b080=
=Tanp
-END PGP SIGNATURE-

Changes since 0.1:
Alan Coopersmith (2):
  Bug #7150: Check for gcc & Sun cc in configure.ac and use correct flags 
to turn on more warnings for each
  Bug #7150: Rename "len" to "namelen" to avoid m4 substitution

Bart Massey (1):
  Removed GNU make constructs from Makefile.

Donnie Berkholz (1):
  Add correct dependencies in xcb-util.

Ian Osgood (12):
  Add some error checking
  Deprecate XCBSync, move to XCBAuxSync.
  Finally remove X.h from xcb.h, fix broken image tests.
  All xcb-util libraries compile after the Great Renaming.
  Naming changes must go into m4 files.
  Install headers to "xcb", not "X11/XCB".
  Adapt xcb/util libraries for removal of XID structures.
  Implement a prototype API for xcb_render_util_composite_text
  Const correctness.
  Oops, glyphcmds aren't in network byte order.
  Rename enumerations to coding standard.
  Add NEWS file for 0.2 release

Jamey Sharp (10):
  New utility library: port of libXrender utility functions.
  Plan 7 has been implemented, so xcb_renderutil compiles without faked 
prototypes.
  The formats argument of XCBRenderUtilFindVisualFormat must be const.
  libxcb now installs header files in , not .
  Use xcb_poll_for_reply instead of the now-gone xcb_get_request_read.
  PropertyChanged was renamed to property_changed: update wm/manage.c.
  Simplify xcb_render_util_composite_text, add 
xcb_render_util_composite_text_checked.
  Bug #6781: make util compile with srcdir != builddir.
  Clean up built sources. Makes `distcheck` pass.
  Release xcb-util 0.2

Josh Triplett (2):
  Don't link xcbwm_test to libXCBAtom; xcbwm_test doesn't use libXCBAtom 
directly.
  Integrate top-level .gitignore into .gitignore for each subdirectory

TORRI Vincent (12):
  add XCBImageAllPlanes constant
  I did'nt see that XCBAllPlanes already exists... Use CARD32 instead of 
unsigned long because plane_mask is a CARD32
  fix compilation with c++ compilers. Remove some trailing spaces
  XCBImagePut returns 1 when no problem occurs
  add AllocWMHints and SetWMHints functions. Remove trailing spaces. Fix an 
indentation
  use XCBNone instead of None
  add GetWMIconName and WM_CLIENT_MACHINE functions
  typo
  it's also probably a good idea to update the header file...
  explicit braces to avoid ambiguous 'else' and return value
  rename the libraries from libXCBFoo.* to libxcb-foo.*. Use foo_CPPFLAGS 
instead of foo_CFLAGS (*_CFLAGS variables store preprocessor options)
  and rename renderUtil to render-util

Thomas Hunger (2):
  wm: new naming convention
  icccm: new naming convention

---
 .gitignore  |   30 +
 Makefile.am |2 
 NEWS|   14 
 README  |   42 ++
 atom/Makefile.am|   25 -
 atom/atoms.gperf.m4 |   58 +--
 atom/xcb-atom.pc.in |4 
 atom/xcb_atom.h.m4  |   18 -
 configure.ac|   37 ++
 convenient/Makefile.am  |   10 
 convenient/xcb-aux.pc.in|4 
 convenient/xcb_aux.c|  178 +-
 convenient/xcb_aux.h|  234 +++--
 event/Makefile.am   |   10 
 event/events.c  |   55 +--
 event/xcb-event.pc.in   |4 
 event/xcb_event.h   |  112 +++---
 icccm/Makefile.am   |   13 
 icccm/icccm.c   |  679 +---
 icccm/xcb-icccm.pc.in   |4 
 icccm/xcb_icccm.h   |  393 ---
 image/Makefile.am   |   24 -
 image/test_formats.c|   88 ++---
 image/test_xcb_image.c  |  148 
 image/test_xcb_image_shm.c  |  106 +++---
 image/xcb-image.pc.in   |4 
 image/xcb_image.c   |  320 +-
 image/xcb_image.h   |  252 +++---
 keysyms/Makefile.am |   10 
 keysyms/keysyms.c   |  352 ++--
 keysyms/xcb-keysyms.pc.in   |4 
 keysyms/xcb_keysyms.h   |   63 ++-
 property/Makefile.am|   10 
 property/prop.c |   88 ++---
 property/xcb-property.pc.in |4 
 property/xcb_property.h |   36 +-
 renderutil/Makefile.am  |   14 
 renderutil/cache.c  |  234 +
 renderutil/glyph.c  |  287 
 renderutil/util.c   |  251 ++
 renderutil/xcb-renderutil.pc.in |   11 
 renderutil/xcb_renderutil.h |  142 
 reply/Makefile.am   |   16 

xcb-util-keysyms: Changes to 'refs/tags/0.1'

2014-10-01 Thread Arnaud Fontaine
Tag '0.1' created by Josh Triplett  at 2006-09-25 20:56 
+

xcb-util 0.1 release
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQBFGEJ4GJuZRtD+evsRAr0sAJ48k3MXL/ERKlgf1ua37cqjReIbVQCgo8KV
X2Nq+ZiJxPX/g96iwWPYk7I=
=yhw3
-END PGP SIGNATURE-

Changes since the dawn of time:
Eric Anholt (1):
  Move .cvsignore to .gitignore.

Ian Osgood (5):
  Portability fix: include stdlib.h, not malloc.h.
  Remove xcb-util dependency on proto/X11
  Remove xcb_image dependency on X11/Xlib.h
  Add some convenience functions for avoiding value lists.
  Enumeration and documentation for col parameter

Jamey Sharp (4):
  Update .gitignores for .o files and autofoo stuff.
  Unify autofoo .gitignore bits into one top-level file, and remove 
resulting redundancies.
  Add the test app I wrote for trying different pixmap formats. It does not 
work for XYPixmaps.
  Update xcb-util for ConnSetup renaming and constness fixes.

Josh Triplett (10):
  Remove xcl and CVSROOT.
  Fix xcb-util library dependencies, including both the new dependency 
libXCBImage needs on libXCBShm, as well as many other issues discovered in the 
process.  These include using automake variables appropriately in order to 
actually link shared libraries against each other and ensure libraries have 
NEEDED entries for the libraries they depend on, consequently needing to 
reorder the top-level SUBDIRS to build property before icccm, adding 
dependencies to .pc.in files, fixing .pc.in files to not all use the name and 
description for XCBImage, and adding appropriate library dependencies to test 
programs.
  Set all package bugreporting addresses to x...@lists.freedesktop.org
  test_reply uses libXCB directly, so stop relying on XCBReply to pull in 
the headers and libraries for XCB.
  Fix use of deprecated name XCBConnSetupSucessRep in comment to use 
XCBSetup.
  s/HACKMEM/HAKMEM/ in a comment.
  Make xcb_image.h self-contained by including the xcb.h and shm.h headers. 
 Remove unused headers from the libXCBImage test programs.  Change Makefile.am 
to match the headers and libraries actually used by the test programs.
  xcb-icccm doesn't use xcb-event; it just needs the headers due to 
xcb-property, and can't use the xcb-property pkg-config file from within the 
same source tree to pull it in.
  Make xcb_keysyms.h self-contained by including xcb.h
  Add m4 files to EXTRA_DIST.

TORRI Vincent (8):
  fix some warnings
  missing flags
  missing atom flags
  my bad. bad fix. This should be better
  I swear that I couldn't compile without that flag !
  leak fixed
  Merge branch 'master' of git+ssh://dour...@git.freedesktop.org/git/xcb
  fix warnings


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xzgwb-0001tz...@moszumanska.debian.org



xcb-util-keysyms: Changes to 'refs/tags/0.3.1'

2014-10-01 Thread Arnaud Fontaine
Tag '0.3.1' created by Julien Danjou  at 2008-11-20 14:36 
+

Release xcb-util 0.3.1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEABECAAYFAkklddcACgkQpGK1HsL+5c2PoQCgknBNWZ5eGUioLz1YTqszKVyb
H6oAn0gfZAzUu/0sJIb/3xYe2mzotHfI
=6k5O
-END PGP SIGNATURE-

Changes since 0.3.0:
Henning Sten (2):
  introduce function xcb_atom_get (essentially a synchronous 
xcb_intern_atom, use it only on non-performance critical execution paths)
  add more verbose explanation of the purpose of "encoding" parameter in 
doxygen documentation tag

Julien Danjou (5):
  icccm: add some comment on text reply usage
  icccm: fix normal hints flags computing
  wm: link test against atom lib
  configure: stop if m4 is not found
  Release xcb-util 0.3.1

Peter Harris (1):
  more endianness patches

Ulrich Eckhardt (2):
  "Clean up" magic structure stuff for C++.
  Do not cast the return value of malloc() in modern C.

---
 atom/atoms.gperf.m4 |   13 +
 atom/xcb_atom.h.m4  |   10 ++
 aux/xcb_aux.h   |   26 +-
 configure.ac|7 +--
 icccm/icccm.c   |   15 ++-
 icccm/xcb_icccm.h   |9 ++---
 image/xcb_image.c   |   30 +++---
 keysyms/keysyms.c   |2 +-
 wm/Makefile.am  |1 +
 9 files changed, 90 insertions(+), 23 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xzgwc-0001x2...@moszumanska.debian.org



xcb-util-keysyms: Changes to 'refs/tags/0.2.1'

2014-10-01 Thread Arnaud Fontaine
Tag '0.2.1' created by Julien Danjou  at 2008-08-01 09:44 
+

Release xcb-util 0.2.1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEABECAAYFAkiS2uIACgkQpGK1HsL+5c0eMQCgpOSKQFM+CEZrKtimymY8Abu4
sIkAnA6MKZE7ywsfstgRbBvVBE8QbqvT
=WmtV
-END PGP SIGNATURE-

Changes since 0.2:
Arnaud Fontaine (4):
  Add xcb_poll_for_event_loop and rename xcb_event_loop to match.
  [icccm]: fix incorrect pointer usage
  [icccm]: correctly copy the reply value according to its format
  [icccm]: Remove useless function for accessing 'flags' which were also

Bart Massey (29):
  added xcb_aux_get_depth_by_visual_id()
  added xcb_aux_find_visual functions
  added checked versions of aux_create_window and aux_create_gc functions
  added checked version of aux_change_gc function
  xcb_aux_parse_color()
  added PARAM macros
  added aux_set_line_attributes_checked
  added fast inline bitops xcb_bitops.h
  out with the old image library...
  ...and in with the new image library
  used doxygen -u to create a much more elaborate doxyfile
  fixed xcb_params_gc_t so that tile_stipple_origin members had reasonable 
naming
  added aux_clear_window() for xlib compatibility, in spite of misgivings
  fixed existing roundups, added rounddowns
  added xcb_image_subimage()
  added create_image_from_bitmap_data(), adapted 
create_pixmap_from_bitmap_data() to use
  extended test_bitmap to handle subimage test
  took out clever code for subimage copying and left_shift for now, as it 
was too broken
  added INSET argument to test_bitmap and cleaned up subimage stuff
  fixed check for SHM in test_xcb_image_shm
  re-fixed my stupid visual_class typo; thanks to Thomas Hunger for the 
report
  sorted out dependencies for building while uninstalled---includes 
horrible kludges
  stopped image test programs from being built by default
  made image tests compile when not installed; fixed regression in 
test_formats.c
  added test.xbm to image
  made xcb_handle_event() externally visible
  merged event loop split with last patch
  fixed missed reference in previous patch
  added some gratuitous but harmless image pointer zeroing at the 
suggestion of Vincent Torri

Jamey Sharp (1):
  All util libraries require the XCB 1.0 API; check for it in configure.

Julien Danjou (3):
  icccm: add xcb_get_wm_transient_for()
  icccm: add urgency hint functions
  prepare 0.2.1 release

TORRI Vincent (3):
  event/events.c
  missing namespace for alloc_wm_hints in xcb_icccm.h
  add _checked version of the _set_ functions

Tilman Sauerbeck (2):
  Bug #10877: Fixed the atom values that are written to the hash table.
  atom: Replace 'char *atom_names[]' with one big string and array of 
offsets.

---
 Doxyfile   | 1246 +-
 Makefile.am|2 
 atom/atoms.gperf.m4|   15 
 aux/Makefile.am|   16 
 aux/xcb-aux.pc.in  |   11 
 aux/xcb_aux.c  |  335 ++
 aux/xcb_aux.h  |  200 ++
 aux/xcb_bitops.h   |  212 ++
 configure.ac   |   10 
 convenient/Makefile.am |   16 
 convenient/xcb-aux.pc.in   |   11 
 convenient/xcb_aux.c   |  163 -
 convenient/xcb_aux.h   |  140 
 event/events.c |   56 +
 event/xcb_event.h  |   24 
 icccm/icccm.c  |  797 ++--
 icccm/xcb_icccm.h  |  461 +++---
 image/.gitignore   |1 
 image/Makefile.am  |9 
 image/test.xbm |  471 ++
 image/test_bitmap.c|  139 
 image/test_formats.c   |  124 ++-
 image/test_xcb_image.c |   83 --
 image/test_xcb_image_shm.c |   71 --
 image/xcb_image.c  | 1463 -
 image/xcb_image.h  |  632 +--
 image/xcb_pixel.h  |  171 +
 property/prop.c|   60 -
 property/xcb_property.h|   18 
 wm/manage.c|6 
 wm/xcb_wm.h|4 
 wm/xcbwm-test.c|   18 
 32 files changed, 5002 insertions(+), 1983 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xzgwc-0001v6...@moszumanska.debian.org



xcb-util-keysyms: Changes to 'debian-unstable'

2014-10-01 Thread Arnaud Fontaine
 .gitignore  |1 
 Doxyfile| 1305 
 NEWS|6 
 autogen.sh  |   15 
 configure.ac|3 
 debian/changelog|   14 
 debian/control  |2 
 debian/copyright|4 
 debian/rules|3 
 debian/source/local-options |2 
 debian/watch|2 
 keysyms/keysyms.c   |   19 
 m4  |2 
 xcb_util_intro.in   |   24 
 14 files changed, 56 insertions(+), 1346 deletions(-)

New commits:
commit 42d970ad6c314cd9a7d0761cca29c4e3825be2bb
Author: Arnaud Fontaine 
Date:   Wed Oct 1 19:07:31 2014 +0900

Upload to unstable.

diff --git a/debian/changelog b/debian/changelog
index d2b02f1..cdd746c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xcb-util-keysyms (0.4.0-1) UNRELEASED; urgency=medium
+xcb-util-keysyms (0.4.0-1) unstable; urgency=medium
 
   * New upstream release.
   * d/control: Bump Standards-Version to 3.9.6. No changes needed.
@@ -10,7 +10,7 @@ xcb-util-keysyms (0.4.0-1) UNRELEASED; urgency=medium
   failing because of local changes) as it creates unwanted local
   repository modifications, instead just ignore them.
 
- -- Arnaud Fontaine   Wed, 01 Oct 2014 11:57:39 +0900
+ -- Arnaud Fontaine   Wed, 01 Oct 2014 19:07:02 +0900
 
 xcb-util-keysyms (0.3.9-2) unstable; urgency=medium
 

commit a5f1d5cc47768d3e45bfd011b09abdf3ffa8525c
Author: Arnaud Fontaine 
Date:   Wed Oct 1 19:09:58 2014 +0900

Use upstream bzip2 tarball rather than bigger gzip one.

diff --git a/debian/watch b/debian/watch
index 0ca51c9..709b6d1 100644
--- a/debian/watch
+++ b/debian/watch
@@ -1,2 +1,2 @@
 version=3
-http://xcb.freedesktop.org/dist/xcb-util-keysyms-([0-9.]*)\.tar\.gz
+http://xcb.freedesktop.org/dist/xcb-util-keysyms-([0-9.]*)\.tar\.bz2

commit 453ea8149466a849e43c4d011e7735e89a5dda22
Author: Arnaud Fontaine 
Date:   Wed Oct 1 18:47:25 2014 +0900

License name should not contain space, so use MIT/X11 (lintian).

diff --git a/debian/changelog b/debian/changelog
index 09a8f08..d2b02f1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,7 +2,9 @@ xcb-util-keysyms (0.4.0-1) UNRELEASED; urgency=medium
 
   * New upstream release.
   * d/control: Bump Standards-Version to 3.9.6. No changes needed.
-  * d/copyright: Update copyright years for the Debian packaging.
+  * d/copyright:
++ Update copyright years for the Debian packaging.
++ License name should not contain space, so use MIT/X11 (lintian).
   * d/source/local-options, d/rules:
 + Do not delete files only in git repository (to avoid dpkg-source
   failing because of local changes) as it creates unwanted local
diff --git a/debian/copyright b/debian/copyright
index c3e3664..81569eb 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -8,7 +8,7 @@ Copyright: 2008 Josh Triplett 
2008 Ulrich Eckhardt 
2008 Ian Osgood 
2008 Jamey Sharp 
-License: MIT/X Consortium License
+License: MIT/X11
  Permission is hereby granted, free of  charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction,  including without limitation the rights

commit e0195c7a0150d34c623047bec2c9821a9ba9bbce
Author: Arnaud Fontaine 
Date:   Wed Oct 1 18:42:15 2014 +0900

Do not delete files only in git repository (to avoid dpkg-source failing
because of local changes) as it creates unwanted local repository
modifications, instead just ignore them.

diff --git a/debian/changelog b/debian/changelog
index 9e99a60..09a8f08 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,10 @@ xcb-util-keysyms (0.4.0-1) UNRELEASED; urgency=medium
   * New upstream release.
   * d/control: Bump Standards-Version to 3.9.6. No changes needed.
   * d/copyright: Update copyright years for the Debian packaging.
+  * d/source/local-options, d/rules:
++ Do not delete files only in git repository (to avoid dpkg-source
+  failing because of local changes) as it creates unwanted local
+  repository modifications, instead just ignore them.
 
  -- Arnaud Fontaine   Wed, 01 Oct 2014 11:57:39 +0900
 
diff --git a/debian/rules b/debian/rules
index df691fc..9937fff 100755
--- a/debian/rules
+++ b/debian/rules
@@ -20,9 +20,6 @@ configure-stamp:
 cleanbuilddir::
rm -f configure-stamp
 
-   # Specific to Git Debian package
-   rm -f Doxyfile .gitmodules m4/xcb_util_m4_with_include_path.m4
-
 get-orig-source:
git archive upstream | gzip -9 > 
../xcb-util-keysyms_$(ORIG_MAJOR)+git$(ORIG_GIT).orig.tar.gz
 
diff --git a/debian/source/local-options b/debian/source/local-options
new file mode 100644
index 000..278f031
--- /dev/null
+++ b/debian/source/local-options
@@ -0,0 +1,2 @@
+# In git submodule only (not used on build nor provided in the upstr

xcb-util-keysyms: Changes to 'refs/tags/0.3.0'

2014-10-01 Thread Arnaud Fontaine
Tag '0.3.0' created by Julien Danjou  at 2008-09-17 12:07 
+

Release xcb-util 0.3.0
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEABECAAYFAkjQ8v0ACgkQpGK1HsL+5c3oZACfeBDe5wkI/8hcM/ccvqNr1dI4
ZdoAoKr6A1RZyILM8rEUSW6HejFcmm1s
=yKLc
-END PGP SIGNATURE-

Changes since 0.2.1:
Arnaud Fontaine (15):
  [icccm] Make xcb_get_text_property() public as it might be useful for
  [property] Add missing xcb_get_any_property_unchecked().
  [atom] Move '*discriminated_atom*' functions from icccm to atom
  [icccm] Make xcb_get_text_property() and functions relying on it
  [icccm] Make xcb_get_wm_transient_for() asynchronous and document the 
code.
  [icccm] Make xcb_get_wm_size_hints() and xcb_get_wm_normal_hints()
  [icccm] Make xcb_get_wm_hints() asynchronous, remove useless functions
  [icccm] Make xcb_get_wm_protocols() asynchronous and document the
  [icccm] Fix namespace according to XCB code in general.
  [icccm] Add copyright notices.
  [icccm] Add functions to get WM_CLASS property.
  [icccm] Avoid InternAtom request.
  [icccm] Comment and indent the code properly.
  [icccm] Bump library version number to 0.3.0.
  wm: tag_t was renamed to xcb_atom_fast_tag_t.

Henning Sten (2):
  return on error to avoid null dereference in assert
  add doxygen documentation markup for XCB_EVENT_RESPONSE_TYPE_MASK macro

Julien Danjou (15):
  icccm: fix memory leak in xcb_get_wm_hints()
  icccm: fix wrong variable initialization
  icccm: free reply in wm hints retrieval
  atom: prefix functions and types
  atom: bump version info
  atom: include xcb headers
  property: rewrite property handler interface
  icccm: allow information retrieval from reply
  event: rework, rename and add some documentation
  event: define XCB_EVENT_RESPONSE_TYPE_MASK
  reply: rework and add some documentation
  Remove NEWS
  doc: add various authors, remove old todo item
  doc: enable doxygen doc in various submodule
  icccm: introduce xcb_get_wm_transient_for_from_reply

Keith Packard (4):
  Add image conversion test case for 'make check'
  xcb_mask must not be zero when n == 32.
  Rework image format conversion code to pass test_swap test case.
  Add test_swap to image/.gitignore

---
 Doxyfile|6 
 NEWS|   14 
 atom/Makefile.am|1 
 atom/atoms.gperf.m4 |   90 +++
 atom/xcb_atom.h.m4  |   28 -
 aux/xcb_bitops.h|2 
 configure.ac|3 
 event/Makefile.am   |3 
 event/event.c   |  117 +
 event/events.c  |   99 
 event/xcb_event.h   |  210 ++---
 icccm/Makefile.am   |1 
 icccm/icccm.c   |  992 +++
 icccm/xcb_icccm.h   | 1097 
 image/.gitignore|1 
 image/Makefile.am   |8 
 image/test_bitmap.c |3 
 image/test_swap.c   |  211 +
 image/xcb_image.c   |  286 +---
 property/Makefile.am|3 
 property/prop.c |  137 -
 property/property.c |  147 ++
 property/xcb_property.h |  154 ++
 reply/Makefile.am   |1 
 reply/reply.c   |  222 -
 reply/test_reply.c  |   10 
 reply/xcb_reply.h   |  110 
 wm/xcb_wm.h |2 
 wm/xcbwm-test.c |   30 -
 xcb_util_intro.in   |   13 
 30 files changed, 2542 insertions(+), 1459 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xzgwc-0001vj...@moszumanska.debian.org



xcb-util-keysyms: Changes to 'refs/tags/0.4.0'

2014-10-01 Thread Arnaud Fontaine
Tag '0.4.0' created by Arnaud Fontaine  at 2014-10-01 03:10 
+

Release 0.4.0
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCgAGBQJUK3CIAAoJEDZ6q2L9ANPZrEAQAIxh7pMq1dFxcnjky7v5D/Gl
AlgG5hysuRp1FF47b1HAQ/G6yv3/76UOK/1V1ZzbN3IcU/daw4EDXdhh1vv4jBi2
HqcTwaU1685iBjnGP/hUKnifkC83Rn+IvA8Fh9Hzy+un0e7JUGpUjOGTqExcczU1
Q7gFuEurLPcc8Dn9CSdNrRR5pln7uCKiQXxkk9EdC6mfApScgLQCQKJFf5Kr0d7l
7vXU/HJ02fzwiHExnyWnbH9LDeWXp3n7XAq5fPEk9vauNkn+nDZJsj4rxlZ+BIe4
W0bhLrXvg56vT6SK2/e6te+VYpT+nNXK/Nwdb9QXAus30QOZ1rs1obXva1RS9TGL
4UnczowX34K0X/3ZqQ/LkpNUlYjiC6lORZ97eKwQjhieu6mPfWfN9DS9ncDSZNu1
bYwDWOT1OpTESBJyZ4RlhSsoZ9qRREQZPZ8knPZ1yId7SuDTbPK+goXerDawFV01
Tviz644H6JBrpYhoRG4bxZwnER/V6GHvjiAdp8gZ+bfb3dGaTFCaBUhLaHUXu45i
dxWku+uS1ZFM+BYsAkZfbMFuoTfOTwCfJJ39Js8Rr/Gsny5Eu0J6iI9XfBwkZm19
ofVD1nZ1LKmYAzwevFimXppt/SJ23bhEn8IXRtzRAWVviRh7TBQ3M9NSACsk2/XV
mY0QpiylGEis3Xjp7KFF
=iAbs
-END PGP SIGNATURE-

Changes since 0.3.8:
Andreas Wettstein (1):
  Recognise ISO_Level5-keysyms as modifiers in xcb_is_modifier_key #39177

Arnaud Fontaine (5):
  Add autogen.sh to EXTRA_DIST.
  Release 0.3.9
  Pick-up changes in m4 submodule as it's better to have all util repos at 
same m4 level.
  Remove old/outdated documentation crufts.
  Release 0.4.0

Bastien Dejean (1):
  Duplicate keycodes are unnecessary

Michael Stapelberg (1):
  autogen.sh: verify that git submodules are initialized

Uli Schlachter (1):
  Fix handling of error connections

---
 .gitignore|1 
 Doxyfile  | 1305 --
 Makefile.am   |2 
 NEWS  |   11 
 autogen.sh|   15 
 configure.ac  |3 
 keysyms/keysyms.c |   21 
 m4|2 
 xcb_util_intro.in |   24 
 9 files changed, 44 insertions(+), 1340 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xzgwe-00023o...@moszumanska.debian.org



xcb-util-keysyms: Changes to 'refs/tags/0.3.2'

2014-10-01 Thread Arnaud Fontaine
Tag '0.3.2' created by Julien Danjou  at 2008-12-16 13:15 
+

Release xcb-util 0.3.2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEABECAAYFAklHqgcACgkQpGK1HsL+5c2Y7ACeMVb1fnpqD1DYIUgEknqz6MxD
2WsAoK+9ppKNiiYHlcHSOUrgeChU51HN
=Hxg7
-END PGP SIGNATURE-

Changes since 0.3.1:
Jonathan Landis (1):
  Fix copyright statement

Julien Danjou (4):
  build: add check for xproto >= 7.0.8
  keysyms: use xcb_key_lookup_t type for col paramter
  icccm: fix gravity proto
  Release xcb-util 0.3.2

Peter Harris (2):
  Don't call exit() in xcb_aux_get_depth; return 0 instead.
  Fix the type of 'input' in icccm/xcb_icccm.h/xcb_wm_hints_t

---
 aux/xcb_aux.c  |   42 +---
 configure.ac   |3 +-
 event/event.c  |2 -
 icccm/icccm.c  |6 ++---
 icccm/xcb_icccm.h  |4 +--
 image/test_bitmap.c|   29 +++
 image/test_formats.c   |   28 ++
 image/test_swap.c  |   28 ++
 image/test_xcb_image.c |   28 ++
 image/test_xcb_image_shm.c |   26 
 image/xcb_image.c  |2 -
 keysyms/keysyms.c  |   47 +
 keysyms/xcb_keysyms.h  |   37 ---
 property/property.c|2 -
 reply/reply.c  |2 -
 reply/test_reply.c |   31 +
 wm/manage.c|   31 +
 wm/reply_formats.c |   30 
 wm/table.c |   30 
 wm/xcbwm-test.c|   30 
 20 files changed, 389 insertions(+), 49 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xzgwd-000205...@moszumanska.debian.org



xcb-util-keysyms: Changes to 'refs/tags/0.3.6'

2014-10-01 Thread Arnaud Fontaine
Tag '0.3.6' created by Julien Danjou  at 2009-08-24 08:48 
+

Release xcb-util 0.3.6
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEABECAAYFAkqSU+sACgkQpGK1HsL+5c0vmQCeOksbHm3Vp1M/xqA3O61wywlx
jM8AoLTDPI31mOsfbV5a2xXeLCDEFp9J
=Tlgb
-END PGP SIGNATURE-

Changes since 0.3.5:
Arnaud Fontaine (5):
  icccm: use xcb_gravity_t when possible and cosmetic changes
  Check for ssize_t in configure for xcb-util-common.h
  event: update to libxcb 1.4
  event: fix compiler warning due to missing include for memset
  Bump version to 0.3.6

Julien Danjou (4):
  icccm: fix atoms_len with new libxcb
  xcb-property: fix bad comment
  icccm: typo fix
  icccm: add xcb_get_wm_protocols_from_reply

Mikhail Gusarov (1):
  Typo in configure.ac

---
 configure.ac|   12 
 event/event.c   |1 +
 event/xcb_event.h   |2 --
 icccm/icccm.c   |   45 +++--
 icccm/xcb_icccm.h   |   11 +++
 property/xcb_property.h |2 +-
 xcb-util-common.h   |4 
 7 files changed, 52 insertions(+), 25 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xzgwe-000232...@moszumanska.debian.org



xcb-util-keysyms: Changes to 'refs/tags/0.3.5'

2014-10-01 Thread Arnaud Fontaine
Tag '0.3.5' created by Julien Danjou  at 2009-05-29 06:37 
+

Release xcb-util 0.3.5
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEABECAAYFAkofgrwACgkQpGK1HsL+5c3vywCgy/HuIAF6sUFE4YUlpZPUJZKm
bLIAn27jIz11uCsRO00OYnC9FmMjNGla
=hzsB
-END PGP SIGNATURE-

Changes since 0.3.4:
Alan Coopersmith (1):
  Make sure m4 supports -I flag, if not, try finding gnu m4

Bart Massey (1):
  wrapped xcb_atom.h for C++ per bug report of 

Bob Ham (1):
  Add a check on xproto version libxcb was compiled with

Julien Danjou (2):
  icccm: fix compatibility with libxcb > 1.2
  Release xcb-util 0.3.5

Mikhail Gusarov (2):
  Add xcb_aux_change_window_attributes_checked
  Zero out handlers list in xcb_event_handlers_init

---
 acinclude.m4   |  173 +
 atom/xcb_atom.h.m4 |8 ++
 aux/xcb_aux.c  |   11 +++
 aux/xcb_aux.h  |6 +
 configure.ac   |   43 +++--
 event/event.c  |1 
 icccm/icccm.c  |   16 ++--
 7 files changed, 246 insertions(+), 12 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xzgwe-00022j...@moszumanska.debian.org



xcb-util-keysyms: Changes to 'refs/tags/0.3.3'

2014-10-01 Thread Arnaud Fontaine
Tag '0.3.3' created by Julien Danjou  at 2009-01-31 14:10 
+

Release xcb-util 0.3.3
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEABECAAYFAkmEW8AACgkQpGK1HsL+5c23lwCeJ8oW087L3hvuvO5sj25fmFGe
dwAAnAryfdOciFSGIB0kqRI1wIQFX+ak
=8T7N
-END PGP SIGNATURE-

Changes since 0.3.2:
Julien Danjou (4):
  Revert "keysyms: use xcb_key_lookup_t type for col paramter"
  xcb_keysyms: remove xcb_lookup_t
  icccm: change class hint struct fields name
  Release xcb-util 0.3.3

---
 configure.ac  |2 +-
 icccm/icccm.c |6 +++---
 icccm/xcb_icccm.h |4 ++--
 keysyms/keysyms.c |   16 
 keysyms/xcb_keysyms.h |   33 ++---
 5 files changed, 28 insertions(+), 33 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xzgwd-00020q...@moszumanska.debian.org



xcb-util-keysyms: Changes to 'refs/tags/xcb-util-keysyms-0.4.0-1'

2014-10-01 Thread Arnaud Fontaine
Tag 'xcb-util-keysyms-0.4.0-1' created by Arnaud Fontaine  at 
2014-10-01 10:14 +

Tagging upload of xcb-util-keysyms 0.4.0-1 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEABECAAYFAlQr0+sACgkQvfKiIF42GdOifwCgoobm4b4eiwVQTDy7jM0b2Vak
tDgAn1S60o4vzaDXmchDRQucJi9MnUno
=M6TF
-END PGP SIGNATURE-

Changes since xcb-util-keysyms-0.3.9-2:
Arnaud Fontaine (11):
  Pick-up changes in m4 submodule as it's better to have all util repos at 
same m4 level.
  Remove old/outdated documentation crufts.
  Release 0.4.0
  Merge tag '0.4.0' into debian-unstable
  New upstream release.
  Bump Standards-Version to 3.9.6. No changes needed.
  Update copyright years for the Debian packaging.
  Do not delete files only in git repository (to avoid dpkg-source failing
  License name should not contain space, so use MIT/X11 (lintian).
  Use upstream bzip2 tarball rather than bigger gzip one.
  Upload to unstable.

Bastien Dejean (1):
  Duplicate keycodes are unnecessary

Michael Stapelberg (1):
  autogen.sh: verify that git submodules are initialized

Uli Schlachter (1):
  Fix handling of error connections

---
 .gitignore  |1 
 Doxyfile| 1305 
 NEWS|6 
 autogen.sh  |   15 
 configure.ac|3 
 debian/changelog|   14 
 debian/control  |2 
 debian/copyright|4 
 debian/rules|3 
 debian/source/local-options |2 
 debian/watch|2 
 keysyms/keysyms.c   |   19 
 m4  |2 
 xcb_util_intro.in   |   24 
 14 files changed, 56 insertions(+), 1346 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xzgwe-00024x...@moszumanska.debian.org



xcb-util-keysyms: Changes to 'refs/tags/0.3.4'

2014-10-01 Thread Arnaud Fontaine
Tag '0.3.4' created by Julien Danjou  at 2009-04-15 13:44 
+

Release xcb-util 0.3.4
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEABECAAYFAknl5LYACgkQpGK1HsL+5c3YrQCfZUzTLOHa+u4i2E5YZBMZfjGj
stMAoIog3jkW9SCKwq2FmK7yOMWS3bwa
=IwXk
-END PGP SIGNATURE-

Changes since 0.3.3:
Julien Danjou (11):
  add a useful common header with common function/define
  event: add functions to convert event/errors to labels
  wm: remove
  icccm: add xcb_get_wm_class_from_reply()
  keysyms: fix xcb_key_symbols_get_keycode() API
  keysyms: bump version
  event: simplify proto
  event: add error values
  event: add define to get request and error types
  bump version to 0.3.4
  include xcb-util-common.h in dist tarball

---
 Makefile.am   |4 
 README|1 
 configure.ac  |3 
 event/event.c |  220 +++
 event/xcb_event.h |   72 ++
 icccm/icccm.c |   21 +-
 icccm/xcb_icccm.h |   11 +
 keysyms/Makefile.am   |1 
 keysyms/keysyms.c |   53 +++
 keysyms/xcb_keysyms.h |   15 +-
 wm/.gitignore |1 
 wm/Makefile.am|   46 --
 wm/manage.c   |  146 
 wm/reply_formats.c|  353 --
 wm/reply_formats.h|   31 
 wm/table.c|   89 
 wm/xcb-wm.pc.in   |   11 -
 wm/xcb_wm.h   |   57 
 wm/xcbwm-test.c   |  260 
 xcb-util-common.h |   33 
 20 files changed, 393 insertions(+), 1035 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xzgwe-00021a...@moszumanska.debian.org



Processing of xcb-util-keysyms_0.4.0-1_amd64.changes

2014-10-01 Thread Debian FTP Masters
xcb-util-keysyms_0.4.0-1_amd64.changes uploaded successfully to localhost
along with the files:
  libxcb-keysyms1_0.4.0-1_amd64.deb
  libxcb-keysyms1-dev_0.4.0-1_amd64.deb
  xcb-util-keysyms_0.4.0-1.dsc
  xcb-util-keysyms_0.4.0.orig.tar.bz2
  xcb-util-keysyms_0.4.0-1.debian.tar.xz

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: https://lists.debian.org/e1xzh3u-0004vr...@franck.debian.org



Bug#748753:

2014-10-01 Thread Chris Bainbridge
Is there any chance of this being fixed in time for Jessie? Jessie
gets frozen in 35 days. It would be a shame to see it released with
buggy Intel GPU drivers that are no longer recommended or distributed
by upstream.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/cap-bsrbdxgdm22ybm_ew2b-grvuwfrduorn3xazxdravvso...@mail.gmail.com



xcb-util-keysyms_0.4.0-1_amd64.changes ACCEPTED into unstable

2014-10-01 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 01 Oct 2014 19:07:02 +0900
Source: xcb-util-keysyms
Binary: libxcb-keysyms1 libxcb-keysyms1-dev
Architecture: source amd64
Version: 0.4.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Arnaud Fontaine 
Description:
 libxcb-keysyms1 - utility libraries for X C Binding -- keysyms
 libxcb-keysyms1-dev - utility libraries for X C Binding -- keysyms, 
development files
Changes:
 xcb-util-keysyms (0.4.0-1) unstable; urgency=medium
 .
   * New upstream release.
   * d/control: Bump Standards-Version to 3.9.6. No changes needed.
   * d/copyright:
 + Update copyright years for the Debian packaging.
 + License name should not contain space, so use MIT/X11 (lintian).
   * d/source/local-options, d/rules:
 + Do not delete files only in git repository (to avoid dpkg-source
   failing because of local changes) as it creates unwanted local
   repository modifications, instead just ignore them.
Checksums-Sha1:
 30386445c919b50e9a535aef5233b129bc62c4c3 1529 xcb-util-keysyms_0.4.0-1.dsc
 ff02ee8ac22c53848af50c0a6a6b00feb002c1cb 289880 
xcb-util-keysyms_0.4.0.orig.tar.bz2
 a22644c795ed4004ca65a64681f2d5fc0185fee1 4228 
xcb-util-keysyms_0.4.0-1.debian.tar.xz
 3496425a847b7408f574c502c1083ef6cf494641 16312 
libxcb-keysyms1_0.4.0-1_amd64.deb
 744528117dc2221f13c8cf85ce7594d5ce5a4629 16054 
libxcb-keysyms1-dev_0.4.0-1_amd64.deb
Checksums-Sha256:
 7dd5419ccc060295ef0bb4815ca6406af490d3b950eed43905882cab95082ebf 1529 
xcb-util-keysyms_0.4.0-1.dsc
 0ef8490ff1dede52b7de533158547f8b454b241aa3e4dcca369507f66f216dd9 289880 
xcb-util-keysyms_0.4.0.orig.tar.bz2
 c26e5a78a50dff072d1b701b680b211431ace0faa1f19300768eab895f2b8637 4228 
xcb-util-keysyms_0.4.0-1.debian.tar.xz
 5547351e0e58bdb680c376b260884153445cdb38db03e7268647b5a63be55bd3 16312 
libxcb-keysyms1_0.4.0-1_amd64.deb
 c780586feffc29a049e3f3861a812607de427b19d4bd9ff5cb98e0590285879f 16054 
libxcb-keysyms1-dev_0.4.0-1_amd64.deb
Files:
 3a292b35409c2f2a24cfa44cbc1c3ef2 16312 libs extra 
libxcb-keysyms1_0.4.0-1_amd64.deb
 a27a13bbd6815901f98219b430c286c2 16054 libdevel extra 
libxcb-keysyms1-dev_0.4.0-1_amd64.deb
 19f831a76c31d58bc85aef6f22856b9e 1529 libdevel extra 
xcb-util-keysyms_0.4.0-1.dsc
 1022293083eec9e62d5659261c29e367 289880 libdevel extra 
xcb-util-keysyms_0.4.0.orig.tar.bz2
 72d9191323f6f35e85c737663819eaa1 4228 libdevel extra 
xcb-util-keysyms_0.4.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlQr1PoACgkQvfKiIF42GdP5NgCgmvhDDONaii0RaJjumCDdRI+B
TEsAn0OYQAitnioQB1gaNbVw4CIi+ya+
=HbYz
-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: https://lists.debian.org/e1xzhgo-oz...@franck.debian.org



Bug#763660: xserver-xorg-video-nouveau: GeForce 9400M , no screens found

2014-10-01 Thread A Mennucc
Package: xserver-xorg-video-nouveau
Version: 1:1.0.11-1
Severity: normal


dear mantainers,

I am unable to use nouveau on my MacBook 5,1

AFAIU in http://nouveau.freedesktop.org/wiki/FeatureMatrix
the chipset 9400M is in the NV50 group and is supported in version 1.0.11

but looking in the log (see below around line 120), NV50 is not in the list
of "supported chipsets"

so X stops claiming "no screen found"

any help is appreciated

a.


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

lrwxrwxrwx 1 root root 13 Aug 20 18:37 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 2397280 Sep 22 23:49 /usr/bin/Xorg

VGA-compatible devices on PCI bus:
--
02:00.0 VGA compatible controller [0300]: NVIDIA Corporation C79 [GeForce 
9400M] [10de:0863] (rev b1)

Xorg X server configuration file status:

-rw-r--r-- 1 root root 138 Oct  1 17:21 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
---
Section "Device"
Identifier "My GPU"
Driver "nouveau"
#Driver "fbdev"
EndSection


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

/etc/modprobe.d contains no KMS configuration files.

Kernel version (/proc/version):
---
Linux version 3.16-2-amd64 (debian-ker...@lists.debian.org) (gcc version 4.8.3 
(Debian 4.8.3-11) ) #1 SMP Debian 3.16.3-2 (2014-09-20)

Xorg X server log files on system:
--
-rw-r--r-- 1 root root 44115 Oct  1 17:22 /var/log/Xorg.0.log

Contents of the failed Xorg X server log file:
-
[   905.635] 
X.Org X Server 1.16.1
Release Date: 2014-09-21
[   905.635] X Protocol Version 11, Revision 0
[   905.635] Build Operating System: Linux 3.2.0-4-amd64 x86_64 Debian
[   905.635] Current Operating System: Linux kytty 3.16-2-amd64 #1 SMP Debian 
3.16.3-2 (2014-09-20) x86_64
[   905.635] Kernel command line: BOOT_IMAGE=/boot-crypt/vmlinuz-3.16-2-amd64 
root=/dev/mapper/cryptroot cryptopts=target=cryptroot,source=/dev/sda5,luks ro
[   905.635] Build Date: 22 September 2014  09:45:37PM
[   905.635] xorg-server 2:1.16.1-1 (http://www.debian.org/support) 
[   905.635] Current version of pixman: 0.32.6
[   905.635]Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[   905.635] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   905.635] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Oct  1 16:54:49 
2014
[   905.636] (==) Using config file: "/etc/X11/xorg.conf"
[   905.636] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   905.636] (==) No Layout section.  Using the first Screen section.
[   905.636] (==) No screen section available. Using defaults.
[   905.636] (**) |-->Screen "Default Screen Section" (0)
[   905.636] (**) |   |-->Monitor ""
[   905.636] (==) No device specified for screen "Default Screen Section".
Using the first device section listed.
[   905.636] (**) |   |-->Device "My GPU"
[   905.636] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[   905.636] (==) Automatically adding devices
[   905.636] (==) Automatically enabling devices
[   905.636] (==) Automatically adding GPU devices
[   905.636] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[   905.636]Entry deleted from font path.
[   905.636] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
built-ins
[   905.636] (==) ModulePath set to "/usr/lib/xorg/modules"
[   905.636] (II) The server relies on udev to provide the list of input 
devices.
If no devices become available, reconfigure udev or disable 
AutoAddDevices.
[   905.636] (II) Loader magic: 0x7f5383e9bd80
[   905.636] (II) Module ABI versions:
[   905.636]X.Org ANSI C Emulation: 0.4
[   905.636]X.Org Video Driver: 18.0
[   905.636]X.Org XInput driver : 21.0
[   905.636]X.Org Server Extension : 8.0
[   905.637] (II) xfree86: Adding drm device (/dev/dri/card0)
[   905.639] (--) PCI:*(0:2:0:0) 10de:0863:106b:00aa rev 177, Mem @ 
0x9200/16777216, 0x8000/268435456, 0x9000/33554432, I/O @ 
0x1000/128, BIOS @ 0x/131072
[   905.639] (II) LoadModule: "glx"
[   905.639] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   905.640] (II) Module glx: vendor="X.Org Foundation"
[   905.640]compiled for 1.16.1, module version = 1.0.0
[   905.640]ABI class: X.Org Server Extension, version 8.0
[   905.640] (==) AIGLX enabl

Bug#761182: xserver-xorg-video-nouveau: NV94: screen black after resume from S3, floods of kernel errors

2014-10-01 Thread Zack Weinberg
On Mon, Sep 22, 2014 at 12:08 PM, Sven Joachim  wrote:
> I don't see those, but then I don't use gdm or a compositing window
> manager.  Does it help to turn off the "PageFlip" option in xorg.conf
> (see nouveau(4))?

Those error messages are gone again with kernel 3.16.3-2, but the
screen still does not turn back on after resume.

> There's a newer kernel in experimental, could you please test 3.17-rc5?

Screen does not turn on with 3.17~rc5-1~exp1 either.  There's nothing
that looks relevant in either the kernel or Xorg logs.

(Sorry for the delay, I was traveling.)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/cakcabmgahyr1t_c3gg8rnolr+arlaveep-hte0bf6z6xb8e...@mail.gmail.com



Bug#763660: xserver-xorg-video-nouveau: GeForce 9400M , no screens found

2014-10-01 Thread Sven Joachim
On 2014-10-01 17:36 +0200, A Mennucc wrote:

> I am unable to use nouveau on my MacBook 5,1
>
> AFAIU in http://nouveau.freedesktop.org/wiki/FeatureMatrix
> the chipset 9400M is in the NV50 group and is supported in version 1.0.11

Correct, this chipset has been supported for a long time.

> but looking in the log (see below around line 120), NV50 is not in the list
> of "supported chipsets"

That is red herring.

> so X stops claiming "no screen found"

Probably that's #740953 which is mostly seen on Macs.  AFAIK no solution
has been found yet, but if you are willing to build your own kernel,
unsetting CONFIG_X86_SYSFB reportedly helps.

Cheers,
   Sven


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/87wq8jsn1l@turtle.gmx.de



Bug#761628: libxdmcp-dev: arch-dependent file in "Multi-Arch: same" package

2014-10-01 Thread Helmut Grohne
user helm...@debian.org
usertags 761628 + rebootstrap
tags 761628 + patch
thanks

On Mon, Sep 15, 2014 at 10:43:58AM +0200, Julien Cristau wrote:
> Presumably the new ports built against a newer version of
> xorg-sgml-doctools.

doc/xdmcp.xml uses &fullrelver;, which is set by xorg-sgml-doctools (or
some of its dependencies). I don't think it makes sense to include that
build-time information in the documentation, so I suggest to just remove
it. A patch achieving that is attached.

Adding Keith Packard to CC, because he authored the patched file. Maybe
that makes upstreaming this change faster.

Since this bug makes libxaw FTCBFS a timely solution is appreciated.

Helmut
diff -u libxdmcp-1.1.1/debian/changelog libxdmcp-1.1.1/debian/changelog
--- libxdmcp-1.1.1/debian/changelog
+++ libxdmcp-1.1.1/debian/changelog
@@ -1,3 +1,12 @@
+libxdmcp (1:1.1.1-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Remove &fullrelver; usage from doc/xdmcp.xml to make libxdmcp-dev M-A:same
+safe when built with different versions of xorg-sgml-doctools. (closes:
+#761628)
+
+ -- Helmut Grohne   Wed, 01 Oct 2014 07:22:26 +0200
+
 libxdmcp (1:1.1.1-1) unstable; urgency=low
 
   * New upstream release.
only in patch2:
unchanged:
--- libxdmcp-1.1.1.orig/doc/xdmcp.xml
+++ libxdmcp-1.1.1/doc/xdmcp.xml
@@ -23,7 +23,7 @@
 
X Display Manager Control Protocol
X.Org Standard
-   X Version 11, Release &fullrelvers;
+   X Version 11
Version 1.1




Processed: Re: Bug#761628: libxdmcp-dev: arch-dependent file in "Multi-Arch: same" package

2014-10-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> user helm...@debian.org
Setting user to helm...@debian.org (was hel...@subdivi.de).
> usertags 761628 + rebootstrap
There were no usertags set.
Usertags are now: rebootstrap.
> tags 761628 + patch
Bug #761628 [libxdmcp-dev] libxdmcp-dev: arch-dependent file in "Multi-Arch: 
same" package
Added tag(s) patch.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
761628: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=761628
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: 
https://lists.debian.org/handler.s.c.141220055519411.transcr...@bugs.debian.org



Bug#761877: xserver-xorg: Updated Xorg from Testing fails to start correctly

2014-10-01 Thread Lee Cremeans
I did some more fiddling, and the culprit seems to be render acceleration.
Setting

Option "RenderAccel" "False"

in xorg.conf makes X work again on the Compaq.

-lee


Bug#748753:

2014-10-01 Thread Julien Cristau
On Wed, Oct  1, 2014 at 11:24:41 +0100, Chris Bainbridge wrote:

> Is there any chance of this being fixed in time for Jessie?

Unlikely.

Cheers,
Julien


signature.asc
Description: Digital signature