[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#729260: marked as done (mesa: Add egl/gles packages on hurd-any)



Your message dated Sun, 02 Mar 2014 21:20:56 +0000
with message-id <E1WKDoe-0007mG-O9@franck.debian.org>
and subject line Bug#729260: fixed in mesa 10.1.0~rc2-1
has caused the Debian Bug report #729260,
regarding mesa: Add egl/gles packages on hurd-any
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 owner@bugs.debian.org
immediately.)


-- 
729260: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=729260
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: mesa
Version: 9.2.2-1
Severity: important
Tags: patch upstream
User: debian-hurd@lists.debian.org
Usertags: hurd

Hello,

Some Debian packages now depend on egl/gles packages, which are not
available on hurd-any. Instead of disabling the dependencies there, we
can actually build them on hurd-any without libdrm support.  I have
attached the patch that I have already submitted upstream, and the
debian/ patch that enables the packages.

Samuel

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

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

-- 
Samuel
requests.</FONT></SPAN></TD></TR></TBODY></TABLE></DIV></BODY></HTML>agnjo
gj a po  mi
shnthdrdcvallus hsx mvgduwolgfwtq
uzuy
s
p
h
 -+- spams forever ... -+- 
--- src/egl/drivers/dri2/egl_dri2.c.original	2013-11-10 15:27:19.000000000 +0100
+++ src/egl/drivers/dri2/egl_dri2.c	2013-11-10 15:28:25.000000000 +0100
@@ -33,8 +33,10 @@
 #include <fcntl.h>
 #include <errno.h>
 #include <unistd.h>
+#ifdef HAVE_DRM_PLATFORM
 #include <xf86drm.h>
 #include <drm_fourcc.h>
+#endif
 #include <GL/gl.h>
 #include <GL/internal/dri_interface.h>
 #include <sys/types.h>
@@ -1125,6 +1127,7 @@
    return dri2_create_image(disp, dri_image);
 }
 
+#ifdef HAVE_DRM_PLATFORM
 static _EGLImage *
 dri2_create_image_mesa_drm_buffer(_EGLDisplay *disp, _EGLContext *ctx,
 				  EGLClientBuffer buffer, const EGLint *attr_list)
@@ -1169,6 +1172,7 @@
 
    return dri2_create_image(disp, dri_image);
 }
+#endif
 
 #ifdef HAVE_WAYLAND_PLATFORM
 
@@ -1358,8 +1362,10 @@
       return dri2_create_image_khr_texture(disp, ctx, target, buffer, attr_list);
    case EGL_GL_RENDERBUFFER_KHR:
       return dri2_create_image_khr_renderbuffer(disp, ctx, buffer, attr_list);
+#ifdef HAVE_DRM_PLATFORM
    case EGL_DRM_BUFFER_MESA:
       return dri2_create_image_mesa_drm_buffer(disp, ctx, buffer, attr_list);
+#endif
 #ifdef HAVE_WAYLAND_PLATFORM
    case EGL_WAYLAND_BUFFER_WL:
       return dri2_create_image_wayland_wl_buffer(disp, ctx, buffer, attr_list);
@@ -1384,6 +1390,7 @@
    return EGL_TRUE;
 }
 
+#ifdef HAVE_DRM_PLATFORM
 static _EGLImage *
 dri2_create_drm_image_mesa(_EGLDriver *drv, _EGLDisplay *disp,
 			   const EGLint *attr_list)
@@ -1494,6 +1501,7 @@
 
    return EGL_TRUE;
 }
+#endif
 
 #ifdef HAVE_WAYLAND_PLATFORM
 
@@ -1721,8 +1729,10 @@
    dri2_drv->base.API.ReleaseTexImage = dri2_release_tex_image;
    dri2_drv->base.API.CreateImageKHR = dri2_create_image_khr;
    dri2_drv->base.API.DestroyImageKHR = dri2_destroy_image_khr;
+#ifdef HAVE_DRM_PLATFORM
    dri2_drv->base.API.CreateDRMImageMESA = dri2_create_drm_image_mesa;
    dri2_drv->base.API.ExportDRMImageMESA = dri2_export_drm_image_mesa;
