pixman: Changes to 'debian-unstable'

2013-08-13 Thread Julien Cristau
 ChangeLog |   95 +
 configure.ac  |   10 +--
 debian/changelog  |8 ++
 debian/patches/matrix-test-bigendian.diff |   97 --
 debian/patches/series |1 
 debian/patches/test-increase-timeout.diff |2 
 pixman/pixman-filter.c|2 
 pixman/pixman-vmx.c   |2 
 test/alpha-loop.c |7 +-
 test/matrix-test.c|   53 +++-
 10 files changed, 168 insertions(+), 109 deletions(-)

New commits:
commit d4898ac139102bae973701017f5534bc25cadf92
Author: Julien Cristau 
Date:   Tue Aug 13 12:08:22 2013 +0200

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index b0c4b45..6d40687 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,10 @@
-pixman (0.30.2-1) UNRELEASED; urgency=low
+pixman (0.30.2-1) sid; urgency=low
 
   * New upstream release
 - includes big-endian matrix-test fix
   * Increase alpha-loop test timeout some more.
 
- -- Julien Cristau   Tue, 13 Aug 2013 12:00:27 +0200
+ -- Julien Cristau   Tue, 13 Aug 2013 12:08:18 +0200
 
 pixman (0.30.0-3) sid; urgency=low
 

commit 105c2499968b3a0c13792b3cc2ae52b49b51e2c3
Author: Julien Cristau 
Date:   Tue Aug 13 12:03:14 2013 +0200

Increase alpha-loop test timeout some more.

diff --git a/debian/changelog b/debian/changelog
index 755379c..b0c4b45 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ pixman (0.30.2-1) UNRELEASED; urgency=low
 
   * New upstream release
 - includes big-endian matrix-test fix
+  * Increase alpha-loop test timeout some more.
 
  -- Julien Cristau   Tue, 13 Aug 2013 12:00:27 +0200
 
diff --git a/debian/patches/test-increase-timeout.diff 
b/debian/patches/test-increase-timeout.diff
index eb40e95..2ea42d8 100644
--- a/debian/patches/test-increase-timeout.diff
+++ b/debian/patches/test-increase-timeout.diff
@@ -7,7 +7,7 @@ Index: pixman/test/alpha-loop.c
  pixman_image_t *s = pixman_image_create_bits (PIXMAN_a2r10g10b10, WIDTH, 
HEIGHT, src, WIDTH * 4);
  
 -fail_after (5, "Infinite loop detected: 5 seconds without progress\n");
-+fail_after (20, "Infinite loop detected: 20 seconds without progress\n");
++fail_after (50, "Infinite loop detected: 50 seconds without progress\n");
  
  pixman_image_set_alpha_map (s, a, 0, 0);
  pixman_image_set_alpha_map (a, s, 0, 0);

commit 9b844940ba490ddc826463b76484c959c92f22ae
Author: Julien Cristau 
Date:   Tue Aug 13 12:01:40 2013 +0200

Includes big-endian matrix-test fix

diff --git a/debian/changelog b/debian/changelog
index 6b3fcd2..755379c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 pixman (0.30.2-1) UNRELEASED; urgency=low
 
-  * New upstream release.
+  * New upstream release
+- includes big-endian matrix-test fix
 
  -- Julien Cristau   Tue, 13 Aug 2013 12:00:27 +0200
 
diff --git a/debian/patches/matrix-test-bigendian.diff 
b/debian/patches/matrix-test-bigendian.diff
deleted file mode 100644
index c46ba5c..000
--- a/debian/patches/matrix-test-bigendian.diff
+++ /dev/null
@@ -1,97 +0,0 @@
-From 9f0ea83b92c0bb92977f22c60e96ecfe71ff9a72 Mon Sep 17 00:00:00 2001
-From: Siarhei Siamashka 
-Date: Sat, 27 Jul 2013 19:32:34 +0300
-Subject: [PATCH] test: fix matrix-test on big endian systems
-

- test/matrix-test.c |   53 ++--
- 1 file changed, 51 insertions(+), 2 deletions(-)
-
-diff --git a/test/matrix-test.c b/test/matrix-test.c
-index 8437dd2..0a5f203 100644
 a/test/matrix-test.c
-+++ b/test/matrix-test.c
-@@ -70,6 +70,53 @@ pixman_bool_t does_it_fit_fixed_48_16 (__float128 x)
- 
- #endif
- 
-+static inline uint32_t
-+byteswap32 (uint32_t x)
-+{
-+return ((x & ((uint32_t)0xFF << 24)) >> 24) |
-+   ((x & ((uint32_t)0xFF << 16)) >>  8) |
-+   ((x & ((uint32_t)0xFF <<  8)) <<  8) |
-+   ((x & ((uint32_t)0xFF <<  0)) << 24);
-+}
-+
-+static inline uint64_t
-+byteswap64 (uint64_t x)
-+{
-+return ((x & ((uint64_t)0xFF << 56)) >> 56) |
-+   ((x & ((uint64_t)0xFF << 48)) >> 40) |
-+   ((x & ((uint64_t)0xFF << 40)) >> 24) |
-+   ((x & ((uint64_t)0xFF << 32)) >>  8) |
-+   ((x & ((uint64_t)0xFF << 24)) <<  8) |
-+   ((x & ((uint64_t)0xFF << 16)) << 24) |
-+   ((x & ((uint64_t)0xFF <<  8)) << 40) |
-+   ((x & ((uint64_t)0xFF <<  0)) << 56);
-+}
-+
-+static void
-+byteswap_transform (pixman_transform_t *t)
-+{
-+int i, j;
-+
-+if (is_little_endian ())
-+return;
-+
-+for (i = 0; i < 3; i++)
-+for (j = 0; j < 3; j++)
-+t->matrix[i][j] = byteswap32 (t->matrix[i][j]);
-+}
-+
-+static void
-+byteswap_vector_48_16 (pixman_vector_48_16_t *v)
-+{
-+int i;
-+
-+if (is_little_endian ())
-+return;
-+
-+for (i = 0; i < 3; i++)
-+  

pixman: Changes to 'refs/tags/pixman-0.30.2-1'

2013-08-13 Thread Julien Cristau
Tag 'pixman-0.30.2-1' created by Julien Cristau  at 
2013-08-13 10:14 +

Tagging upload of pixman 0.30.2-1 to sid.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.14 (GNU/Linux)

iQIcBAABAgAGBQJSCgcRAAoJEDEBgAUJBeQMNh8QAO81agocQsmCJGJAjXzWS/wd
GK/qCWa6KdM+oDiYlsPgUzuWZ+azNS9/JUQ1Kwjbqq3QqalMRQZQ9hvEQcyjH0RR
1hnU46r6c/W8ebmZ+QWyEY1iXAjv0ZvRJVkGTMWO2t4ZInt6brVIcYz+eiaykMxY
B9HqjQPfraXtAWxwAeh4qDr7wa2f3QXDAVRQ3OtVK6kT7D0fXF2OykCPXuMXmVAj
rE5U4ibD/opBGPG8NX1cW6t7ECa2VitQJiE8OoD7rbJqvI8HRcTKu2VNyjLRBl4Q
aL2gjv3++wR3k2w3cONxCYsWgKYThHrCM6bI36WaUFtFTCNhErqeaOT41R1l1IGP
xxz28OtKEj4uBACinqdPooNxUnhrGURDlbtaf74DYWcVQuznvTCJxEmPSvbaK6Yw
0F5y545Xv8CS6eqKvxUellDBYfZMj2rkHo5pKnx6jPp9dR/OD4KAwVikgoqibJeJ
rhvqvg1ZT0ChFoPygrIaKCAr5vmzXOzh0WEr524CX/fPzCfRa9OM5NMhyPNOP55X
F8HrsBXh83v5xCbrVLbpnqf9P+HZWjdy5abKCfEpiYAxiRT5kL3vVPYoiDPQ2ysj
4Fi19H0fXPZh4+A+sRVFH8OFRNmm/EiR7wiocNuDdgnWDNWgAKofvLGwdD14tO/9
0jP/6hMl4ctp3s1HWtq0
=SXf1
-END PGP SIGNATURE-

Changes since pixman-0.30.0-3:
Alexander Troosh (1):
  Require GTK+ version >= 2.16

Andrea Canciani (1):
  test: Fix build on MSVC

Julien Cristau (5):
  Merge tag 'pixman-0.30.2' into debian-unstable
  Bump changelogs
  Includes big-endian matrix-test fix
  Increase alpha-loop test timeout some more.
  Upload to unstable

Markos Chandras (1):
  Use AC_LINK_IFELSE to check if the Loongson MMI code can link

Matthieu Herrb (1):
  configure.ac: Don't use '+=' since it's not POSIX

Siarhei Siamashka (1):
  test: fix matrix-test on big endian systems

Søren Sandmann Pedersen (2):
  Version bump to 0.30.1
  Pre-release version bump to 0.30.2

ing...@irsoft.de (1):
  Fix broken build when HAVE_CONFIG_H is undefined, e.g. on Win32.

---
 ChangeLog |   95 +
 configure.ac  |   10 +--
 debian/changelog  |8 ++
 debian/patches/matrix-test-bigendian.diff |   97 --
 debian/patches/series |1 
 debian/patches/test-increase-timeout.diff |2 
 pixman/pixman-filter.c|2 
 pixman/pixman-vmx.c   |2 
 test/alpha-loop.c |7 +-
 test/matrix-test.c|   53 +++-
 10 files changed, 168 insertions(+), 109 deletions(-)
---


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



pixman: Changes to 'upstream-unstable'

2013-08-13 Thread Julien Cristau
 configure.ac   |   10 -
 pixman/pixman-filter.c |2 +
 pixman/pixman-vmx.c|2 +
 test/alpha-loop.c  |7 +++---
 test/matrix-test.c |   53 +++--
 5 files changed, 64 insertions(+), 10 deletions(-)

New commits:
commit f8a0812b1c4d5a4e24939da5ad6229f5adcafb34
Author: Søren Sandmann Pedersen 
Date:   Wed Aug 7 10:07:35 2013 -0400

Pre-release version bump to 0.30.2

diff --git a/configure.ac b/configure.ac
index 24a53b4..3654d62 100644
--- a/configure.ac
+++ b/configure.ac
@@ -54,7 +54,7 @@ AC_PREREQ([2.57])
 
 m4_define([pixman_major], 0)
 m4_define([pixman_minor], 30)
-m4_define([pixman_micro], 1)
+m4_define([pixman_micro], 2)
 
 m4_define([pixman_version],[pixman_major.pixman_minor.pixman_micro])
 

commit b5167b8a5439d30bde8a178568cb3fe1c95b509a
Author: Siarhei Siamashka 
Date:   Sat Jul 27 19:25:32 2013 +0300

test: fix matrix-test on big endian systems

diff --git a/test/matrix-test.c b/test/matrix-test.c
index 8437dd2..0a5f203 100644
--- a/test/matrix-test.c
+++ b/test/matrix-test.c
@@ -70,6 +70,53 @@ pixman_bool_t does_it_fit_fixed_48_16 (__float128 x)
 
 #endif
 
+static inline uint32_t
+byteswap32 (uint32_t x)
+{
+return ((x & ((uint32_t)0xFF << 24)) >> 24) |
+   ((x & ((uint32_t)0xFF << 16)) >>  8) |
+   ((x & ((uint32_t)0xFF <<  8)) <<  8) |
+   ((x & ((uint32_t)0xFF <<  0)) << 24);
+}
+
+static inline uint64_t
+byteswap64 (uint64_t x)
+{
+return ((x & ((uint64_t)0xFF << 56)) >> 56) |
+   ((x & ((uint64_t)0xFF << 48)) >> 40) |
+   ((x & ((uint64_t)0xFF << 40)) >> 24) |
+   ((x & ((uint64_t)0xFF << 32)) >>  8) |
+   ((x & ((uint64_t)0xFF << 24)) <<  8) |
+   ((x & ((uint64_t)0xFF << 16)) << 24) |
+   ((x & ((uint64_t)0xFF <<  8)) << 40) |
+   ((x & ((uint64_t)0xFF <<  0)) << 56);
+}
+
+static void
+byteswap_transform (pixman_transform_t *t)
+{
+int i, j;
+
+if (is_little_endian ())
+return;
+
+for (i = 0; i < 3; i++)
+for (j = 0; j < 3; j++)
+t->matrix[i][j] = byteswap32 (t->matrix[i][j]);
+}
+
+static void
+byteswap_vector_48_16 (pixman_vector_48_16_t *v)
+{
+int i;
+
+if (is_little_endian ())
+return;
+
+for (i = 0; i < 3; i++)
+v->v[i] = byteswap64 (v->v[i]);
+}
+
 uint32_t
 test_matrix (int testnum, int verbose)
 {
@@ -90,6 +137,8 @@ test_matrix (int testnum, int verbose)
 #endif
 prng_randmemset (&ti, sizeof(ti), 0);
 prng_randmemset (&vi, sizeof(vi), 0);
+byteswap_transform (&ti);
+byteswap_vector_48_16 (&vi);
 
 for (j = 0; j < 3; j++)
 {
@@ -132,8 +181,6 @@ test_matrix (int testnum, int verbose)
 else
 transform_ok = pixman_transform_point_31_16 (&ti, &vi, &result_i);
 
-crc32 = compute_crc32 (crc32, &result_i, sizeof(result_i));
-
 #ifdef HAVE_FLOAT128
 /* compare with a reference 128-bit floating point implementation */
 for (j = 0; j < 3; j++)
@@ -173,6 +220,8 @@ test_matrix (int testnum, int verbose)
 }
 }
 #endif
+byteswap_vector_48_16 (&result_i);
+crc32 = compute_crc32 (crc32, &result_i, sizeof (result_i));
 }
 return crc32;
 }

