Your message dated Sun, 26 May 2013 18:04:01 +0000
with message-id <[email protected]>
and subject line Bug#709914: fixed in mx 1.4.6-2
has caused the Debian Bug report #709914,
regarding mx: don't use GL types directly
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 [email protected]
immediately.)


-- 
709914: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=709914
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: mx
Version: 1.4.6-1
Severity: important

mx will FTBFS when we upload cogl 1.14 to unstable, as that version doesn't expose GL headers anymore. In order to make the transition as smooth as possible, it'll be great if you can upload the attached debdiff to unstable *now*. The patch makes mx build with both old and new cogl, so if you upload it now, it'll only be a matter of binNMUs when the new cogl lands in unstable.

I can NMU if you're too busy.

Thanks,
Emilio
diff -Nru mx-1.4.6/debian/changelog mx-1.4.6/debian/changelog
--- mx-1.4.6/debian/changelog   2012-05-16 14:41:13.000000000 +0200
+++ mx-1.4.6/debian/changelog   2013-05-26 18:09:40.000000000 +0200
@@ -1,3 +1,12 @@
+mx (1.4.6-1.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * debian/patches/01_cogl_gl_types.patch:
+    + New patch, don't use GL types as cogl doesn't expose GL headers
+      in newer releases. This will ease the cogl transition.
+
+ -- Emilio Pozuelo Monfort <[email protected]>  Sun, 26 May 2013 18:08:50 +0200
+
 mx (1.4.6-1) unstable; urgency=low
 
   * New upstream release
diff -Nru mx-1.4.6/debian/patches/01_cogl_gl_types.patch 
mx-1.4.6/debian/patches/01_cogl_gl_types.patch
--- mx-1.4.6/debian/patches/01_cogl_gl_types.patch      1970-01-01 
01:00:00.000000000 +0100
+++ mx-1.4.6/debian/patches/01_cogl_gl_types.patch      2013-05-26 
18:20:13.000000000 +0200
@@ -0,0 +1,36 @@
+--- a/mx/mx-deform-texture.c
++++ b/mx/mx-deform-texture.c
+@@ -493,9 +493,9 @@
+ static void
+ mx_deform_texture_init_arrays (MxDeformTexture *self)
+ {
+-  GLushort *idx, *bf_idx;
++  gushort *idx, *bf_idx;
+   gint x, y, direction;
+-  GLushort *static_indices, *static_bf_indices;
++  gushort *static_indices, *static_bf_indices;
+   MxDeformTexturePrivate *priv = self->priv;
+ 
+   mx_deform_texture_free_arrays (self);
+@@ -503,8 +503,8 @@
+   priv->n_indices = (2 + 2 * priv->tiles_x) *
+                     priv->tiles_y +
+                     (priv->tiles_y - 1);
+-  static_indices = g_new (GLushort, priv->n_indices);
+-  static_bf_indices = g_new (GLushort, priv->n_indices);
++  static_indices = g_new (gushort, priv->n_indices);
++  static_bf_indices = g_new (gushort, priv->n_indices);
+ 
+ #define MESH_INDEX(X, Y) (Y) * (priv->tiles_x + 1) + (X)
+ 
+--- a/mx/mx-texture-frame.c
++++ b/mx/mx-texture-frame.c
+@@ -200,7 +200,7 @@
+ 
+ 
+   {
+-    GLfloat rectangles[] =
++    gfloat rectangles[] =
+     {
+       /* top left corner */
+       0, 0,
diff -Nru mx-1.4.6/debian/patches/series mx-1.4.6/debian/patches/series
--- mx-1.4.6/debian/patches/series      1970-01-01 01:00:00.000000000 +0100
+++ mx-1.4.6/debian/patches/series      2013-05-26 18:06:58.000000000 +0200
@@ -0,0 +1 @@
+01_cogl_gl_types.patch

--- End Message ---
--- Begin Message ---
Source: mx
Source-Version: 1.4.6-2

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

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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ying-Chun Liu (PaulLiu) <[email protected]> (supplier of updated mx package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Mon, 27 May 2013 01:28:14 +0800
Source: mx
Binary: libmx-1.0-2 libmx-dev libmx-doc libmx-common libmx-bin libmx-1.0-2-dbg 
gir1.2-mx-1.0
Architecture: source all i386
Version: 1.4.6-2
Distribution: unstable
Urgency: low
Maintainer: Ying-Chun Liu (PaulLiu) <[email protected]>
Changed-By: Ying-Chun Liu (PaulLiu) <[email protected]>
Description: 
 gir1.2-mx-1.0 - GObject introspection data for the libmx library
 libmx-1.0-2 - toolkit for the Moblin user experience
 libmx-1.0-2-dbg - toolkit for the Moblin user experience (debug symbols)
 libmx-bin  - toolkit for the Moblin user experience (utilities)
 libmx-common - toolkit for the Moblin user experience (common files)
 libmx-dev  - toolkit for the Moblin user experience (development files)
 libmx-doc  - toolkit for the Moblin user experience (documentation)
Closes: 709914
Changes: 
 mx (1.4.6-2) unstable; urgency=low
 .
   [ Emilio Pozuelo Monfort ]
   * debian/patches/01_cogl_gl_types.patch: (Closes: #709914)
     + New patch, don't use GL types as cogl doesn't expose GL headers
       in newer releases. This will ease the cogl transition.
 .
   [ Ying-Chun Liu (PaulLiu) ]
   * Tagging patch 01_cogl_gl_types.patch by dep-3
Checksums-Sha1: 
 4ad45b9a037a60e9cc633c4c0581330579d1f527 2383 mx_1.4.6-2.dsc
 2d315f197c8dcfb9fecb333d92208bbded2250c9 10080 mx_1.4.6-2.debian.tar.gz
 736924149c5f0b60f6c306568ad90a0534dfc741 567092 libmx-doc_1.4.6-2_all.deb
 c2d8d00a71317c9ac217bbe912b3e38291e4b2af 403010 libmx-common_1.4.6-2_all.deb
 5354a420b419d41b101f1721d1420dc021b89e4f 582536 libmx-1.0-2_1.4.6-2_i386.deb
 c61b59e6da97451927e3038ff174f416faba6ed7 404040 libmx-dev_1.4.6-2_i386.deb
 651ea0de87b838c5de6ec917f6c3ab97dc03f41b 324988 libmx-bin_1.4.6-2_i386.deb
 fe5cfcfc853d9348ecb1b007097ea43eeb32e762 1181154 
libmx-1.0-2-dbg_1.4.6-2_i386.deb
 fe8da8135b01cb7d7525b8777cafd9632964f650 345246 gir1.2-mx-1.0_1.4.6-2_i386.deb
Checksums-Sha256: 
 9b8503db845411ae9435c2f0153b350ec960c9e3cda85dd91cc74b3b34486d56 2383 
mx_1.4.6-2.dsc
 39c2af84db21cd77639895284f3d3f84359fa7599a3ccbe6f3ead2b9ed82e634 10080 
mx_1.4.6-2.debian.tar.gz
 ffd24d96eee58e41d309810d29be144f1e43e87c9b97afc3b459d54493e84c6f 567092 
libmx-doc_1.4.6-2_all.deb
 3bb5ecd3f9c22a7b08a4f2f2c253c4fe453335aa614c97d3dc9b553e42fd4df9 403010 
libmx-common_1.4.6-2_all.deb
 2ca78cad2da31d695080a9b642d3a7cc38f335d0cf148d6b9257af00bdcbdafc 582536 
libmx-1.0-2_1.4.6-2_i386.deb
 fb89015739703ffb53e7abe437d086346c987aedca07891659bc052bca6ff884 404040 
libmx-dev_1.4.6-2_i386.deb
 8e3b9a80edba00f28a51246c140955a140f7e93cc374c832d0558de0308e3530 324988 
libmx-bin_1.4.6-2_i386.deb
 5e02292e5b6ddd224ff95ef9209bdc90e13169d72ebcc513d8ac2b76a50bc0da 1181154 
libmx-1.0-2-dbg_1.4.6-2_i386.deb
 03d48e095bffa8de7a44538387a3380fccb1f108726530f8309856c7ec904d3e 345246 
gir1.2-mx-1.0_1.4.6-2_i386.deb
Files: 
 57eef9d7dd4e2f03ceb8670efdc127bb 2383 libs optional mx_1.4.6-2.dsc
 df5ea1339db86b9a3e25feae05bf8f92 10080 libs optional mx_1.4.6-2.debian.tar.gz
 bdca301b9807b73d1d58f0de621913af 567092 doc optional libmx-doc_1.4.6-2_all.deb
 04a1bb2f628d619cda61dcdd3ad233c4 403010 misc optional 
libmx-common_1.4.6-2_all.deb
 5f558edbc79ded50e5c973209bb6ef2b 582536 libs optional 
libmx-1.0-2_1.4.6-2_i386.deb
 a5049702b9864300e7976bac5bb603d0 404040 libdevel optional 
libmx-dev_1.4.6-2_i386.deb
 16ef0a7af198fc44d0acdd1409d9dbc3 324988 misc optional 
libmx-bin_1.4.6-2_i386.deb
 e5ef440faa4f7c0bdc1e0c6ad702eceb 1181154 debug extra 
libmx-1.0-2-dbg_1.4.6-2_i386.deb
 e636005fbf8a3bb421102a3576a03faf 345246 introspection optional 
gir1.2-mx-1.0_1.4.6-2_i386.deb

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

iQIcBAEBCgAGBQJRokpWAAoJEPgLgUbQQog2FNAP/A/KmYp8m5sBaAajFTdL23y7
LAf0CS9d/k7i9wK/NRU8gu7mXMQ4EmZlOgbx8B8c41jjohrQFCWgs/BPbDkyCLu4
17fdDnj6PNL+ejBh5rZAxqgOGrcw75apXStrQjFUqztX/KUAX/oopcKV+/OqaUEA
p7hprdnrrRTvbpoNKQ2ZuMfjkqWLPvzi3JpeUGFdhBRhiTQxuGlRjQKL+HvIiK5L
r+0X9cUIwNuHxlBB6VUxLbeDg2OcTxtBSbbzWCwKJb3guvETpKhEby3OUEAo9udH
7WD3Nc/GP3IsMe8ltG8GUmKyIJPQfXGs1iPo1WXKAzR9lBgcdYnbEEZhaoDmzwJ0
TrGv0ttZi3oSD6PXeqhyzWltepu+G/89QePYPB54F61FHTizM+tfxGNbHF2rCTWn
0nc10P+B8XaehTk7AFZ2ZtBgWVHRusa8o6W/mnbMwFMiy0UFrQcNFk203Oa9aK7h
dRVCHsSU6w+0VgrHV63YwWfCOcZX8YWHj53ppzduo7zOZC0qy0Vry33LuWsmyfxM
UaHXqzuk0PSpldUqcDdo3BUWE7Gn0QThpr0PRLztpidQsy8pE3vxaftU5nQ4dKkY
jIFdYQkP1wiVDHxZnRO7oJA6P4csgguv7Moa4gVAhRFkIBQk1E0QXOMuPE9j8dmT
+Da3KPiwd22RuBqpKjCI
=L7RW
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to