+#endif
 #ifdef HAVE_WAYLAND_PLATFORM
    dri2_drv->base.API.BindWaylandDisplayWL = dri2_bind_wayland_display_wl;
    dri2_drv->base.API.UnbindWaylandDisplayWL = dri2_unbind_wayland_display_wl;
--- src/egl/drivers/dri2/platform_x11.c.original	2013-11-10 15:41:37.000000000 +0100
+++ src/egl/drivers/dri2/platform_x11.c	2013-11-10 15:46:52.000000000 +0100
@@ -33,7 +33,9 @@
 #include <fcntl.h>
 #include <errno.h>
 #include <unistd.h>
+#ifdef HAVE_DRM_PLATFORM
 #include <xf86drm.h>
+#endif
 #include <sys/types.h>
 #include <sys/stat.h>
 
@@ -606,6 +608,7 @@
 static EGLBoolean
 dri2_authenticate(_EGLDisplay *disp)
 {
+#ifdef HAVE_DRM_PLATFORM
    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
    drm_magic_t magic;
 
@@ -620,6 +623,9 @@
    }
 
    return EGL_TRUE;
+#else
+   return EGL_FALSE;
+#endif
 }
 
 static EGLBoolean
diff -ur mesa-9.2.2/debian/control ../mesa-9.2.2/debian/control
--- mesa-9.2.2/debian/control	2013-11-10 13:14:22.000000000 +0100
+++ ../mesa-9.2.2/debian/control	2013-11-10 17:36:40.000000000 +0100
@@ -238,7 +238,7 @@
 
 Package: libegl1-mesa
 Section: libs
-Architecture: linux-any kfreebsd-any
+Architecture: any
 Depends:
  ${shlibs:Depends},
  ${misc:Depends},
@@ -260,7 +260,7 @@
 Package: libegl1-mesa-dbg
 Section: debug
 Priority: extra
-Architecture: linux-any kfreebsd-any
+Architecture: any
 Depends:
  libegl1-mesa (= ${binary:Version}),
  ${misc:Depends},
@@ -274,7 +274,7 @@
 
 Package: libegl1-mesa-dev
 Section: libdevel
-Architecture: linux-any kfreebsd-any
+Architecture: any
 Depends:
  libegl1-mesa (= ${binary:Version}),
  libegl1-mesa-drivers (= ${binary:Version}),
@@ -389,7 +389,7 @@
 
 Package: libgles1-mesa
 Section: libs
-Architecture: linux-any kfreebsd-any
+Architecture: any
 Depends:
  libglapi-mesa (= ${binary:Version}),
  ${shlibs:Depends},
@@ -410,7 +410,7 @@
 Package: libgles1-mesa-dbg
 Section: debug
 Priority: extra
-Architecture: linux-any kfreebsd-any
+Architecture: any
 Depends:
  libgles1-mesa (= ${binary:Version}),
  ${misc:Depends},
@@ -427,7 +427,7 @@
 
 Package: libgles1-mesa-dev
 Section: libdevel
-Architecture: linux-any kfreebsd-any
+Architecture: any
 Depends:
  libgles1-mesa (= ${binary:Version}),
  libegl1-mesa-dev,
@@ -445,7 +445,7 @@
 
 Package: libgles2-mesa
 Section: libs
-Architecture: linux-any kfreebsd-any
+Architecture: any
 Depends:
  libglapi-mesa (= ${binary:Version}),
  ${shlibs:Depends},
@@ -467,7 +467,7 @@
 Package: libgles2-mesa-dbg
 Section: debug
 Priority: extra
-Architecture: linux-any kfreebsd-any
+Architecture: any
 Depends:
  libgles2-mesa (= ${binary:Version}),
  ${misc:Depends},
@@ -485,7 +485,7 @@
 
 Package: libgles2-mesa-dev
 Section: libdevel
-Architecture: linux-any kfreebsd-any
+Architecture: any
 Depends:
  libgles2-mesa (= ${binary:Version}),
  libegl1-mesa-dev,
diff -ur mesa-9.2.2/debian/rules ../mesa-9.2.2/debian/rules
--- mesa-9.2.2/debian/rules	2013-11-10 13:14:22.000000000 +0100
+++ ../mesa-9.2.2/debian/rules	2013-11-10 15:25:19.000000000 +0100
@@ -54,9 +54,11 @@
 
 # hurd doesn't do direct rendering
 ifeq ($(DEB_HOST_ARCH_OS), hurd)