commit a82b95a26487344023623ead34f26af235dfd24e
Author: Andrea Canciani 
Date:   Tue Jul 17 16:14:20 2012 +0200

test: Fix build on MSVC

The MSVC compiler is very strict about variable declarations after
statements.

Move all the declarations of each block before any statement in the
same block to fix multiple instances of:

alpha-loop.c(XX) : error C2275: 'pixman_image_t' : illegal use of this
type as an expression

diff --git a/test/alpha-loop.c b/test/alpha-loop.c
index eca7615..4d4384d 100644
--- a/test/alpha-loop.c
+++ b/test/alpha-loop.c
@@ -8,6 +8,7 @@
 int
 main (int argc, char **argv)
 {
+pixman_image_t *a, *d, *s;
 uint8_t *alpha;
 uint32_t *src, *dest;
 
@@ -17,9 +18,9 @@ main (int argc, char **argv)
 src = (uint32_t *)make_random_bytes (WIDTH * HEIGHT * 4);
 dest = (uint32_t *)make_random_bytes (WIDTH * HEIGHT * 4);
 
-pixman_image_t *a = pixman_image_create_bits (PIXMAN_a8, WIDTH, HEIGHT, 
(uint32_t *)alpha, WIDTH);
-pixman_image_t *d = pixman_image_create_bits (PIXMAN_a8r8g8b8, WIDTH, 
HEIGHT, dest, WIDTH * 4);
-pixman_image_t *s = pixman_image_create_bits (PIXMAN_a2r10g10b10, WIDTH, 
HEIGHT, src, WIDTH * 4);
+a = pixman_image_create_bits (PIXMAN_a8, WIDTH, HEIGHT, (uint32_t *)alpha, 
WIDTH);
+d = pixman_image_create_bits (PIXMAN_a8r8g8b8, WIDTH, HEIGHT, dest, WIDTH 
* 4);
+s = pixman_image_create_bits (PIXMAN_a2r10g10b10, WIDTH, HEIGHT, src, 
WIDTH * 4);
 
 fail_after (5, "Infinite loop detected: 5 seconds without progress\n");
 

commit 4c04a86c684d929ff734170eff8be8fea74b4c51
Author: Søren Sandmann Pedersen 
Date:   Thu Aug 1 07:19:21 2013 -0400

Version bump to 0.30.1

diff -

Processing of pixman_0.30.2-1_amd64.changes

2013-08-13 Thread Debian FTP Masters
pixman_0.30.2-1_amd64.changes uploaded successfully to localhost
along with the files:
  pixman_0.30.2-1.dsc
  pixman_0.30.2.orig.tar.gz
  pixman_0.30.2-1.diff.gz
  libpixman-1-0_0.30.2-1_amd64.deb
  libpixman-1-0-udeb_0.30.2-1_amd64.udeb
  libpixman-1-0-dbg_0.30.2-1_amd64.deb
  libpixman-1-dev_0.30.2-1_amd64.deb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1v9bfi-0006mb...@franck.debian.org



pixman_0.30.2-1_amd64.changes ACCEPTED into unstable

2013-08-13 Thread Debian FTP Masters
Mapping sid to unstable.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 13 Aug 2013 12:08:18 +0200
Source: pixman
Binary: libpixman-1-0 libpixman-1-0-udeb libpixman-1-0-dbg libpixman-1-dev
Architecture: source amd64
Version: 0.30.2-1
Distribution: sid
Urgency: low
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description: 
 libpixman-1-0 - pixel-manipulation library for X and cairo
 libpixman-1-0-dbg - pixel-manipulation library for X and cairo (debugging 
symbols)
 libpixman-1-0-udeb - pixel-manipulation library for X and cairo (udeb)
 libpixman-1-dev - pixel-manipulation library for X and cairo (development 
files)
Changes: 
 pixman (0.30.2-1) sid; urgency=low
 .
   * New upstream release
 - includes big-endian matrix-test fix
   * Increase alpha-loop test timeout some more.
Checksums-Sha1: 
 5c7f0663cb385e18902f5a2ee876e583e6bc74aa 2036 pixman_0.30.2-1.dsc
 59cc9cd91a2394b7c0aa90ffc7c141f06d75f066 799461 pixman_0.30.2.orig.tar.gz
 6e5b37252aa5facea04bd86c57b5bc621464b40d 265714 pixman_0.30.2-1.diff.gz
 7bf328f3fb376e18b1101480bfc6390cdd7757d8 478508 
libpixman-1-0_0.30.2-1_amd64.deb
 621c1a189a153441fbaebbb76063dcce73adadfb 223362 
libpixman-1-0-udeb_0.30.2-1_amd64.udeb
 97a871c090acb59c83f71891d9458e7be22cde1a 1182216 
libpixman-1-0-dbg_0.30.2-1_amd64.deb
 ba82c55f50ccc852d749b271672413e7cc1c0005 494510 
libpixman-1-dev_0.30.2-1_amd64.deb
Checksums-Sha256: 
 b70b85ced06228870f5a09a6806fb7b75f8c22d53e332a29a24d324c8b2bd046 2036 
pixman_0.30.2-1.dsc
 bd988920ccd742310ddf5b363c7b278f11d69a3405a09d542162c84b46bff6e9 799461 
pixman_0.30.2.orig.tar.gz
 c43ad1c40a58bcae2ebe57b1c9c89faceacacb6f2804bc4711afe06afc373d45 265714 
pixman_0.30.2-1.diff.gz
 f106c4a9ebd5c6c1e5c8f28d990e9835ee4a4dd7d477506eb2673e45ee2397c2 478508 
libpixman-1-0_0.30.2-1_amd64.deb
 8f4ff2b112e78411f4570633a2b25c01394288d38ac9b973cace887adbb45feb 223362 
libpixman-1-0-udeb_0.30.2-1_amd64.udeb
 742bd7c95d77599b8efb2e9542cb423b425659d5c47ae929b4d5c5da22ce0107 1182216 
libpixman-1-0-dbg_0.30.2-1_amd64.deb
 fb988f8b9e61dbf7d8915e8e769b2c3548161e8265d4a68500819557f72cca81 494510 
libpixman-1-dev_0.30.2-1_amd64.deb
Files: 
 991bcf0def10b5cb5574392376d4a3e5 2036 devel optional pixman_0.30.2-1.dsc
 0d3e0dd1289553930df7e202a07ecd70 799461 devel optional 
pixman_0.30.2.orig.tar.gz
 cc2bbaba19c9e4920b80481e15617cd2 265714 devel optional pixman_0.30.2-1.diff.gz
 bf54b4e353374085fca16adfd18204b1 478508 libs optional 
libpixman-1-0_0.30.2-1_amd64.deb
 1498005139bd4b5ad93ffd4c05417257 223362 debian-installer optional 
libpixman-1-0-udeb_0.30.2-1_amd64.udeb
 1eeb6359ac4ab270d18399cdab06f524 1182216 debug extra 
libpixman-1-0-dbg_0.30.2-1_amd64.deb
 0080dc2fd666c1112d0325057c75b35a 494510 libdevel optional 
libpixman-1-dev_0.30.2-1_amd64.deb
Package-Type: udeb

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

iQIcBAEBAgAGBQJSCgc5AAoJEDEBgAUJBeQMKMoQAK8BObcfXemyKtQ4U74Fbugz
s86j9+DJVmuhT9cAZu/I1v5Lobm9ANcD8IujF6NfnVT4LBQY9eHq2gZYIx14wiAw
baEhrt5jcID0+5AftQzcEV4fKK/B0/22Fdq75+XSt3kFKjvg5m6Uonb7gnF75ZQs
ZEk1Sc6voXKL3ujVBhHDOvl4rh6i8zT+AySfs7REysG4dg66oyTD4qu/r0yHdr3A
eO98nlV5SyMLuZeWLgcRHWvW7Ook00N9KahSxpa8DmyK1b1LlPlz7aW0233uPB+P
1YanYouRUwz4sO0mc/B3y6EUhypHnMcQHIa5p/DebkikwZl9yHoMJ8OpYeXFDlAR
CD+yJzAEUvangx9u2DazKoBwSYaEvXTzfB5Gd5MN8dP04rybUrx6OncPG8qok87R
KNylcBF75MlBYhIBKZy4lcmCcKQ1XtgidPS38T91VkFalbfvjXxsVTqlf1fgB/bu
uRPnA5Yj9OiAN1BdS12x/P16qcDYifudSHXW/PHrtDyqY1CbgXkEZAfe7vB12OCF
m8rgjizEDlGXCJdn5XDHnVSYWz5uov8qXc1wvdqYa9S6PEyJzjMTh1Y3/Kk6XLgW
w45M5gSNDKqevf3HpszRn9Pjf5lF+ULvODxaNv4udHFRZ4Y731J2TVOguVNWKPhK
p3sS6kDdAaAm2AhLP5Ga
=9KU5
-END PGP SIGNATURE-


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1v9bgr-0006wk...@franck.debian.org



Bug#719493: libqt5gui5:i386 uninstallable

2013-08-13 Thread Pino Toscano
Alle martedì 13 agosto 2013, Koos Vriezen ha scritto:
> On Mon, Aug 12, 2013 at 03:40:56PM +0200, Pino Toscano wrote:
> > reassign 719493 xkb-data
> > forcemerge 677884 719493
> > thanks
> 
> Are you sure that an importand (or is it grave) bug like
> uninstallable deb file should be merged with a normal bug report?

Surely this is not grave at all not any other kind of release critical.
Considering this is another case of #677884, merging is just the right 
thing to do. If you want to argue for a severity=important for #677884 
(or ask for a fix), please followup on that bug report.

Thanks,
-- 
Pino Toscano


signature.asc
Description: This is a digitally signed message part.


Bug#719493: libqt5gui5:i386 uninstallable

2013-08-13 Thread Koos Vriezen
On Mon, Aug 12, 2013 at 03:40:56PM +0200, Pino Toscano wrote:
> reassign 719493 xkb-data
> forcemerge 677884 719493
> thanks

Are you sure that an importand (or is it grave) bug like uninstallable
deb file should be merged with a normal bug report?

Thanks,

Koos


> 
> Hi,
> 
> Alle lunedì 12 agosto 2013, Koos Vriezen ha scritto:
> > Package: libqt5gui5:i386
> > Version: 5.1.0+dfsg-3
> > 
> > When installing like
> > 
> > apt-get install libqt5gui5:i386
> > 
> > the output is
> > 
> > libqt5gui5:i386 : Depends: libxkbcommon0:i386 (>= 0.2.0) but it is
> > not going to be installed
> > 
> > when I then do
> > 
> > apt-get install libqt5gui5:i386 libxkbcommon0:i386
> > 
> > I get
> > 
> > libxkbcommon0:i386 : Depends: xkb-data:i386 but it is not installable
> > 
> > and finally that last one gives
> > 
> > Package xkb-data:i386 is not available, but is referred to by another
> > package.
> 
> Another case of #677884.
> 
> -- 
> Pino Toscano


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130813123917.gi4...@froglogic.com



Bug#719554: Remove that font server from your fontpath

2013-08-13 Thread Vladimir Zhuravlev
You are right. I removed those lines, and it does not crash 
anymore.

Thank you, Julien.
The bug should be closed, I guess.


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/520a2e76.1090...@gmail.com



Bug#719493: libqt5gui5:i386 uninstallable

2013-08-13 Thread Koos Vriezen
On Tue, Aug 13, 2013 at 02:54:32PM +0200, Pino Toscano wrote:
> Alle martedì 13 agosto 2013, Koos Vriezen ha scritto:
> > On Mon, Aug 12, 2013 at 03:40:56PM +0200, Pino Toscano wrote:
> > > reassign 719493 xkb-data
> > > forcemerge 677884 719493
> > > thanks
> > 
> > Are you sure that an importand (or is it grave) bug like
> > uninstallable deb file should be merged with a normal bug report?
> 
> Surely this is not grave at all not any other kind of release critical.
> Considering this is another case of #677884, merging is just the right 
> thing to do. If you want to argue for a severity=important for #677884 
> (or ask for a fix), please followup on that bug report.

I already had rebuilt xkd-data myself because I needed to test this
setup. It's more that I noticed that merged bug reports don't show up in
the appriopriate mailing lists, and thus unnoticed. #677884 is more or
less in a 'who needs it' state.


Anyhow, maybe I can use this correspondence to mention another problem
we have with qtbase5-dev in Jessie, it's missing
qplatformmenu.h, qplatformnativeinterface.h and qplatformintegration.h
/usr/include/qt5/QtGui/5.1.0/QtGui/qpa/ for our product.
Do you have any suggestion how this is handled, e.g. should I file a br
or is this deliberate left out?

Thanks,

Koos


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130813132435.gj4...@froglogic.com



Bug#719493: libqt5gui5:i386 uninstallable

2013-08-13 Thread Pino Toscano
Alle martedì 13 agosto 2013, Koos Vriezen ha scritto:
> On Tue, Aug 13, 2013 at 02:54:32PM +0200, Pino Toscano wrote:
> > Alle martedì 13 agosto 2013, Koos Vriezen ha scritto:
> > > On Mon, Aug 12, 2013 at 03:40:56PM +0200, Pino Toscano wrote:
> > > > reassign 719493 xkb-data
> > > > forcemerge 677884 719493
> > > > thanks
> > > 
> > > Are you sure that an importand (or is it grave) bug like
> > > uninstallable deb file should be merged with a normal bug report?
> > 
> > Surely this is not grave at all not any other kind of release
> > critical. Considering this is another case of #677884, merging is
> > just the right thing to do. If you want to argue for a
> > severity=important for #677884 (or ask for a fix), please followup
> > on that bug report.
> 
> I already had rebuilt xkd-data myself because I needed to test this
> setup. It's more that I noticed that merged bug reports don't show up
> in the appriopriate mailing lists, and thus unnoticed.

I'm not sure which mailing list you are referring to.

> #677884 is more or less in a 'who needs it' state.

Then followup there and point out the dependency chain different than 
"install a foreign xorg server"?

> Anyhow, maybe I can use this correspondence

This is getting off-topic now though; I will reply to you, but for more 
user-like questions please email us at debian-qt-...@lists.debian.org.

> to mention another
> problem we have with qtbase5-dev in Jessie, it's missing
> qplatformmenu.h, qplatformnativeinterface.h and
> qplatformintegration.h /usr/include/qt5/QtGui/5.1.0/QtGui/qpa/ for
> our product.
> Do you have any suggestion how this is handled, e.g. should I file a
> br or is this deliberate left out?

You want qtbase5-private-dev, since you are asking for such private 
headers.

-- 
Pino Toscano


signature.asc
Description: This is a digitally signed message part.


Bug#719493: libqt5gui5:i386 uninstallable

2013-08-13 Thread Koos Vriezen
On Tue, Aug 13, 2013 at 03:32:01PM +0200, Pino Toscano wrote:

> You want qtbase5-private-dev, since you are asking for such private 
> headers.

Thanks, I missed that package somehow.

Koos


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130813134325.gk4...@froglogic.com



mesa: Changes to 'ubuntu'

2013-08-13 Thread Maarten Lankhorst
 Makefile.am|2 
 bin/.cherry-ignore |   34 ++
 bin/get-pick-list.sh   |2 
 configure.ac   |6 
 debian/changelog   |   40 ++-
 debian/control |2 
 debian/patches/fix-osmesa-exports.diff |   41 ---
 debian/patches/series  |1 
 debian/rules   |   20 -
 docs/relnotes-9.1.4.html   |4 
 docs/relnotes-9.1.5.html   |  140 ++
 docs/relnotes-9.1.6.html   |  166 +
 src/egl/drivers/dri2/platform_wayland.c|9 
 src/egl/drivers/dri2/platform_x11.c|   14 +
 src/gallium/auxiliary/vl/vl_winsys_dri.c   |   20 +
 src/gallium/drivers/nv50/nv50_stateobj.h   |2 
 src/gallium/drivers/nvc0/nvc0_stateobj.h   |2 
 src/gallium/drivers/nvc0/nvc0_video.c  |2 
 src/gallium/drivers/r300/r300_context.c|6 
 src/gallium/drivers/r300/r300_render.c |   70 ++---
 src/gallium/drivers/r300/r300_screen_buffer.c  |7 
 src/gallium/drivers/r300/r300_texture_desc.c   |1 
 src/gallium/drivers/r600/evergreen_state.c |   10 
 src/gallium/drivers/r600/r600_shader.c |2 
 src/gallium/drivers/r600/r600_shader.h |4 
 src/gallium/drivers/r600/r600_state.c  |   10 
 src/gallium/drivers/svga/svga_tgsi_insn.c  |6 
 src/gallium/state_trackers/dri/sw/drisw.c  |5 
 src/gallium/state_trackers/egl/wayland/native_shm.c|2 
 src/gallium/state_trackers/glx/xlib/xm_api.c   |   11 
 src/glsl/ast_to_hir.cpp|   18 +
 src/glsl/builtin_variables.cpp |2 
 src/glsl/builtins/profiles/ARB_texture_cube_map_array.frag |6 
 src/glsl/builtins/profiles/ARB_texture_cube_map_array.glsl |3 
 src/glsl/glsl_lexer.ll |2 
 src/glsl/link_uniforms.cpp |   14 +
 src/glsl/loop_analysis.cpp |3 
 src/glx/apple/apple_glx.c  |2 
 src/mesa/drivers/common/meta.c |   23 +
 src/mesa/drivers/dri/i965/brw_draw_upload.c|   18 +
 src/mesa/drivers/dri/i965/brw_fs.cpp   |   10 
 src/mesa/drivers/dri/i965/brw_fs_emit.cpp  |4 
 src/mesa/drivers/dri/i965/brw_fs_visitor.cpp   |7 
 src/mesa/drivers/dri/i965/brw_vec4.cpp |   12 
 src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp |4 
 src/mesa/drivers/dri/i965/brw_vs.c |8 
 src/mesa/drivers/dri/i965/brw_vs_state.c   |   27 +-
 src/mesa/drivers/dri/i965/brw_wm.c |8 
 src/mesa/drivers/dri/i965/brw_wm.h |2 
 src/mesa/drivers/dri/swrast/swrast.c   |1 
 src/mesa/drivers/osmesa/Makefile.am|6 
 src/mesa/main/mipmap.c |   68 +++--
 src/mesa/main/mtypes.h |   15 +
 src/mesa/main/shaderobj.c  |1 
 src/mesa/main/texgetimage.c|   52 +---
 src/mesa/main/uniform_query.cpp|2 
 src/mesa/main/uniforms.c   |2 
 src/mesa/main/uniforms.h   |   14 -
 src/mesa/main/version.h|4 
 src/mesa/program/prog_execute.c|6 
 src/mesa/program/register_allocate.c   |   46 +++
 src/mesa/state_tracker/st_glsl_to_tgsi.cpp |2 
 62 files changed, 794 insertions(+), 239 deletions(-)

New commits:
commit 516474fb3dc4920ef6755bf4cb305f0ac7764001
Author: Maarten Lankhorst 
Date:   Tue Aug 13 15:40:09 2013 +0200

release to saucy

diff --git a/debian/changelog b/debian/changelog
index 5f5cc23..8461471 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-mesa (9.1.6-2ubuntu1) UNRELEASED; urgency=low
+mesa (9.1.6-2ubuntu1) saucy; urgency=low
 
   * New upstream release.
   * Merge from RELEASED debian-unstable. \o/
@@ -8,7 +8,7 @@ mesa (9.1.6-2ubuntu1) UNRELEASED; urgency=low
 - Linking against shared dricore/gallium.
   * Drop fix-osmesa-exports.diff, upstreamed.
 
- -- Maarten Lankhorst   Tue, 13 Aug 2013 
14:16:42 +02

Bug#613820: Please support ppc64

2013-08-13 Thread Hiroyuki Yamamoto
Control: reopen -1
Control: found -1 libx11/2:1.6.1-1
Control: severity -1 important

The change at ver. 2:1.6.1-1 is not to add supporting "ppc64" port 
which was remarked "dead and buried" by Julien Cristau,
but to add supporting "powerpc64" port which is a new port 
and not listed to Debian's ports in dpkg now.

So, this bug is not fixed and this closing is mistake certainly.
http://buildd.debian-ports.org/status/package.php?p=libx11&suite=sid

Because there is ability that Julien plans to begin another porting "powerpc64",
I post a new patch added furthermore "ppc64" port.

Regards, 
-- 
Hiroyuki Yamamoto
A75D B285 7050 4BF9 AEDA  91AC 3A10 59C6 5203 04DC
diff -Nurd libx11-1.6.1.orig/debian/libx11-6.symbols libx11-1.6.1/debian/libx11-6.symbols
--- libx11-1.6.1.orig/debian/libx11-6.symbols	2013-08-13 21:23:09.0 +0900
+++ libx11-1.6.1/debian/libx11-6.symbols	2013-08-13 21:26:40.0 +0900
@@ -791,7 +791,7 @@
  _XCopyEventCookie@Base 2:1.2.99.901
  (optional)_XCopyToArg@Base 0 1
  _XCreateMutex_fn@Base 0
- (arch=arm64 alpha amd64 kfreebsd-amd64 ia64 powerpc64 s390x sparc64)_XData32@Base 0
+ (arch=arm64 alpha amd64 kfreebsd-amd64 ia64 powerpc64 ppc64 s390x sparc64)_XData32@Base 0
  _XDefaultError@Base 0
  _XDefaultIOError@Base 0
  (optional)_XDefaultOpenIM@Base 0 1
@@ -854,7 +854,7 @@
  _XProcessInternalConnection@Base 0
  _XProcessWindowAttributes@Base 0
  _XPutBackEvent@Base 0
- (arch=arm64 alpha amd64 kfreebsd-amd64 ia64 powerpc64 s390x sparc64)_XRead32@Base 0
+ (arch=arm64 alpha amd64 kfreebsd-amd64 ia64 powerpc64 ppc64 s390x sparc64)_XRead32@Base 0
  _XRead@Base 0
  _XReadEvents@Base 0
  _XReadPad@Base 0
@@ -1102,9 +1102,9 @@
  (optional)_XkbInternAtomFunc@Base 0 1
  (optional)_XkbNoteCoreMapChanges@Base 0 1
  (optional)_XkbPeekAtReadBuffer@Base 0 1
- (optional|arch=arm64 alpha amd64 kfreebsd-amd64 ia64 powerpc64 s390x sparc64)_XkbReadBufferCopy32@Base 0 1
+ (optional|arch=arm64 alpha amd64 kfreebsd-amd64 ia64 powerpc64 ppc64 s390x sparc64)_XkbReadBufferCopy32@Base 0 1
  (optional)_XkbReadBufferCopyKeySyms@Base 0 1
- (optional|arch=arm64 alpha amd64 kfreebsd-amd64 ia64 powerpc64 s390x sparc64)_XkbReadCopyData32@Base 0 1
+ (optional|arch=arm64 alpha amd64 kfreebsd-amd64 ia64 powerpc64 ppc64 s390x sparc64)_XkbReadCopyData32@Base 0 1
  (optional)_XkbReadCopyKeySyms@Base 0 1
  (optional)_XkbReadGetCompatMapReply@Base 0 1
  (optional)_XkbReadGetGeometryReply@Base 0 1
@@ -1113,7 +1113,7 @@
  (optional)_XkbReadGetNamesReply@Base 0 1
  (optional)_XkbReloadDpy@Base 0 1
  (optional)_XkbSkipReadBufferData@Base 0 1
- (optional|arch=arm64 alpha amd64 kfreebsd-amd64 ia64 powerpc64 s390x sparc64)_XkbWriteCopyData32@Base 0 1
+ (optional|arch=arm64 alpha amd64 kfreebsd-amd64 ia64 powerpc64 ppc64 s390x sparc64)_XkbWriteCopyData32@Base 0 1
  (optional)_XkbWriteCopyKeySyms@Base 0 1
  (optional)_XkeyTable@Base 0 1
  (optional)_XlcAddCT@Base 0 1


Processed: Re: Please support ppc64

2013-08-13 Thread Debian Bug Tracking System
Processing control commands:

> reopen -1
Bug #613820 {Done: Julien Cristau } [libx11] Please 
support ppc64
'reopen' may be inappropriate when a bug has been closed with a version;
all fixed versions will be cleared, and you may need to re-add them.
Bug reopened
No longer marked as fixed in versions libx11/2:1.6.1-1.
> found -1 libx11/2:1.6.1-1
Bug #613820 [libx11] Please support ppc64
Marked as found in versions libx11/2:1.6.1-1.
> severity -1 important
Bug #613820 [libx11] Please support ppc64
Severity set to 'important' from 'wishlist'

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


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



Bug#613820: Please support ppc64

2013-08-13 Thread Julien Cristau
On Tue, Aug 13, 2013 at 23:02:32 +0900, Hiroyuki Yamamoto wrote:

> Control: reopen -1
> Control: found -1 libx11/2:1.6.1-1
> Control: severity -1 important
> 
> The change at ver. 2:1.6.1-1 is not to add supporting "ppc64" port 
> which was remarked "dead and buried" by Julien Cristau,
> but to add supporting "powerpc64" port which is a new port 
> and not listed to Debian's ports in dpkg now.
> 
> So, this bug is not fixed and this closing is mistake certainly.
> http://buildd.debian-ports.org/status/package.php?p=libx11&suite=sid
> 
> Because there is ability that Julien plans to begin another porting 
> "powerpc64",
> I post a new patch added furthermore "ppc64" port.
> 
Oh ffs.  Apparently consistency is too much to ask for...

Cheers,
Julien


signature.asc
Description: Digital signature


libx11: Changes to 'debian-unstable'

2013-08-13 Thread Julien Cristau
 debian/changelog|6 ++
 debian/libx11-6.symbols |   10 +-
 2 files changed, 11 insertions(+), 5 deletions(-)

New commits:
commit 204b7f118fc721d48a1c36c3b6b89e8e5a926f95
Author: Julien Cristau 
Date:   Tue Aug 13 16:19:13 2013 +0200

So apparently the 64-bit powerpc port is called ppc64 (closes: #613820).

diff --git a/debian/changelog b/debian/changelog
index 53b3642..f25f145 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libx11 (2:1.6.1-2) UNRELEASED; urgency=low
+
+  * So apparently the 64-bit powerpc port is called ppc64 (closes: #613820).
+
+ -- Julien Cristau   Tue, 13 Aug 2013 16:18:44 +0200
+
 libx11 (2:1.6.1-1) unstable; urgency=low
 
   [ Julien Cristau ]
diff --git a/debian/libx11-6.symbols b/debian/libx11-6.symbols
index 6706aa0..8116c6e 100644
--- a/debian/libx11-6.symbols
+++ b/debian/libx11-6.symbols
@@ -791,7 +791,7 @@ libX11.so.6 libx11-6 #MINVER#
  _XCopyEventCookie@Base 2:1.2.99.901
  (optional)_XCopyToArg@Base 0 1
  _XCreateMutex_fn@Base 0
- (arch=arm64 alpha amd64 kfreebsd-amd64 ia64 powerpc64 s390x 
sparc64)_XData32@Base 0
+ (arch=arm64 alpha amd64 kfreebsd-amd64 ia64 ppc64 s390x sparc64)_XData32@Base 0
  _XDefaultError@Base 0
  _XDefaultIOError@Base 0
  (optional)_XDefaultOpenIM@Base 0 1
@@ -854,7 +854,7 @@ libX11.so.6 libx11-6 #MINVER#
  _XProcessInternalConnection@Base 0
  _XProcessWindowAttributes@Base 0
  _XPutBackEvent@Base 0
- (arch=arm64 alpha amd64 kfreebsd-amd64 ia64 powerpc64 s390x 
sparc64)_XRead32@Base 0
+ (arch=arm64 alpha amd64 kfreebsd-amd64 ia64 ppc64 s390x sparc64)_XRead32@Base 0
  _XRead@Base 0
  _XReadEvents@Base 0
  _XReadPad@Base 0
@@ -1102,9 +1102,9 @@ libX11.so.6 libx11-6 #MINVER#
  (optional)_XkbInternAtomFunc@Base 0 1
  (optional)_XkbNoteCoreMapChanges@Base 0 1
  (optional)_XkbPeekAtReadBuffer@Base 0 1
- (optional|arch=arm64 alpha amd64 kfreebsd-amd64 ia64 powerpc64 s390x 
sparc64)_XkbReadBufferCopy32@Base 0 1
+ (optional|arch=arm64 alpha amd64 kfreebsd-amd64 ia64 ppc64 s390x 
sparc64)_XkbReadBufferCopy32@Base 0 1
  (optional)_XkbReadBufferCopyKeySyms@Base 0 1
- (optional|arch=arm64 alpha amd64 kfreebsd-amd64 ia64 powerpc64 s390x 
sparc64)_XkbReadCopyData32@Base 0 1
+ (optional|arch=arm64 alpha amd64 kfreebsd-amd64 ia64 ppc64 s390x 
sparc64)_XkbReadCopyData32@Base 0 1
  (optional)_XkbReadCopyKeySyms@Base 0 1
  (optional)_XkbReadGetCompatMapReply@Base 0 1
  (optional)_XkbReadGetGeometryReply@Base 0 1
@@ -1113,7 +1113,7 @@ libX11.so.6 libx11-6 #MINVER#
  (optional)_XkbReadGetNamesReply@Base 0 1
  (optional)_XkbReloadDpy@Base 0 1
  (optional)_XkbSkipReadBufferData@Base 0 1
- (optional|arch=arm64 alpha amd64 kfreebsd-amd64 ia64 powerpc64 s390x 
sparc64)_XkbWriteCopyData32@Base 0 1
+ (optional|arch=arm64 alpha amd64 kfreebsd-amd64 ia64 ppc64 s390x 
sparc64)_XkbWriteCopyData32@Base 0 1
  (optional)_XkbWriteCopyKeySyms@Base 0 1
  (optional)_XkeyTable@Base 0 1
  (optional)_XlcAddCT@Base 0 1


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



mesa: Changes to 'ubuntu'

2013-08-13 Thread Maarten Lankhorst
 debian/changelog|   19 +++
 debian/control  |4 ++--
 debian/libegl1-mesa.symbols |2 +-
 debian/rules|4 
 4 files changed, 26 insertions(+), 3 deletions(-)

New commits:
commit 3afc5a25ea0c28462c1e7258159deafcc9cd1e3b
Author: Maarten Lankhorst 
Date:   Tue Aug 13 16:24:41 2013 +0200

Import missing powerpc build fixes.

Hide the now missing Mir symbol on powerpc.
rules,control: Don't build Mir support on powerpc as it's not available
there.

diff --git a/debian/changelog b/debian/changelog
index 8461471..65bf96f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+mesa (9.1.6-2ubuntu2) saucy; urgency=low
+
+  * Import missing powerpc build fixes.
+
+ -- Maarten Lankhorst   Tue, 13 Aug 2013 
16:23:32 +0200
+
 mesa (9.1.6-2ubuntu1) saucy; urgency=low
 
   * New upstream release.
@@ -28,6 +34,19 @@ mesa (9.1.6-1) unstable; urgency=low
 
  -- Julien Cristau   Sun, 11 Aug 2013 18:15:58 +0200
 
+mesa (9.1.4-0ubuntu8) saucy; urgency=low
+
+  * hide the now missing Mir symbol on powerpc.
+
+ -- Didier Roche   Mon, 05 Aug 2013 13:43:52 +0200
+
+mesa (9.1.4-0ubuntu7) saucy; urgency=low
+
+  * rules,control: Don't build Mir support on powerpc as it's not available
+there.
+
+ -- Didier Roche   Mon, 05 Aug 2013 12:59:59 +0200
+
 mesa (9.1.4-0ubuntu6) saucy; urgency=low
 
   * Add Mir EGL platform
diff --git a/debian/control b/debian/control
index d514a15..58548c7 100644
--- a/debian/control
+++ b/debian/control
@@ -33,7 +33,7 @@ Build-Depends:
  bison,
  llvm-3.2-dev (>= 1:3.2repack-7~) [amd64 i386 kfreebsd-amd64 kfreebsd-i386 
armhf powerpc],
  libwayland-dev (>= 1.0.2) [linux-any],
- libmirclient-dev [linux-any],
+ libmirclient-dev [!powerpc],
 Vcs-Git: git://git.debian.org/git/pkg-xorg/lib/mesa
 Vcs-Browser: http://git.debian.org/?p=pkg-xorg/lib/mesa.git
 Homepage: http://mesa3d.sourceforge.net/
@@ -184,7 +184,7 @@ Depends:
  libxcb-glx0-dev,
  libxcb-dri2-0-dev,
  libx11-xcb-dev,
- libmirclient-dev [linux-any],
+ libmirclient-dev [!powerpc],
  ${misc:Depends},
 Description: free implementation of the EGL API -- development files
  This package contains the development environment required for compiling
diff --git a/debian/libegl1-mesa.symbols b/debian/libegl1-mesa.symbols
index 3af6509..6bcb9f1 100644
--- a/debian/libegl1-mesa.symbols
+++ b/debian/libegl1-mesa.symbols
@@ -9,7 +9,7 @@ libEGL.so.1 libegl1-mesa #MINVER# | libegl1-x11
  (arch=linux-any)dri2_get_device_name_for_fd@Base 8.1~0
  (arch=linux-any)dri2_get_driver_for_fd@Base 8.1~0
  (arch=linux-any)dri2_initialize_drm@Base 8.1~0
- (arch=linux-any)dri2_initialize_mir@Base 9.1.4-0ubuntu6~
+ (arch=!powerpc)dri2_initialize_mir@Base 9.1.4-0ubuntu6~
  (arch=linux-any)dri2_initialize_wayland@Base 8.1~0
  dri2_initialize_x11@Base 8.1~0
  dri2_load_driver@Base 8.1~0
diff --git a/debian/rules b/debian/rules
index c1bc7fc..1ba8ee1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -63,7 +63,11 @@ else
EGL_DISPLAYS += drm
 # Non-Linux ports also lack *_CLOEXEC and epoll, so wayland isn't ready yet:
EGL_DISPLAYS += wayland
+
+# Mir isn't built on PPC
+ifneq ($(DEB_HOST_ARCH), powerpc)
EGL_DISPLAYS += mir
+endif
 ifeq (,$(filter $(DEB_HOST_ARCH), s390 s390x))
DRI_DRIVERS += r200 radeon nouveau
 endif


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



Bug#613820: Please support ppc64

2013-08-13 Thread Hiroyuki Yamamoto
Hi, Julien.

Julien Cristau wrote:
> On Tue, Aug 13, 2013 at 23:02:32 +0900, Hiroyuki Yamamoto wrote:
> 
>> Control: reopen -1
>> Control: found -1 libx11/2:1.6.1-1
>> Control: severity -1 important
>>
>> The change at ver. 2:1.6.1-1 is not to add supporting "ppc64" port 
>> which was remarked "dead and buried" by Julien Cristau,
>> but to add supporting "powerpc64" port which is a new port 
>> and not listed to Debian's ports in dpkg now.
>>
>> So, this bug is not fixed and this closing is mistake certainly.
>> http://buildd.debian-ports.org/status/package.php?p=libx11&suite=sid
>>
>> Because there is ability that Julien plans to begin another porting 
>> "powerpc64",
>> I post a new patch added furthermore "ppc64" port.
>>
> Oh ffs.  Apparently consistency is too much to ask for...

"ffs"?

Although there is no way, if you intended to change official source package 
and be enbuged ONLY for provoking me, 
I must doubt that you are an appropriate DD.

Regards,
-- 
Hiroyuki Yamamoto
A75D B285 7050 4BF9 AEDA  91AC 3A10 59C6 5203 04DC


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/520a6416@gmail.com



Bug#613820: Please support ppc64

2013-08-13 Thread Julien Cristau
On Wed, Aug 14, 2013 at 01:51:34 +0900, Hiroyuki Yamamoto wrote:

> Hi, Julien.
> 
> Julien Cristau wrote:
> > On Tue, Aug 13, 2013 at 23:02:32 +0900, Hiroyuki Yamamoto wrote:
> > 
> >> Control: reopen -1
> >> Control: found -1 libx11/2:1.6.1-1
> >> Control: severity -1 important
> >>
> >> The change at ver. 2:1.6.1-1 is not to add supporting "ppc64" port 
> >> which was remarked "dead and buried" by Julien Cristau,
> >> but to add supporting "powerpc64" port which is a new port 
> >> and not listed to Debian's ports in dpkg now.
> >>
> >> So, this bug is not fixed and this closing is mistake certainly.
> >> http://buildd.debian-ports.org/status/package.php?p=libx11&suite=sid
> >>
> >> Because there is ability that Julien plans to begin another porting 
> >> "powerpc64",
> >> I post a new patch added furthermore "ppc64" port.
> >>
> > Oh ffs.  Apparently consistency is too much to ask for...
> 
> "ffs"?
> 
> Although there is no way, if you intended to change official source package 
> and be enbuged ONLY for provoking me, 
> I must doubt that you are an appropriate DD.
> 
No, I'm just annoyed at myself for the mistake, and at whoever picked
the ppc64 arch name because it doesn't seem to make sense to use that
when our ppc port is called powerpc.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#613820: Please support ppc64

2013-08-13 Thread Hiroyuki Yamamoto
Julien Cristau wrote:
>>> Oh ffs.  Apparently consistency is too much to ask for...
>>
>> "ffs"?
>>
>> Although there is no way, if you intended to change official source package 
>> and be enbuged ONLY for provoking me, 
>> I must doubt that you are an appropriate DD.
>>
> No, I'm just annoyed at myself for the mistake, and at whoever picked
> the ppc64 arch name because it doesn't seem to make sense to use that
> when our ppc port is called powerpc.

OK, sorry, it seems that I misunderstood you a little.

Regards,
-- 
Hiroyuki Yamamoto
A75D B285 7050 4BF9 AEDA  91AC 3A10 59C6 5203 04DC


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/520a6fc0.2090...@gmail.com



xorg-server: Changes to 'debian-experimental'

2013-08-13 Thread Julien Cristau
 debian/changelog |8 
 debian/control   |1 -
 2 files changed, 8 insertions(+), 1 deletion(-)

New commits:
commit e74ce3cf7ee92479861170dcc003da1e58010b2a
Author: Cyril Brulebois 
Date:   Sat Jul 9 12:19:59 2011 +0200

Remove the Replaces: xdmx from xdmx-tools, that was before lenny.

[cherry-pick from the 2:1.10.3-1 package version]
Conflicts:
debian/changelog

diff --git a/debian/changelog b/debian/changelog
index 9a468f3..c90609e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+xorg-server (2:1.14.2.901-3) UNRELEASED; urgency=low
+
+  * Remove the Replaces: xdmx from xdmx-tools, that was before lenny.  That
+change was done in the 1.10.x timeframe and then lost when moving to
+1.11.x.
+
+ -- Julien Cristau   Tue, 13 Aug 2013 19:48:22 +0200
+
 xorg-server (2:1.14.2.901-2) experimental; urgency=low
 
   * Use libbsd-overlay to get missing declarations on kfreebsd and fix FTBFS.
diff --git a/debian/control b/debian/control
index 9901864..f06251e 100644
--- a/debian/control
+++ b/debian/control
@@ -222,7 +222,6 @@ Depends:
  xdmx,
  ${shlibs:Depends},
  ${misc:Depends},
-Replaces: xdmx (<= 2:1.1.1-10)
 Description: Distributed Multihead X tools
  This package provides a collection of tools used for administration of
  the Xdmx server; see the xdmx package for more information.


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



x11-apps: Changes to 'refs/tags/x11-apps-7.7+1'

2013-08-13 Thread Julien Cristau
Tag 'x11-apps-7.7+1' created by Julien Cristau  at 
2013-08-13 18:50 +

Tagging upload of x11-apps 7.7+1 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.14 (GNU/Linux)

iQIcBAABAgAGBQJSCoALAAoJEDEBgAUJBeQMMisQAKfh1haOPYeUevZG8+g1YzYx
Y/xhyqFXMmyy1YiSa1K0rYX0ELMlk5C75+Rqdchc6jj1e6EkZJQSYT9aLsXRfEug
HTKy4Gk0CXhk+qrjwOCR4KqaQEIr4QF63WO/ThdDrPtcjC2belmxrFcpuk/i65zQ
NB0EO+OiZWZ3Jx5zz7lOyagr5Ajj6pHSocPfUPQHgrvZNTQfci9G8dqvIyv8QLUn
X7qtJ6Dn6Rbt22otd2ywzBpKV2F/7EeT4BQjJmSrH+bsJ+aIYOQPLAQb2E6EFSJS
ywqlOuqH2g0TnL46w+OEXWxGy8E8q/VufNFa2IIlYla/xVDq7g/yziffmnTCxqCc
8rMgyWPJE23r9h3iZmcD21sN58137p9TaDnv3oFvQNqog7IT00Rfzi1BlykRFNts
Oj3sLKcPkJBssxbEv/tT3wsf/iu+f9qJQLhZE+C62ZH4nq25pnNlFlb2GRb8gtKE
bivbfbGyXVRmRbQQbQID0trDBmD6SuKey0MNzJv/jjArUvi50WWw9noEHG2ZYqrd
SZSotfCjZwFqM+JwWhU3Fr7FHrpzlGTjpcDYSFVt7fv1s6PcNTSRU9UbmA6TqrbF
nzXTiMT0pKs5YJZvHooBgh8NnwQSsqPNc+bvwal8QjmYN2DwxGSPStLby+T9azjK
DyJhpFxcKWkHpUMv3eOE
=7t47
-END PGP SIGNATURE-

Changes since x11-apps-7.7-2:
Julien Cristau (5):
  xconsole 1.0.6.
  xload 1.1.2.
  xwd 1.0.6
  Add build-dep on bison to make xgc's configure happy.
  Upload to unstable

Robert Hooker (22):
  Add patch to fix building with no-add-needed.
  Bump changelog and update maintainers.
  Refresh 100-fix-linking-with-no-add-needed.patch
  Merge branch 'debian-unstable' into ubuntu
  Drop 100-fix-linking-with-no-add-needed.patch, upstream
  Bump changelog
  Add rendercheck 1.4 to x11-apps.
  debian/control: Add transset to conflicts/replaces to fix upgrades.
  Update ico to 1.0.4
  Update xcalc to 1.0.5
  Update xconsole to 1.0.5
  Update xditview to 1.0.3
  Update xedit to 1.2.1
  Update xgc to 1.0.4
  Update xmag to 1.0.5
  debian/control: Fix up after 9bd0ac112 merge.
  Bump version to 7.7-1 because the 7.7 katamari has released.
  Fix version to 7.7+1.
  Update bitmap to 1.0.7
  Update transset to 1.0.1
  Add an update-copyright target to refresh debian/copyright using 
upstream's COPYING files, thanks to Julien Cristau.
  debian/copyright: refresh

Timo Aaltonen (4):
  Merge commit 'x11-apps-7.6+4' into ubuntu
  releasing version 7.6+4ubuntu1
  Refreshed 100-no-add-needed.patch to fix FTBFS.
  Merge commit 'a7147f9cd3018b70a34aa04c1a938e287a091bc9' into 
debian-unstable

---
 bitmap/Bitmap.c |8 
 bitmap/ChangeLog|   72 
 bitmap/Makefile.in  |  565 +--
 bitmap/aclocal.m4   |  675 ++--
 bitmap/atobm.c  |   23 
 bitmap/bmtoa.c  |   32 
 bitmap/compile  |  232 +
 bitmap/config.guess |  307 +
 bitmap/config.sub   |  237 -
 bitmap/configure| 2650 
 bitmap/configure.ac |6 
 bitmap/depcomp  |  530 ++-
 bitmap/install-sh   |   35 
 bitmap/man/Makefile.in  |  131 
 bitmap/man/bitmap.man   |8 
 bitmap/missing  |  461 --
 debian/changelog|   26 
 debian/control  |8 
 debian/copyright|  519 +--
 debian/copyright.head   |6 
 debian/rules|   12 
 debian/watch.rendercheck|3 
 ico/ChangeLog   |   88 
 ico/Makefile.am |   18 
 ico/Makefile.in |  354 +-
 ico/aclocal.m4  | 1143 +--
 ico/config.guess|  233 -
 ico/config.sub  |  134 
 ico/configure   | 5896 +++-
 ico/configure.ac|   11 
 ico/depcomp |   74 
 ico/ico.c   |   30 
 ico/ico.man |   90 
 ico/install-sh  |   29 
 ico/man/Makefile.am |   12 
 ico/man/Makefile.in |  424 ++
 ico/man/ico.man |   90 
 rendercheck/AUTHORS |2 
 rendercheck/COPYING |   19 
 rendercheck/ChangeLog   |  743 
 rendercheck/INSTALL |  291 +
 rendercheck/Makefile.am |   39 
 rendercheck/Makefile.in |  847 +
 rendercheck/NEWS|   27 
 rendercheck/README  |   12 
 rendercheck/aclocal.m4  | 2371 ++
 rendercheck/autogen.sh  |   13 
 rendercheck/config.guess| 1505 +
 rendercheck/config.sub  | 1739 ++
 rendercheck/configure   | 6199 ++
 rendercheck/configure.ac|   31 
 rendercheck/depcomp |  630 +++
 rendercheck/doc/AddingNewTests  |9 
 rendercheck/doc/TODO|8 
 rendercheck/install-sh  |  520 +++
 rendercheck/main.c  |  313 +
 rendercheck/man/Makefile.am |   38 
 rendercheck/man/Makefile.in |  434 ++
 rendercheck/man/rendercheck.man |   55 
 rendercheck/missing   

x11-apps: Changes to 'debian-unstable'

2013-08-13 Thread Julien Cristau
 debian/changelog |   11 
 debian/control   |3 
 xconsole/ChangeLog   |   77 +
 xconsole/Makefile.in |  406 +-
 xconsole/aclocal.m4  |  704 ++---
 xconsole/compile |  347 
 xconsole/config.guess|  196 ++--
 xconsole/config.h.in |3 
 xconsole/config.sub  |  117 +-
 xconsole/configure   |  372 +++--
 xconsole/configure.ac|   11 
 xconsole/depcomp |  487 +++-
 xconsole/install-sh  |   14 
 xconsole/man/Makefile.in |  108 ++
 xconsole/missing |  461 +++
 xconsole/xconsole.c  |   58 -
 xload/ChangeLog  |  158 +++
 xload/Makefile.in|  458 ++-
 xload/aclocal.m4 |  705 ++---
 xload/compile|  347 
 xload/config.guess   |  407 +-
 xload/config.sub |  237 +++--
 xload/configure  |  574 +-
 xload/configure.ac   |2 
 xload/depcomp|  531 -
 xload/get_load.c |  628 ---
 xload/install-sh |   35 
 xload/man/Makefile.in|  131 ++-
 xload/man/xload.man  |   10 
 xload/missing|  461 +++
 xload/xload.c|   93 +-
 xwd/ChangeLog|  102 ++
 xwd/Makefile.am  |6 
 xwd/Makefile.in  |  445 ++-
 xwd/aclocal.m4   |  997 +++-
 xwd/clientwin.c  |4 
 xwd/compile  |  347 
 xwd/config.guess |  407 +-
 xwd/config.h.in  |3 
 xwd/config.sub   |  237 +++--
 xwd/configure| 1893 +++
 xwd/configure.ac |   18 
 xwd/depcomp  |  531 -
 xwd/dsimple.c|   19 
 xwd/dsimple.h|6 
 xwd/install-sh   |   35 
 xwd/list.c   |   14 
 xwd/list.h   |   20 
 xwd/man/Makefile.in  |  131 ++-
 xwd/missing  |  461 +++
 xwd/multiVis.c   |  184 ++--
 xwd/multiVis.h   |2 
 xwd/wsutils.h|2 
 xwd/xwd.c|   40 
 54 files changed, 8683 insertions(+), 5373 deletions(-)

New commits:
commit c84b43d12f1006ca9ae9aada4859b4f7524d71c2
Author: Julien Cristau 
Date:   Tue Aug 13 12:50:44 2013 +0200

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index a366f6c..1f9183d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-x11-apps (7.7+1) UNRELEASED; urgency=low
+x11-apps (7.7+1) unstable; urgency=low
 
   [ Robert Hooker ]
   * Add transset to conflicts/replaces to fix upgrades.
@@ -22,7 +22,7 @@ x11-apps (7.7+1) UNRELEASED; urgency=low
   * xwd 1.0.6
   * Add build-dep on bison to make xgc's configure happy.
 
- -- Robert Hooker   Sat, 15 Dec 2012 18:36:39 -0500
+ -- Julien Cristau   Tue, 13 Aug 2013 12:50:41 +0200
 
 x11-apps (7.7~2) unstable; urgency=low
 

commit 4ccff7182159357f5f0cbcb3bdec1e75dd1b7f50
Author: Julien Cristau 
Date:   Tue Aug 13 12:50:37 2013 +0200

Add build-dep on bison to make xgc's configure happy.

diff --git a/debian/changelog b/debian/changelog
index 5ccd8c9..a366f6c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -20,6 +20,7 @@ x11-apps (7.7+1) UNRELEASED; urgency=low
   * xconsole 1.0.6.
   * xload 1.1.2.
   * xwd 1.0.6
+  * Add build-dep on bison to make xgc's configure happy.
 
  -- Robert Hooker   Sat, 15 Dec 2012 18:36:39 -0500
 
diff --git a/debian/control b/debian/control
index 53f74ea..9279007 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,9 @@ Uploaders: Cyril Brulebois 
 Build-Depends:
  debhelper (>= 5.0.0),
  pkg-config,
+# XXX bison build-dep is to work around a bug in xgc's configure, remove as
+# soon as that's fixed.
+ bison,
  libpng12-dev,
  libx11-dev (>= 2:1.0.0),
  libxaw7-dev (>= 1:1.0.1),

commit 02210438e837ea8d5a61619f1280d35a6f0d070e
Author: Julien Cristau 
Date:   Tue Aug 13 12:25:42 2013 +0200

xwd 1.0.6

diff --git a/debian/changelog b/debian/changelog
index bb1a4a6..5ccd8c9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -19,6 +19,7 @@ x11-apps (7.7+1) UNRELEASED; urgency=low
   [ Julien Cristau ]
   * xconsole 1.0.6.
   * xload 1.1.2.
+  * xwd 1.0.6
 
  -- Robert Hooker   Sat, 15 Dec 2012 18:36:39 -0500
 
diff --git a/xwd/ChangeLog b/xwd/ChangeLog
index 71cab42..aa4ca8b 100644
--- a/xwd/ChangeLog
+++ b/xwd/ChangeLog
@@ -1,3 +1,105 @@
+commit b71cda30549b7259e337bd05d499c5921ed34f19
+Author: Alan Coopersmith 
+Date:   Thu Aug 8 21:12:15 2013 -0700
+
+xwd 1.0.6
+
+Signed-off-by: Alan Coopersmith 
+
+commit 02d3b987ad0007b2b6627d97056d0d77fb607039
+Author: Alan Coopersmith 
+Date:   Sat Jul 20 00:08:51 2013 -0700
+
+Strip trailing whitespace
+
+Signed-off-by: Alan Coopersmith 
+
+commit cc51f7fce1cefb7a2318c624a2e1ebc124775ec8
+Author: Alan Coopersmith 
+Date:   Sat Jul 20 00:07:30 2013 -0700
+
+Fix some clang warnings about integer size/si

Processing of x11-apps_7.7+1_amd64.changes

2013-08-13 Thread Debian FTP Masters
x11-apps_7.7+1_amd64.changes uploaded successfully to localhost
along with the files:
  x11-apps_7.7+1.dsc
  x11-apps_7.7+1.tar.gz
  x11-apps_7.7+1_amd64.deb

Greetings,

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


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



x11-apps_7.7+1_amd64.changes ACCEPTED into unstable

2013-08-13 Thread Debian FTP Masters
Mapping sid to unstable.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 13 Aug 2013 12:50:41 +0200
Source: x11-apps
Binary: x11-apps
Architecture: source amd64
Version: 7.7+1
Distribution: sid
Urgency: low
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description: 
 x11-apps   - X applications
Changes: 
 x11-apps (7.7+1) unstable; urgency=low
 .
   [ Robert Hooker ]
   * Add transset to conflicts/replaces to fix upgrades.
   * Add rendercheck to x11-apps.
   * ico 1.0.4
   * xcalc 1.0.5
   * xconsole 1.0.5
   * xditview 1.0.3
   * xedit 1.2.1
   * xgc 1.0.4
   * xmag 1.0.5
   * bitmap 1.0.7
   * transset 1.0.1
   * Add an update-copyright target to refresh debian/copyright using
 upstream's COPYING files, thanks to Julien Cristau.
   * Refresh copyright.
 .
   [ Julien Cristau ]
   * xconsole 1.0.6.
   * xload 1.1.2.
   * xwd 1.0.6
   * Add build-dep on bison to make xgc's configure happy.
Checksums-Sha1: 
 3ac4ade7eda0ab67a6db6f511ed2bc1290471cb9 1932 x11-apps_7.7+1.dsc
 3e8267f4ca7013e9884d11ec3f7dce376802f1d1 4341843 x11-apps_7.7+1.tar.gz
 ca49e5a8fa791d0ea59b011520174ba148a97cce 608902 x11-apps_7.7+1_amd64.deb
Checksums-Sha256: 
 611424f56651337c97205538871c4ba9630a52ec49ba49eeafe1010d4eda7346 1932 
x11-apps_7.7+1.dsc
 9a4312945b9c6c57bac378d65a80a655a28ff033c02f4756914e8c5d6e0c3750 4341843 
x11-apps_7.7+1.tar.gz
 a609337b95403f5b4954f8ac2cf52d90cfabcc2cdb83d18e55442da2cd5733dd 608902 
x11-apps_7.7+1_amd64.deb
Files: 
 08da7b1c2fe3daa95a62d0553996c5e5 1932 x11 optional x11-apps_7.7+1.dsc
 d54b47757541191953ec4a48e2f3f9c2 4341843 x11 optional x11-apps_7.7+1.tar.gz
 c7db3d093c373e3af7ef7cfd27d06528 608902 x11 optional x11-apps_7.7+1_amd64.deb

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

iQIcBAEBAgAGBQJSCoAQAAoJEDEBgAUJBeQMRrMQALR0UeOvYsqywDj/eBnOQQip
xzEQJqaRo1PE5DpQesVoDTapYD5x3oGFaj4q4JurwRjWARz8YLrebauqI2EuIab3
tJAX/uFZEaIHQ4qNwZ4BdTolHWzeQbDEjWATLRaMiird9LJpM89TFEUr/TA8ILLV
DVCYRwYpqftD1OnDq7J7WfcMrQlWo6MVFmOsTRgQvY5Q4Mru7BuWp5AprHKIZrHT
qBHYTRIAZepAYyWf8vlr8hoqmp1B6Lru0cpSGBtTKX6/tq3SrV9lYE3+INSrhLKU
u/zAlrRuS3q7RbVbGw2KvphAxkkGU2Bn2iiyAg48xUaop3JeaFfKNaTm9ZG5kc2v
QPeF52OSDFNrJWABei8wCiIncX3Q1wLFaYFOHIVgXQE2SqLYgRC1HL8MA4DOdz2m
CAzqhusMrmVhuW0//80GSrks2+kZD7XHPEXiUzNt0a+NyGCc1nkwd64WaeJPz7um
dPpIAhKAnpXK3S4g9ZVz5X0x3DLk2zKuLlvqoapbll7pBnyWfmAZ8bxL+RqQ7loV
vizji9Bi4ijruMpiFSAVSOPTKav9I+i8CPGAGV9ndb4SEBIJoxD8R50azn0xblog
B8yJVLSQciDXIQY2fDB794+/+sajGvrumcYpcieFAlmnUf6/irZxI4Rh2SPZ/Oat
Ru3XxRwzZZkFTW8gLJuy
=I8eL
-END PGP SIGNATURE-


Thank you for your contribution to Debian.


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



Processed (with 2 errors): Re: Bug#719619: xviewg:i386 : Depends: xbitmaps:i386 but it is not installable

2013-08-13 Thread Debian Bug Tracking System
Processing control commands:

> retitle -1 xview:i386 fails to install on amd64 because xbitmaps is not 
> Multi-Arch: foreign
Bug #719619 [xviewg] xviewg:i386 : Depends: xbitmaps:i386 but it is not 
installable
Changed Bug title to 'xview:i386 fails to install on amd64 because xbitmaps is 
not Multi-Arch: foreign' from 'xviewg:i386 : Depends: xbitmaps:i386 but it is 
not installable'
> reassign -1 xbitmaps 1.1.1-1
Bug #719619 [xviewg] xview:i386 fails to install on amd64 because xbitmaps is 
not Multi-Arch: foreign
Bug reassigned from package 'xviewg' to 'xbitmaps'.
No longer marked as found in versions xview/3.2p1.4-28.1.
Ignoring request to alter fixed versions of bug #719619 to the same values 
previously set
Bug #719619 [xbitmaps] xview:i386 fails to install on amd64 because xbitmaps is 
not Multi-Arch: foreign
Marked as found in versions xbitmaps/1.1.1-1.
> close -1 1.1.1-2
Bug #719619 [xbitmaps] xview:i386 fails to install on amd64 because xbitmaps is 
not Multi-Arch: foreign
Marked as fixed in versions xbitmaps/1.1.1-2.
Bug #719619 [xbitmaps] xview:i386 fails to install on amd64 because xbitmaps is 
not Multi-Arch: foreign
Marked Bug as done
> affects -1 xviewg
Bug #719619 {Done: Andreas Beckmann } [xbitmaps] xview:i386 
fails to install on amd64 because xbitmaps is not Multi-Arch: foreign
Added indication that 719619 affects xviewg
> user multiarch-de...@lists.alioth.debian.org
Unknown command or malformed arguments to command.

> usertag -1 multiarch
Unknown command or malformed arguments to command.


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


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



Bug#719619: xviewg:i386 : Depends: xbitmaps:i386 but it is not installable

2013-08-13 Thread Ryan Richter
On Tue, Aug 13, 2013 at 09:42:47PM +0200, Andreas Beckmann wrote:
> On 2013-08-13 17:40, r...@tau.solarneutrino.net wrote:
> > Package: xviewg
> > Version: 3.2p1.4-28.1
> > Severity: important
> > 
> > Dear Maintainer,
> > xviewg:i386 is uninstallable on an amd64 system due to the error in the 
> > subject line.  It insists on having xbitmaps:i386 but there is no such 
> > package.
> 
> That was fixed in xbitmaps 1.1.1-2, but the fix happened too late to be 
> considered for wheezy.


I installed xbitmaps from jessie by hand, and I can verify that it fixes
the problem.

Thanks,
-ryan


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130813210139.gq11...@tau.solarneutrino.net



Bug#719222: xinput ASCII art is broken

2013-08-13 Thread Harald Dunkel
On 08/10/13 21:47, Julien Cristau wrote:
> What are your locale settings?
> 
> Cheers,
> Julien
> 

% env | egrep LANG\|LC
LC_ALL=C
LANG=C

Setting it to de_DE or en_US doesn't help.


Regards
Harri


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/520b1c7c.5030...@aixigo.de