mesa: Changes to 'debian-experimental'

2014-09-12 Thread Andreas Boll
 debian/changelog |9 ++
 debian/patches/01_gallium-util-add-missing-u_debug-include.patch |   39 
++
 debian/patches/series|1 
 debian/rules |9 +-
 4 files changed, 54 insertions(+), 4 deletions(-)

New commits:
commit c25a50e5dd84456cc4ce2cb406ccda00df5a6c18
Author: Andreas Boll 
Date:   Fri Sep 12 11:28:57 2014 +0200

Don't try to install vdpau hardlinks on hurd

Should fix FTBFS.

diff --git a/debian/changelog b/debian/changelog
index 5da7e76..3bfdf0f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ mesa (10.3.0~rc3-2) UNRELEASED; urgency=medium
   * Add 01_gallium-util-add-missing-u_debug-include.patch, fixes FTBFS on
 big endian archs.
   * Enable --with-egl-platforms=drm on kfreebsd-any, should fix FTBFS.
+  * Don't try to install vdpau hardlinks on hurd, should fix FTBFS.
 
  -- Andreas Boll   Fri, 12 Sep 2014 10:34:19 +0200
 
diff --git a/debian/rules b/debian/rules
index 66b6845..3606e47 100755
--- a/debian/rules
+++ b/debian/rules
@@ -279,10 +279,12 @@ binary-arch: install
mv debian/tmp/dri/usr/lib/${DEB_HOST_MULTIARCH}/dri/*_dri.so \
   debian/libgl1-mesa-dri/usr/lib/${DEB_HOST_MULTIARCH}/dri/
 
+  ifneq ($(DEB_HOST_ARCH_OS), hurd)
# Copy the hardlinked vdpau drivers correctly.
install -m755 -d 
debian/mesa-vdpau-drivers/usr/lib/${DEB_HOST_MULTIARCH}/vdpau/
mv debian/tmp/dri/usr/lib/${DEB_HOST_MULTIARCH}/vdpau/libvdpau*.so* \
   debian/mesa-vdpau-drivers/usr/lib/${DEB_HOST_MULTIARCH}/vdpau/
+  endif
 
dh_install -s --fail-missing
dh_installman -s

commit c42909269c29cf25a5e1143fd24c3806ee3c6acf
Author: Andreas Boll 
Date:   Fri Sep 12 10:44:33 2014 +0200

Enable --with-egl-platforms=drm on kfreebsd-any

Should fix FTBFS.

diff --git a/debian/changelog b/debian/changelog
index bfa5e4e..5da7e76 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ mesa (10.3.0~rc3-2) UNRELEASED; urgency=medium
 
   * Add 01_gallium-util-add-missing-u_debug-include.patch, fixes FTBFS on
 big endian archs.
+  * Enable --with-egl-platforms=drm on kfreebsd-any, should fix FTBFS.
 
  -- Andreas Boll   Fri, 12 Sep 2014 10:34:19 +0200
 
diff --git a/debian/rules b/debian/rules
index 74568e2..66b6845 100755
--- a/debian/rules
+++ b/debian/rules
@@ -78,10 +78,7 @@ else
 
# svga needs xa state tracker
confflags_GALLIUM += --enable-xa
-#
-# Although the KMS egl drivers will probably build on kfreebsd & hurd
-# only linux actually has KMS drivers implemented at this point.
-   EGL_DISPLAYS += drm
+
 # Non-Linux ports also lack *_CLOEXEC and epoll, so wayland isn't ready yet:
EGL_DISPLAYS += wayland
 ifeq (,$(filter $(DEB_HOST_ARCH), s390 s390x))
@@ -89,6 +86,8 @@ else
 endif
   endif
 
+   EGL_DISPLAYS += drm
+
   # Build intel drivers on archs where libdrm-intel is installed
   ifneq (,$(filter $(DEB_HOST_ARCH),amd64 i386 kfreebsd-amd64 kfreebsd-i386 
x32))
DRI_DRIVERS += i915 i965

commit 1c88709ecc6c4b160ccb247641910434c8b132cc
Author: Andreas Boll 
Date:   Fri Sep 12 10:37:57 2014 +0200

Add 01_gallium-util-add-missing-u_debug-include.patch

Fixes FTBFS on big endian archs.

diff --git a/debian/changelog b/debian/changelog
index 76cf8a6..bfa5e4e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+mesa (10.3.0~rc3-2) UNRELEASED; urgency=medium
+
+  * Add 01_gallium-util-add-missing-u_debug-include.patch, fixes FTBFS on
+big endian archs.
+
+ -- Andreas Boll   Fri, 12 Sep 2014 10:34:19 +0200
+
 mesa (10.3.0~rc3-1) experimental; urgency=medium
 
   [ Maarten Lankhorst ]
diff --git a/debian/patches/01_gallium-util-add-missing-u_debug-include.patch 
b/debian/patches/01_gallium-util-add-missing-u_debug-include.patch
new file mode 100644
index 000..12ed857
--- /dev/null
+++ b/debian/patches/01_gallium-util-add-missing-u_debug-include.patch
@@ -0,0 +1,39 @@
+From 05bd91b0202e06cab998112a3a833c1fa3b47d31 Mon Sep 17 00:00:00 2001
+From: Andreas Boll 
+Date: Fri, 12 Sep 2014 10:11:24 +0200
+Subject: [PATCH] gallium/util: add missing u_debug include
+
+Needed for assert.
+Fixes build on BE archs with -Werror=implicit-function-declaration.
+
+In file included from
+../../../../../src/gallium/auxiliary/draw/draw_fs.c:30:0:
+../../../../../src/gallium/auxiliary/util/u_math.h: In function
+'util_memcpy_cpu_to_le32':
+../../../../../src/gallium/auxiliary/util/u_math.h:810:4: error:
+implicit declaration of function 'assert'
+[-Werror=implicit-function-declaration]
+assert(n % 4 == 0);
+^
+
+Cc: "10.3" 
+Signed-off-by: Andreas Boll 
+---
+ src/gallium/auxiliary/util/u_math.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/gallium/auxiliary/util/u_math.h 
b/src/gallium/auxiliary/util/u_math.h
+index 25bcfb5..39bd40f 100644
+--- a/src/gallium/a

mesa: patches for debian-experimental branch

2014-09-12 Thread Fabio Pedretti
A minor cleanup and enabling of optional, non-default ilo intel
gallium driver.

[PATCH 1/2] debian/rules: enable intel ilo gallium driver
[PATCH 2/2] debian/rules: minor cleanup


-- 
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/1410515976-8189-1-git-send-email-fabio@libero.it



[PATCH 2/2] debian/rules: minor cleanup

2014-09-12 Thread Fabio Pedretti
---
 debian/rules | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/debian/rules b/debian/rules
index 8486307..3ff6156 100755
--- a/debian/rules
+++ b/debian/rules
@@ -142,6 +142,7 @@ confflags-dri = \
--enable-shared-glapi \
--enable-texture-float \
--disable-xvmc \
+   --disable-omx \
$(confflags_DIRECT_RENDERING) \
$(confflags_DRI3) \
$(confflags_EGL) \
@@ -179,8 +180,6 @@ confflags-swx11-i386-i686 = \
--libdir=/usr/lib/$(DEB_HOST_MULTIARCH)/i686/cmov \
$(buildflags-i686)
 
-confflags += --disable-omx
-
 configure: $(QUILT_STAMPFN) configure.ac
autoreconf -vfi
 
-- 
1.9.1


-- 
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/1410515976-8189-3-git-send-email-fabio@libero.it



[PATCH 1/2] debian/rules: enable intel ilo gallium driver

2014-09-12 Thread Fabio Pedretti
Can be enabled adding this in /etc/X11/xorg.conf:
Section "Device"
 Identifier "Device0"
 Driver "Intel"
 Option "DRI" "ilo"
EndSection
---
 debian/rules | 5 +
 1 file changed, 5 insertions(+)

diff --git a/debian/rules b/debian/rules
index 3606e47..8486307 100755
--- a/debian/rules
+++ b/debian/rules
@@ -71,6 +71,11 @@ else
 # Gallium drivers require libdrm-{nouveau,radeon}, only available on Linux
GALLIUM_DRIVERS += nouveau svga
 
+   # Build intel ilo drivers on archs where libdrm-intel is installed
+   ifneq (,$(filter $(DEB_HOST_ARCH),amd64 i386 x32))
+   GALLIUM_DRIVERS += ilo
+   endif
+
# Freedreno requires arm in addition
ifneq (,$(filter arm,$(DEB_HOST_ARCH_CPU)))
GALLIUM_DRIVERS += freedreno
-- 
1.9.1


-- 
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/1410515976-8189-2-git-send-email-fabio@libero.it



mesa: Changes to 'upstream-unstable'

2014-09-12 Thread Andreas Boll
 Android.mk|4 
 Makefile.am   |   11 
 VERSION   |2 
 bin/.cherry-ignore|   12 
 bin/get-pick-list.sh  |2 
 configure.ac  |4 
 docs/relnotes/10.2.7.html |  208 ++
 include/pci_ids/radeonsi_pci_ids.h|7 
 src/egl/drivers/dri2/egl_dri2.c   |   37 -
 src/egl/drivers/dri2/platform_android.c   |4 
 src/egl/main/Android.mk   |   27 -
 src/gallium/Android.mk|8 
 src/gallium/auxiliary/gallivm/lp_bld_debug.cpp|8 
 src/gallium/auxiliary/gallivm/lp_bld_misc.cpp |4 
 src/gallium/auxiliary/pipe-loader/pipe_loader.h   |2 
 src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c   |1 
 src/gallium/auxiliary/util/u_math.h   |   22 -
 src/gallium/drivers/freedreno/Android.mk  |   44 ++
 src/gallium/drivers/freedreno/Makefile.am |2 
 src/gallium/drivers/freedreno/freedreno_screen.c  |4 
 src/gallium/drivers/nouveau/Android.mk|9 
 src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp |   36 +
 src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp  |4 
 src/gallium/drivers/nouveau/nv50/nv50_state.c |7 
 src/gallium/drivers/nouveau/nv50/nv50_state_validate.c|8 
 src/gallium/drivers/nouveau/nv50/nv50_surface.c   |   16 
 src/gallium/drivers/nouveau/nv50/nv50_transfer.c  |2 
 src/gallium/drivers/nouveau/nv50/nv84_video.c |   15 
 src/gallium/drivers/nouveau/nvc0/nvc0_miptree.c   |1 
 src/gallium/drivers/r300/Android.mk   |3 
 src/gallium/drivers/r600/Android.mk   |2 
 src/gallium/drivers/r600/evergreen_compute.c  |3 
 src/gallium/drivers/r600/r600_shader.c|1 
 src/gallium/drivers/radeon/Android.mk |   38 +
 src/gallium/drivers/radeon/r600_pipe_common.c |   47 +-
 src/gallium/drivers/radeonsi/Android.mk   |2 
 src/gallium/drivers/radeonsi/si_blit.c|7 
 src/gallium/drivers/radeonsi/si_compute.c |6 
 src/gallium/drivers/radeonsi/si_descriptors.c |6 
 src/gallium/drivers/radeonsi/si_hw_context.c  |2 
 src/gallium/drivers/radeonsi/si_pipe.c|6 
 src/gallium/drivers/radeonsi/si_pipe.h|2 
 src/gallium/drivers/radeonsi/si_state.c   |   18 
 src/gallium/drivers/radeonsi/si_state.h   |   14 
 src/gallium/drivers/radeonsi/si_state_draw.c  |2 
 src/gallium/state_trackers/clover/api/queue.cpp   |6 
 src/gallium/state_trackers/egl/android/native_android.cpp |4 
 src/gallium/targets/egl-static/Android.mk |3 
 src/gallium/winsys/freedreno/drm/Android.mk   |   37 +
 src/gallium/winsys/nouveau/drm/Android.mk |5 
 src/gallium/winsys/radeon/drm/Android.mk  |4 
 src/gallium/winsys/radeon/drm/radeon_drm_cs.c |   62 +-
 src/gallium/winsys/radeon/drm/radeon_drm_winsys.c |   10 
 src/gallium/winsys/radeon/drm/radeon_drm_winsys.h |1 
 src/glsl/Android.mk   |2 
 src/mesa/drivers/common/meta_blit.c   |4 
 src/mesa/drivers/common/meta_generate_mipmap.c|   12 
 src/mesa/drivers/dri/i915/Android.mk  |2 
 src/mesa/drivers/dri/i965/brw_clip_unfilled.c |6 
 src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp   |4 
 src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp|3 
 src/mesa/drivers/dri/i965/gen8_vec4_generator.cpp |5 
 src/mesa/drivers/dri/nouveau/nouveau_bufferobj.c  |1 
 src/mesa/drivers/dri/nouveau/nouveau_state.c  |1 
 src/mesa/main/buffers.c   |2 
 src/mesa/main/texparam.c  |   11 
 src/mesa/state_tracker/st_glsl_to_tgsi.cpp|   54 +-
 67 files changed, 675 insertions(+), 234 deletions(-)

New commits:
commit 64d51e250788c8f9d1ad9c2b93cb7bb4a093fe6f
Author: Emil Velikov 
Date:   Sat Sep 6 00:47:24 2014 +0100

Add release notes for the 10.2.7 rel

mesa: Changes to 'debian-unstable'

2014-09-12 Thread Andreas Boll
 Android.mk|4 
 Makefile.am   |   11 
 VERSION   |2 
 bin/.cherry-ignore|   12 
 bin/get-pick-list.sh  |2 
 configure.ac  |4 
 debian/changelog  |6 
 docs/relnotes/10.2.6.html |3 
 docs/relnotes/10.2.7.html |  208 ++
 include/pci_ids/radeonsi_pci_ids.h|7 
 src/egl/drivers/dri2/egl_dri2.c   |   37 -
 src/egl/drivers/dri2/platform_android.c   |4 
 src/egl/main/Android.mk   |   27 -
 src/gallium/Android.mk|8 
 src/gallium/auxiliary/gallivm/lp_bld_debug.cpp|8 
 src/gallium/auxiliary/gallivm/lp_bld_misc.cpp |4 
 src/gallium/auxiliary/pipe-loader/pipe_loader.h   |2 
 src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c   |1 
 src/gallium/auxiliary/util/u_math.h   |   22 -
 src/gallium/drivers/freedreno/Android.mk  |   44 ++
 src/gallium/drivers/freedreno/Makefile.am |2 
 src/gallium/drivers/freedreno/freedreno_screen.c  |4 
 src/gallium/drivers/nouveau/Android.mk|9 
 src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp |   36 +
 src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp  |4 
 src/gallium/drivers/nouveau/nv50/nv50_state.c |7 
 src/gallium/drivers/nouveau/nv50/nv50_state_validate.c|8 
 src/gallium/drivers/nouveau/nv50/nv50_surface.c   |   16 
 src/gallium/drivers/nouveau/nv50/nv50_transfer.c  |2 
 src/gallium/drivers/nouveau/nv50/nv84_video.c |   15 
 src/gallium/drivers/nouveau/nvc0/nvc0_miptree.c   |1 
 src/gallium/drivers/r300/Android.mk   |3 
 src/gallium/drivers/r600/Android.mk   |2 
 src/gallium/drivers/r600/evergreen_compute.c  |3 
 src/gallium/drivers/r600/r600_shader.c|1 
 src/gallium/drivers/radeon/Android.mk |   38 +
 src/gallium/drivers/radeon/r600_pipe_common.c |   47 +-
 src/gallium/drivers/radeonsi/Android.mk   |2 
 src/gallium/drivers/radeonsi/si_blit.c|7 
 src/gallium/drivers/radeonsi/si_compute.c |6 
 src/gallium/drivers/radeonsi/si_descriptors.c |6 
 src/gallium/drivers/radeonsi/si_hw_context.c  |2 
 src/gallium/drivers/radeonsi/si_pipe.c|6 
 src/gallium/drivers/radeonsi/si_pipe.h|2 
 src/gallium/drivers/radeonsi/si_state.c   |   18 
 src/gallium/drivers/radeonsi/si_state.h   |   14 
 src/gallium/drivers/radeonsi/si_state_draw.c  |2 
 src/gallium/state_trackers/clover/api/queue.cpp   |6 
 src/gallium/state_trackers/egl/android/native_android.cpp |4 
 src/gallium/targets/egl-static/Android.mk |3 
 src/gallium/winsys/freedreno/drm/Android.mk   |   37 +
 src/gallium/winsys/nouveau/drm/Android.mk |5 
 src/gallium/winsys/radeon/drm/Android.mk  |4 
 src/gallium/winsys/radeon/drm/radeon_drm_cs.c |   62 +-
 src/gallium/winsys/radeon/drm/radeon_drm_winsys.c |   10 
 src/gallium/winsys/radeon/drm/radeon_drm_winsys.h |1 
 src/glsl/Android.mk   |2 
 src/mesa/drivers/common/meta_blit.c   |4 
 src/mesa/drivers/common/meta_generate_mipmap.c|   12 
 src/mesa/drivers/dri/i915/Android.mk  |2 
 src/mesa/drivers/dri/i965/brw_clip_unfilled.c |6 
 src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp   |4 
 src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp|3 
 src/mesa/drivers/dri/i965/gen8_vec4_generator.cpp |5 
 src/mesa/drivers/dri/nouveau/nouveau_bufferobj.c  |1 
 src/mesa/drivers/dri/nouveau/nouveau_state.c  |1 
 src/mesa/main/buffers.c   |2 
 src/mesa/main/texparam.c  |   11 
 src/mesa/state_tracker/st_glsl_to_tgsi.cpp|   54 +-
 69 files changed, 684 insertions(+), 234 deletions(-)

New commits:
commit 

Re: mesa: patches for debian-experimental branch

2014-09-12 Thread Andreas Boll
Thanks, pushed

Andreas.

PS: I've simplified patch 1 a bit.

2014-09-12 11:59 GMT+02:00 Fabio Pedretti :
> A minor cleanup and enabling of optional, non-default ilo intel
> gallium driver.
>
> [PATCH 1/2] debian/rules: enable intel ilo gallium driver
> [PATCH 2/2] debian/rules: minor cleanup


-- 
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/CACiKqBc=m7zWkVASGMasREykfYWdXmLx65JHN7AVX=evqqj...@mail.gmail.com



mesa: Changes to 'debian-experimental'

2014-09-12 Thread Andreas Boll
 debian/changelog |5 +
 debian/rules |4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

New commits:
commit 025c06de6274dbdfd873ac1e124eaf22f7f0cf19
Author: Fabio Pedretti 
Date:   Fri Sep 12 11:59:36 2014 +0200

debian/rules: minor cleanup

Signed-off-by: Andreas Boll 

diff --git a/debian/changelog b/debian/changelog
index ec4de21..4aa9e6f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ mesa (10.3.0~rc3-2) UNRELEASED; urgency=medium
 
   [ Fabio Pedretti ]
   * debian/rules: enable intel ilo gallium driver.
+  * debian/rules: minor cleanup.
 
  -- Andreas Boll   Fri, 12 Sep 2014 10:34:19 +0200
 
diff --git a/debian/rules b/debian/rules
index e55fffc..f27d994 100755
--- a/debian/rules
+++ b/debian/rules
@@ -138,6 +138,7 @@ confflags-dri = \
--enable-shared-glapi \
--enable-texture-float \
--disable-xvmc \
+   --disable-omx \
$(confflags_DIRECT_RENDERING) \
$(confflags_DRI3) \
$(confflags_EGL) \
@@ -175,8 +176,6 @@ confflags-swx11-i386-i686 = \
--libdir=/usr/lib/$(DEB_HOST_MULTIARCH)/i686/cmov \
$(buildflags-i686)
 
-confflags += --disable-omx
-
 configure: $(QUILT_STAMPFN) configure.ac
autoreconf -vfi
 

commit 3acf10d5b31f9a4ea9f96f05b445f90d5417f368
Author: Fabio Pedretti 
Date:   Fri Sep 12 11:59:35 2014 +0200

debian/rules: enable intel ilo gallium driver

Can be enabled adding this in /etc/X11/xorg.conf:
Section "Device"
 Identifier "Device0"
 Driver "Intel"
 Option "DRI" "ilo"
EndSection

v2 (Andreas): Enable ilo on kfreebsd-* too

Signed-off-by: Andreas Boll 

diff --git a/debian/changelog b/debian/changelog
index 3bfdf0f..ec4de21 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,14 @@
 mesa (10.3.0~rc3-2) UNRELEASED; urgency=medium
 
+  [ Andreas Boll ]
   * Add 01_gallium-util-add-missing-u_debug-include.patch, fixes FTBFS on
 big endian archs.
   * Enable --with-egl-platforms=drm on kfreebsd-any, should fix FTBFS.
   * Don't try to install vdpau hardlinks on hurd, should fix FTBFS.
 
+  [ Fabio Pedretti ]
+  * debian/rules: enable intel ilo gallium driver.
+
  -- Andreas Boll   Fri, 12 Sep 2014 10:34:19 +0200
 
 mesa (10.3.0~rc3-1) experimental; urgency=medium
diff --git a/debian/rules b/debian/rules
index 3606e47..e55fffc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -91,6 +91,7 @@ else
   # Build intel drivers on archs where libdrm-intel is installed
   ifneq (,$(filter $(DEB_HOST_ARCH),amd64 i386 kfreebsd-amd64 kfreebsd-i386 
x32))
DRI_DRIVERS += i915 i965
+   GALLIUM_DRIVERS += ilo
   endif
 
   # Do not build llvmpipe for armhf, it regresses compared to the classic 
swrast.


-- 
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/e1xsotu-0007zl...@moszumanska.debian.org



R: Re: mesa: patches for debian-experimental branch

2014-09-12 Thread Fabio Pedretti
Thanks. Patch 1 closes #732635.

>Messaggio originale
>Da: andreas.boll@gmail.com
>Data: 12/09/2014 12.55
>A: "Fabio Pedretti"
>Cc: , "Maarten Lankhorst", 
>Ogg: Re: mesa: patches for debian-experimental branch
>
>Thanks, pushed
>
>Andreas.
>
>PS: I've simplified patch 1 a bit.
>
>2014-09-12 11:59 GMT+02:00 Fabio Pedretti :
>> A minor cleanup and enabling of optional, non-default ilo intel
>> gallium driver.
>>
>> [PATCH 1/2] debian/rules: enable intel ilo gallium driver
>> [PATCH 2/2] debian/rules: minor cleanup
>



-- 
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/860.5105131410525262950.javamail.ht...@webmail-10.iol.local



Bug#550011: marked as done (/usr/bin/glxinfo: R423: glxinfo fails assertion)

2014-09-12 Thread Debian Bug Tracking System
Your message dated Fri, 12 Sep 2014 14:46:30 +0200
with message-id 

and subject line Close bug #550011
has caused the Debian Bug report #550011,
regarding /usr/bin/glxinfo: R423: glxinfo fails assertion
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.)


-- 
550011: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=550011
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: mesa-utils
Version: 7.6-1
Severity: important
File: /usr/bin/glxinfo


Simply running glxinfo produces following:

deepfire@betelheise:~$ glxinfo
name of display: :0.0
glxinfo: main/context.c:640: check_context_limits: Assertion 
`ctx->Const.MaxTextureCoordUnits <= ctx->Const.MaxTextureImageUnits' failed.
Aborted

whereas:

deepfire@betelheise:~$ LIBGL_ALWAYS_INDIRECT=1 glxinfo
name of display: :0.0
display: :0  screen: 0
direct rendering: No (LIBGL_ALWAYS_INDIRECT set)
server glx vendor string: SGI
server glx version string: 1.2
server glx extensions:
GLX_ARB_multisample, GLX_EXT_import_context, GLX_EXT_texture_from_pixmap, 
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer, 
GLX_OML_swap_method, GLX_SGI_make_current_read, GLX_SGI_swap_control, 
GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_visual_select_group
client glx vendor string: SGI
client glx version string: 1.4
client glx extensions:
GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context, 
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory, 
GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control, 
GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_OML_sync_control, 
GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync, 
GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, 
GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap
GLX version: 1.2
GLX extensions:
GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context, 
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer, 
GLX_OML_swap_method, GLX_SGI_make_current_read, GLX_SGI_swap_control, 
GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_visual_select_group, 
GLX_EXT_texture_from_pixmap
OpenGL vendor string: DRI R300 Project
OpenGL renderer string: Mesa DRI R300 (R420 554B) 20090101  TCL
OpenGL version string: 1.4 (1.5 Mesa 7.6)
OpenGL extensions:
GL_ARB_depth_texture, GL_ARB_draw_buffers, GL_ARB_fragment_program, 
GL_ARB_imaging, GL_ARB_multisample, GL_ARB_multitexture, 
GL_ARB_occlusion_query, GL_ARB_point_parameters, GL_ARB_shadow, 
GL_ARB_shadow_ambient, GL_ARB_texture_border_clamp, 
GL_ARB_texture_compression, GL_ARB_texture_cube_map, 
GL_ARB_texture_env_add, GL_ARB_texture_env_combine, 
GL_ARB_texture_env_crossbar, GL_ARB_texture_env_dot3, 
GL_ARB_texture_mirrored_repeat, GL_ARB_texture_rectangle, 
GL_ARB_transpose_matrix, GL_ARB_vertex_program, GL_ARB_window_pos, 
GL_EXT_abgr, GL_EXT_bgra, GL_EXT_blend_color, 
GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate, 
GL_EXT_blend_logic_op, GL_EXT_blend_minmax, GL_EXT_blend_subtract, 
GL_EXT_copy_texture, GL_EXT_draw_range_elements, GL_EXT_fog_coord, 
GL_EXT_multi_draw_arrays, GL_EXT_packed_pixels, GL_EXT_point_parameters, 
GL_EXT_polygon_offset, GL_EXT_rescale_normal, GL_EXT_secondary_color, 
GL_EXT_separate_specular_color, GL_EXT_shadow_funcs, 
GL_EXT_stencil_two_side, GL_EXT_stencil_wrap, GL_EXT_subtexture, 
GL_EXT_texture, GL_EXT_texture3D, GL_EXT_texture_edge_clamp, 
GL_EXT_texture_env_add, GL_EXT_texture_env_combine, 
GL_EXT_texture_env_dot3, GL_EXT_texture_filter_anisotropic, 
GL_EXT_texture_lod_bias, GL_EXT_texture_mirror_clamp, 
GL_EXT_texture_object, GL_EXT_texture_rectangle, GL_EXT_vertex_array, 
GL_APPLE_packed_pixels, GL_ATI_draw_buffers, GL_ATI_texture_env_combine3, 
GL_ATI_texture_mirror_once, GL_ATIX_texture_env_combine3, 
GL_IBM_texture_mirrored_repeat, GL_INGR_blend_func_separate, 
GL_MESA_pack_invert, GL_MESA_ycbcr_texture, GL_NV_blend_square, 
GL_NV_light_max_exponent, GL_NV_texgen_reflection, 
GL_NV_texture_rectangle, GL_NV_vertex_program, GL_SGI_color_matrix, 
GL_SGI_color_table, GL_SGIS_generate_mipmap, GL_SGIS_texture_border_clamp, 
GL_SGIS_texture_edge_clamp, GL_SGIS_texture_lod, GL_SGIX_shadow_ambient, 
GL_SUN_multi_draw_arrays

8 GLX Visuals
   visual  x  bf lv rg d st colorbuffer ax dp st accumbuffer  ms  cav
 id dep cl sp sz l  ci b ro  r  g  b  a bf th cl  r  g  b  a ns b eat
---

Re: Re: mesa: patches for debian-experimental branch

2014-09-12 Thread Andreas Boll
Closed.

2014-09-12 14:34 GMT+02:00 Fabio Pedretti :
> Thanks. Patch 1 closes #732635.
>
>>Messaggio originale
>>Da: andreas.boll@gmail.com
>>Data: 12/09/2014 12.55
>>A: "Fabio Pedretti"
>>Cc: , "Maarten Lankhorst" lankho...@canonical.com>, 
>>Ogg: Re: mesa: patches for debian-experimental branch
>>
>>Thanks, pushed
>>
>>Andreas.
>>
>>PS: I've simplified patch 1 a bit.
>>
>>2014-09-12 11:59 GMT+02:00 Fabio Pedretti :
>>> A minor cleanup and enabling of optional, non-default ilo intel
>>> gallium driver.
>>>
>>> [PATCH 1/2] debian/rules: enable intel ilo gallium driver
>>> [PATCH 2/2] debian/rules: minor cleanup
>>
>
>


-- 
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/cacikqbcdb73zm-lmq_p39mtuojqgfxycvdjom0nefm3oav3...@mail.gmail.com



Bug#621780: marked as done (glxinfo SEGV with multiple screens)

2014-09-12 Thread Debian Bug Tracking System
Your message dated Fri, 12 Sep 2014 15:04:49 +0200
with message-id 

and subject line Close bug #621780
has caused the Debian Bug report #621780,
regarding glxinfo SEGV with multiple screens
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.)


-- 
621780: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=621780
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: mesa-utils
Version: 8.0.1-2
Severity: normal

glxinfo segfaults:

$ glxinfo -display :0.2
name of display: :0.2
Segmentation fault

$ glxinfo -display :0.1
name of display: :0.1
Segmentation fault

$ glxinfo -display :0.0
name of display: :0.0
display: :0  screen: 0
direct rendering: Yes
...
Segmentation fault

On :0.0, it gives a lot of output but eventually segfaults.  Output is
cut off in the middle of a line, presumably stdio buffering interrupted
by the segfault.

On :0.1 and :0.2 it gives only the one line of output.

My configuration may be a little unusual:

:0.0 xserver-xorg-video-nouveau1:0.0.16+git20101210+8bb8231-2+exp2
:0.1 xserver-xorg-video-radeon 1:6.14.0-1+exp2
:0.2 xserver-xorg-video-nouveau1:0.0.16+git20101210+8bb8231-2+exp2

Xinerama is disabled - apparently it doesn't support multiple drivers.

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages mesa-utils depends on:
ii  libc6 2.11.2-2   Embedded GNU C Library: Shared lib
ii  libgl1-mesa-glx [libgl1]  7.10-1 A free implementation of the OpenG
ii  libglew1.51.5.8-3The OpenGL Extension Wrangler - ru
ii  libglu1-mesa [libglu1]7.10-1 The OpenGL utility library (GLU)
ii  libx11-6  2:1.3.3-3  X11 client-side library
ii  libxext6  2:1.1.2-1  X11 miscellaneous extension librar

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 8.1.0-1

There were lots of improvements and fixes in glxinfo 8.1.0 and 8.2.0

If you still could reproduce this bug, feel free to reopen and report
the bug upstream at https://bugs.freedesktop.org with product Mesa and
component Demos.--- End Message ---


mesa: Changes to 'debian-experimental'

2014-09-12 Thread Andreas Boll
 debian/changelog |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b2d8afb29015a6ae4b3687d450a3763d489c7c7d
Author: Andreas Boll 
Date:   Fri Sep 12 15:10:02 2014 +0200

Close bug #732635

diff --git a/debian/changelog b/debian/changelog
index 4aa9e6f..9786985 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,7 +7,7 @@ mesa (10.3.0~rc3-2) UNRELEASED; urgency=medium
   * Don't try to install vdpau hardlinks on hurd, should fix FTBFS.
 
   [ Fabio Pedretti ]
-  * debian/rules: enable intel ilo gallium driver.
+  * debian/rules: enable intel ilo gallium driver (Closes: #732635).
   * debian/rules: minor cleanup.
 
  -- Andreas Boll   Fri, 12 Sep 2014 10:34:19 +0200


-- 
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/e1xsqce-00047u...@moszumanska.debian.org



xinit: Changes to 'refs/tags/xinit-1.0.3'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.0.3' created by Adam Jackson  at 
2006-10-13 21:53 +

xinit 1.0.3

Changes since the dawn of time:
Adam Jackson (6):
  Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
  Bug #3860: Avoid a bashism. (Diego Pettenò)
  Bug #2027: Treat SIGTERM like SIGINT in xinit. (Andreas Luik)
  Stub COPYING files
  Bump to 1.0.2.
  Bump to 1.0.3

Alan Coopersmith (9):
  x11perf/Makefile.am: xinit/Makefile.am: xvidtune/Makefile.am:
  Use kbd_mode -a to restore console keyboard on Solaris x86 too.
  Add config.h includes for modularization Use RETSIGTYPE if defined by
  Use AC_TYPE_SIGNAL and AC_FUNC_VFORK to replace Imake's SIGNAL_DEFINES and
  Don't define HAS_COOKIE_MAKER if mcookie wasn't found.
  Use cpp to substitute variables in man pages
  Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions 
to
  Add settings for SHELL_CMD & ARCHMANDEFS to match monolith changes for bug
  Change *mandir targets to use new *_MAN_DIR variables set by 
xorg-macros.m4

Daniel Stone (3):
  Move manpages to section 1.
  Define HAS_COOKIE_MAKER and search for mcookie so startx will generate
  Bump to 0.99.1.

Egbert Eich (7):
  Importing vendor version xf86-012804-2330 on Thu Jan 29 00:06:33 PST 2004
  Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
  readding XFree86's cvs IDs
  Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
  Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
  Merging XORG-CURRENT into trunk
  Separate server auth and client .Xautority file in startx. .Xautority 
might

Eric Anholt (4):
  Set CSRG_BASED for BSD systems so the build succeeds.
  Bugzilla #4045: Do a missed replacement of @@ with \ in startx.
  Add/improve .cvsignore files for apps.
  Another pass at .cvsignores for apps.

Jeremy C. Reed (2):
  Bug #4449  Be more
  In comments, change contractions to be spelled out to fix cpp "missing

Kaleb Keithley (4):
  R6.6 is the Xorg base-line
  Initial revision
  XFree86 4.3.0.1
  XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks

Kean Johnson (1):
  See ChangeLog entry 2005-11-07 for details.

Kevin E Martin (10):
  Various changes preparing packages for RC0:
  Update package version number for RC1 release.
  Update package version number for X11R7 RC2 release.
  Make using full paths in the xinit scripts optional.
  Make the programs used in the xinit scripts configurable.
  Update package version number for X11R7 RC3 release.
  Add m4 magic to allow AS_HELP_STRING to work with older versions of
  Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
  Update package version number for final X11R7 release candidate.
  Update package version for X11R7 release.

Matthieu Herrb (2):
  Quote MCOOKIE to allow to specify a command with args (ie
  Check setuid() return value. Bugzilla #7116.

Søren Sandmann Pedersen (1):
  Build system for xinit


-- 
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/e1xsrvq-0001zt...@moszumanska.debian.org



xinit: Changes to 'refs/tags/xinit-1.0.6'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.0.6' created by Matthieu Herrb  at 
2007-09-15 16:52 +

xinit version 1.0.6

Changes since xinit-1.0.5:
Matthieu Herrb (4):
  remove .serverauth.$$ file on signals or errors
  MKCOOKIE program for OpenBSD.
  generate
  Bump to 1.0.6

---
 INSTALL  |  236 +++
 configure.ac |   10 ++
 startx.cpp   |1 
 3 files changed, 245 insertions(+), 2 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/e1xsrvr-0001be...@moszumanska.debian.org



xinit: Changes to 'refs/tags/xinit-1.1.1'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.1.1' created by Jeremy Huddleston  at 
2008-12-17 23:20 +

xinit 1.1.1

Changes since xinit-1.1.0:
Alan Coopersmith (1):
  Fix build of startx & xinitrc with Solaris make

Jeremy Huddleston (17):
  Apple: privleged_startx: Increase the timeout so slower machines don't 
get a stray process warning in their system log.
  startx.cpp: Made some things a little more friendly for people who have 
spaces in pathnames.
  Apple: Using eval to protect people who have spaces in their home path.
  Support the instant-off API in SnowLeopard.
  Apple: sleep() to avoid innocent error message spew
  Apple: Make VPATH builds work on darwin
  Apple: Use AvailabilityMacros.h for Tiger compatability
  OSX: Create privleged_startx on Tiger
  OSX Tiger: More compilation fixes...
  OSX Tiger: Hopefully the last fix for Tiger users...
  Apple: Honor X11_PREFS_DOMAIN if it's set (1.4.2-apple26 and later)
  OSX Tiger: Fix discovery of mach port
  OSX: Fixed bad prefix
  OSX: More prefix fixes
  OSX: Don't use login/bash -c hack anymore for org.x.startx LaunchAgent
  Apple: Allow defaults option that maps to a -dpi server command line in 
startx
  xinit 1.1.1

---
 Makefile.am |3 
 configure.ac|   18 +--
 org.x.startx.plist.cpp  |5 -
 privileged_startx/20-font_cache.cpp |4 
 privileged_startx/Makefile.am   |9 +
 privileged_startx/client.c  |6 +
 privileged_startx/org.x.privileged_startx.plist.cpp |   19 ++--
 privileged_startx/server.c  |   68 --
 startx.cpp  |   95 +++-
 xinit.c |   40 +++-
 10 files changed, 191 insertions(+), 76 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/e1xsrvr-0001dt...@moszumanska.debian.org



xinit: Changes to 'refs/tags/xinit-1.0.7'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.0.7' created by Tilman Sauerbeck  at 
2007-09-17 10:47 +

xinit 1.0.7

Changes since xinit-1.0.6:
Tilman Sauerbeck (2):
  Bug #12448: Don't try to trap 'ERR'.
  Bumped version to 1.0.7.

---
 configure.ac |2 +-
 startx.cpp   |2 +-
 2 files changed, 2 insertions(+), 2 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/e1xsrvr-0001bh...@moszumanska.debian.org



xinit: Changes to 'debian-unstable'

2014-09-12 Thread Laurent Bigonville
 ChangeLog| 
 153 ++
 autogen.sh   | 
   5 
 configure.ac | 
  12 
 cpprules.in  | 
   2 
 debian/changelog | 
  20 +
 debian/patches/001_debian_xinitrc.diff   | 
  45 --
 debian/patches/03_debian_startx_manpage.diff | 
  10 
 debian/patches/07-Pass-files-to-cpp-via-CLI-arg-instead-of-stdin-to-wo.patch | 
  27 -
 debian/patches/08-Bump-required-util-macros-version-to-1.19.patch| 
  32 --
 debian/patches/09-Replace-RAWCPPFLAGS-with-TRADITIONALCPPFLAGS-when-pr.patch | 
  31 --
 debian/patches/10-startx-Under-Linux-start-X-on-the-current-VT.patch | 
  52 ---
 debian/patches/11-startx-Pass-vtX-as-long-as-the-user-did-not-specify-.patch | 
  64 
 debian/patches/series| 
  11 
 debian/rules | 
   1 
 startx.cpp   | 
  76 +---
 xinit.c  | 
  14 
 xinitrc.cpp  | 
  43 --
 17 files changed, 221 insertions(+), 377 deletions(-)

New commits:
commit 5f9161ee3772ba1ea5fb039d92616566f0129433
Author: Laurent Bigonville 
Date:   Fri Sep 12 16:00:33 2014 +0200

Release to unstable

diff --git a/debian/changelog b/debian/changelog
index 329606a..f11e7b0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
-xinit (1.3.4-1) UNRELEASED; urgency=medium
+xinit (1.3.4-1) unstable; urgency=medium
 
+  * Team upload.
   * New upstream release.
 - Drop d/p/07-Pass-files-to-cpp-via-CLI-arg-instead-of-stdin-to-wo.patch,
   d/p/08-Bump-required-util-macros-version-to-1.19.patch,
@@ -13,7 +14,7 @@ xinit (1.3.4-1) UNRELEASED; urgency=medium
   * debian/rules: Make /etc/X11/xinit/xinitrc executable to make lintian happy
 and also to fix LP: #491696
 
- -- Laurent Bigonville   Fri, 12 Sep 2014 14:46:49 +0200
+ -- Laurent Bigonville   Fri, 12 Sep 2014 16:00:29 +0200
 
 xinit (1.3.3-1) unstable; urgency=medium
 

commit 96c153a66ac80f7a55310db7e1f2428313c90f2b
Author: Laurent Bigonville 
Date:   Fri Sep 12 15:48:21 2014 +0200

Add LP statement to close launchpad bug

diff --git a/debian/changelog b/debian/changelog
index 57dbc4f..329606a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -29,7 +29,7 @@ xinit (1.3.3-1) unstable; urgency=medium
   * 10-startx-Under-Linux-start-X-on-the-current-VT.patch,
 11-startx-Pass-vtX-as-long-as-the-user-did-not-specify-.patch: By default
 start the server on the current VT, this is necessary to avoid logind to
-see the startx session as inactive (Closes: #743015)
+see the startx session as inactive (Closes: #743015 LP: #1247484)
   * debian/control: Bump Standards-Version to 3.9.5 (no further changes)
   * debian/control: Use the canonical for the VCS-* fields
   * debian/rules: Include buildflags.mk to pass the hardening flags

commit 226649c16290cba72958bf51e38c9b750fa7b64b
Author: Laurent Bigonville 
Date:   Fri Sep 12 14:47:30 2014 +0200

debian/rules: Make /etc/X11/xinit/xinitrc executable to make lintian happy 
and also to fix LP: #491696

diff --git a/debian/changelog b/debian/changelog
index b45c0f2..57dbc4f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,8 +10,10 @@ xinit (1.3.4-1) UNRELEASED; urgency=medium
 - debian/patches/001_debian_xinitrc.diff: Refreshed
   * Fix debian/patches/03_debian_startx_manpage.diff, a Debian specific note
 was not shown anymore
+  * debian/rules: Make /etc/X11/xinit/xinitrc executable to make lintian happy
+and also to fix LP: #491696
 
- -- Laurent Bigonville   Fri, 12 Sep 2014 13:54:38 +0200
+ -- Laurent Bigonville   Fri, 12 Sep 2014 14:46:49 +0200
 
 xinit (1.3.3-1) unstable; urgency=medium
 
diff --git a/debian/rules b/debian/rules
index a149388..388af97 100755
--- a/debian/rules
+++ b/debian/rules
@@ -69,6 +69,7 @@ install: build
 
install -d debian/tmp/etc/X11/xinit
install -m 755 debian/local/xserverrc debian/tmp/etc/X11/xinit
+   chmod 755 debian/tmp/etc/X11/xinit/xinitrc
 
 # Build architecture-dependent files here.
 binary-arch: build install

commit 87375ad9ef25e8a9f3eb001209ac2c6ce223f521
Author: Laurent Bigonville 
Date:   Fri Sep 12 13:55:50 2014 +0200

Fix debian/patches/03_debian_startx_manpage.diff, a Debian specific note 
was not shown anymore

diff --git a/debian/changelog b/debian/changelog
index eca4945..b45c0f2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,8 +8,10 @@ xinit (1.3.4-1) UNRELEASED; urgenc

xinit: Changes to 'refs/tags/xinit-1.0.4'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.0.4' created by Alan Coopersmith  at 
2007-05-22 03:01 +

xinit Version 1.0.4

Changes since xinit-1.0.3:
Alan Coopersmith (11):
  renamed: .cvsignore -> .gitignore
  Add *~ to .gitignore to skip over emacs/patch droppings
  Change example X server argument from bc to -br now that bc is gone
  Stop hardcoding /usr/X11R6/bin in manpage examples
  Bug #10616: Clarify syntax on xinit & startx man pages
  Don't print windowpath debug messages unless built -DDEBUG
  Replace static ChangeLog with dist hook to generate from git log
  Modernize list of Xservers printed when "X" is not found in $PATH
  Remove support for pre-POSIX-1990 platforms
  Remove old Imake checks now that we always build with autoconf
  Version bump: 1.0.4

Daniel Drake (1):
  Fill in COPYING File (X.Org Bugzilla #11024)

Samuel Thibault (1):
  X.Org Bugzilla #8013: xinit should set WINDOWPATH

---
 .cvsignore   |   22 --
 .gitignore   |   23 ++
 COPYING  |   25 +--
 ChangeLog|  103 --
 Makefile.am  |7 +-
 configure.ac |4 -
 startx.man   |2 
 xinit.c  |  199 +--
 xinit.man|8 +-
 9 files changed, 169 insertions(+), 224 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/e1xsrvq-0001am...@moszumanska.debian.org



xinit: Changes to 'refs/tags/xinit-1.0.5'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.0.5' created by Eric Anholt  at 2007-09-05 17:15 
+

xinit 1.0.5

Changes since xinit-1.0.4:
Eric Anholt (3):
  Use /dev/random to generate the cookie if mcookie is unavailable.
  Fix broken test for /dev/random cookie generation failure.
  Bump version to 1.0.5.

---
 configure.ac |2 +-
 startx.cpp   |   11 ---
 2 files changed, 9 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: https://lists.debian.org/e1xsrvq-0001an...@moszumanska.debian.org



xinit: Changes to 'refs/tags/xinit-1.2.1'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.2.1' created by Jeremy Huddleston  at 
2010-03-16 00:07 +

xinit 1.2.1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (Darwin)

iD8DBQBLnsvcjC1Anjf1NmMRAqKQAJ410505A9Uc4QPEXYcZvT8/cKW8DQCeK3j0
fpWy1o6+PkEIw/cV+3XoYzE=
=aRE5
-END PGP SIGNATURE-

Changes since xinit-1.2.0:
Gaetan Nadon (5):
  .gitignore: use common defaults with custom section # 24239
  Makefile.am: do not include autogen.sh in distribution #24183
  Deploy the new XORG_DEFAULT_OPTIONS #24242
  INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
  Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES

Jeremy Huddleston (4):
  Quiet warning for fts_open
  darwin: Handle home directories that contain a single-quote (')
  Updates for .gitignore
  Update to version 1.2.1 for release.

---
 .gitignore   |   80 --
 INSTALL  |  236 ---
 Makefile.am  |   10 +
 configure.ac |7 -
 privileged_startx/.gitignore |9 +
 privileged_startx/server.c   |2 
 startx.cpp   |2 
 7 files changed, 89 insertions(+), 257 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/e1xsrvs-0001en...@moszumanska.debian.org



xinit: Changes to 'refs/tags/xinit-1.2.0'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.2.0' created by Rémi Cardona  at 2009-11-14 14:00 
+

xinit 1.2.0
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.13 (GNU/Linux)

iEYEABECAAYFAkr+t/sACgkQfUU/I5AasIqjEgCfZ6zMXvFykw8Erytf7Y6txWVV
hYUAnjmryZk3keU8Hura1tXFMC7PFZDr
=ABSC
-END PGP SIGNATURE-

Changes since xinit-1.1.1:
Alan Coopersmith (7):
  Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
  Purge ancient server names from help, add newer server names instead
  Drop ancient A/UX compatibility hack
  Drop ancient SunWindows compatibility check
  Man page updates
  Strip RCS/CVS tags
  Use platform-specific X server names in man pages for cygwin & darwin

Andres Salomon (1):
  app/xinit: make startx's $? a useful value

Jeremy Huddleston (6):
  Apple: Use MAC_OS_X_VERSION_MIN_REQUIRED instead of 
__MAC_OS_X_VERSION_MIN_REQUIRED
  launchd: Added --with-launchd-id-prefix option to set non-standard 
launchd id prefix (org.x is still default)
  launchd: Include LAUNCHD_ID_PREFIX in the socket name for reverse lookup 
to tell which launchd id owns $DISPLAY
  launchd: Update the DISPLAY envvar to not have a - ... call me paranoid, 
but I feel safer without it
  This is not a GNU project, so declare it foreign.
  Apple: Export X11_PREFS_DOMAIN for children (quartz-wm)

Jon TURNEY (1):
  Cygwin can also have spaces in $HOME

Paulo Cesar Pereira de Andrade (1):
  Correct make distcheck for recent git versions.

Robert Macomber (1):
  startx: fix misparsing of initial client and server arguments which begin 
with / or ./

Rémi Cardona (2):
  make XINITDIR configurable at build-time, default is unchanged
  xinit 1.2.0

---
 .gitignore  |3 
 Makefile.am |   15 ++-
 configure.ac|   52 +
 cpprules.in |8 +-
 org.x.startx.plist.cpp  |4 -
 privileged_startx/Makefile.am   |7 +
 privileged_startx/client.c  |4 -
 privileged_startx/org.x.privileged_startx.plist.cpp |4 -
 privileged_startx/privileged_startx_types.h |6 +
 privileged_startx/server.c  |6 +
 startx.cmd  |3 
 startx.cpp  |   16 ++--
 startx.man  |   44 +--
 xinit.c |   58 +++---
 xinit.man   |   79 +---
 xinitrc.cmd |1 
 xinitrc.cpp |1 
 17 files changed, 160 insertions(+), 151 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/e1xsrvs-0001du...@moszumanska.debian.org



xinit: Changes to 'refs/tags/xinit-1.3.0'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.3.0' created by Alan Coopersmith  at 
2010-10-30 23:44 +

xinit 1.3.0

Changes since xinit-1.2.1:
Alan Coopersmith (2):
  config: Remove unnecessary calls from configure.ac
  xinit 1.3.0

David Shao (1):
  DragonFly BSD: includes for PRIO_PROCESS and setpriority() in xinit.c

Gaetan Nadon (1):
  config: update AC_PREREQ statement to 2.60

Jeremy Huddleston (3):
  Enable support for an xinitrc.d directory
  darwin: Make __APPLE__ path in startx POSIX compliant
  launchd: Explicitly search /sbin

Mikhail Gusarov (16):
  Nuke OS/2 and LynxOS support remnants.
  Fix whitespace
  Simplify environment juggling by using fork() instead of vfork()
  Stop converting functions' return types to void
  Use EXIT_{SUCCESS, FAILURE} from C90 instead of homegrown equivalents
  waitpid(2) is in Unix98
  killpg(2) is in Unix98
  SIGCHLD is in Unix98
  SIGTT{IN,OU} is in Unix98
  setpriority and PRIO_PROCESS are in Unix98
  sys/wait.h is in Unix98
  Use sigaction(2) instead of signal(2) to handle SIGUSR1 and SIGALRM
  Use signals from Unix98 and drop pre-POSIX compatibility
  Fix comment indentation
  Rationalize errors output
  Remove OS/2 leftovers

---
 Makefile.am  |2 
 configure.ac |   22 -
 startx.cmd   |   80 
 startx.cpp   |   18 
 xinit.c  | 1164 ---
 xinit.def|4 
 xinitrc.cmd  |   61 ---
 xinitrc.cpp  |4 
 8 files changed, 510 insertions(+), 845 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/e1xsrvs-0001eo...@moszumanska.debian.org



xinit: Changes to 'refs/tags/xinit-1.3.2'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.3.2' created by Jeremy Huddleston  at 
2012-01-28 07:15 +

xinit-1.3.2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (Darwin)

iD8DBQBPI6CMjC1Anjf1NmMRAm7/AJ9noM8iHiZ245UuyZ+SYqY3kTyfZgCfUYu0
vCvWzWNziaFdGmLyCyui9hY=
=Jsfp
-END PGP SIGNATURE-

Changes since xinit-1.3.1:
Jeremy Huddleston (5):
  darwin: Buildfix for Tiger which doesn't have posix_spawn
  startx: Choose an unused $DISPLAY by default on all platforms
  launchd: Add an option (--with-launchagent-xserver) to set the default 
X11 server
  Use default clientargs, serverargs, and display if none were set
  configure.ac: 1.3.2

Julien Cristau (1):
  Include  and  unconditionally

---
 configure.ac |   10 ++
 launchd/user_startx/Makefile.am  |4 
 launchd/user_startx/launchd_startx.c |   22 +-
 launchd/user_startx/startx.plist.cpp |4 
 startx.cpp   |   34 ++
 xinit.c  |2 --
 6 files changed, 57 insertions(+), 19 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/e1xsrvs-0001fi...@moszumanska.debian.org



xinit: Changes to 'refs/tags/xinit-1.0.8'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.0.8' created by Adam Jackson  at 2008-03-06 22:09 
+

xinit 1.0.8
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.8 (GNU/Linux)

iEYEABECAAYFAkfQa6kACgkQW4otUKDs0NMnBACfUVkwJDhDklo8GWGQaA96BRuw
kBUAoOsdGJZ+qeZExtkcGeoCPUCz87WI
=5S5y
-END PGP SIGNATURE-

Changes since xinit-1.0.7:
Adam Jackson (1):
  xinit 1.0.8

David Nusinow (1):
  Unbreak installs on non-launchd systems

James Cloos (1):
  Add missing PHONY line for automatic ChangeLog generation

Jeremy Huddleston (19):
  Added some support for Xquartz on OS-X.
  Added Apple launchd support
  Changed x11-exec to actually start X11.app.  X11.app will be responsible 
for calling xinit.
  OS-X: Added argv[0] hack for finding Xquartz UI and icon as well as 
claiming its dock icon
  Added support for OS-X preferences to disable tcp/ip connections and xauth
  OS-X: Made defaults test more robust
  OS-X: Need to use bash --login to setup the environment from launchd.
  XQuartz doesn't need the -launchd command line argument anymore.
  OS-X: Properly set enable_xauth if the user has no defaults set and 
choose a valid $display for fast-user-switching.
  OS-X: Add bindir to $PATH in startx if it's not there
  OS-X: Fixed typo
  OS-X: Set fontpath in xinitrc to include system / user fonts.  
Additionally fixed font scaling issues (trac #52)
  Apple: use -nocpp arg to xrdb if cpp is not installed
  Apple: Cleaned up font path setting and added font caching to xinitrc
  Apple: Support spaces in $HOME for font path, and remove duplicate entry
  Added org.x.X11.plist.cpp to EXTRA_DIST
  Apple: font caching and defaults
  Apple: Adding support for an xinitrc.d directory on OSX, so fink doesn't 
need to clobber files
  Apple: Use -c in the launchd plist, so broken .profile/.bashrc don't much 
up startx

Matthieu Herrb (2):
  Use /dev/arandom instead of /dev/urandom to generate the cookie
  Merge branch 'master' of 
ssh://he...@git.freedesktop.org/git/xorg/app/xinit

root (1):
  Define APPLE for the rest of us

---
 .gitignore  |2 
 Makefile.am |   58 
 configure.ac|   38 +-
 cpprules.in |   37 ++
 org.x.X11.plist.cpp |   27 +++
 startx.cpp  |  188 ++--
 xinit.c |   98 +--
 xinitrc.cpp |   28 +++
 8 files changed, 348 insertions(+), 128 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/e1xsrvr-0001c8...@moszumanska.debian.org



xinit: Changes to 'refs/tags/xinit-1.3.1'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.3.1' created by Jeremy Huddleston  at 
2011-07-25 00:16 +

xinit-1.3.1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (Darwin)

iD8DBQBOLLXWjC1Anjf1NmMRAiw8AJ4rQ08mpFH/VZoxYZdGHfKVzsYs/ACfShAw
MVHC05NHMCq5D2GAB2keL/s=
=ODAR
-END PGP SIGNATURE-

Changes since xinit-1.3.0:
Alan Coopersmith (4):
  Add usual set of URLs to README
  config: Replace obsolete usage of AC_OUTPUT with AC_CONFIG_FILES
  config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
  Merge adjacent if (timeout) blocks

Cyril Brulebois (1):
  Fix minor typos in startx's comments.

Gaetan Nadon (7):
  config: remove unrequired AC_SUBST([*_CFLAGS])
  config: remove unrequired AC_SUBST([*_LIBS])
  config: remove the workaround for the deprecated AC_HELP_STRING
  man: remove trailing spaces and tabs
  Use XORG_MANPAGE_SECTIONS rather than cpprules.in to build man pages
  Move man pages in the man directory
  DIST_SUBDIRS is not required when using AM_CONDITIONALs

Jeremy Huddleston (17):
  launchd: Reorganized layout of launchd sources
  launchd: Log messages to ASL rather than fprintf
  launchd: Enable stdout/stderr redirection to ASL
  launchd: Fix make dist
  launchd: Remove dead EXTRA_DIST
  launchd: console_redirect: Actually read and log the remaining data when 
we get EV_EOF
  launchd: Brownbag fix string compare
  privileged_startx: Prefer /usr/bin/mktemp
  launchd: Silence clang static analyzer
  Rename launchd-id-prefix to bundle-id-prefix
  launchd: include config.h
  launchd: syslog: Use facility org.x rather than user
  configure.ac: Fix support for the deprecated --with-launchd-id-prefix
  launchd Set the correct id for privileged_startx
  launchd: Update console redirection to work with libdispatch
  launchd: Fix an array-index-out-of-bounds crasher
  configure.ac: Bump version to 1.3.1

Tom Doherty (1):
  Minor typo.

---
 .gitignore|1 
 Makefile.am   |   31 -
 README|   26 +
 configure.ac  |   44 +
 cpprules.in   |   22 
 launchd/Makefile.am   |3 
 launchd/console_redirect.c|  418 ++
 launchd/console_redirect.h|   44 +
 launchd/privileged_startx/.gitignore  |9 
 launchd/privileged_startx/10-tmpdirs.cpp  |   46 +
 launchd/privileged_startx/20-font_cache.cpp   |   35 +
 launchd/privileged_startx/Makefile.am |   82 +++
 launchd/privileged_startx/client.c|   66 ++
 launchd/privileged_startx/privileged_startx.c |   63 ++
 launchd/privileged_startx/privileged_startx.defs  |   40 +
 launchd/privileged_startx/privileged_startx.plist.cpp |   28 +
 launchd/privileged_startx/privileged_startx_types.h   |   10 
 launchd/privileged_startx/server.c|  320 +
 launchd/user_startx/.gitignore|2 
 launchd/user_startx/Makefile.am   |   49 ++
 launchd/user_startx/launchd_startx.c  |   64 ++
 launchd/user_startx/startx.plist.cpp  |   25 +
 man/Makefile.am   |   20 
 man/startx.man|  224 +
 man/xinit.man |  199 
 org.x.startx.plist.cpp|   24 -
 privileged_startx/.gitignore  |9 
 privileged_startx/10-tmpdirs.cpp  |   37 -
 privileged_startx/20-font_cache.cpp   |   35 -
 privileged_startx/Makefile.am |   80 ---
 privileged_startx/client.c|   62 --
 privileged_startx/org.x.privileged_startx.plist.cpp   |   28 -
 privileged_startx/privileged_startx.c |   59 --
 privileged_startx/privileged_startx.defs  |   40 -
 privileged_startx/privileged_startx_types.h   |   10 
 privileged_startx/server.c|  306 -
 startx.cpp|8 
 startx.man|  223 -
 xinit.c   |5 
 xinit.man |  199 
 40 files changed, 1812 insertions(+), 1184 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/e1xsrvs-0001ff...@moszumanska.debian.org



xinit: Changes to 'refs/tags/xinit-1.1.0'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.1.0' created by Adam Jackson  at 2008-06-12 19:27 
+

xinit 1.1.0
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEABECAAYFAkhReJkACgkQW4otUKDs0NOHIQCfQHfyZVy+HhTugq4K5CHtF2pe
0M0AoLB3Z5SPeo8ABYpjg6WHu527165K
=UUDX
-END PGP SIGNATURE-

Changes since xinit-1.0.9:
Adam Jackson (1):
  xinit 1.1.0

Jeremy Huddleston (2):
  Properly handle using xserverrc
  Apple: Don't use launchd on Tiger since it doesn't support the features 
we need.

---
 Makefile.am  |4 
 configure.ac |   19 ---
 startx.cpp   |   20 ++--
 3 files changed, 18 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/e1xsrvr-0001d2...@moszumanska.debian.org



xinit: Changes to 'refs/tags/xinit-1.0.9'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.0.9' created by Adam Jackson  at 2008-05-21 18:36 
+

xinit 1.0.9
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEABECAAYFAkg0a8QACgkQW4otUKDs0NNwiQCfaziYIkl3/EGgOlxXGPHPMnDM
ykIAnRBEwvNqdfU30Za4kni792UBnHm8
=Xynt
-END PGP SIGNATURE-

Changes since xinit-1.0.8:
Adam Jackson (2):
  Unset session environment variables so startx works within a running 
session.
  xinit 1.0.9

Alan Coopersmith (3):
  Use od on /dev/random to generate cookie on Solaris
  Check for proper cookie creation on all platforms
  Use /bin/ksh instead of /bin/sh on Solaris

Jeremy C. Reed (1):
  Use /dev/urandom for cookie it it exists

Jeremy Huddleston (14):
  Apple: Fixed issue where display would not be passed correctly to the 
server if nolisten tcp was enabled.
  Apple: Execute /usr/X11/bin/privileged_startx if it's present
  Apple: Renamed LaunchAgent to org.x.startx to distinguish it from the 
org.x.X11 application
  Correctly handle users with spaces in $HOME
  Apple: privileged_startx is in XINITDIR
  Apple: We renamed font_cache.sh to font_cache for better consistency... 
Changing startx to work with this
  Apple: Wait for privileged_startx to finish, so we don't race to create 
/tmp/.X11-unix
  Apple: Added privileged_startx
  Apple: Fixed make dist to include a missing header and not include 
generated sources
  Cleaned up handling of defaultserver{,args}
  Apple: Use CFProcessPath instead of argv[0] trick.
  Apple: Added some OSX version protection, so this will still compile on 
Tiger and below.
  Apple: No need for these bits being here in xinit as of 
xserver-1.4.0-apple9
  Apple: Don't need to spew unneccessary 'directory exists' messages.

Matthieu Herrb (2):
  OpenBSD: use openssl rand -hex 16 to generate the cookie.
  Replace sprintf() and strcpy() with snprintf().

---
 Makefile.am |   12 
 configure.ac|   38 +--
 org.x.X11.plist.cpp |   27 --
 org.x.startx.plist.cpp  |   25 ++
 privileged_startx/10-tmpdirs.cpp|   37 ++
 privileged_startx/20-font_cache.cpp |   35 ++
 privileged_startx/Makefile.am   |   74 +
 privileged_startx/client.c  |   56 
 privileged_startx/org.x.privileged_startx.plist.cpp |   21 +
 privileged_startx/privileged_startx.c   |   59 
 privileged_startx/privileged_startx.defs|   40 +++
 privileged_startx/privileged_startx_types.h |6 
 privileged_startx/server.c  |  250 
 startx.cpp  |   29 +-
 xinit.c |   89 +--
 xinitrc.cpp |   12 
 16 files changed, 682 insertions(+), 128 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/e1xsrvr-0001cz...@moszumanska.debian.org



xinit: Changes to 'refs/tags/xinit-1.3.4'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.3.4' created by Hans de Goede  at 2014-09-11 
17:32 +

xinit-1.3.4
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEABECAAYFAlQR3KIACgkQF3VEtJrzE/uhQgCgn59UFWkXbh1c8Yw554wIeGzJ
+r4AmwUKFSQT0lAs0EIezeFykGt9cuQh
=iGAk
-END PGP SIGNATURE-

Changes since xinit-1.3.3:
Alan Coopersmith (4):
  Fix warnings about parameters to startServer & startClient shadowing 
globals
  Pass files to cpp via CLI arg instead of stdin to workaround gcc 4.8 
change
  configure: Drop AM_MAINTAINER_MODE
  autogen.sh: Honor NOCONFIGURE=1

Brad Smith (1):
  Remove hardcoded path to OpenSSL for OpenBSD

Hans de Goede (7):
  Remove unixware / sco support
  Bump required util-macros version to 1.19
  Replace $RAWCPPFLAGS with $TRADITIONALCPPFLAGS when processing cpp files
  startx: Under Linux start X on the current VT
  startx: Pass vtX as long as the user did not specify one
  startx: Make the bugzilla reference in a comment survive cpp processing
  xinit 1.3.4

---
 autogen.sh   |5 ++-
 configure.ac |   12 +++--
 cpprules.in  |2 -
 startx.cpp   |   76 ++-
 xinit.c  |   14 +-
 xinitrc.cpp  |   43 -
 6 files changed, 39 insertions(+), 113 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/e1xsrw9-0001ox...@moszumanska.debian.org



xinit: Changes to 'upstream-unstable'

2014-09-12 Thread Laurent Bigonville
 autogen.sh   |5 ++-
 configure.ac |   12 +++--
 cpprules.in  |2 -
 startx.cpp   |   76 ++-
 xinit.c  |   14 +-
 xinitrc.cpp  |   43 -
 6 files changed, 39 insertions(+), 113 deletions(-)

New commits:
commit 6f6747d500439782476cf5c029a7fc45fc954c86
Author: Hans de Goede 
Date:   Thu Sep 11 16:29:06 2014 +0200

xinit 1.3.4

Signed-off-by: Hans de Goede 

diff --git a/configure.ac b/configure.ac
index 3e9bd79..18794b3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@ dnl Process this file with autoconf to create configure.
 
 # Initialize Autoconf
 AC_PREREQ([2.60])
-AC_INIT([xinit], [1.3.3],
+AC_INIT([xinit], [1.3.4],
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [xinit])
 AC_CONFIG_SRCDIR([Makefile.am])
 AC_CONFIG_HEADERS([config.h])

commit e91faac94e36937c96c04277eae7960bf5132b5b
Author: Brad Smith 
Date:   Fri Aug 29 01:34:16 2014 -0400

Remove hardcoded path to OpenSSL for OpenBSD

Since xinit's autoconf script was changed to use AC_PATH_PROGS() to find
openssl this hardcoded path to openssl can be removed. This was noticed
recently when openssl was moved from /usr/sbin to /usr/bin and developers
were looking for anything having hardcoded paths.

Reviewed-by: Matthieu Herrb 

diff --git a/configure.ac b/configure.ac
index f04b7c1..3e9bd79 100644
--- a/configure.ac
+++ b/configure.ac
@@ -160,9 +160,6 @@ if test "x$MCOOKIE" = x ; then
 MCOOKIE="$OPENSSL rand -hex 16"
 else
 case $host_os in
-*openbsd*)
-MCOOKIE='/usr/sbin/openssl rand -hex 16'
-;;
 *solaris*)
 MCOOKIE="/usr/bin/od -X -A n -N 16 /dev/urandom | /usr/bin/tr 
-d ' '"
 ;;

commit 94b002262d27975dabf56c77fd308ebabc894090
Author: Hans de Goede 
Date:   Tue Aug 26 11:52:20 2014 +0200

startx: Make the bugzilla reference in a comment survive cpp processing

https://bugs.freedesktop.org/show_bug.cgi?id=83019

Signed-off-by: Hans de Goede 

diff --git a/startx.cpp b/startx.cpp
index 5dafce7..1c6fce0 100644
--- a/startx.cpp
+++ b/startx.cpp
@@ -191,7 +191,7 @@ if [ x"$server" = x ]; then
 #ifdef __linux__
 XCOMM When starting the defaultserver start X on the current tty to avoid
 XCOMM the startx session being seen as inactive:
-XCOMM https://bugzilla.redhat.com/show_bug.cgi?id=806491
+XCOMM "https://bugzilla.redhat.com/show_bug.cgi?id=806491";
 tty=$(tty)
 if expr match "$tty" '^/dev/tty[0-9]\+$' > /dev/null; then
 tty_num=$(echo "$tty" | grep -oE '[0-9]+$')

commit 5502aaf99f4e723e96791e8f4cf01e0c200ec269
Author: Alan Coopersmith 
Date:   Sat May 31 21:39:32 2014 -0700

autogen.sh: Honor NOCONFIGURE=1

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

Signed-off-by: Alan Coopersmith 

diff --git a/autogen.sh b/autogen.sh
index 80ae530..fc34bd5 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -9,5 +9,6 @@ cd $srcdir
 autoreconf -v --install || exit 1
 cd $ORIGDIR || exit $?
 
-$srcdir/configure "$@"
-
+if test -z "$NOCONFIGURE"; then
+$srcdir/configure "$@"
+fi

commit a6a720b5181d4d0529e4eb203ece234ba45f69dd
Author: Alan Coopersmith 
Date:   Sat May 31 21:38:41 2014 -0700

configure: Drop AM_MAINTAINER_MODE

Signed-off-by: Alan Coopersmith 

diff --git a/autogen.sh b/autogen.sh
index e81f989..80ae530 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -9,5 +9,5 @@ cd $srcdir
 autoreconf -v --install || exit 1
 cd $ORIGDIR || exit $?
 
-$srcdir/configure --enable-maintainer-mode "$@"
+$srcdir/configure "$@"
 
diff --git a/configure.ac b/configure.ac
index 37eabfa..f04b7c1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -29,7 +29,6 @@ AC_CONFIG_HEADERS([config.h])
 
 # Initialize Automake
 AM_INIT_AUTOMAKE([foreign dist-bzip2])
-AM_MAINTAINER_MODE
 
 # Require X.Org macros 1.19 or later for TRADITIONALCPPFLAGS
 m4_ifndef([XORG_MACROS_VERSION],

commit 1b23094a8606bf383ec6c7803a9cd300b1bb96a7
Author: Hans de Goede 
Date:   Mon Apr 7 11:23:48 2014 +0200

startx: Pass vtX as long as the user did not specify one

Adding vtX to $defaultserverargs means that it will only be added when
the user specifies no server arguments.

This means that doing ie: "startx -- -depth 16" will cause the server to 
start
on a different vt then just "startx", which does not meat the principle of
least surprise.

Instead always pass the vtX argument, except when the user has specified its
own vtX argument. Note that vtX still only gets added for the default 
server,
since for ie Xnest or Xephyr it makes no sense.

Signed-off-by: Hans de Goede 
Reviewed-by: James Cloos 

diff --git a/startx.cpp b/startx.cpp
index f4a0283..5dafce7 100644
--- a/startx.cpp
+++ b/startx.cpp
@@ -59,6 +59,7 @@ defaultserverargs=""
 defaultdisplay=":0"
 clientargs="

xinit: Changes to 'refs/tags/xinit-1.3.4-1'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.3.4-1' created by Laurent Bigonville  at 
2014-09-12 14:01 +

Tagging upload of xinit 1.3.4-1 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAABCAAGBQJUEvzLAAoJEB/FiR66sEPVX5UIAJAS607ou2EmcsWq10j0T440
g3HkVmrpWgh+uuW14yHbHGIGQs2GWjd66qIpimcfUuSodOP1v6oNsZI4BV7L4jAv
GHYlPn64NWrJCzol77/476A6vIh9NtrMKJDPZkUwgteHtVVZu8BzY3D4ob2Nqzp/
MgukKjKSOFEzrRBW7Yhcc4NPh//+YHcK6H412WrkUq3xNYY7/kPXaOZlc/9h10//
Y1BOuQ2s8E6rpodlc6+k1d9eHiP3o9ugYrKPDLhf0aQ4nVcW9HV3To/lXbE2Ceqn
gqpOhm8PkhLjp4hW8sy5IbVl6H7ofzy1fHVYZyxu6pYPqVb7lRohGwMYMCGiMm8=
=TB6I
-END PGP SIGNATURE-

Changes since xinit-1.3.3-1:
Alan Coopersmith (4):
  Fix warnings about parameters to startServer & startClient shadowing 
globals
  Pass files to cpp via CLI arg instead of stdin to workaround gcc 4.8 
change
  configure: Drop AM_MAINTAINER_MODE
  autogen.sh: Honor NOCONFIGURE=1

Brad Smith (1):
  Remove hardcoded path to OpenSSL for OpenBSD

Hans de Goede (7):
  Remove unixware / sco support
  Bump required util-macros version to 1.19
  Replace $RAWCPPFLAGS with $TRADITIONALCPPFLAGS when processing cpp files
  startx: Under Linux start X on the current VT
  startx: Pass vtX as long as the user did not specify one
  startx: Make the bugzilla reference in a comment survive cpp processing
  xinit 1.3.4

Laurent Bigonville (8):
  Merge branch 'upstream-unstable' into debian-unstable
  New upstream release.
  Drop patches that have been merged upstream
  debian/patches/001_debian_xinitrc.diff: Refreshed
  Fix debian/patches/03_debian_startx_manpage.diff, a Debian specific note 
was not shown anymore
  debian/rules: Make /etc/X11/xinit/xinitrc executable to make lintian 
happy and also to fix LP: #491696
  Add LP statement to close launchpad bug
  Release to unstable

---
 ChangeLog| 
 153 ++
 autogen.sh   | 
   5 
 configure.ac | 
  12 
 cpprules.in  | 
   2 
 debian/changelog | 
  20 +
 debian/patches/001_debian_xinitrc.diff   | 
  45 --
 debian/patches/03_debian_startx_manpage.diff | 
  10 
 debian/patches/07-Pass-files-to-cpp-via-CLI-arg-instead-of-stdin-to-wo.patch | 
  27 -
 debian/patches/08-Bump-required-util-macros-version-to-1.19.patch| 
  32 --
 debian/patches/09-Replace-RAWCPPFLAGS-with-TRADITIONALCPPFLAGS-when-pr.patch | 
  31 --
 debian/patches/10-startx-Under-Linux-start-X-on-the-current-VT.patch | 
  52 ---
 debian/patches/11-startx-Pass-vtX-as-long-as-the-user-did-not-specify-.patch | 
  64 
 debian/patches/series| 
  11 
 debian/rules | 
   1 
 startx.cpp   | 
  76 +---
 xinit.c  | 
  14 
 xinitrc.cpp  | 
  43 --
 17 files changed, 221 insertions(+), 377 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/e1xsrwb-0001pf...@moszumanska.debian.org



Processing of xinit_1.3.4-1_amd64.changes

2014-09-12 Thread Debian FTP Masters
xinit_1.3.4-1_amd64.changes uploaded successfully to localhost
along with the files:
  xinit_1.3.4-1_amd64.deb
  xinit_1.3.4-1.dsc
  xinit_1.3.4.orig.tar.gz
  xinit_1.3.4-1.diff.gz

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/e1xsrwz-0007u9...@franck.debian.org



xinit: Changes to 'refs/tags/xinit-1.3.2'

2014-09-12 Thread Laurent Bigonville
Tag 'xinit-1.3.2' created by Jeremy Huddleston  at 
2012-01-28 07:15 +

xinit-1.3.2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (Darwin)

iD8DBQBPI6CMjC1Anjf1NmMRAm7/AJ9noM8iHiZ245UuyZ+SYqY3kTyfZgCfUYu0
vCvWzWNziaFdGmLyCyui9hY=
=Jsfp
-END PGP SIGNATURE-

Changes since xinit-1.3.1:
Jeremy Huddleston (5):
  darwin: Buildfix for Tiger which doesn't have posix_spawn
  startx: Choose an unused $DISPLAY by default on all platforms
  launchd: Add an option (--with-launchagent-xserver) to set the default 
X11 server
  Use default clientargs, serverargs, and display if none were set
  configure.ac: 1.3.2

Julien Cristau (1):
  Include  and  unconditionally

---
 configure.ac |   10 ++
 launchd/user_startx/Makefile.am  |4 
 launchd/user_startx/launchd_startx.c |   22 +-
 launchd/user_startx/startx.plist.cpp |4 
 startx.cpp   |   34 ++
 xinit.c  |2 --
 6 files changed, 57 insertions(+), 19 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/e1xsrxh-000251...@moszumanska.debian.org



Bug#749172: marked as done (mesa: Add support for the OpenRISC architecture (or1k))

2014-09-12 Thread Debian Bug Tracking System
Your message dated Fri, 12 Sep 2014 16:33:47 +0200
with message-id 

and subject line Close bug #749172
has caused the Debian Bug report #749172,
regarding mesa: Add support for the OpenRISC architecture (or1k)
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.)


-- 
749172: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=749172
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: mesa
Version: 10.1.2
Severity: wishlist
Tags: upstream patch

Dear Maintainer,

This trivial patch adds support for or1k.

-- System Information:
Debian Release: jessie/sid
  APT prefers testing-updates
  APT policy: (500, 'testing-updates'), (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.13-1-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -ur mesa-10.1.2.orig/src/mesa/main/compiler.h mesa-10.1.2/src/mesa/main/compiler.h
--- mesa-10.1.2.orig/src/mesa/main/compiler.h	2014-05-24 15:28:50.770131989 +0200
+++ mesa-10.1.2/src/mesa/main/compiler.h	2014-05-24 15:28:54.838152937 +0200
@@ -329,7 +329,7 @@
 defined(__arm__) || defined(__aarch64__) || \
 defined(__sh__) || defined(__m32r__) || \
 (defined(__sun) && defined(_IEEE_754)) || \
-defined(__alpha__)
+defined(__alpha__) || defined(__or1k__)
 #define USE_IEEE
 #define IEEE_ONE 0x3f80
 #endif
Binary files mesa-10.1.2.orig/src/mesa/main/.compiler.h.swp and mesa-10.1.2/src/mesa/main/.compiler.h.swp differ
--- End Message ---
--- Begin Message ---
Version: 10.3.0~rc3-1

This bug was closed upstream with commit:

commit 50d5fc192b1558de048447498c876ff28a3433e6
Author: Matt Turner 
Date:   Wed Aug 6 16:13:26 2014 -0700

mesa: Drop USE_IEEE define.

I think OpenVMS was the only platform that Mesa ran on that used a
non-IEEE representation for floats. We removed OpenVMS support a while
back, and this should alleviate the need to continue updating the
this-platform-uses-IEEE list.

The one bit of this patch that needs review is the IS_INF_OR_NAN,
because I'm not sure if MSVC supports isfinite.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=82268
Reviewed-by: Brian Paul --- End Message ---


Bug#729054: Xspice fails to start (segfaults)

2014-09-12 Thread Christopher Ng
I might have missed the explanation, but it seems that the 'solution' to
this problem was to stop packaging Xspice.  That doesn't seem a very good
solution!


xinit_1.3.4-1_amd64.changes ACCEPTED into unstable

2014-09-12 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 12 Sep 2014 16:00:29 +0200
Source: xinit
Binary: xinit
Architecture: source amd64
Version: 1.3.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Laurent Bigonville 
Description:
 xinit  - X server initialisation tool
Changes:
 xinit (1.3.4-1) unstable; urgency=medium
 .
   * Team upload.
   * New upstream release.
 - Drop d/p/07-Pass-files-to-cpp-via-CLI-arg-instead-of-stdin-to-wo.patch,
   d/p/08-Bump-required-util-macros-version-to-1.19.patch,
   d/p/09-Replace-RAWCPPFLAGS-with-TRADITIONALCPPFLAGS-when-pr.patch,
   d/p/10-startx-Under-Linux-start-X-on-the-current-VT.patch,
   d/p/11-startx-Pass-vtX-as-long-as-the-user-did-not-specify-.patch:
   Merged upstream
 - debian/patches/001_debian_xinitrc.diff: Refreshed
   * Fix debian/patches/03_debian_startx_manpage.diff, a Debian specific note
 was not shown anymore
   * debian/rules: Make /etc/X11/xinit/xinitrc executable to make lintian happy
 and also to fix LP: #491696
Checksums-Sha1:
 74a032b72e192e71e24c6a0d7b3f278df13e6dc0 1550 xinit_1.3.4-1.dsc
 78d6457ba69f07ae1a727a88ae12fb3897874f72 219410 xinit_1.3.4.orig.tar.gz
 f58641d3cd4db2aeedf770fc8c3f6f170af31db4 20664 xinit_1.3.4-1.diff.gz
 b10b330a81f3dce127fd303f5c8de8649ef538e3 47004 xinit_1.3.4-1_amd64.deb
Checksums-Sha256:
 feae82532260087dbfb20df542bc22d26bb7af9a50353538737225e7d00a1cfa 1550 
xinit_1.3.4-1.dsc
 754c284875defa588951c1d3d2b20897d3b84918d0a97cb5a4724b00c0da0746 219410 
xinit_1.3.4.orig.tar.gz
 362ee2a7930fce5ac94058c519cf4c3a5cf1c90ef5981b9a95665bec10bb4a29 20664 
xinit_1.3.4-1.diff.gz
 81661b1af74fe2ef02ce6e0a0a1a1cf8e0d59b2f75ed81170cf9fb7038bfcdcb 47004 
xinit_1.3.4-1_amd64.deb
Files:
 5928709126d596a8ccda7f101c8b2f45 47004 x11 optional xinit_1.3.4-1_amd64.deb
 86134e75a3acf4499f6892f618b7d833 1550 x11 optional xinit_1.3.4-1.dsc
 91c5697345016ec7841f5e5fccbe7a4c 219410 x11 optional xinit_1.3.4.orig.tar.gz
 5d45a098e5155b2fad3aa133157ddad0 20664 x11 optional xinit_1.3.4-1.diff.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBCAAGBQJUEv3YAAoJEB/FiR66sEPV0ZsIAIqUZPiH0eITaw4EPEEy35bO
f3w/kaZ6xvuu8Z04N/J2Vv0iF+hstfNFHt162ORwUDT3g9HCbG44UD745+yj4X8L
bPOuYTJuSNlbi8DlM6Q4XtjZifdz1l/WjG+QywgyCstSK8YOH/zEBBd47XYrz18U
n151Y/Qt19mv+diNj/Q/mDwe5pxLMlSGM2Nm+STvoc7CMcFKqg9KvCqU/PxvkotH
zXfOiQ5h2ReQzDJKFpEqVDWIWrU9CFtWq2Cdtb24AwIHxQIYHQKufmg/phRnAJBp
KnbwFHjQqgnHcuqZ4jLQj37c328yvujOscfjaQjSuLWxsosWqn1FBYuS/nUmotU=
=SFvy
-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/e1xsslt-ey...@franck.debian.org



wayland: Changes to 'upstream-unstable'

2014-09-12 Thread Hector Oron
 configure.ac |2 
 doc/doxygen/Makefile.am  |2 
 doc/publican/Makefile.am |   25 --
 src/wayland-client.c |   63 +-
 src/wayland-shm.c|2 
 tests/display-test.c |  113 ++-
 6 files changed, 139 insertions(+), 68 deletions(-)

New commits:
commit edf4e7abea4046f003f53c300acf9af7dffc2e48
Author: Pekka Paalanen 
Date:   Fri Sep 12 12:26:50 2014 +0300

configure.ac: bump version to 1.5.93 for rc2

Signed-off-by: Pekka Paalanen 

diff --git a/configure.ac b/configure.ac
index 5deed2b..c556d4f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ AC_PREREQ([2.64])
 
 m4_define([wayland_major_version], [1])
 m4_define([wayland_minor_version], [5])
-m4_define([wayland_micro_version], [92])
+m4_define([wayland_micro_version], [93])
 m4_define([wayland_version],
   [wayland_major_version.wayland_minor_version.wayland_micro_version])
 

commit 4d7dfa0867d7661c86b717998ea96a0f2987cee2
Author: Derek Foreman 
Date:   Wed Sep 10 13:46:09 2014 -0500

shm: fix error in comment

diff --git a/src/wayland-shm.c b/src/wayland-shm.c
index 3fce678..04ba4f2 100644
--- a/src/wayland-shm.c
+++ b/src/wayland-shm.c
@@ -372,7 +372,7 @@ wl_shm_buffer_get_stride(struct wl_shm_buffer *buffer)
  * Returns a pointer which can be used to read the data contained in
  * the given SHM buffer.
  *
- * As this buffer is memory-mapped, reading it from may generate
+ * As this buffer is memory-mapped, reading from it may generate
  * SIGBUS signals. This can happen if the client claims that the
  * buffer is larger than it is or if something truncates the
  * underlying file. To prevent this signal from causing the compositor

commit 083d8da432b2052db78f0a19405275c2b4391b5a
Author: Marek Chalupa 
Date:   Wed Sep 10 12:47:14 2014 +0200

client: cancel read in wl_display_read_events() when last_error is set

Calling wl_display_read_events() after an error should be equivalent
to wl_display_cancel_read(), so that display state is consistent.

Thanks to Pekka Paalanen 
for pointing that out.

Signed-off-by: Marek Chalupa 
Reviewed-by: Pekka Paalanen 

diff --git a/src/wayland-client.c b/src/wayland-client.c
index 1b7a046..b0f77b9 100644
--- a/src/wayland-client.c
+++ b/src/wayland-client.c
@@ -1192,6 +1192,14 @@ read_events(struct wl_display *display)
return 0;
 }
 
+static void
+cancel_read(struct wl_display *display)
+{
+   display->reader_count--;
+   if (display->reader_count == 0)
+   display_wakeup_threads(display);
+}
+
 /** Read events from display file descriptor
  *
  * \param display The display context object
@@ -1219,6 +1227,7 @@ wl_display_read_events(struct wl_display *display)
pthread_mutex_lock(&display->mutex);
 
if (display->last_error) {
+   cancel_read(display);
pthread_mutex_unlock(&display->mutex);
 
errno = display->last_error;
@@ -1365,9 +1374,7 @@ wl_display_cancel_read(struct wl_display *display)
 {
pthread_mutex_lock(&display->mutex);
 
-   display->reader_count--;
-   if (display->reader_count == 0)
-   display_wakeup_threads(display);
+   cancel_read(display);
 
pthread_mutex_unlock(&display->mutex);
 }

commit a31a7360093dd5f4ce1a34b9889560fc37dbb7a9
Author: Marek Chalupa 
Date:   Wed Sep 10 12:47:13 2014 +0200

client: wake-up threads on all return paths from read_events

If wl_connection_read returned EAGAIN, we must wake up sleeping
threads. If we don't do this and the thread calling
wl_connection_read won't call wl_display_read_events again,
the sleeping threads will sleep indefinitely.

Signed-off-by: Marek Chalupa 
Reviewed-by: Pekka Paalanen 

diff --git a/src/wayland-client.c b/src/wayland-client.c
index 9f817f6..1b7a046 100644
--- a/src/wayland-client.c
+++ b/src/wayland-client.c
@@ -1152,8 +1152,13 @@ read_events(struct wl_display *display)
if (display->reader_count == 0) {
total = wl_connection_read(display->connection);
if (total == -1) {
-   if (errno == EAGAIN)
+   if (errno == EAGAIN) {
+   /* we must wake up threads whenever
+* the reader_count dropped to 0 */
+   display_wakeup_threads(display);
+
return 0;
+   }
 