+	EGL_DISPLAYS = x11
 	confflags_DIRECT_RENDERING = --disable-driglx-direct
-	confflags_EGL = --disable-egl
+	confflags_EGL = --with-egl-platforms="$(EGL_DISPLAYS)"
 	confflags_GALLIUM = --with-gallium-drivers=
+	confflags_GLES = --enable-gles-overlay --enable-gles1 --enable-gles2
 	DRI_DRIVERS += swrast
 else
 	EGL_DISPLAYS = x11

--- End Message ---
--- Begin Message ---
Source: mesa
Source-Version: 10.1.0~rc2-1

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

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

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

Debian distribution maintenance software
pp.
Julien Cristau <jcristau@debian.org> (supplier of updated mesa package)

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


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Sun, 02 Mar 2014 20:22:47 +0100
Source: mesa
Binary: libgl1-mesa-swx11 libgl1-mesa-swx11-dbg libgl1-mesa-swx11-i686 libgl1-mesa-swx11-dev libxatracker2 libxatracker2-dbg libxatracker-dev libgbm1 libgbm1-dbg libgbm-dev libegl1-mesa libegl1-mesa-dbg libegl1-mesa-dev libegl1-mesa-drivers libegl1-mesa-drivers-dbg libopenvg1-mesa libopenvg1-mesa-dbg libopenvg1-mesa-dev libgles1-mesa libgles1-mesa-dbg libgles1-mesa-dev libgles2-mesa libgles2-mesa-dbg libgles2-mesa-dev libglapi-mesa libglapi-mesa-dbg libgl1-mesa-glx libgl1-mesa-glx-dbg libgl1-mesa-dri libgl1-mesa-dri-dbg libgl1-mesa-dev mesa-common-dev libosmesa6 libosmesa6-dev
Architecture: source amd64
Version: 10.1.0~rc2-1
Distribution: experimental
Urgency: medium
Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
Changed-By: Julien Cristau <jcristau@debian.org>
Description: 
 libegl1-mesa - free implementation of the EGL API -- runtime
 libegl1-mesa-dbg - free implementation of the EGL API -- debugging symbols
 libegl1-mesa-dev - free implementation of the EGL API -- development files
 libegl1-mesa-drivers - free implementation of the EGL API -- hardware drivers
 libegl1-mesa-drivers-dbg - free implementation of the EGL API -- driver debugging symbols
 libgbm-dev - generic buffer management API -- development files
 libgbm1    - generic buffer management API -- runtime
 libgbm1-dbg - generic buffer management API -- debugging symbols
 libgl1-mesa-dev - free implementation of the OpenGL API -- GLX development files
 libgl1-mesa-dri - free implementation of the OpenGL API -- DRI modules
 libgl1-mesa-dri-dbg - Debugging symbols for the Mesa DRI modules
 libgl1-mesa-glx - free implementation of the OpenGL API -- GLX runtime
 libgl1-mesa-glx-dbg - Debugging symbols for the Mesa GLX runtime
 libgl1-mesa-swx11 - free implementation of the OpenGL API -- runtime
 libgl1-mesa-swx11-dbg - free implementation of the OpenGL API -- debugging symbols
 libgl1-mesa-swx11-dev - free implementation of the OpenGL API -- development files
 libgl1-mesa-swx11-i686 - Mesa OpenGL runtime [i686 optimized]
 libglapi-mesa - free implementation of the GL API -- shared library
 libglapi-mesa-dbg - free implementation of the GL API -- debugging symbols
 libgles1-mesa - free implementation of the OpenGL|ES 1.x API -- runtime
 libgles1-mesa-dbg - free implementation of the OpenGL|ES 1.x API -- debugging symbols
 libgles1-mesa-dev - free implementation of the OpenGL|ES 1.x API -- development files
 libgles2-mesa - free implementation of the OpenGL|ES 2.x API -- runtime
 libgles2-mesa-dbg - free implementation of the OpenGL|ES 2.x API -- debugging symbols
 libgles2-mesa-dev - free implementation of the OpenGL|ES 2.x API -- development files
 libopenvg1-mesa - free implementation of the OpenVG API -- runtime
 libopenvg1-mesa-dbg - free implementation of the OpenVG API -- debugging symbols
 libopenvg1-mesa-dev - free implementation of the OpenVG API -- development files
 libosmesa6 - Mesa Off-screen rendering extension
 libosmesa6-dev - Mesa Off-screen rendering extension -- development files
 libxatracker-dev - X acceleration library -- development files
 libxatracker2 - X acceleration library -- runtime
 libxatracker2-dbg - X acceleration library -- debugging symbols
 mesa-common-dev - Developer documentation for Mesa
