Your message dated Tue, 06 Aug 2013 11:19:08 +0000 with message-id <[email protected]> and subject line Bug#679885: fixed in gambas3 3.1.1-2.2 has caused the Debian Bug report #679885, regarding gambas3: Port to libpoppler25 API 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.) -- 679885: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679885 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: gambas3 Version: 3.1.1-2 Severity: normal Tags: patch User: [email protected] Usertags: origin-ubuntu quantal ubuntu-patch Dear Maintainer, We are using this patch in Ubuntu to handle the changes in libpoppler's API version 19 to version 25/26. Please consider for Debian. * Track changes to libpoppler25 API. Thanks for considering the patch. -apw -- System Information: Debian Release: wheezy/sid APT prefers precise-updates APT policy: (500, 'precise-updates'), (500, 'precise-security'), (500, 'precise-proposed'), (500, 'precise'), (100, 'precise-backports') Architecture: amd64 (x86_64) Kernel: Linux 3.2.0-26-generic (SMP w/2 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dashdiff -Nru gambas3-3.1.1/debian/patches/series gambas3-3.1.1/debian/patches/series --- gambas3-3.1.1/debian/patches/series 2012-05-24 12:00:02.000000000 +0100 +++ gambas3-3.1.1/debian/patches/series 2012-06-20 10:49:18.000000000 +0100 @@ -1,2 +1,3 @@ detect_browser_debian dont_compile_examples +track_libpoppler25_api diff -Nru gambas3-3.1.1/debian/patches/track_libpoppler25_api gambas3-3.1.1/debian/patches/track_libpoppler25_api --- gambas3-3.1.1/debian/patches/track_libpoppler25_api 1970-01-01 01:00:00.000000000 +0100 +++ gambas3-3.1.1/debian/patches/track_libpoppler25_api 2012-06-20 13:09:05.000000000 +0100 @@ -0,0 +1,136 @@ +Description: track changes to libpoppler25 API + Track changes to libpoppler25 API: + . + startDoc now takes a PDFDoc rather than its XRef. + displaySlice no longer takes a Catalog argument. + TextOutputDev now takes a fixedPitch argument (0 for previous behavior). + createGfx no longer takes a Catalog nor (unused) annotation + callback descriminator. + getAnnots no longer takes a Catalog argument. + . + Also adds configure support for poppler version 20 (API version 25) +Author: Andy Whitcroft <[email protected]> +Last-Update: 2012-06-20 +Index: gambas3-3.1.1/gb.pdf/src/CPdfDocument.cpp +=================================================================== +--- gambas3-3.1.1.orig/gb.pdf/src/CPdfDocument.cpp 2012-06-20 12:13:11.670036741 +0100 ++++ gambas3-3.1.1/gb.pdf/src/CPdfDocument.cpp 2012-06-20 12:54:39.618373811 +0100 +@@ -450,7 +450,13 @@ + white[0] = 0xFF; white[1] = 0xFF; white[2] = 0xFF; + THIS->dev=new SplashOutputDev(splashModeRGB8, 3, gFalse, white); + +- THIS->dev->startDoc(THIS->doc->getXRef ()); ++ THIS->dev->startDoc( ++#ifdef POPPLER_VERSION_0_20 ++ THIS->doc ++#else ++ THIS->doc->getXref () ++#endif ++ ); + + outline=THIS->doc->getOutline(); + if (outline) THIS->index=outline->getItems(); +@@ -880,8 +886,11 @@ + gFalse, + gTrue, + x,y,w,h, +- gFalse, +- THIS->doc->getCatalog ()); ++ gFalse ++#ifndef POPPLER_VERSION_0_20 ++ , THIS->doc->getCatalog () ++#endif ++ ); + + map=THIS->dev->getBitmap(); + +@@ -940,8 +949,20 @@ + w = VARGOPT(W, (int32_t)THIS->page->getMediaWidth()); + h = VARGOPT(H, (int32_t)THIS->page->getMediaHeight()); + +- dev = new TextOutputDev (NULL, gTrue, gFalse, gFalse); +- gfx = THIS->page->createGfx(dev,72.0,72.0,0,gFalse,gTrue,-1, -1, -1, -1, gFalse,THIS->doc->getCatalog (),NULL, NULL, NULL, NULL); ++ dev = new TextOutputDev (NULL, gTrue, ++#ifdef POPPLER_VERSION_0_20 ++ 0, ++#endif ++ gFalse, gFalse); ++ gfx = THIS->page->createGfx(dev,72.0,72.0,0,gFalse,gTrue,-1, -1, -1, -1, gFalse ++#ifndef POPPLER_VERSION_0_20 ++ , THIS->doc->getCatalog () ++#endif ++ , NULL, NULL ++#ifndef POPPLER_VERSION_0_20 ++ , NULL, NULL ++#endif ++ ); + + THIS->page->display(gfx); + dev->endPage(); +@@ -970,7 +991,9 @@ + + void aux_fill_links(void *_object) + { +- #if POPPLER_VERSION_0_17 ++ #if POPPLER_VERSION_0_20 ++ THIS->links = new Links (THIS->page->getAnnots ()); ++ #elif POPPLER_VERSION_0_17 + THIS->links = new Links (THIS->page->getAnnots (THIS->doc->getCatalog())); + #else + Object obj; +@@ -1152,13 +1175,25 @@ + + if (!MISSING(Sensitive)) sensitive=VARG(Sensitive); + +- textdev = new TextOutputDev (NULL, true, false, false); +- THIS->page->display (textdev, 72, 72, 0, false, false, false, THIS->doc->getCatalog()); ++ textdev = new TextOutputDev (NULL, true, ++#ifdef POPPLER_VERSION_0_20 ++ 0, ++#endif ++ false, false); ++ THIS->page->display (textdev, 72, 72, 0, false, false, false ++#ifndef POPPLER_VERSION_0_20 ++ , THIS->doc->getCatalog() ++#endif ++ ); + + if (THIS->Found) { GB.FreeArray(POINTER(&THIS->Found)); THIS->Found=NULL; } + + count = 0; +- while (textdev->findText (block,nlen,gFalse,gTrue,gTrue,gFalse,sensitive,gFalse,&x0,&y0,&x1,&y1)) ++ while (textdev->findText (block,nlen,gFalse,gTrue,gTrue,gFalse,sensitive,gFalse, ++#ifdef POPPLER_VERSION_0_20 ++ gFalse, ++#endif ++ &x0,&y0,&x1,&y1)) + { + if (!THIS->Found) + GB.NewArray(POINTER(&THIS->Found),sizeof(CPDFFIND),1); +Index: gambas3-3.1.1/gb.pdf/configure.ac +=================================================================== +--- gambas3-3.1.1.orig/gb.pdf/configure.ac 2012-06-20 12:13:11.654036663 +0100 ++++ gambas3-3.1.1/gb.pdf/configure.ac 2012-06-20 12:13:15.138053936 +0100 +@@ -24,6 +24,8 @@ + AC_DEFINE_UNQUOTED(POPPLER_VERSION_0_11_3, $((1-$?)), Poppler version >= 0.11.3) + pkg-config --atleast-version=0.17.0 poppler + AC_DEFINE_UNQUOTED(POPPLER_VERSION_0_17, $((1-$?)), Poppler version >= 0.17) ++ pkg-config --atleast-version=0.20.0 poppler ++ AC_DEFINE_UNQUOTED(POPPLER_VERSION_0_20, $((1-$?)), Poppler version >= 0.20) + fi + + AC_OUTPUT( \ +Index: gambas3-3.1.1/gb.pdf/config.h.in +=================================================================== +--- gambas3-3.1.1.orig/gb.pdf/config.h.in 2012-06-20 12:13:11.642036604 +0100 ++++ gambas3-3.1.1/gb.pdf/config.h.in 2012-06-20 12:13:15.138053936 +0100 +@@ -147,6 +147,9 @@ + /* Poppler version >= 0.11.3 */ + #undef POPPLER_VERSION_0_11_3 + ++/* Poppler version >= 0.20 */ ++#undef POPPLER_VERSION_0_20 ++ + /* Poppler version >= 0.17 */ + #undef POPPLER_VERSION_0_17 +
--- End Message ---
--- Begin Message ---Source: gambas3 Source-Version: 3.1.1-2.2 We believe that the bug you reported is fixed in the latest version of gambas3, 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. Pino Toscano <[email protected]> (supplier of updated gambas3 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: SHA1 Format: 1.8 Date: Tue, 23 Jul 2013 11:32:16 +0200 Source: gambas3 Binary: gambas3 gambas3-dev gambas3-gb-cairo gambas3-gb-dbus gambas3-gb-form-stock gambas3-examples gambas3-gb-chart gambas3-gb-compress gambas3-gb-compress-bzlib2 gambas3-gb-compress-zlib gambas3-gb-crypt gambas3-gb-db gambas3-gb-db-form gambas3-gb-db-mysql gambas3-gb-db-odbc gambas3-gb-db-postgresql gambas3-gb-db-sqlite2 gambas3-gb-db-sqlite3 gambas3-gb-desktop gambas3-gb-form gambas3-gb-form-dialog gambas3-gb-form-mdi gambas3-gb-gtk gambas3-gb-gui gambas3-gb-pdf gambas3-gb-image gambas3-gb-image-io gambas3-gb-image-imlib gambas3-gb-image-effect gambas3-gb-net gambas3-gb-net-curl gambas3-gb-net-smtp gambas3-gb-opengl gambas3-gb-opengl-glsl gambas3-gb-opengl-glu gambas3-gb-pcre gambas3-gb-qt4 gambas3-gb-qt4-ext gambas3-gb-qt4-webkit gambas3-gb-qt4-opengl gambas3-gb-report gambas3-gb-sdl gambas3-gb-sdl-sound gambas3-gb-settings gambas3-gb-v4l gambas3-gb-vb gambas3-gb-web gambas3-gb-xml gambas3-gb-xml-rpc gambas3-gb-xml-xslt gambas3-ide gambas3-runtime gambas3-script gambas3-gb-option gambas3-gb-eval-highlight gambas3-gb-signal gambas3-gb-mysql Architecture: source all amd64 Version: 3.1.1-2.2 Distribution: unstable Urgency: low Maintainer: Gambas Debian Maintainers <[email protected]> Changed-By: Pino Toscano <[email protected]> Description: gambas3 - Complete visual development environment for Gambas gambas3-dev - Gambas compilation tools gambas3-examples - Gambas examples gambas3-gb-cairo - Gambas bindings for cairo gambas3-gb-chart - Gambas charting component gambas3-gb-compress - Gambas compression component gambas3-gb-compress-bzlib2 - Gambas bzlib2 component gambas3-gb-compress-zlib - Gambas zlib compression component gambas3-gb-crypt - Gambas crypt encription component gambas3-gb-db - Gambas database access common libraries gambas3-gb-db-form - Gambas database bound controls gambas3-gb-db-mysql - MySQL driver for the Gambas database component gambas3-gb-db-odbc - ODBC driver for the Gambas database component gambas3-gb-db-postgresql - PostgreSQL driver for the Gambas database component gambas3-gb-db-sqlite2 - Gambas sqlite2 driver database component gambas3-gb-db-sqlite3 - Gambas sqlite3 driver database component gambas3-gb-dbus - Gambas bindings for DBUS gambas3-gb-desktop - Gambas Portland project compatibility component gambas3-gb-eval-highlight - Gambas syntax highlighting component gambas3-gb-form - Gambas native form component gambas3-gb-form-dialog - Gambas native mdi form component gambas3-gb-form-mdi - Gambas native mdi form component gambas3-gb-form-stock - Gambas form stock icons gambas3-gb-gtk - Gambas gtk component gambas3-gb-gui - Gambas graphical toolkit selector component gambas3-gb-image - Gambas image effects component gambas3-gb-image-effect - Gambas image effects component: effects gambas3-gb-image-imlib - Gambas image effects component: IMLIB bindings gambas3-gb-image-io - Gambas image effects component: I/O gambas3-gb-mysql - Gambas MySQL component gambas3-gb-net - Gambas networking component gambas3-gb-net-curl - Gambas advanced networking component gambas3-gb-net-smtp - Gambas component to use smtp protocol gambas3-gb-opengl - OpenGL component for Gambas gambas3-gb-opengl-glsl - OpenGL component for Gambas: GL Shading Language subcomponent gambas3-gb-opengl-glu - Gambas opengl-glu component gambas3-gb-option - Gambas option component gambas3-gb-pcre - Gambas regexp component gambas3-gb-pdf - Gambas pdf component gambas3-gb-qt4 - Gambas Qt GUI component gambas3-gb-qt4-ext - Gambas extended Qt GUI component gambas3-gb-qt4-opengl - OpenGL with QT toolkit Gambas component gambas3-gb-qt4-webkit - Gambas WebKit component gambas3-gb-report - Gambas report component gambas3-gb-sdl - Gambas SDL component gambas3-gb-sdl-sound - Gambas SDL component gambas3-gb-settings - Gambas utilities class gambas3-gb-signal - Gambas OS signal library gambas3-gb-v4l - Gambas video for Linux component gambas3-gb-vb - Gambas to Visual Basic(tm) compatibility component gambas3-gb-web - Gambas CGI for web applications component gambas3-gb-xml - Gambas XML component gambas3-gb-xml-rpc - Gambas RPC component gambas3-gb-xml-xslt - Gambas XSLT component gambas3-ide - Visual development environment for the Gambas programming languag gambas3-runtime - Gambas runtime interpreter gambas3-script - Gambas scripter Closes: 679885 Changes: gambas3 (3.1.1-2.2) unstable; urgency=low . * Non-maintainer upload. * Backport upstream r4730, r4731, and r4732 to fix compatibility with Poppler >= 0.20.x (Closes: #679885) Checksums-Sha1: d24ac8b4d3860f92cb77609bb1fe98f72b5cefc9 5354 gambas3_3.1.1-2.2.dsc 216503a0b9fdb81f6d2b3b3ae8c1807afbf5d432 15555 gambas3_3.1.1-2.2.debian.tar.gz 0cf37448294c7c2afb08a322b2b5fd0d4030b602 4476 gambas3_3.1.1-2.2_all.deb 15de4fab94af6b1e25150a8fa5b3216d77c50b96 849036 gambas3-gb-form-stock_3.1.1-2.2_all.deb b1185bdc21c39f137381db6eb291a2ed2105bade 3019536 gambas3-examples_3.1.1-2.2_all.deb 4be77068df4f4e7c0f723ac6b32f4af39c310b7f 40522 gambas3-gb-chart_3.1.1-2.2_all.deb 958ce5e264a9796ca1e0f02eae9bd9d16f832372 55854 gambas3-gb-db-form_3.1.1-2.2_all.deb 74350faa76e094a6c969fc72dfeea2b5dff3eb7d 272970 gambas3-gb-form_3.1.1-2.2_all.deb c68cecdde569d6b83aaeb122654fb83d07a0cea8 10014 gambas3-gb-form-dialog_3.1.1-2.2_all.deb d567c84b7e925136c37c23f1abde5a66a94bd6f2 143136 gambas3-gb-form-mdi_3.1.1-2.2_all.deb ee0af1a47f6b844536191308213738e22d80dcf0 86692 gambas3-gb-report_3.1.1-2.2_all.deb a1c5e52b767e690208c78320c9a8180ccd9dce08 10630 gambas3-gb-settings_3.1.1-2.2_all.deb 9bd81f9ba11138c79dfd475a8ccd2322f3f23759 19044 gambas3-gb-web_3.1.1-2.2_all.deb 6948eda80467e636ed7a28b76a3822c9bf122b9a 1565448 gambas3-ide_3.1.1-2.2_all.deb fc084c3a947d15cfec158375eef122e5a169841a 18360 gambas3-gb-eval-highlight_3.1.1-2.2_all.deb c988cdc169dd24011368a5428f094f92e3a72d57 105702 gambas3-dev_3.1.1-2.2_amd64.deb b63a59b259edb4570f3ffd0693217263488e1a74 20582 gambas3-gb-cairo_3.1.1-2.2_amd64.deb f91bbf507a33246e34fdafad1c671135ac67ae49 30324 gambas3-gb-dbus_3.1.1-2.2_amd64.deb ca1ee62cd70aba768b293ce35105ac8c960fe4ae 8416 gambas3-gb-compress_3.1.1-2.2_amd64.deb aba8714f13672dbb47d0e6bd8355c9025c4c5d1c 8412 gambas3-gb-compress-bzlib2_3.1.1-2.2_amd64.deb 2a7eee1c24c16c9bfec40f0f9f0f7191ebaaa439 8024 gambas3-gb-compress-zlib_3.1.1-2.2_amd64.deb a7d416e3df80401c0062131c0b68759432b4865d 7326 gambas3-gb-crypt_3.1.1-2.2_amd64.deb 4eee803c127e1db2ac7f0c89121d34756bd5fa7a 28044 gambas3-gb-db_3.1.1-2.2_amd64.deb e806612cae2f6838a35127d784929099528dbd96 16256 gambas3-gb-db-mysql_3.1.1-2.2_amd64.deb a2344d20b4ab2c379206b30e35456065d5527fa9 14460 gambas3-gb-db-odbc_3.1.1-2.2_amd64.deb 337d7bbaa01d3108a0555b07695181d32f24e0cd 16262 gambas3-gb-db-postgresql_3.1.1-2.2_amd64.deb d2983af1d93b4700d31cc3dc8670e3dc983a39bd 35062 gambas3-gb-db-sqlite2_3.1.1-2.2_amd64.deb 21bb3de6bab2b36ffd7888a632622c715a6d1b1f 36578 gambas3-gb-db-sqlite3_3.1.1-2.2_amd64.deb a209fa1ecfec7650946092d4020603966b6391ad 75370 gambas3-gb-desktop_3.1.1-2.2_amd64.deb 49a0316242b248dccec37e5b1ee685390cc02d34 232078 gambas3-gb-gtk_3.1.1-2.2_amd64.deb 4305c20cb9483015a72dbb3e91abd20d9c4f6c57 14442 gambas3-gb-gui_3.1.1-2.2_amd64.deb 7e8c4b86c4610ed0c1f5a826692e45f55b35ee77 17520 gambas3-gb-pdf_3.1.1-2.2_amd64.deb adde7fda991cfef08ca6da8bbeeecf5bc874e993 27174 gambas3-gb-image_3.1.1-2.2_amd64.deb 0bfb1b926645bedfe420b1dea3bb359caf0fcd25 7838 gambas3-gb-image-io_3.1.1-2.2_amd64.deb 99f57c9aa6bcfa72585ad044194bb151e9833028 8074 gambas3-gb-image-imlib_3.1.1-2.2_amd64.deb cfd9726aa3203eee865a366b0ea48d73a3353e26 42114 gambas3-gb-image-effect_3.1.1-2.2_amd64.deb 30d344fb7ecc3894165da57f36216d415c9b708e 25756 gambas3-gb-net_3.1.1-2.2_amd64.deb e2038b82a12e67e57723d4edcbedfaf1110d03fc 18098 gambas3-gb-net-curl_3.1.1-2.2_amd64.deb 265021fef37d733973d1c35fbec4dd5d469316c5 19774 gambas3-gb-net-smtp_3.1.1-2.2_amd64.deb d56d9a2f097b1b4d141b265af10bab38139dec89 40822 gambas3-gb-opengl_3.1.1-2.2_amd64.deb e83debe3cc52929b6efeb064996aa2530e6d6e45 11964 gambas3-gb-opengl-glsl_3.1.1-2.2_amd64.deb 26aa31a5b16eef237deef8503223d22d35388dcd 11040 gambas3-gb-opengl-glu_3.1.1-2.2_amd64.deb 8391be5def59093baf349d10af7a3bfb779e26c7 8356 gambas3-gb-pcre_3.1.1-2.2_amd64.deb 987cd23b0539d36d58f2eb8678c215c563053db7 241390 gambas3-gb-qt4_3.1.1-2.2_amd64.deb af2f1e0fdf5d790936aa35c1549a700123287fe8 64086 gambas3-gb-qt4-ext_3.1.1-2.2_amd64.deb 155bed7f06f6d0fc75c65c4596f0fcb4b3e28f4e 31608 gambas3-gb-qt4-webkit_3.1.1-2.2_amd64.deb a6711b5b4ba0ec8fcd10872a8928887381d839b6 10268 gambas3-gb-qt4-opengl_3.1.1-2.2_amd64.deb d8f19febabe14f65edc737024d373c033cea5a68 34748 gambas3-gb-sdl_3.1.1-2.2_amd64.deb 2fb84cbf92eef432a94014b7dc0616a568ed66e4 12932 gambas3-gb-sdl-sound_3.1.1-2.2_amd64.deb 1f1e0f0800815b025aa1bc3ea5569b201d81b90a 19520 gambas3-gb-v4l_3.1.1-2.2_amd64.deb 4e7b6a7a97964a2501c49df87d88801a7882d85e 8898 gambas3-gb-vb_3.1.1-2.2_amd64.deb 407cc93f8d10889fc358a8ee71deefc5f973ce34 16416 gambas3-gb-xml_3.1.1-2.2_amd64.deb 4b95c2ab990118474a61fd0e7f4e18f56fae3c88 20290 gambas3-gb-xml-rpc_3.1.1-2.2_amd64.deb c07bf6d68275ba2455d522c1c7a90b29d7564db7 6562 gambas3-gb-xml-xslt_3.1.1-2.2_amd64.deb 72b9b4f5e2a781c4b2425398f73b39f33947260e 258802 gambas3-runtime_3.1.1-2.2_amd64.deb 33f38d5054fc7322d15f4251a582438ad1867572 24974 gambas3-script_3.1.1-2.2_amd64.deb 5d84398b76e0609bc28545fb37c54db7798c32ca 8230 gambas3-gb-option_3.1.1-2.2_amd64.deb 5df7faf0dd2e786807ef3847ae4289222ce1dbd7 8342 gambas3-gb-signal_3.1.1-2.2_amd64.deb 757dc938b444e5fe9d2f8ad5cc024b2bf7e078f0 40768 gambas3-gb-mysql_3.1.1-2.2_amd64.deb Checksums-Sha256: 2f3bcb44fb58a4c84ffcb85c797412b0c355be0dce1a2ffb5132253148fe8e88 5354 gambas3_3.1.1-2.2.dsc fbb1867fd9de8ccd687a5c6d12dc86ff6c557e840b29eec8719323d699b54ef0 15555 gambas3_3.1.1-2.2.debian.tar.gz 994594e1da175582e651399e358167efe63e33906501e50fa4eec2a4948fa98f 4476 gambas3_3.1.1-2.2_all.deb 60d8707813f7f6fca4e622a033726dc9a51bac9089916e9ff6bd03b23f31947e 849036 gambas3-gb-form-stock_3.1.1-2.2_all.deb 12bf4aa8dc3050a6485a7a30b7c68d44e92b59dd23694306d0b0656e95cbdf31 3019536 gambas3-examples_3.1.1-2.2_all.deb 10896475967e92489e82f2bddc99df8bbe6fb302940837bde91d2933786e7e49 40522 gambas3-gb-chart_3.1.1-2.2_all.deb 7604b91f8dd1042732b4acdb26587707220d2e6fbe04fe81392734c0418925aa 55854 gambas3-gb-db-form_3.1.1-2.2_all.deb f9c14e9df7f206c52380ab7b7ed09c162401a37e6638db1187234564a78f6c48 272970 gambas3-gb-form_3.1.1-2.2_all.deb 43eab69ab3206093f39abff610f172153e435f803e900eb2e70fd4dc6278521a 10014 gambas3-gb-form-dialog_3.1.1-2.2_all.deb 47df1c4dad0ecc47a22b14399271191919298e41962f43aeb176e9c24e87e871 143136 gambas3-gb-form-mdi_3.1.1-2.2_all.deb d37e247243af9574698a8d4c464858dd0e5615df859a49ed44f6c05e045d2298 86692 gambas3-gb-report_3.1.1-2.2_all.deb db0bd32255b9ae8ef9c9d3139ce6677c9a2d52c80069ca1b2fecffa2b6d62ea2 10630 gambas3-gb-settings_3.1.1-2.2_all.deb 46cd6c6a141a27a6bc321aacbe1c6f6494781bfd8ef956083128baa8533973b9 19044 gambas3-gb-web_3.1.1-2.2_all.deb fe7802abfc2c56f2d8f1d294cd3c6533a53f5729d6536179b9faaccf5236dc97 1565448 gambas3-ide_3.1.1-2.2_all.deb f1731e0785ebcc25bb9d43b815ca45600b3f4cbf63444721e7781294e83684fc 18360 gambas3-gb-eval-highlight_3.1.1-2.2_all.deb 327a7a73bc7a54a2d04e8be42adeaf1a6a8787cfb27389640d157f6c58a16574 105702 gambas3-dev_3.1.1-2.2_amd64.deb cb220bce3055103083b9e997f1b6a92953420b4750cc5353c53240715c983829 20582 gambas3-gb-cairo_3.1.1-2.2_amd64.deb fce1921c8a6e77b966a95b216ef90b5e7236075fb3ecd61d90d9c9bfe5fef5a3 30324 gambas3-gb-dbus_3.1.1-2.2_amd64.deb a88b834dcadef431183fc9ce289c5851664338ae9885dbbb84f279c9f1b6c6c1 8416 gambas3-gb-compress_3.1.1-2.2_amd64.deb d6161325662572fc8d1ea687281f60361d6ed7b88d13b0a11d6e02fa810f9fa3 8412 gambas3-gb-compress-bzlib2_3.1.1-2.2_amd64.deb 2cc936765ebaf3039ce39d4f7cf78a1863a5c635e851e82c43351a89fcfa6bec 8024 gambas3-gb-compress-zlib_3.1.1-2.2_amd64.deb 42e4a635fb8afbf5e27c06f1e11d1a721fc6323a154dc2da5045d23e329be53d 7326 gambas3-gb-crypt_3.1.1-2.2_amd64.deb e9e144ae367867db2dd71ba301d0095279abdc76bad6c69986d8171fa5ed482b 28044 gambas3-gb-db_3.1.1-2.2_amd64.deb cdc3c5867f551bcb3994dbcf5f68bd03437924c94d2495a0fda524b8444e958f 16256 gambas3-gb-db-mysql_3.1.1-2.2_amd64.deb 2ce0c1d039a5c697ddb24412962ad1f8843572af25c8c09e6b252f79d8d57d4f 14460 gambas3-gb-db-odbc_3.1.1-2.2_amd64.deb e4b9524c9f7dd61ef61f0fdddc2cf085835faa48e73c4fd6b2d98b003b9c378e 16262 gambas3-gb-db-postgresql_3.1.1-2.2_amd64.deb 5213d62d5de9f66ce796743a728c96404915855cafce6b690be22c4c4c924f06 35062 gambas3-gb-db-sqlite2_3.1.1-2.2_amd64.deb 4aacdd78a0593fa08f23f2b1779dcc905ab85d55a8cc1b1d8bde9cd8512c3dca 36578 gambas3-gb-db-sqlite3_3.1.1-2.2_amd64.deb 377fdc58a8243b7e8b928f10a80459381814c34ce678c835e3edb314464b36fd 75370 gambas3-gb-desktop_3.1.1-2.2_amd64.deb 07ac18550e2eae0315ffd3299fb2ee8392e0a2ccf08d24e187b4494ad24d7ee6 232078 gambas3-gb-gtk_3.1.1-2.2_amd64.deb a93ffbd8184dafffe1b557fc6114ad5c86282354e81ff17eab568c32a0dff641 14442 gambas3-gb-gui_3.1.1-2.2_amd64.deb 0028e5272d5470c264c1471f5b0d9d08eec93d9dbbb717bfe33af9b082e23127 17520 gambas3-gb-pdf_3.1.1-2.2_amd64.deb 10b1710492f9904eb6cd506e186d04be5af249c72f6693cf7eb0bad8d9f3e41e 27174 gambas3-gb-image_3.1.1-2.2_amd64.deb 38108db4c77339cf983ba63395eb01951ef5909d95bc1ee4030d9a40b15d018c 7838 gambas3-gb-image-io_3.1.1-2.2_amd64.deb a656bcbf1a736d554dcbb65d87f39839c5d084fad1bf9f9ff998cb52426d45da 8074 gambas3-gb-image-imlib_3.1.1-2.2_amd64.deb ea604d80a2516d41256b20187ef97eb0bb0367f3b06bf0a9787a47724404a82e 42114 gambas3-gb-image-effect_3.1.1-2.2_amd64.deb 2fb24c2d8a7a50a08f77fe2cf51d5e11ca4eb4e03079edff9a30cd45d3f0ef6e 25756 gambas3-gb-net_3.1.1-2.2_amd64.deb d7887fb863712ed560fad44b4cbd9a704b97fd010991aebf2f0519d1f2c48ad7 18098 gambas3-gb-net-curl_3.1.1-2.2_amd64.deb 10134f1661a5b9c77b9d7e8181acae25233b4fd5a23fb69558ff056b8a8533eb 19774 gambas3-gb-net-smtp_3.1.1-2.2_amd64.deb b89dcda6abd300d86c606e6fdb5ebc3cae142bc3e990982db76a63be7e36b6b8 40822 gambas3-gb-opengl_3.1.1-2.2_amd64.deb 0cca7a84cf527fe5e97efd126f6a5864f1dc802c37ec7543ef6f58037be162d2 11964 gambas3-gb-opengl-glsl_3.1.1-2.2_amd64.deb 52a7d2e56759f4dbbd27270990abcf3e64471b16b010b64551cd961709f72e3f 11040 gambas3-gb-opengl-glu_3.1.1-2.2_amd64.deb cb689e6b03f7b027b479ea46cc06eedb2c5e47a84360bd2c36f72c631d87f646 8356 gambas3-gb-pcre_3.1.1-2.2_amd64.deb c062304de8ecdda4d1d78c0c3a256bebd63c01f0ab00bf223e28c79ed1f496e2 241390 gambas3-gb-qt4_3.1.1-2.2_amd64.deb c28188ab9ed882f69d655a14f9993be96b14bd4e1ecfe8675687cdcfe52e0b3e 64086 gambas3-gb-qt4-ext_3.1.1-2.2_amd64.deb a32847dd1e54f9ee13d60cdb158998eb283c98e3d7f5383096dfa11c47349679 31608 gambas3-gb-qt4-webkit_3.1.1-2.2_amd64.deb 681be2c36c14ac040fdc3dcc78ec7fb7b1819dd4a134af7e8322a82e40fa7519 10268 gambas3-gb-qt4-opengl_3.1.1-2.2_amd64.deb 38a7a95c7680c8d339f74201022cda1266aef62305d9ee13e83b2e5707ad3dc7 34748 gambas3-gb-sdl_3.1.1-2.2_amd64.deb c442d852a7f1787a671b2059c1cd00caa2dce961656842a1b2d911a071c3fdd1 12932 gambas3-gb-sdl-sound_3.1.1-2.2_amd64.deb 0360e78efac20753e52f13debd7cbeefc8a2c613d2de62dce04de8657a7356a1 19520 gambas3-gb-v4l_3.1.1-2.2_amd64.deb 90e60bf7ccf27c95bca6fe74c364ed26da255c28ce4924749ad2d8be1795099b 8898 gambas3-gb-vb_3.1.1-2.2_amd64.deb 4af7de84ddd6c4db0dadbd1df25ab242d3345c3cb37e2707a2fb05f665865c53 16416 gambas3-gb-xml_3.1.1-2.2_amd64.deb dc42dfb3775e3a6d07276d18e1c3e8d3d9f6aca3740fd26861a5bca40421b4f5 20290 gambas3-gb-xml-rpc_3.1.1-2.2_amd64.deb dfad037337e47efb9e50cd43d04deac13f66490ee7f6d2e6709c6ce4947fdae2 6562 gambas3-gb-xml-xslt_3.1.1-2.2_amd64.deb c180cdc9a7dbb7403b7fb996f20ce16d1836490722a58981863362a0b69e4833 258802 gambas3-runtime_3.1.1-2.2_amd64.deb 0c2ece7c73915f017e96364b11d1f98a8ff5fd8eb174ce7e575a2afc09030d99 24974 gambas3-script_3.1.1-2.2_amd64.deb 69b513cb1f19a3348325d6d8f9e290295d8a186178b77d8e2c5bc9cf2b05a3da 8230 gambas3-gb-option_3.1.1-2.2_amd64.deb 43e50463000f51ff53d084117467d2bbec6de6040a004fb384736c590fed4e8b 8342 gambas3-gb-signal_3.1.1-2.2_amd64.deb 86e2212a0420faca4d64f1c91545f73a337c5c00f6f5ac8cd89c97c9ec7f0ac6 40768 gambas3-gb-mysql_3.1.1-2.2_amd64.deb Files: c884d361a4ec25538791f70f91c10d80 5354 devel optional gambas3_3.1.1-2.2.dsc f4a1155224f2f856c73c3f71deeeb24d 15555 devel optional gambas3_3.1.1-2.2.debian.tar.gz 0da4ae897b304d621a4b2566022bc55c 4476 devel optional gambas3_3.1.1-2.2_all.deb 1bbcc9e95f4f7f0f39efb50fe35d6bfe 849036 devel optional gambas3-gb-form-stock_3.1.1-2.2_all.deb 0cf9b90b640b049d4a210d764e70e451 3019536 devel optional gambas3-examples_3.1.1-2.2_all.deb dee683f5ea06f611a27d22b34f4bff1b 40522 libdevel optional gambas3-gb-chart_3.1.1-2.2_all.deb f1873b9e27e86405019faab4383a1b9e 55854 libdevel optional gambas3-gb-db-form_3.1.1-2.2_all.deb f4bbf30afb7eb9f002ff31f798cef362 272970 libdevel optional gambas3-gb-form_3.1.1-2.2_all.deb 29003715e3568c46b3798af80649b0b3 10014 libdevel optional gambas3-gb-form-dialog_3.1.1-2.2_all.deb 63240c4b22eb09fcb6a1947eba1b3553 143136 libdevel optional gambas3-gb-form-mdi_3.1.1-2.2_all.deb 2f845df8c4c441d34f3fdd7f0340eff3 86692 libdevel optional gambas3-gb-report_3.1.1-2.2_all.deb 8557a294ab7553978c229b3a09b9d119 10630 libdevel optional gambas3-gb-settings_3.1.1-2.2_all.deb e7f10be600e6388894754717cd2a8fc0 19044 libdevel optional gambas3-gb-web_3.1.1-2.2_all.deb 8a8535826532ea1273719c992b70bd73 1565448 devel optional gambas3-ide_3.1.1-2.2_all.deb eb1c192e81ba8bf0f85db29c01fc95bd 18360 libdevel optional gambas3-gb-eval-highlight_3.1.1-2.2_all.deb 2c1ed59dd66ea3f12be34b7a11beb7e7 105702 devel optional gambas3-dev_3.1.1-2.2_amd64.deb 7a5dcc33463d8ad132e3ec33ff0e38a9 20582 devel optional gambas3-gb-cairo_3.1.1-2.2_amd64.deb 5b2167940c1a2ec4da614d0e5dcc541a 30324 devel optional gambas3-gb-dbus_3.1.1-2.2_amd64.deb 336d583f93711f26517a90e7ee96aebc 8416 libdevel optional gambas3-gb-compress_3.1.1-2.2_amd64.deb 463f3692c47036706c6fa70df0e4d5ee 8412 libdevel optional gambas3-gb-compress-bzlib2_3.1.1-2.2_amd64.deb 73435ea52a7d39fba7351e1845321ee3 8024 libdevel optional gambas3-gb-compress-zlib_3.1.1-2.2_amd64.deb 570fa1c905fcfa950d2f01d68dec1ceb 7326 libdevel optional gambas3-gb-crypt_3.1.1-2.2_amd64.deb a9dc7cfa6d6882f5cde1f47aed3e71bf 28044 libdevel optional gambas3-gb-db_3.1.1-2.2_amd64.deb c0e6cf1d7fcdefd169647ef5f0b4a208 16256 libdevel optional gambas3-gb-db-mysql_3.1.1-2.2_amd64.deb ba9d7af5f255a3da3d4b13cf4608d97d 14460 libdevel optional gambas3-gb-db-odbc_3.1.1-2.2_amd64.deb e4a6616d788c38ccc33bce1da8be14e6 16262 libdevel optional gambas3-gb-db-postgresql_3.1.1-2.2_amd64.deb 5d960406fa9b1d79a376d473c978050e 35062 libdevel optional gambas3-gb-db-sqlite2_3.1.1-2.2_amd64.deb 7481e4f67174adf57be24ded84f99fe3 36578 libdevel optional gambas3-gb-db-sqlite3_3.1.1-2.2_amd64.deb 22e7c2cfd1d41fb1341a36fd09613277 75370 libdevel optional gambas3-gb-desktop_3.1.1-2.2_amd64.deb efc230d819621d5598cc742ff460ecf0 232078 libdevel optional gambas3-gb-gtk_3.1.1-2.2_amd64.deb b6dc112c143bff4bb33ac0d73a3146e3 14442 libdevel optional gambas3-gb-gui_3.1.1-2.2_amd64.deb 067bd6222e0dd1f164fd7c0a5c2552cf 17520 libdevel optional gambas3-gb-pdf_3.1.1-2.2_amd64.deb 8c3bd7b152ad0d7102b8b45b689affe5 27174 libdevel optional gambas3-gb-image_3.1.1-2.2_amd64.deb 71ac3b9ce5cd455ed3f77fda37f02ee9 7838 libdevel optional gambas3-gb-image-io_3.1.1-2.2_amd64.deb 42fe212010194fbfd4067473df23c5f1 8074 libdevel optional gambas3-gb-image-imlib_3.1.1-2.2_amd64.deb cac9b0bf6fa69e63a7d42c24a076c908 42114 libdevel optional gambas3-gb-image-effect_3.1.1-2.2_amd64.deb 6efa79bd2ff1d2b6b06c47e77f63bb3d 25756 libdevel optional gambas3-gb-net_3.1.1-2.2_amd64.deb b7914c2ff81f576d61c5a46e65a35012 18098 libdevel optional gambas3-gb-net-curl_3.1.1-2.2_amd64.deb 4a23b7909d786adf8ca5583f1b9f5e96 19774 libdevel optional gambas3-gb-net-smtp_3.1.1-2.2_amd64.deb ca66d0531c67afe99232db5c99a3a9b7 40822 libdevel optional gambas3-gb-opengl_3.1.1-2.2_amd64.deb 5a0b572e337103a449938c46a09bb615 11964 libdevel optional gambas3-gb-opengl-glsl_3.1.1-2.2_amd64.deb 6092d607ea6ded28c44e4f57fc17c9a5 11040 libdevel optional gambas3-gb-opengl-glu_3.1.1-2.2_amd64.deb 3126c809b59eeb2a76428fd8f1cfb6a4 8356 libdevel optional gambas3-gb-pcre_3.1.1-2.2_amd64.deb 83f3e875fbef79f23dadafb3917504fd 241390 libdevel optional gambas3-gb-qt4_3.1.1-2.2_amd64.deb 110592b219746df8847fb431ccf531eb 64086 libdevel optional gambas3-gb-qt4-ext_3.1.1-2.2_amd64.deb 5933ebd3edf6c5175724cdbc29278fc4 31608 kde optional gambas3-gb-qt4-webkit_3.1.1-2.2_amd64.deb e67c7e40e70a0b05a15160664fb18a3c 10268 libdevel optional gambas3-gb-qt4-opengl_3.1.1-2.2_amd64.deb bb4969add5e59461d76e5f3b2926ebaa 34748 libdevel optional gambas3-gb-sdl_3.1.1-2.2_amd64.deb 8fea0f0a300e76b6093da41428d26805 12932 libdevel optional gambas3-gb-sdl-sound_3.1.1-2.2_amd64.deb afb54df5cf8e7def2a06d4cca7edab8d 19520 libdevel optional gambas3-gb-v4l_3.1.1-2.2_amd64.deb 1d3ed7a89019ca3b16a6be82971f6b8e 8898 libdevel optional gambas3-gb-vb_3.1.1-2.2_amd64.deb ebec35ce2f3e5b8e82f28111facc0392 16416 libdevel optional gambas3-gb-xml_3.1.1-2.2_amd64.deb f3b8149160384233bfb04721f2b43ced 20290 libdevel optional gambas3-gb-xml-rpc_3.1.1-2.2_amd64.deb 15a9dc5f7beeb15c6e8added3710e689 6562 libdevel optional gambas3-gb-xml-xslt_3.1.1-2.2_amd64.deb 3d0e23edbc366bf1e63f6984ab5837a5 258802 libdevel optional gambas3-runtime_3.1.1-2.2_amd64.deb f13b07076957e4f1af616d93abf89321 24974 libdevel optional gambas3-script_3.1.1-2.2_amd64.deb 5d0639445e71d57767a1c9ebbefb90f5 8230 libdevel optional gambas3-gb-option_3.1.1-2.2_amd64.deb 00f424963308cc5a1497eb6011e8fe3e 8342 libdevel optional gambas3-gb-signal_3.1.1-2.2_amd64.deb 3af5726b2cde1db60117a6b763cbe270 40768 libdevel optional gambas3-gb-mysql_3.1.1-2.2_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iD8DBQFR7lWnTNH2piB/L3oRAu2nAKCnhDFH9Y1mwcHDgL2THKjigWbh7gCfXRFF c0Vhli1M6nPf4SrDUi56wcc= =+z00 -----END PGP SIGNATURE-----
--- End Message ---
_______________________________________________ Pkg-gambas-devel mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-gambas-devel