display_fatal_error(display, errno);
return -1;

commit 65d02b7a83329ab5a65a0effde854baf8d5d2040
Author: Marek Chalupa 
Date:   Wed Sep 10 12:47:12 2014 +0200

display-test: test if threads are woken up on EAGAIN

When wl_connection_read() in wl_display_read_events() returns with EAGAIN,
we want the sleeping threads to be woken up. Test it!

Signed-off-by: Marek C

wayland: Changes to 'debian-unstable'

2014-09-12 Thread Hector Oron
 configure.ac |2 
 debian/changelog |6 ++
 doc/doxygen/Makefile.am  |2 
 doc/publican/Makefile.am |   25 --
 src/wayland-client.c |   63 +-
 src/wayland-shm.c|2 
 tests/display-test.c |  113 ++-
 7 files changed, 145 insertions(+), 68 deletions(-)

New commits:
commit 3a242a8476cc49d9c8ec6b2057d3b6b8fe05a04c
Author: Héctor Orón Martínez 
Date:   Fri Sep 12 18:23:06 2014 +0200

d/changelog: update

Signed-off-by: Héctor Orón Martínez 

diff --git a/debian/changelog b/debian/changelog
index 6c5990f..2a17185 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+wayland (1.5.93-1) UNRELEASED; urgency=medium
+
+  * New upstream development release.
+
+ -- Hector Oron   Fri, 12 Sep 2014 16:17:43 +0200
+
 wayland (1.5.91-1) experimental; urgency=medium
 
   [ Andreas Henriksson ]

commit edf4e7abea4046f003f53c300acf9af7dffc2e48
Author: Pekka Paalanen 
Date:   Fri Sep 12 12:26:50 2014 +0300

configure.ac: bump version to 1.5.93 for rc2

Signed-off-by: Pekka Paalanen 

diff --git a/configure.ac b/configure.ac
index 5deed2b..c556d4f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ AC_PREREQ([2.64])
 
 m4_define([wayland_major_version], [1])
 m4_define([wayland_minor_version], [5])
-m4_define([wayland_micro_version], [92])
+m4_define([wayland_micro_version], [93])
 m4_define([wayland_version],
   [wayland_major_version.wayland_minor_version.wayland_micro_version])
 

commit 4d7dfa0867d7661c86b717998ea96a0f2987cee2
Author: Derek Foreman 
Date:   Wed Sep 10 13:46:09 2014 -0500

shm: fix error in comment

diff --git a/src/wayland-shm.c b/src/wayland-shm.c
index 3fce678..04ba4f2 100644
--- a/src/wayland-shm.c
+++ b/src/wayland-shm.c
@@ -372,7 +372,7 @@ wl_shm_buffer_get_stride(struct wl_shm_buffer *buffer)
  * Returns a pointer which can be used to read the data contained in
  * the given SHM buffer.
  *
- * As this buffer is memory-mapped, reading it from may generate
+ * As this buffer is memory-mapped, reading from it may generate
  * SIGBUS signals. This can happen if the client claims that the
  * buffer is larger than it is or if something truncates the
  * underlying file. To prevent this signal from causing the compositor

commit 083d8da432b2052db78f0a19405275c2b4391b5a
Author: Marek Chalupa 
Date:   Wed Sep 10 12:47:14 2014 +0200

client: cancel read in wl_display_read_events() when last_error is set

Calling wl_display_read_events() after an error should be equivalent
to wl_display_cancel_read(), so that display state is consistent.

Thanks to Pekka Paalanen 
for pointing that out.

Signed-off-by: Marek Chalupa 
Reviewed-by: Pekka Paalanen 

diff --git a/src/wayland-client.c b/src/wayland-client.c
index 1b7a046..b0f77b9 100644
--- a/src/wayland-client.c
+++ b/src/wayland-client.c
@@ -1192,6 +1192,14 @@ read_events(struct wl_display *display)
return 0;
 }
 
+static void
+cancel_read(struct wl_display *display)
+{
+   display->reader_count--;
+   if (display->reader_count == 0)
+   display_wakeup_threads(display);
+}
+
 /** Read events from display file descriptor
  *
  * \param display The display context object
@@ -1219,6 +1227,7 @@ wl_display_read_events(struct wl_display *display)
pthread_mutex_lock(&display->mutex);
 
if (display->last_error) {
+   cancel_read(display);
pthread_mutex_unlock(&display->mutex);
 
errno = display->last_error;
@@ -1365,9 +1374,7 @@ wl_display_cancel_read(struct wl_display *display)
 {
pthread_mutex_lock(&display->mutex);
 
-   display->reader_count--;
-   if (display->reader_count == 0)
-   display_wakeup_threads(display);
+   cancel_read(display);
 
pthread_mutex_unlock(&display->mutex);
 }

commit a31a7360093dd5f4ce1a34b9889560fc37dbb7a9
Author: Marek Chalupa 
Date:   Wed Sep 10 12:47:13 2014 +0200

client: wake-up threads on all return paths from read_events

If wl_connection_read returned EAGAIN, we must wake up sleeping
threads. If we don't do this and the thread calling
wl_connection_read won't call wl_display_read_events again,
the sleeping threads will sleep indefinitely.

Signed-off-by: Marek Chalupa 
Reviewed-by: Pekka Paalanen 

diff --git a/src/wayland-client.c b/src/wayland-client.c
index 9f817f6..1b7a046 100644
--- a/src/wayland-client.c
+++ b/src/wayland-client.c
@@ -1152,8 +1152,13 @@ read_events(struct wl_display *display)
if (display->reader_count == 0) {
total = wl_connection_read(display->connection);
if (total == -1) {
-   if (errno == EAGAIN)
+   if (errno == EAGAIN) {
+   /* we must wake up threads whenever
+* the reader_count drop

weston: Changes to 'debian-unstable'

2014-09-12 Thread Hector Oron
 .gitignore 
|1 
 Makefile.am
|   22 
 clients/clickdot.c 
|   50 
 clients/cliptest.c 
|  398 ---
 clients/desktop-shell.c
|   50 
 clients/dnd.c  
|   26 
 clients/editor.c   
|   18 
 clients/eventdemo.c
|   42 
 clients/flower.c   
|4 
 clients/fullscreen.c   
|   34 
 clients/gears.c
|   25 
 clients/image.c
|8 
 clients/multi-resource.c   
|2 
 clients/nested.c   
|   16 
 clients/resizor.c  
|3 
 clients/scaler.c   
|   15 
 clients/simple-damage.c
|  880 
 clients/simple-egl.c   
|  102 
 clients/simple-shm.c   
|   29 
 clients/smoke.c
|4 
 clients/stacking.c 
|   11 
 clients/subsurfaces.c  
|4 
 clients/terminal.c 
|  105 -
 clients/transformed.c  
|3 
 clients/weston-info.c  
|   89 
 clients/weston-simple-im.c 
|   22 
 clients/window.c   
|  384 ++-
 clients/window.h   
|   20 
 clients/wscreensaver.c 
|8 
 configure.ac   
|   17 
 debian/changelog   
|8 
 debian/control 
|2 
 debian/patches/0001-Require-libinput-0.4.0.patch   
|   94 
 debian/patches/0001-animation-fix-move-scale-animation.patch   
|  107 -
 debian/patches/0001-exposay-fix-crash-when-navigating-with-the-keyboard.patch  
|   34 
 debian/patches/0001-libinput-Use-floating-point-instead-of-fixed-point-n.patch 
|   99 
 debian/patches/series  
|4 
 desktop-shell/exposay.c
|8 
 desktop-shell/input-panel.c
|8 
 desktop-shell/shell.c  
| 1027 ++
 desktop-shell/shell.h  
|9 
 fullscreen-shell/fullscreen-shell.c
|4 
 m4/.gitignore  
|5 
 man/weston.ini.man 
|   63 
 protocol/desktop-shell.xml 
|   25 
 protocol/scaler.xml
|2 
 protocol/xdg-shell.xml 
|  225 --
 releasing.txt  
|   43 
 shared/cairo-util.c
|8 
 shared/cairo-util.h
|9 
 shared/config-parser.c 
|   12 
 shared/config-parser.h 
|3 
 shared/frame.c 
|   38 
 shared/image-loader.c  
|   14 
 shared/option-parser.c 
|   97 
 src/animation.c

Bug#757982: xserver segmantation fault

2014-09-12 Thread repron
After last Michel answer  I uninstalled all packages and left only one package:
firmware-linux-nonfree.
Since then,  everything works O.K. without any freezeing.
I always thought it was necessary to install 
 a driver package (free: xserver-xorg-video-radeon  or  non-free: fglrx-driver)
to get my graphic card RADEON HD6670 to work.
And now it works without any of these two packages !!!
Am I right or I've  missed something ?
I will appreciate an answer.
If freezeing was caused by the conflict between "xserver-xorg-video-radeon" and 
"firmware-linux-nonfree",
the bug can be closed.

with regards,
richi


--
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/1c060cfb.327d4918.54133de2.af...@o2.pl



Processing of wayland_1.5.93-1_amd64.changes

2014-09-12 Thread Debian FTP Masters
wayland_1.5.93-1_amd64.changes uploaded successfully to localhost
along with the files:
  libwayland-client0_1.5.93-1_amd64.deb
  libwayland-client0-dbg_1.5.93-1_amd64.deb
  libwayland-server0_1.5.93-1_amd64.deb
  libwayland-server0-dbg_1.5.93-1_amd64.deb
  libwayland-cursor0_1.5.93-1_amd64.deb
  libwayland-cursor0-dbg_1.5.93-1_amd64.deb
  libwayland-dev_1.5.93-1_amd64.deb
  wayland_1.5.93-1.dsc
  wayland_1.5.93-1.tar.gz

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/e1xsbgl-0006by...@franck.debian.org



wayland_1.5.93-1_amd64.changes ACCEPTED into experimental

2014-09-12 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 12 Sep 2014 16:17:43 +0200
Source: wayland
Binary: libwayland-client0 libwayland-client0-dbg libwayland-server0 
libwayland-server0-dbg libwayland-cursor0 libwayland-cursor0-dbg libwayland-dev
Architecture: source amd64
Version: 1.5.93-1
Distribution: experimental
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Hector Oron 
Description:
 libwayland-client0 - wayland compositor infrastructure - client library
 libwayland-client0-dbg - wayland compositor infrastructure - client library 
(debug)
 libwayland-cursor0 - wayland compositor infrastructure - cursor library
 libwayland-cursor0-dbg - wayland compositor infrastructure - cursor library 
(debug)
 libwayland-dev - wayland compositor infrastructure - development files
 libwayland-server0 - wayland compositor infrastructure - server library
 libwayland-server0-dbg - wayland compositor infrastructure - server library 
(debug)
Changes:
 wayland (1.5.93-1) experimental; urgency=medium
 .
   * New upstream development release.
   * Upload to experimental.
Checksums-Sha1:
 093aca5546edbcf3b03c3a431b7f666ddb29c292  wayland_1.5.93-1.dsc
 508af9781c9144de108064097fe232ffd808665c 301127 wayland_1.5.93-1.tar.gz
 ae4412468271cc37133c0a579c3f01bf6d76848f 23382 
libwayland-client0_1.5.93-1_amd64.deb
 80e4733a6e568aa700383b61a4b354eb229110e6 45502 
libwayland-client0-dbg_1.5.93-1_amd64.deb
 430eb9af46ee6c9f38d4d6269fc365b6831cd27e 28470 
libwayland-server0_1.5.93-1_amd64.deb
 09802865046813a609d18267dd82173062ab7382 61880 
libwayland-server0-dbg_1.5.93-1_amd64.deb
 74144a2ee6a39e90a840fea86899b06ad0c1f554 12386 
libwayland-cursor0_1.5.93-1_amd64.deb
 27a3f074fe14368cd713d756d66b736a0e7a3539 24516 
libwayland-cursor0-dbg_1.5.93-1_amd64.deb
 4266e8b93c344f0952b3292e0617ade050014d84 10 
libwayland-dev_1.5.93-1_amd64.deb
Checksums-Sha256:
 7c3b55ae70ff2a0d02d9a5fdc8e3573e87f98568c469db6f0e0391da47ff4513  
wayland_1.5.93-1.dsc
 94c1ac5ea7e53c3e906b20710f0e2071a35e1e3a1c601f06db482e6029a84f1f 301127 
wayland_1.5.93-1.tar.gz
 99a239726a6781802c77aae0938c7712c973ede6f3ac2b08e5761acefa78a751 23382 
libwayland-client0_1.5.93-1_amd64.deb
 24f3fb530af4b574436e3b6da75f239f705da0879bd0ad4c7d913bddb17cd203 45502 
libwayland-client0-dbg_1.5.93-1_amd64.deb
 3a60086ea601f348ef2a6356a38cfbde141013d16fb552c664b2c06ea77045af 28470 
libwayland-server0_1.5.93-1_amd64.deb
 33556635b230b83654d1444220c950254cc7a83ca3aa06409738603d4aa7ea37 61880 
libwayland-server0-dbg_1.5.93-1_amd64.deb
 b2cd2ff2c3072a04d75506b617866b404f82f2c6a56f2c4314590d6299e71768 12386 
libwayland-cursor0_1.5.93-1_amd64.deb
 dff8829d09cc95814111f60c65cf35192269a3da832fd46cc1b6dfb11af92f9f 24516 
libwayland-cursor0-dbg_1.5.93-1_amd64.deb
 2c9f26c369871120a6a9889b2b466976fdcbd2cc090990793a0aa5e16516fe5e 10 
libwayland-dev_1.5.93-1_amd64.deb
Files:
 50e851f10364c42b5c6ae823599d56a2 23382 libs optional 
libwayland-client0_1.5.93-1_amd64.deb
 f29c65200c4771e68d4d6b8b89244cb0 45502 debug extra 
libwayland-client0-dbg_1.5.93-1_amd64.deb
 d63320f87f97b314495d49b08b61dbf6 28470 libs optional 
libwayland-server0_1.5.93-1_amd64.deb
 3e55df80134849f229798258f3059b71 61880 debug extra 
libwayland-server0-dbg_1.5.93-1_amd64.deb
 04abfdf4df6efeeb989dfa14b9d43fe0 12386 libs optional 
libwayland-cursor0_1.5.93-1_amd64.deb
 a91315661fa29252f04c4abb76339d52 24516 debug extra 
libwayland-cursor0-dbg_1.5.93-1_amd64.deb
 e31ff644cd10eea90c019afcc2a96ba5 10 libdevel extra 
libwayland-dev_1.5.93-1_amd64.deb
 62a52665cc941b40202fe0e43c4e  x11 optional wayland_1.5.93-1.dsc
 c9504f4e4434efe68e3326fa2dc49189 301127 x11 optional wayland_1.5.93-1.tar.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUE5BeAAoJEK8ig6p24qx7VfIQAKieyKcfdX18VmdAXnlLOYFL
H2sFU8sZrh2jPxwKHlbPAvxK+YLhzGFHqqjzpyScx4Hn78Em24lpggK3lw2qY4LY
BOADIRQFB8FxAg37INZwnB52eWIZ3nTvDCgAB0TO/v6UB6iYIl7ecDHEGY3Sk5tf
63Agh2ZPZ6Es2G7kPBu6wV1nv1/9LW1sY6Y8ZXZjnehTKv7YG1RAiJvJ47NLyfRb
lnOB3xvpHYB4hLG9uDwWLWqc+MhHZ6H5iOTRzHbsmXaSG4j0mVmXtl/AxOsqFASq
VmSenjQ6boueLPk36p470xVsVdB0pbSfus0yKOsvmlhXKQUPOX+ZiOtxdM4X6jaO
8+ph4AvrDKdu4ZhkV4OQycErDXTYZjIdsRFtBFa2Q6uoWy1NB2zi7fiwTGkk+2Pf
/VwWjPETHs7jGc7quTVma+9wbQ+7q5rKh4z86InaxlvFp/27wwP5DCkXwXMyKHsE
3fkGqLhVcrQnwUg4y62nawOby64UfYHg8fl094b8QhkPA2QnD4ffF1pl9kjTZNVr
F1WMyfLBes0/Nj4D0NMVlpfM6uy6yb6IIqXhLlvLHaKX93E3rTirfwPLTKIlreXc
jFiH4CVtTr2b4Wnpzy1pCBsB1fxGJrSi1AxV/Za1PfllB/HP9XIS+VXli2BA25N0
6l/qqyXXz0yPQGnzdBhV
=vhEE
-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/e1xsbi3-0006id...@franck.debian.org



wayland: Changes to 'refs/tags/wayland-1.5.93-1'

2014-09-12 Thread Hector Oron
Tag 'wayland-1.5.93-1' created by Héctor Orón Martínez  at 
2014-09-13 00:36 +

Release Debian version wayland-1.5.93-1

Changes since wayland-1.5.91-1:
Bryce W. Harrington (1):
  doc: Quell warnings about missing man3 directory before its been built

Derek Foreman (1):
  shm: fix error in comment

Héctor Orón Martínez (3):
  Merge branch 'upstream-unstable' into debian-unstable
  d/changelog: update
  Upload to experimental

Marek Chalupa (6):
  client: add display_wakeup_threads function
  display-test: make use of create_thread function
  tests: use nanosleep instead of usleep
  display-test: test if threads are woken up on EAGAIN
  client: wake-up threads on all return paths from read_events
  client: cancel read in wl_display_read_events() when last_error is set

Nils Chr. Brause (1):
  wayland-client: Initialize newly created wl_proxys to zero

Pekka Paalanen (2):
  configure.ac: bump version to 1.5.92 for rc1
  configure.ac: bump version to 1.5.93 for rc2

Peter Hutterer (1):
  doc/publican: stop excessive rebuilds

---
 configure.ac |2 
 debian/changelog |7 ++
 doc/doxygen/Makefile.am  |2 
 doc/publican/Makefile.am |   25 --
 src/wayland-client.c |   63 +-
 src/wayland-shm.c|2 
 tests/display-test.c |  113 ++-
 7 files changed, 146 insertions(+), 68 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/e1xsbkm-0005cw...@moszumanska.debian.org



wayland: Changes to 'debian-unstable'

2014-09-12 Thread Hector Oron
 debian/changelog |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit e4c2a51a0ca6ae816d7db71c81fe6ce243c2b833
Author: Héctor Orón Martínez 
Date:   Sat Sep 13 02:35:14 2014 +0200

Upload to experimental

Signed-off-by: Héctor Orón Martínez 

diff --git a/debian/changelog b/debian/changelog
index 2a17185..9b18f32 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
-wayland (1.5.93-1) UNRELEASED; urgency=medium
+wayland (1.5.93-1) experimental; urgency=medium
 
   * New upstream development release.
+  * Upload to experimental.
 
  -- Hector Oron   Fri, 12 Sep 2014 16:17:43 +0200
 


-- 
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/e1xsbka-0007xf...@moszumanska.debian.org