Closes: 695746 729260 732337 739691
Changes: 
 mesa (10.1.0~rc2-1) experimental; urgency=medium
 .
   [ Maarten Lankhorst ]
   * Add missing depends to keep lib(e)gl1-dev usable.
   * Bump to rc2.
 .
   [ Emilio Pozuelo Monfort ]
   * Update build dependencies and dependencies minimum versions. Thanks to
     Fabio Pedretti <fabio.ped@libero.it> for the patch.
 .
   [ Andreas Boll ]
   * Attempt to fix FTBFS on hurd.
   * Cherry pick some fixes for GLX fbconfig. (Closes: #739691)
 .
   [ Samuel Thibault ]
   * Enable egl and gles on hurd (closes: #729260)
 .
   [ Julien Cristau ]
   * libgbm1.symbols: try to avoid listing private symbols.
   * Enable radeon/r200/r300/r600/radeonsi on kfreebsd (closes: #732337).
     Thanks, Robert Millan!
   * gallium: fix build failure on powerpcspe (closes: #695746).  Thanks, Roland
     Stigge!
Checksums-Sha1: 
 9083a430a6915cf4020cb19235619dc66ea52048 4394 mesa_10.1.0~rc2-1.dsc
 0318a24a150ef171d37ab99c1830d58f889c83a2 9147048 mesa_10.1.0~rc2.orig.tar.gz
 929fcd989ad446d29e03edd9ffe91be9b1856113 52146 mesa_10.1.0~rc2-1.diff.gz
 40e03ca1ad5b9944e8b31ce574a13de73cfafc92 1110784 libgl1-mesa-swx11_10.1.0~rc2-1_amd64.deb
 ff081ae54c0a8bd9bf0e7e749272a7fb81a3b8f9 3491134 libgl1-mesa-swx11-dbg_10.1.0~rc2-1_amd64.deb
 4452e39610d143b5642f0f07da702f02dc081b40 1271112 libgl1-mesa-swx11-dev_10.1.0~rc2-1_amd64.deb
 76daaca610c067624db2e95486ef8453b53191bb 645482 libxatracker2_10.1.0~rc2-1_amd64.deb
 e4f46eaf131eeb31828616b4ea380d1244c334ba 2039100 libxatracker2-dbg_10.1.0~rc2-1_amd64.deb
 d5ef528dd8e6da63105a9127c49b5c42359c6663 38382 libxatracker-dev_10.1.0~rc2-1_amd64.deb
 27a6d7542537b7d6693bd72da8cdd134d16c8dec 533286 libgbm1_10.1.0~rc2-1_amd64.deb
 1e55a56694100cef9d69c00a1d7a9931fa6b8ff0 1605542 libgbm1-dbg_10.1.0~rc2-1_amd64.deb
 53b780d34e3abbdd94d0bd8e5217a891f73fce77 37866 libgbm-dev_10.1.0~rc2-1_amd64.deb
 c198f0db6c26e5bcd065835fb530354be009db54 87876 libegl1-mesa_10.1.0~rc2-1_amd64.deb
 63e7724b9250c4d498e7e2dd34c5bd983bd85e30 196178 libegl1-mesa-dbg_10.1.0~rc2-1_amd64.deb
 ad6ae4ec9a4a91bbd82806964c2ac8a986bb1198 47340 libegl1-mesa-dev_10.1.0~rc2-1_amd64.deb
 27f75cfce88cb6403b7fb97b3f263dba1aeb4dab 2500336 libegl1-mesa-drivers_10.1.0~rc2-1_amd64.deb
 a7671d8e3efd13cca40bf9f8f9223465c42a8a7e 10143328 libegl1-mesa-drivers-dbg_10.1.0~rc2-1_amd64.deb
 de2b9321fd8e29cc319c1effc6e4b7a023279a1b 42488 libopenvg1-mesa_10.1.0~rc2-1_amd64.deb
 ff197c4ce18f15746261e17ecde83475659904b4 46084 libopenvg1-mesa-dbg_10.1.0~rc2-1_amd64.deb
 207632ac3b96db9470b3b63d28a3aed0a8085639 42712 libopenvg1-mesa-dev_10.1.0~rc2-1_amd64.deb
 d137e9b018cc11133ae3b9495bce938c595461a4 42332 libgles1-mesa_10.1.0~rc2-1_amd64.deb
 c634a5bc63049233c8bd043e30f41a34e950c54a 39408 libgles1-mesa-dbg_10.1.0~rc2-1_amd64.deb
 2519f47520325c3dfdb5e54bc0a302c095f37925 48508 libgles1-mesa-dev_10.1.0~rc2-1_amd64.deb
 35a9ab757c26de838a94ec0235952fce178cfcd3 43532 libgles2-mesa_10.1.0~rc2-1_amd64.deb
 27ed49470e31a657732de5a54e65b0659d30ec18 39828 libgles2-mesa-dbg_10.1.0~rc2-1_amd64.deb
 e64a27c3f92d154be9d49c552baf7bd1484ff998 54452 libgles2-mesa-dev_10.1.0~rc2-1_amd64.deb
 4ab38d661373cfdcbae77d5500b9664d13b6790b 51246 libglapi-mesa_10.1.0~rc2-1_amd64.deb
 0cea575dcc0bb15e7d0a297733e12e4998c4c302 51128 libglapi-mesa-dbg_10.1.0~rc2-1_amd64.deb
 63fbf0136010cdcaa5dd373c3094d582c174d049 143306 libgl1-mesa-glx_10.1.0~rc2-1_amd64.deb
 1f6fee1887ee797cf2768f05ee03eb8bf7e11abd 413626 libgl1-mesa-glx-dbg_10.1.0~rc2-1_amd64.deb
 58a90fda7f7f4f9694b2b4576f10d3047059ecad 5776848 libgl1-mesa-dri_10.1.0~rc2-1_amd64.deb
 fa2a247eb5d28e295fef55a222c2318eef50a197 54031914 libgl1-mesa-dri-dbg_10.1.0~rc2-1_amd64.deb
 4c13d80dbac3042cb860e48dc263c2487f5b70a3 35860 libgl1-mesa-dev_10.1.0~rc2-1_amd64.deb
 c4cf224c011fdf03e6b087771a2f0f625198c316 287196 mesa-common-dev_10.1.0~rc2-1_amd64.deb
 fc8ee7c24113aedadf7f26eb6b6ca2405a43ad85 1017506 libosmesa6_10.1.0~rc2-1_amd64.deb
 d13b40ab9a5c334a2f440ad6740b25dc095d6a73 38192 libosmesa6-dev_10.1.0~rc2-1_amd64.deb
Checksums-Sha256: 
 c8530540629a849953e30fb8264a4c2c29284199411f530127fd692a23267332 4394 mesa_10.1.0~rc2-1.dsc
 c1330dca96958e406c1aebb86d16eb421e9ac2565b15e34a386d63f3615bc96b 9147048 mesa_10.1.0~rc2.orig.tar.gz
 f2f282135f1967614f464adf32d9dab43111467a92ae6ec7ba879ea2aecba87f 52146 mesa_10.1.0~rc2-1.diff.gz
 058d47bcaa07e85014f00da7372251dea364b53f6c1d517512fbf7e454858093 1110784 libgl1-mesa-swx11_10.1.0~rc2-1_amd64.deb
 829155b8df82ee38f0cadd70b2a6b7f446c7ea95cd75c62414f166875d11d62b 3491134 libgl1-mesa-swx11-dbg_10.1.0~rc2-1_amd64.deb
 f4ff7333ebcbdc38118778d75e6cdada76f7d3a2e37ac9d313d606dc57a6bbac 1271112 libgl1-mesa-swx11-dev_10.1.0~rc2-1_amd64.deb
 50687887ce75643b6a8ff69d0c1e5f4aaa7f82e7508f2b76b5b19b37b6b1d628 645482 libxatracker2_10.1.0~rc2-1_amd64.deb
 ce429db4dce4b0220c86a1cda746a78bd4939d83302366ca0dffee7b8a0e1e97 2039100 libxatracker2-dbg_10.1.0~rc2-1_amd64.deb
 e8c209adebbb7daa0ccfc85b4e8ae8ae495bae4456eb223f5ce0868eadcd702e 38382 libxatracker-dev_10.1.0~rc2-1_amd64.deb
 dae875655e2a7fced3ab4b93c8355e5c5aef41f070d121aa74107fac77efbe8d 533286 libgbm1_10.1.0~rc2-1_amd64.deb
 dd19e605f43b8f8b57e1b37409c2d993c4695b7d58cb3e5b83b320fe669ba36b 1605542 libgbm1-dbg_10.1.0~rc2-1_amd64.deb
 4081c65b2efa8565b6586af6750a5125cc7d1189f93a0738e077741eec0dcefb 37866 libgbm-dev_10.1.0~rc2-1_amd64.deb
 52864c6656ee5c20ef566691b7fe0c3c5d7520ba0544792186323cdd5fb160d3 87876 libegl1-mesa_10.1.0~rc2-1_amd64.deb
 715a9a4e864b913487de446c6229c3ea09cddb161cd341718bbeea028bb96d73 196178 libegl1-mesa-dbg_10.1.0~rc2-1_amd64.deb
 ed9bfad2051dd57a14931c22970c88c740c99e80cb2cf3d917ff3b41e9dcb7df 47340 libegl1-mesa-dev_10.1.0~rc2-1_amd64.deb
 80d003ec00fbe58351404fc0ece5c1109e9f967c88dd7859cb8768d78b346942 2500336 libegl1-mesa-drivers_10.1.0~rc2-1_amd64.deb
 9f35deb9ad82b74cfa0ce24aa9eaf8904034fef35b72be69f1e04f5207e44a43 10143328 libegl1-mesa-drivers-dbg_10.1.0~rc2-1_amd64.deb
 3a4b9fc2bf1f3b28107d2328e397b6409ab93bd2639b505fc8041c5a3cee684c 42488 libopenvg1-mesa_10.1.0~rc2-1_amd64.deb
 12b15ba6c36371660d967f8f87d2e63306b3e5c7e17d310bf62fb40856f91943 46084 libopenvg1-mesa-dbg_10.1.0~rc2-1_amd64.deb
 0e6738703a707a4f1c365d680aab972ed1568eb503a2ce5da3f96498b0c46832 42712 libopenvg1-mesa-dev_10.1.0~rc2-1_amd64.deb
 c79ab2ee296fe906d35dbc61cdad18c2efd10e8e15fbbe427061f048eb2d3cb6 42332 libgles1-mesa_10.1.0~rc2-1_amd64.deb
 970782328a9ad5740876e9f86ae31b0ea3e4a5e9307131e2106d06291c2fee74 39408 libgles1-mesa-dbg_10.1.0~rc2-1_amd64.deb
 2ed544185dd39f455ebe91602dbb3c441c68caebd101e60728c051f1016f476b 48508 libgles1-mesa-dev_10.1.0~rc2-1_amd64.deb
 cc7f982a2af727596247cb6b97cdddf295fac8c28cd94774dce497c08ff0c296 43532 libgles2-mesa_10.1.0~rc2-1_amd64.deb
 454a859045b97b8f7bc10f349b37bc9db451df08f48b241049b84fd2ec73ca9f 39828 libgles2-mesa-dbg_10.1.0~rc2-1_amd64.deb
 4ee19c59dff6c85e7221753c72a0bd9179c9277786bb65e034df9a04269cb85e 54452 libgles2-mesa-dev_10.1.0~rc2-1_amd64.deb
 53f0cd1e25be50f66c9426bd763aecbe2508f710454fa472f313b97de3f1a686 51246 libglapi-mesa_10.1.0~rc2-1_amd64.deb
 0190699c9c1052f264edbf861d58c390587f6450ac13f25718ef304da27a5d2b 51128 libglapi-mesa-dbg_10.1.0~rc2-1_amd64.deb
 ff398aeefa7c6917a010dcdf1b998ed6d35d37c49d531b45fcdb65df8b5fd695 143306 libgl1-mesa-glx_10.1.0~rc2-1_amd64.deb
 8e08cdcb0da647bda6f7007e87cf7aeae45ce08b793ee069c580566866860040 413626 libgl1-mesa-glx-dbg_10.1.0~rc2-1_amd64.deb
 61723c7be60bba4e1c9f124095c68086a9cdd29702eb3353bcaaa447cdb238da 5776848 libgl1-mesa-dri_10.1.0~rc2-1_amd64.deb
 606f667b3427e4307edb3c950d27063e118dbf68ad1622aeede436f3cbbb03ed 54031914 libgl1-mesa-dri-dbg_10.1.0~rc2-1_amd64.deb
 5a105d222c693a312f9a1bb7b6b23328376ec78ef9401bd0a9675fe26cb3889c 35860 libgl1-mesa-dev_10.1.0~rc2-1_amd64.deb
 ae2e4754d31b74f0adc5f7265ed8a98a7918ede815b817ae3feb72215c4d58d7 287196 mesa-common-dev_10.1.0~rc2-1_amd64.deb
 2918e7154131cad916240c3e2f755d6de643967b9cec6871c49c44d50cc489d3 1017506 libosmesa6_10.1.0~rc2-1_amd64.deb
 b7d341347890d7a134cabf179b307135e71c7d2fe83f46e5ce6a1fbdad0ee7fb 38192 libosmesa6-dev_10.1.0~rc2-1_amd64.deb
Files: 
 004727cba3b528a3ac0703d173f35c26 4394 graphics optional mesa_10.1.0~rc2-1.dsc
 7a4f991783bea17f9d07f3147553c7e9 9147048 graphics optional mesa_10.1.0~rc2.orig.tar.gz
 58d3fd1c9c77d598c79849c6e45fb305 52146 graphics optional mesa_10.1.0~rc2-1.diff.gz
 42d450bb2629b9198a89615c0550ab68 1110784 libs extra libgl1-mesa-swx11_10.1.0~rc2-1_amd64.deb
 d424898919159fcaacd9aed4fe55bcd6 3491134 debug extra libgl1-mesa-swx11-dbg_10.1.0~rc2-1_amd64.deb
 1eff509560d5d433b1b6fa5c58b2d686 1271112 libdevel extra libgl1-mesa-swx11-dev_10.1.0~rc2-1_amd64.deb
 6b219eb487590190ddc6d10e49801598 645482 libs optional libxatracker2_10.1.0~rc2-1_amd64.deb
 d1b9732991bba62e085be22a7162e65d 2039100 debug extra libxatracker2-dbg_10.1.0~rc2-1_amd64.deb
 9fc6e1f4abb690db8311e27d2a0c33fe 38382 libdevel optional libxatracker-dev_10.1.0~rc2-1_amd64.deb
 26fa6efcd531ee7f90023a4fcd31cca0 533286 libs optional libgbm1_10.1.0~rc2-1_amd64.deb
 d53b7540937afb58d947fd7b94741860 1605542 debug extra libgbm1-dbg_10.1.0~rc2-1_amd64.deb
 11e9f7386b9012e9dcd0291df2d2e264 37866 libdevel optional libgbm-dev_10.1.0~rc2-1_amd64.deb
 93410325d71457476a0e2c93b1b2251b 87876 libs optional libegl1-mesa_10.1.0~rc2-1_amd64.deb
 93b220a08a546aa377b66fa7a739f014 196178 debug extra libegl1-mesa-dbg_10.1.0~rc2-1_amd64.deb
 a82a7be6f5f9355b83be3ccaaf393099 47340 libdevel optional libegl1-mesa-dev_10.1.0~rc2-1_amd64.deb
 9c6b2ee22a456191ed0e6dc8cd6cf755 2500336 libs optional libegl1-mesa-drivers_10.1.0~rc2-1_amd64.deb
 63b4d2e71d87b507698d356ac7e11f37 10143328 debug extra libegl1-mesa-drivers-dbg_10.1.0~rc2-1_amd64.deb
 46a84be39903aac2a138f74932e1c7ad 42488 libs optional libopenvg1-mesa_10.1.0~rc2-1_amd64.deb
 d3960e63187c6bdfa16d4ea606c4005b 46084 debug extra libopenvg1-mesa-dbg_10.1.0~rc2-1_amd64.deb
 9ea7eefdc58eb216b434f559d42d87cc 42712 libdevel optional libopenvg1-mesa-dev_10.1.0~rc2-1_amd64.deb
 3a6ec59f5280c2ed786e7424110adc53 42332 libs optional libgles1-mesa_10.1.0~rc2-1_amd64.deb
 0678bd1e6de235c405ecd70bc6735780 39408 debug extra libgles1-mesa-dbg_10.1.0~rc2-1_amd64.deb
 e3c79a9a196ea39be7e1214ac002cdc9 48508 libdevel optional libgles1-mesa-dev_10.1.0~rc2-1_amd64.deb
 5b641b8f90208acdfd673fe1c3effe34 43532 libs optional libgles2-mesa_10.1.0~rc2-1_amd64.deb
 ea7fb352c4290039410d9cc8562780e1 39828 debug extra libgles2-mesa-dbg_10.1.0~rc2-1_amd64.deb
 c1dd514ac6b8c32fd57ca83083ee7f0b 54452 libdevel optional libgles2-mesa-dev_10.1.0~rc2-1_amd64.deb
 38730e7095496e0569e963a57beed65e 51246 libs optional libglapi-mesa_10.1.0~rc2-1_amd64.deb
 7d4414d0ed0d627ac0160ec2b2a35047 51128 debug extra libglapi-mesa-dbg_10.1.0~rc2-1_amd64.deb
 2bfd5b2ab6cb758bc4072389e5829801 143306 libs optional libgl1-mesa-glx_10.1.0~rc2-1_amd64.deb
 61c0270384cfd0dfd17dcbe683f5e8b8 413626 debug extra libgl1-mesa-glx-dbg_10.1.0~rc2-1_amd64.deb
 e6ff18de0180e4608bed7934159a7854 5776848 libs optional libgl1-mesa-dri_10.1.0~rc2-1_amd64.deb
 7784aa43e3a744cd63c3e3a521b0201e 54031914 debug extra libgl1-mesa-dri-dbg_10.1.0~rc2-1_amd64.deb
 b067757fb2e6a940af7d2bde0c6bd6a2 35860 libdevel optional libgl1-mesa-dev_10.1.0~rc2-1_amd64.deb
 efc9c899bde2a196fae0c86bc6b3f46a 287196 libdevel optional mesa-common-dev_10.1.0~rc2-1_amd64.deb
 3bbc482ba0250ec9d78c6e7546a15dd6 1017506 libs optional libosmesa6_10.1.0~rc2-1_amd64.deb
 eb22c7b4fdd83cb04b1379b42c3eebe3 38192 libdevel optional libosmesa6-dev_10.1.0~rc2-1_amd64.deb

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

iQIcBAEBAgAGBQJTE4yzAAoJEDEBgAUJBeQMtmMP/2QNo1ZiCe/L1QYqgB2X/O34
j1YbEhVCvlWuMqTeENq9h3x7Ya1bJpV26SFjAhxBCfTtlAj0lt6d6sgBMthvidUp
StU6X+cKK9hPdmv2NR/eiYA/vgzO0OPKIc+KOwb9A270OgfKTfRr2bxvo/MtxpIH
EkR4E0U+vIOLnECszyJ9ARqPA7o2HMvzQTGifWMCpJkBgkC89GymX5v5F4xZ9LM7
ACu+btjOWM5T77nWGn6U+ljuBiB0g+oybbBAGazEFi1jQ85bZKN+k1Rht3Si4nw9
kUNZPesO91W7Wfd3eJ1xK6gGImwISELbWybb+4a/FGntSMufpLvkxsiAKTUhqk5j
ghTPngkwCOXMr4B3rQnfZNf4IettDuQzrDmSjC92f7HkcbPbwfEEMMlD1BcrCeO/
pXrBtQcQvD+gI9kTSyYe2lTCXBC1l4aff6bo9wXlkhj4kTFwxsxAOo9HmH60Vvl0
2hIuS7VZplKsePAfmMftCN3//RIlgjq9ardouKXYLiDMBmWkIOZkqjswvso+o9bF
U2AJo1SkuDK2/H2CVKjk9jNMzv3gtseipgG1WcZl8YGUYO9+9dwTxWBLgnVeMD7F
pdWUncVM5TUguiAwYAGLfXxnDIKQ7HSEXdWR521tqSLidqhmc9UY+ciFCIBPxk+i
Q0bf46o+91Qfc9oRNvo7
=O1/4
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: