Your message dated Fri, 29 Nov 2013 10:00:22 +0000 with message-id <[email protected]> and subject line Bug#710320: fixed in gambas3 3.5.1-1 has caused the Debian Bug report #710320, regarding gambas3: kfreebsd support 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.) -- 710320: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=710320 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: gambas3 Version: 3.1.1-2 Tags: patch User: [email protected] Usertags: kfreebsd X-Debbugs-Cc: [email protected] Severity: wishlist Hi, The attached patches allow gambas3 to build on GNU/kFreeBSD (aside from bug #701393). These have been tested on kfreebsd-amd64 and result in a successful build of the full set of binary packages. I created a new 'OS_GNU' system type for this because neither OS_LINUX or OS_FREEBSD were quite suitable. This system type may be suitable for GNU/Hurd as well, but there were still other issues preventing gambas3 from building yet on hurd-i386. In order for the gb.v4l component to build, I had to add a missing Build-Depends on libv4l-dev [kfreebsd-any] (please see debian-control.patch). And I reversed the logic of two FreeBSD-specific vs. Linux-specific ifdefs for better compatibility. -- System Information: Debian Release: 7.0 APT prefers stable APT policy: (500, 'stable'), (1, 'experimental') Architecture: kfreebsd-amd64 (x86_64) Kernel: kFreeBSD 9.0-2-amd64-xenhvm Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash--- gambas3-3.1.1.orig/debian/control 2012-05-24 11:25:53.000000000 +0000 +++ gambas3-3.1.1/debian/control 2013-05-29 16:40:40.175796014 +0000 @@ -4,7 +4,7 @@ Homepage: http://gambas.sourceforge.net Maintainer: Gambas Debian Maintainers <[email protected]> Uploaders: Ian Haywood <[email protected]>, David Paleino <[email protected]>, José L. Redrejo RodrÃguez <[email protected]> -Build-Depends: debhelper (>> 7), dh-autoreconf, libpq-dev, libv4l-dev [linux-any], libcam-dev [kfreebsd-any], libmysqlclient-dev, libbz2-dev, libglew-dev, libqt4-dev, libqt4-opengl-dev, libcurl4-openssl-dev, libsdl-mixer1.2-dev, libsqlite0-dev, libxml2-dev, libxslt1-dev, kdelibs5-dev, libssl-dev, zlib1g-dev, unixodbc-dev, libsqlite3-dev, libgtk2.0-dev, libxt-dev, pkg-config, mesa-common-dev, libsdl-sound1.2-dev, libsdl-image1.2-dev, libsdl-gfx1.2-dev, libsdl-ttf2.0-dev, libpcre3-dev, libsdl1.2-dev, libjpeg-dev, libpng12-dev, libpoppler-private-dev, libimlib2-dev, librsvg2-dev, bzip2, gettext, libxtst-dev, libffi-dev, libdbus-1-dev, libgnome-keyring-dev, libgtkglext1-dev, linux-libc-dev [linux-any], libc0.1 [kfreebsd-any], libqtwebkit-dev +Build-Depends: debhelper (>> 7), dh-autoreconf, libpq-dev, libv4l-dev [linux-any], libv4l-dev [kfreebsd-any], libcam-dev [kfreebsd-any], libmysqlclient-dev, libbz2-dev, libglew-dev, libqt4-dev, libqt4-opengl-dev, libcurl4-openssl-dev, libsdl-mixer1.2-dev, libsqlite0-dev, libxml2-dev, libxslt1-dev, kdelibs5-dev, libssl-dev, zlib1g-dev, unixodbc-dev, libsqlite3-dev, libgtk2.0-dev, libxt-dev, pkg-config, mesa-common-dev, libsdl-sound1.2-dev, libsdl-image1.2-dev, libsdl-gfx1.2-dev, libsdl-ttf2.0-dev, libpcre3-dev, libsdl1.2-dev, libjpeg-dev, libpng12-dev, libpoppler-private-dev, libimlib2-dev, librsvg2-dev, bzip2, gettext, libxtst-dev, libffi-dev, libdbus-1-dev, libgnome-keyring-dev, libgtkglext1-dev, linux-libc-dev [linux-any], libc0.1 [kfreebsd-any], libqtwebkit-dev Standards-Version: 3.9.3 Package: gambas3Index: gambas3-3.1.1/acinclude.m4 =================================================================== --- gambas3-3.1.1.orig/acinclude.m4 2013-05-29 15:10:17.000000000 +0000 +++ gambas3-3.1.1/acinclude.m4 2013-05-29 15:59:18.643725997 +0000 @@ -505,6 +505,17 @@ AC_DEFINE(OS_SOLARIS, 1, [Target system is Solaris]) AC_DEFINE(SYSTEM, "Solaris", [Operating system]) ;; + *-*-k*bsd*-gnu ) + SYSTEM=GNU + AC_DEFINE(OS_GNU, 1, [Target system is of GNU family]) + AC_DEFINE(OS_BSD, 1, [Target system is of BSD family]) + AC_DEFINE(SYSTEM, "GNU/kFreeBSD", [Operating system]) + ;; + *-*-gnu* ) + SYSTEM=GNU + AC_DEFINE(OS_GNU, 1, [Target system is of GNU family]) + AC_DEFINE(SYSTEM, "GNU", [Operating system]) + ;; *) SYSTEM=UNKNOWN AC_DEFINE(SYSTEM, "unknown", [Operating system]) Index: gambas3-3.1.1/main/gbc/gbi.c =================================================================== --- gambas3-3.1.1.orig/main/gbc/gbi.c 2012-05-09 12:32:25.000000000 +0000 +++ gambas3-3.1.1/main/gbc/gbi.c 2013-05-29 15:47:50.313789067 +0000 @@ -42,7 +42,7 @@ #include <dlfcn.h> -#if defined(OS_LINUX) || defined(OS_OPENBSD) || defined(OS_FREEBSD) || defined(OS_CYGWIN) +#if defined(OS_LINUX) || defined(OS_GNU) || defined(OS_OPENBSD) || defined(OS_FREEBSD) || defined(OS_CYGWIN) #define lt_dlinit() (0) #define lt_dlhandle void * #define lt_dlopenext(_path) dlopen(_path, RTLD_LAZY) Index: gambas3-3.1.1/gb.v4l/src/CWebcam.h =================================================================== --- gambas3-3.1.1.orig/gb.v4l/src/CWebcam.h 2012-05-09 12:32:25.000000000 +0000 +++ gambas3-3.1.1/gb.v4l/src/CWebcam.h 2013-05-29 16:53:17.031802491 +0000 @@ -31,11 +31,11 @@ #include <linux/videodev2.h> #include <libv4lconvert.h> -#ifdef OS_FREEBSD - #include <linux/videodev.h> -#else +#ifdef OS_LINUX #include <linux/types.h> #include "videodev.h" +#else + #include <linux/videodev.h> #endif #include "gambas.h" Index: gambas3-3.1.1/gb.v4l/src/gv4l2.c =================================================================== --- gambas3-3.1.1.orig/gb.v4l/src/gv4l2.c 2012-05-09 12:32:25.000000000 +0000 +++ gambas3-3.1.1/gb.v4l/src/gv4l2.c 2013-05-29 16:53:54.186985498 +0000 @@ -46,10 +46,10 @@ #include "main.h" #include "CWebcam.h" -#ifdef OS_FREEBSD - #include <stdint.h> -#else +#ifdef OS_LINUX #include <asm/types.h> +#else + #include <stdint.h> #endif //
--- End Message ---
--- Begin Message ---Source: gambas3 Source-Version: 3.5.1-1 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. José L. Redrejo Rodríguez <[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, 03 Sep 2013 12:52:14 +0200 Source: gambas3 Binary: gambas3 gambas3-dev gambas3-gb-cairo gambas3-gb-clipper gambas3-gb-dbus gambas3-gb-form-stock gambas3-gb-gmp 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-gtk-opengl gambas3-gb-gui gambas3-gb-gui-opengl 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-net-pop3 gambas3-gb-openal gambas3-gb-opengl gambas3-gb-opengl-glsl gambas3-gb-opengl-glu gambas3-gb-opengl-sge gambas3-gb-openssl 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-gb-xml-html gambas3-gb-libxml gambas3-ide gambas3-runtime gambas3-script gambas3-gb-option gambas3-gb-eval-highlight gambas3-gb-signal gambas3-gb-mysql gambas3-gb-gsl gambas3-gb-ncurses gambas3-gb-complex gambas3-gb-data gambas3-gb-mime gambas3-gb-httpd gambas3-gb-memcached gambas3-gb-args gambas3-gb-map gambas3-gb-jit Architecture: source all amd64 Version: 3.5.1-1 Distribution: unstable Urgency: low Maintainer: Gambas Debian Maintainers <[email protected]> Changed-By: José L. Redrejo Rodríguez <[email protected]> Description: gambas3 - Complete visual development environment for Gambas gambas3-dev - Gambas compilation tools gambas3-examples - Gambas examples gambas3-gb-args - Gambas arguments parser gambas3-gb-cairo - Gambas bindings for cairo gambas3-gb-chart - Gambas charting component gambas3-gb-clipper - Gambas Clipper component gambas3-gb-complex - Gambas Complex 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-data - Gambas abstract datatypes 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 gambas3-gb-db-odbc - ODBC driver for the Gambas database gambas3-gb-db-postgresql - PostgreSQL driver for the Gambas database gambas3-gb-db-sqlite2 - Gambas sqlite2 driver database gambas3-gb-db-sqlite3 - Gambas sqlite3 driver database 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-gmp - Gambas GMP component gambas3-gb-gsl - Gambas GNU Scientific Library component gambas3-gb-gtk - Gambas GTK+ component gambas3-gb-gtk-opengl - Gambas GTK+ OpenGL component gambas3-gb-gui - Gambas graphical toolkit selector gambas3-gb-gui-opengl - Gambas OpenGL selector gambas3-gb-httpd - Gambas HTTP server gambas3-gb-image - Gambas image effects gambas3-gb-image-effect - Gambas image effects: effects gambas3-gb-image-imlib - Gambas image effects: IMLIB bindings gambas3-gb-image-io - Gambas image effects: I/O gambas3-gb-jit - Gambas Just-In-Time compiler component gambas3-gb-libxml - Gambas libxml component gambas3-gb-map - Gambas online map viewer gambas3-gb-memcached - Gambas memcached client gambas3-gb-mime - Gambas MIME message management gambas3-gb-mysql - Gambas MySQL component gambas3-gb-ncurses - Gambas NCurses component gambas3-gb-net - Gambas networking component gambas3-gb-net-curl - Gambas advanced networking component gambas3-gb-net-pop3 - Gambas POP3 client implementation gambas3-gb-net-smtp - Gambas smtp protocol component gambas3-gb-openal - Gambas OpenAL component gambas3-gb-opengl - Gambas OpenGL component gambas3-gb-opengl-glsl - Gambas OpenGL component: GL Shading Language subcomponent gambas3-gb-opengl-glu - Gambas OpenGL utility gambas3-gb-opengl-sge - Gambas SDL Game Engine gambas3-gb-openssl - Gambas OpenSSL 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 - Gambas OpenGL component with QT toolkit 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 Visual Basic(tm) compatibility component gambas3-gb-web - Gambas CGI for web applications gambas3-gb-xml - Gambas XML component gambas3-gb-xml-html - Gambas HTML 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: 690509 690510 710320 Changes: gambas3 (3.5.1-1) unstable; urgency=low . [ José L. Redrejo Rodríguez ] * New upstream release. * Remove previous Poppler patch, as upstream is updated. Thanks to Pino for its help while we were MIA. * Removed patch from Sebastian Ramacher as it's not needed with this new upstream version. Thanks to him and Dmitrijs Ledkovs for his NMU. * debian/control: - New gambas3 components. - Added new dependencies for the new Gambas3 components. - Fixed some build dependencies to match current Debian sid repo. * debian/patches/fix_typos (Closes: #690509, #690510) * debian/patches/kfreebsd_support (Closes: #710320) . Thanks to Steven Chamberlain. . [ Ian Haywood ] * Updated debian/copyright. * Fixed some grammar errors in the changelog. * Added gb.jit and its dependencies. * debian/rules: moving to dpkg-buildflags. Checksums-Sha1: e48dc41d43681b24fa50647babf1f8c01b8014f5 6802 gambas3_3.5.1-1.dsc a99577e9ef31208034677fb2c0bf35d5aaa6da39 12265336 gambas3_3.5.1.orig.tar.bz2 5065f6a493c839ea1811de801ea9c4a2c55814be 20827 gambas3_3.5.1-1.debian.tar.gz 873f1849501668f3f38e08188c87af22b1074e99 4830 gambas3_3.5.1-1_all.deb 1a678357d43e98eb2b6df8d0a0a505145425d0de 633706 gambas3-gb-form-stock_3.5.1-1_all.deb 8dc9a7ece8704f19167ecc2f3aed950c5dd65ea4 4497476 gambas3-examples_3.5.1-1_all.deb 058253612de5b1ffc4e85627b18101dfac9585a4 32074 gambas3-gb-chart_3.5.1-1_all.deb c39728ffbc6b1db56283c5fdf61379b722f92c9a 41654 gambas3-gb-db-form_3.5.1-1_all.deb ae04c3692f599f54041f576cff6041e7231d2e47 193766 gambas3-gb-form_3.5.1-1_all.deb 33f01b0bb33fa088deb06139aa8112d7284e177e 9172 gambas3-gb-form-dialog_3.5.1-1_all.deb 5bd1d8d86697ea2a7fa41af30be86274de9163b2 128004 gambas3-gb-form-mdi_3.5.1-1_all.deb f9c7f07ef32145e6346539204072a13211df9d89 65004 gambas3-gb-report_3.5.1-1_all.deb cdbfc7eeedf5c920cbd03390a72d550b3db76bb8 9780 gambas3-gb-settings_3.5.1-1_all.deb 8ca31e8a9f9c6a1dc650b02cfaa76e2142a25323 18096 gambas3-gb-web_3.5.1-1_all.deb 30c5ff826fbb2be8b3bbe852507a67e6cb73bc10 17970 gambas3-gb-xml-rpc_3.5.1-1_all.deb 14c4840051011817e711b10d6b0ff8911e1a1fa5 1897678 gambas3-ide_3.5.1-1_all.deb e98bbcf36e178b9f3ee327668220e5be92932337 28192 gambas3-script_3.5.1-1_all.deb f7ce3c147b35feb9f5b9d255a8a5fe4cb237462a 17866 gambas3-gb-eval-highlight_3.5.1-1_all.deb b52dd2e58f262db42afd5f3b8ed1eed7bd6a5885 9950 gambas3-gb-memcached_3.5.1-1_all.deb 7bfec4f49dac69d10dfc7d6dad6c0bc6cd111b7d 7372 gambas3-gb-args_3.5.1-1_all.deb b85a36b49c093ad6323246a214fc992bfc0431b5 32794 gambas3-gb-map_3.5.1-1_all.deb 5aedb559200456262cf69513437ed5d046cdc51c 83256 gambas3-dev_3.5.1-1_amd64.deb 2c81ecba31f8c242cfadb8881ca0b48a7c78c0e5 16620 gambas3-gb-cairo_3.5.1-1_amd64.deb 1577a91c6a86a1f5d669c6e51c0cda2211aab64d 48174 gambas3-gb-clipper_3.5.1-1_amd64.deb f5dd9662843cfb713d1731cc469472bdf77afe09 24056 gambas3-gb-dbus_3.5.1-1_amd64.deb a9a5b23665274033afaef53dc44ffc1612e6eb09 13052 gambas3-gb-gmp_3.5.1-1_amd64.deb 7b5cd8ac7f16c4cf1d786c5d3cdd1a80aa7d7747 7914 gambas3-gb-compress_3.5.1-1_amd64.deb 69d9eee6dc36df7ebfa0247af12d3d130bef9230 7962 gambas3-gb-compress-bzlib2_3.5.1-1_amd64.deb 4f2281fd8ed7f1c5d0993e726a5c6fe9f9fdfbd7 7604 gambas3-gb-compress-zlib_3.5.1-1_amd64.deb e531811406a14131b0cdfdf8438a376725b22692 7166 gambas3-gb-crypt_3.5.1-1_amd64.deb f02d267c5b81b7afd98b24e685b2e15df5a8cdc0 25036 gambas3-gb-db_3.5.1-1_amd64.deb 375b6cf1eeeb2f14336c1414fed2b3115c0b9d32 14830 gambas3-gb-db-mysql_3.5.1-1_amd64.deb b0f985b0b8b9d10184722138ce254c07c04ec684 13196 gambas3-gb-db-odbc_3.5.1-1_amd64.deb a1e740bfecbcd35fd86d35ce8e92933d5cd3edf9 14736 gambas3-gb-db-postgresql_3.5.1-1_amd64.deb d544bcf3b4a51c09399d80870849cec2ce6d3106 30094 gambas3-gb-db-sqlite2_3.5.1-1_amd64.deb dfcd096f49a8502e042a63bea8b3c0b90280801c 31854 gambas3-gb-db-sqlite3_3.5.1-1_amd64.deb cdddd4532ba5bb731298152d82213313e570df91 64958 gambas3-gb-desktop_3.5.1-1_amd64.deb f0b5e3fb4d70fd245dbacc0e73a7fbecae8f1a12 161282 gambas3-gb-gtk_3.5.1-1_amd64.deb f08c785594307b3bac0433ddc46a453a59dd219b 7550 gambas3-gb-gtk-opengl_3.5.1-1_amd64.deb ab7482d6e83183c14ce33fab6fc3176eec9bbc8c 16168 gambas3-gb-gui_3.5.1-1_amd64.deb ba122edcfa6c2534b4789640b1fbd2a02b3e6354 6382 gambas3-gb-gui-opengl_3.5.1-1_amd64.deb 77b266bccad9b90ec8dc84778776979b741f20b7 15190 gambas3-gb-pdf_3.5.1-1_amd64.deb 948914ef1db97917e6a5937f0be7b8d56846bddd 30368 gambas3-gb-image_3.5.1-1_amd64.deb b708b35fd0011de08836bf931804ca7b327eb27a 7966 gambas3-gb-image-io_3.5.1-1_amd64.deb e39185efda38db30d0e0009014e5b679136976a9 7658 gambas3-gb-image-imlib_3.5.1-1_amd64.deb 1129de77e4920628e599453c95fa89860a468191 36624 gambas3-gb-image-effect_3.5.1-1_amd64.deb d4c3c6583b357706c5131469414cdf059e9e7d11 22038 gambas3-gb-net_3.5.1-1_amd64.deb e9a0e0fa5193c224c7396b354b9aff77e29565b7 16452 gambas3-gb-net-curl_3.5.1-1_amd64.deb 20b234c9b0bafe1b3fe08118768e1cceb5176974 18050 gambas3-gb-net-smtp_3.5.1-1_amd64.deb 24474ee651e880d183f184d1b561a306e1f8cdf7 11136 gambas3-gb-net-pop3_3.5.1-1_amd64.deb b23ca58cd331db5a37463bf0467a7b1b4b0bdfac 17514 gambas3-gb-openal_3.5.1-1_amd64.deb fe3b7eb4c1b450233f5075636bb3710e3b861939 29216 gambas3-gb-opengl_3.5.1-1_amd64.deb b736e96cf764ed855e9b3a9fd1535e3a52ee8922 10458 gambas3-gb-opengl-glsl_3.5.1-1_amd64.deb dc350e0726a06a2f4acc24f6d6ffdefdbf14aac2 10698 gambas3-gb-opengl-glu_3.5.1-1_amd64.deb 5e252800f929b361c27754b30e2ec8a55bd915f8 9340 gambas3-gb-opengl-sge_3.5.1-1_amd64.deb 5f26144edf6f66bb88603f729145dc0bc433efcb 9480 gambas3-gb-openssl_3.5.1-1_amd64.deb 119e1f8613f8561c1ed8a43ed429761b7567ae3b 9208 gambas3-gb-pcre_3.5.1-1_amd64.deb 2b17251144d665a86710e8c4e96b18c4fbd053c3 157868 gambas3-gb-qt4_3.5.1-1_amd64.deb a15644591b21f385bc9a7154d5280a3026baba0a 55740 gambas3-gb-qt4-ext_3.5.1-1_amd64.deb 52d0f16079da47cc51bfad42f2343b91de75caf9 28448 gambas3-gb-qt4-webkit_3.5.1-1_amd64.deb 7dbfc77c72793334f8e0a9d94241212e137626a6 9176 gambas3-gb-qt4-opengl_3.5.1-1_amd64.deb 3912b7416f9baa06dd383ad2c93a27b4c393206f 45302 gambas3-gb-sdl_3.5.1-1_amd64.deb cb7e6e726f529b2accb76a85cabb7bfa1ae565ed 11488 gambas3-gb-sdl-sound_3.5.1-1_amd64.deb 9b90bca6653f755461062d62a3ec4a353a17942e 17158 gambas3-gb-v4l_3.5.1-1_amd64.deb 01916d181e616340fa1422746334193854826042 8428 gambas3-gb-vb_3.5.1-1_amd64.deb 284eefdaa6ba4e7e7e318714ca8794ab25e293e4 35078 gambas3-gb-xml_3.5.1-1_amd64.deb 837d5b8fc56e3f3966373711377af8963fb9329b 6736 gambas3-gb-xml-xslt_3.5.1-1_amd64.deb d757a215c4d5fb3ae62bede4d6b8173e61b20e6f 13374 gambas3-gb-xml-html_3.5.1-1_amd64.deb 16f454d2d094ea233a282f6ca547b210b7daf287 13848 gambas3-gb-libxml_3.5.1-1_amd64.deb 368b688bb60e5d34f041bd6f466c868f386d8f6d 272834 gambas3-runtime_3.5.1-1_amd64.deb f17e4c85c18159e80710ec66a45f061992766f68 7930 gambas3-gb-option_3.5.1-1_amd64.deb d12ad1f2d66860148c48c6b1011bbee58d791d00 7322 gambas3-gb-signal_3.5.1-1_amd64.deb 5397656549f2d361ca87b0188f20ca14fce44ffa 34400 gambas3-gb-mysql_3.5.1-1_amd64.deb 2affdf44aa4c331100f3a352294529bd67e2399f 24602 gambas3-gb-gsl_3.5.1-1_amd64.deb e11403f348ee9dbc407d1c974bed391aba9da6b8 15190 gambas3-gb-ncurses_3.5.1-1_amd64.deb 1bc38504600b59154860e81c830127b93cfbc473 8828 gambas3-gb-complex_3.5.1-1_amd64.deb e9583f1dda1664fae4a0cfb5fce0b7c692ff3eac 14836 gambas3-gb-data_3.5.1-1_amd64.deb f9bdea08546829cc4abaf2977a11b336a1cf5d51 10784 gambas3-gb-mime_3.5.1-1_amd64.deb 48637f68a4d4e061ef3426bea97a47deb13d7ac1 28950 gambas3-gb-httpd_3.5.1-1_amd64.deb 0886e4912e33d92e70ffd87663a978844b81a3c0 128172 gambas3-gb-jit_3.5.1-1_amd64.deb Checksums-Sha256: fac8b2f12692ae25480b54839711055ae0420c6805697af403badf4fc2dcf433 6802 gambas3_3.5.1-1.dsc 1a5ee992e368bbbd018ada089bf1515f59d053054a264ef0625d83ba3265ab19 12265336 gambas3_3.5.1.orig.tar.bz2 855c0a9660b9619e68efcd24faa9f5884cfbb9b536abaffe0be5ced0ae8a9f3d 20827 gambas3_3.5.1-1.debian.tar.gz 6118d79aae25584994b41fa8216396be41a198baf86666b42cda9c086ff8691c 4830 gambas3_3.5.1-1_all.deb c1b7059571ab7313bb4a0ac2eb5c1bf9a89e37d48d8e77236353c91949f136d1 633706 gambas3-gb-form-stock_3.5.1-1_all.deb 3cf33dada6e15c3f139132d12f4414af29c1a3a77773960e41ef4403fb2c365b 4497476 gambas3-examples_3.5.1-1_all.deb 3dce7fc8a141902469c9b8511563ddcb8405b471b1acadf94b66a16da0696f17 32074 gambas3-gb-chart_3.5.1-1_all.deb 5069168e55007ac0170f8b81bc0629439394e85209b19be90101d30a84ecb518 41654 gambas3-gb-db-form_3.5.1-1_all.deb 1cd3d3c9b56a7868fe7edb7ff852d5dde14e40b651d29bd238dc472ad2561c90 193766 gambas3-gb-form_3.5.1-1_all.deb 0e353020f7c8919a1f56726dc0f9e9f37399d1d30224ffbc116c9bf1c03b746c 9172 gambas3-gb-form-dialog_3.5.1-1_all.deb 7462903ce8e0a2be0607088460cc167ad0eb0b6be7a9a2fa87fec2ea79ec8a06 128004 gambas3-gb-form-mdi_3.5.1-1_all.deb a6f354c642a53088fac18d1898a52354e8139cb135a5c43a95f438918786decc 65004 gambas3-gb-report_3.5.1-1_all.deb 03dc5f16b74d284df27bd5ce24253a620c3c626c938987f8acafe3b7d5ff94ef 9780 gambas3-gb-settings_3.5.1-1_all.deb f52d160b48070c288dc1253554306901d90e6c2426f1f09ddccb8d9750504f2c 18096 gambas3-gb-web_3.5.1-1_all.deb 35fe39d674454e24ffe2e3f0fb533f8847de6f6a9d1cdd1c687721b3169f689d 17970 gambas3-gb-xml-rpc_3.5.1-1_all.deb 7a8b3119dd3ec56df76da335205934cef23035235ce287f39122d1ed6c9fce09 1897678 gambas3-ide_3.5.1-1_all.deb 15603e45064b6a4bfdd9274ab0e7e4d089b86334a13d0bd4e7f0a57737ea727b 28192 gambas3-script_3.5.1-1_all.deb 133ff191c9471b5a3a65d61d4df508fdb76bc592fe524077982f3b088268ac6d 17866 gambas3-gb-eval-highlight_3.5.1-1_all.deb 7602aaff61023da7c46b82525e7338340066a5bcaef119438d02758b61ba61be 9950 gambas3-gb-memcached_3.5.1-1_all.deb 1873d2868786d1841ddfe6686ea5a65e98df4b2c208aa6b1b96ed30ad77de0e0 7372 gambas3-gb-args_3.5.1-1_all.deb 5b2f0934d04586691796a26ffce478114003929f9724b3462285ebdd9bc5cd6d 32794 gambas3-gb-map_3.5.1-1_all.deb ff31452bdfef50fbc430b0aaac5c6bc366fba1aa7336fb6c7bce0e29b35fd527 83256 gambas3-dev_3.5.1-1_amd64.deb 4782cb8a3b46ca3aa711d71d408a37eda88edde9368e4f598961d3259674cf5a 16620 gambas3-gb-cairo_3.5.1-1_amd64.deb 9c751fbbb21da0721364afb134631fbfa96886a57cb1ba16d10066f9d91792b0 48174 gambas3-gb-clipper_3.5.1-1_amd64.deb 2bc040c20007cfd55ef261116c3628cdc6cca07ae685dbaa4dbe108a4f7f5ac9 24056 gambas3-gb-dbus_3.5.1-1_amd64.deb 22064f9445bfc3d29041b4d879948da732714e78adcc17c19fb5f02c5deb9321 13052 gambas3-gb-gmp_3.5.1-1_amd64.deb 4fbeca88905461e8f0b32775636fff59e8e14fe7fb7fd31f17238113959e51ba 7914 gambas3-gb-compress_3.5.1-1_amd64.deb 38f33e8cbf7ee239bd561d4d5ebbfd549782efa72f850c086fc5388381388faf 7962 gambas3-gb-compress-bzlib2_3.5.1-1_amd64.deb 3375a9dc3c585e357c74650135cc64aaf63960d8b963d95c8ae5131632fa0def 7604 gambas3-gb-compress-zlib_3.5.1-1_amd64.deb 6b7a9b67f84756a35afb7016e7d121067ae938cbe848ff8ae361b30322dd04ba 7166 gambas3-gb-crypt_3.5.1-1_amd64.deb 7825bec99369c524df2ae895498bb2d1d403db383d4f291add0e4e80b5617bf7 25036 gambas3-gb-db_3.5.1-1_amd64.deb 0f54618fcd4118ed189828c326eb67007b8bf6d971e62148a7d9d3e387ea734b 14830 gambas3-gb-db-mysql_3.5.1-1_amd64.deb 3a7d97689d6d10a8654e3d76dd6755e5cd456497fda478af22fa597db1b2ed0e 13196 gambas3-gb-db-odbc_3.5.1-1_amd64.deb 6f70f28d34a29e3bfe44a33e77f5c5d7014971c44ef726b2e0880c58370cfecd 14736 gambas3-gb-db-postgresql_3.5.1-1_amd64.deb 526b852dc258885b1178085b4021c9acd2af38cc9f5de071de8df97782d3104a 30094 gambas3-gb-db-sqlite2_3.5.1-1_amd64.deb 93b146f527ed934f8a8d0d9f94809c6bca26c01c35df44efac3c84e780ca8b6a 31854 gambas3-gb-db-sqlite3_3.5.1-1_amd64.deb ab61278df26de001811937d7348d5104188583b666e450430e6cba841e3c28ce 64958 gambas3-gb-desktop_3.5.1-1_amd64.deb c0fbd409dcb1fb69e59cb046b0336cb864602bc727c3e1c96d8524382fe493b4 161282 gambas3-gb-gtk_3.5.1-1_amd64.deb 3b0cbb02e56163681cd513b0d7643ab403d39c7d3d5981780c97fec685c74049 7550 gambas3-gb-gtk-opengl_3.5.1-1_amd64.deb ef5ca99229f59c9827bcc76069ed1be3df4ba6940aa3cf9145e30a6b908aaedb 16168 gambas3-gb-gui_3.5.1-1_amd64.deb 96dfe367a6f2145a121e7341c2bdaa56f181f8b1f11b0d65df859f34835343d0 6382 gambas3-gb-gui-opengl_3.5.1-1_amd64.deb 09b6134ba5d6049dfd2a6a8716f866b2ffe2ecdb4d97f7e89713d73f5807d2c6 15190 gambas3-gb-pdf_3.5.1-1_amd64.deb 548d52aaa326b247a87728a4ce5786608ecb4d069f3012755abffac829f2dc56 30368 gambas3-gb-image_3.5.1-1_amd64.deb 4c4eb604eeae92be59e5c97a43dbcaf3f307ce5e5a17c9a10815e6380715bcc0 7966 gambas3-gb-image-io_3.5.1-1_amd64.deb c05a47707280a0cd8cbc6673404f52d1c6a549f7d8bf5a99557e6d0dfa752544 7658 gambas3-gb-image-imlib_3.5.1-1_amd64.deb b2f7b4ac1b1b71299618d48d1b0046386e83507e1799be19edf622b025c3de6d 36624 gambas3-gb-image-effect_3.5.1-1_amd64.deb 69d6ff70592c04ff7ac28e234692794bd10ecdcb4398c5cd8665b0c08150e94f 22038 gambas3-gb-net_3.5.1-1_amd64.deb 77ed25ff4b71e9baf4a09e05660259288abf7ec04ef9dbb6438387d319849f14 16452 gambas3-gb-net-curl_3.5.1-1_amd64.deb ee07b8f085365ff3824481a45652e32d1a5d260e5831dc24d56f9c90b7a7ae39 18050 gambas3-gb-net-smtp_3.5.1-1_amd64.deb e21934058f2455df4749ff37e792cfdb988463ed2371f75534b0c6f71f4b2743 11136 gambas3-gb-net-pop3_3.5.1-1_amd64.deb 34da689e49ebd0ebdef58dd0565d686134c7f55d3e49c45ad01597a03969aa36 17514 gambas3-gb-openal_3.5.1-1_amd64.deb 9652e1408d6f277bf85d02a37e52f681da45f3f5358e456c8bbb03058f0b2936 29216 gambas3-gb-opengl_3.5.1-1_amd64.deb 1d0c315afded9d99b9313e70b2dc89352ae3f895990536aa4b848d009c4af477 10458 gambas3-gb-opengl-glsl_3.5.1-1_amd64.deb ea661213f16d86b25732cb56d74c6b42143cfd66217fb258ff68583f4b99d0c1 10698 gambas3-gb-opengl-glu_3.5.1-1_amd64.deb 06421ab8414abe69b14aa551db17e7a988e1b3736c8c3e10b0195d3fd209eca3 9340 gambas3-gb-opengl-sge_3.5.1-1_amd64.deb 0d1b35de80b55de0417eefd828be9b540407043d0376b80a619660cca98ab248 9480 gambas3-gb-openssl_3.5.1-1_amd64.deb ff82a787c85d6b3d0db78aad2eb4a87335fae18c61b3f39ffe9c94861285ed18 9208 gambas3-gb-pcre_3.5.1-1_amd64.deb 20b4f7bf8c1ce02bc49f99283aa22e461f8313efa166a1552153469f42f0e595 157868 gambas3-gb-qt4_3.5.1-1_amd64.deb 5d40c719bd4b32aa79e9f9aca369a2c7c126fb2f958647762d193799d177c105 55740 gambas3-gb-qt4-ext_3.5.1-1_amd64.deb 8784d80d6623dcd025652783b693cc4eb376010ff0a9eb79dbdeb15a0eedd282 28448 gambas3-gb-qt4-webkit_3.5.1-1_amd64.deb a9bfbd3b0fa94a369c971aaa2148e98feacd113e1a46e44419fd001b6f38dc71 9176 gambas3-gb-qt4-opengl_3.5.1-1_amd64.deb 53ad1d95422a7fc9ff46120dac54a79f6cedf45a9f7477c69f42b786f56578db 45302 gambas3-gb-sdl_3.5.1-1_amd64.deb 5db42bc4e59265c577931217dd9c3ea122b950d7871d530faea3bd9d58963bf5 11488 gambas3-gb-sdl-sound_3.5.1-1_amd64.deb 62880b14b9650e1d01214a85fd6e91ebc6ea92a1ca6835c6087b5e3775335645 17158 gambas3-gb-v4l_3.5.1-1_amd64.deb f69b4e9233ec1e74c58bb35964f5d75f44f97ff6b6ba9e1733df8d6c15c0bfa2 8428 gambas3-gb-vb_3.5.1-1_amd64.deb 79fe25c9cf00804c37c8f4985ebc481a1f45a6a556995a76bebba4f15e6972c0 35078 gambas3-gb-xml_3.5.1-1_amd64.deb e26d47ef692108286eac9410ac1e3f3ee3e74013f93c82f84734bf069472acbf 6736 gambas3-gb-xml-xslt_3.5.1-1_amd64.deb 708ffa73b18b5654beee90edee54309d9dbae0d249090545800420355d9587e1 13374 gambas3-gb-xml-html_3.5.1-1_amd64.deb 8d4eb19f367e1c6f2f8dab0d834d3dce30ffae53bdbb2108ac38cc4ec9bcc1cb 13848 gambas3-gb-libxml_3.5.1-1_amd64.deb 975c0b7046f4dc730860e731410c516c3694a6ce35383cfddeefb763b0da5ab5 272834 gambas3-runtime_3.5.1-1_amd64.deb f6aa787394e098d4b674c790c7bdd08e0957a048d3ce05e66c317e11b7485b80 7930 gambas3-gb-option_3.5.1-1_amd64.deb 5634e3d9ce883f204c433aeb5a660f112a29a53fdea7127f5a6cda434ac488fa 7322 gambas3-gb-signal_3.5.1-1_amd64.deb 37ac452994ce4130a16c0cbb59624256bafd6410274f2fa0da16394975af78dc 34400 gambas3-gb-mysql_3.5.1-1_amd64.deb 83a610e6e9f72c4b469672b68aedceeefff5af89c8f956c0b55de744990914ba 24602 gambas3-gb-gsl_3.5.1-1_amd64.deb 3a16c38d3ce68b1d0f6539fa2039f8421386bbebb998f6882bb81b358cd748ed 15190 gambas3-gb-ncurses_3.5.1-1_amd64.deb dd5915d463dcd9f23934e599a66abe5d6787b35f6a81166c0e513775f3f56fbb 8828 gambas3-gb-complex_3.5.1-1_amd64.deb 2216440b14266c65e0ae5b13e27914aa2d369ed48c06312ac74f0fbb76545137 14836 gambas3-gb-data_3.5.1-1_amd64.deb fe744bb510c456938bc7b814e626ab0740f660bd244ad82235951d44dd6b2a4c 10784 gambas3-gb-mime_3.5.1-1_amd64.deb db013b26d2b2890bed54d370b6b8d6e913dd08b2c3a05b440f16c2670c54bba7 28950 gambas3-gb-httpd_3.5.1-1_amd64.deb e7bcbca7996f145737a692a5531abc644b8d02401b7435e7b4528f41aa0e6d6b 128172 gambas3-gb-jit_3.5.1-1_amd64.deb Files: a48451fd87940d42bac1e11fbcd52c5c 6802 devel optional gambas3_3.5.1-1.dsc 40f9057cd3686020fbe66a043a2ea400 12265336 devel optional gambas3_3.5.1.orig.tar.bz2 3ab6aafada0f1ec73bbd2ad4959a0b03 20827 devel optional gambas3_3.5.1-1.debian.tar.gz a8cfe2e177812cdcc537d82904d1708c 4830 devel optional gambas3_3.5.1-1_all.deb 5e29448c03014af19a6a3816cdf3a61a 633706 devel optional gambas3-gb-form-stock_3.5.1-1_all.deb 110a00fd9f4ef01fd01efa8aaf740743 4497476 devel optional gambas3-examples_3.5.1-1_all.deb 4e4e515886ca924b1ae00810ca87c28b 32074 libdevel optional gambas3-gb-chart_3.5.1-1_all.deb 6495264d4e8031b1ec6b7c6bab6f93f6 41654 libdevel optional gambas3-gb-db-form_3.5.1-1_all.deb ae146616b58a3fe560248e5c128d334f 193766 libdevel optional gambas3-gb-form_3.5.1-1_all.deb daf52388bd4498a31d367cda796d20b2 9172 libdevel optional gambas3-gb-form-dialog_3.5.1-1_all.deb d06eea98258dd49c8b4ed855d85453e8 128004 libdevel optional gambas3-gb-form-mdi_3.5.1-1_all.deb 9628c75944aa90e2ff4dc7137b431b24 65004 libdevel optional gambas3-gb-report_3.5.1-1_all.deb 398c1b77c19131e7083c36faf3fae15e 9780 libdevel optional gambas3-gb-settings_3.5.1-1_all.deb 20c59d8b648ace55fa3a62a124f8a832 18096 libdevel optional gambas3-gb-web_3.5.1-1_all.deb 34be52652923813b13ffcdda329401a1 17970 libdevel optional gambas3-gb-xml-rpc_3.5.1-1_all.deb aab7cb1978b6a1ead3b4ce5ebd792ce2 1897678 devel optional gambas3-ide_3.5.1-1_all.deb de76c8f145ae04a5eb02e348ab43679b 28192 libdevel optional gambas3-script_3.5.1-1_all.deb 874f7026823d611540531e43ca34aaa4 17866 libdevel optional gambas3-gb-eval-highlight_3.5.1-1_all.deb 237948855b2170703308130478332457 9950 libdevel optional gambas3-gb-memcached_3.5.1-1_all.deb 039559617363e00ad54cb84296d2dd62 7372 libdevel optional gambas3-gb-args_3.5.1-1_all.deb 691438d681802625dbde926b51ce68e2 32794 libdevel optional gambas3-gb-map_3.5.1-1_all.deb bdace8a20f83134cd9856cd0d06e2903 83256 devel optional gambas3-dev_3.5.1-1_amd64.deb a510034a513e8be28ef2e52f069036ca 16620 devel optional gambas3-gb-cairo_3.5.1-1_amd64.deb 35605a66e7d08d52dd71d3fcd5ce1620 48174 libdevel optional gambas3-gb-clipper_3.5.1-1_amd64.deb e2425d3c20602e18527b39739300000a 24056 devel optional gambas3-gb-dbus_3.5.1-1_amd64.deb eb4b5aa194b82c0a0c35862fdb94273a 13052 libdevel optional gambas3-gb-gmp_3.5.1-1_amd64.deb 4e97f47857fad7a761c690a513c3fdd6 7914 libdevel optional gambas3-gb-compress_3.5.1-1_amd64.deb 718b378938bb82f85bf8c0216dd48557 7962 libdevel optional gambas3-gb-compress-bzlib2_3.5.1-1_amd64.deb c6ea4bdef656484344ccf90d0d281367 7604 libdevel optional gambas3-gb-compress-zlib_3.5.1-1_amd64.deb 71e77ab713698115835abacca581c7a3 7166 libdevel optional gambas3-gb-crypt_3.5.1-1_amd64.deb eb6fca103b4368574bf0d01cd180b313 25036 libdevel optional gambas3-gb-db_3.5.1-1_amd64.deb d8c5e20b64c89892b0810d2963a7b9cd 14830 libdevel optional gambas3-gb-db-mysql_3.5.1-1_amd64.deb 4a51e6e0e0246ca7282d2008621e5839 13196 libdevel optional gambas3-gb-db-odbc_3.5.1-1_amd64.deb 799636cf69e23f492e0b8d41f6e5b67e 14736 libdevel optional gambas3-gb-db-postgresql_3.5.1-1_amd64.deb 1d01ba36f67a9c676f2cd782635f0363 30094 libdevel optional gambas3-gb-db-sqlite2_3.5.1-1_amd64.deb 907c82c92bcfbc81f8c9250a422ccef5 31854 libdevel optional gambas3-gb-db-sqlite3_3.5.1-1_amd64.deb 6c6ad41f8d7374b11f425fe6164ec9d5 64958 libdevel optional gambas3-gb-desktop_3.5.1-1_amd64.deb 691e50d487e0ca2dcae290cd1e4581c3 161282 libdevel optional gambas3-gb-gtk_3.5.1-1_amd64.deb e13ddb11e42cfcea3a8df0f42b67c952 7550 libdevel optional gambas3-gb-gtk-opengl_3.5.1-1_amd64.deb 8b5e044bb907d82992f15e3da3dd96dd 16168 libdevel optional gambas3-gb-gui_3.5.1-1_amd64.deb 85f820b802dd0d3ee33a214865cbee66 6382 libdevel optional gambas3-gb-gui-opengl_3.5.1-1_amd64.deb 26cf5f612d026a0a6faedbf0f220c769 15190 libdevel optional gambas3-gb-pdf_3.5.1-1_amd64.deb 90807b98b686621b2d9955076f58a776 30368 libdevel optional gambas3-gb-image_3.5.1-1_amd64.deb 5c294bcdf33a4d4e1f2a72bc881b6d81 7966 libdevel optional gambas3-gb-image-io_3.5.1-1_amd64.deb 9f9c3b242d0e139fba55f2c4793d137f 7658 libdevel optional gambas3-gb-image-imlib_3.5.1-1_amd64.deb c49dc99b2a908692387b54bb8ddbee1c 36624 libdevel optional gambas3-gb-image-effect_3.5.1-1_amd64.deb d5095d426b2d66585bd16586c50b6de5 22038 libdevel optional gambas3-gb-net_3.5.1-1_amd64.deb 93ad8c5ac3dc0b8e3228c02dd64b4866 16452 libdevel optional gambas3-gb-net-curl_3.5.1-1_amd64.deb beb321c12193bfc01afc665b580f9a2e 18050 libdevel optional gambas3-gb-net-smtp_3.5.1-1_amd64.deb 9ebc303101293d3e00c4fd7e89a8cb2f 11136 libdevel optional gambas3-gb-net-pop3_3.5.1-1_amd64.deb e510c53dd9082ddcb9448c615d611916 17514 libdevel optional gambas3-gb-openal_3.5.1-1_amd64.deb 66622e9fb29d0640546e79af067f31a2 29216 libdevel optional gambas3-gb-opengl_3.5.1-1_amd64.deb 2102c6571899ffd68e2e3bae06567def 10458 libdevel optional gambas3-gb-opengl-glsl_3.5.1-1_amd64.deb ebfd05b18a992a5c1dabf267b0277455 10698 libdevel optional gambas3-gb-opengl-glu_3.5.1-1_amd64.deb 2e379bb6129a7697497dc577f85ae389 9340 libdevel optional gambas3-gb-opengl-sge_3.5.1-1_amd64.deb ef1c867e0ea745b5af6f1d1d0e432bb8 9480 libdevel optional gambas3-gb-openssl_3.5.1-1_amd64.deb 6eda78128b5f1f4acf8af69a22c1f773 9208 libdevel optional gambas3-gb-pcre_3.5.1-1_amd64.deb 550e71cde425ec8aa0f1e73c3b3c492e 157868 libdevel optional gambas3-gb-qt4_3.5.1-1_amd64.deb fa47c9ec2fa6abec3f5e4d46b517747e 55740 libdevel optional gambas3-gb-qt4-ext_3.5.1-1_amd64.deb 49e5444a1c049476090e09ff55156689 28448 kde optional gambas3-gb-qt4-webkit_3.5.1-1_amd64.deb 80f41213169f7f1effe050ebc11c78d5 9176 libdevel optional gambas3-gb-qt4-opengl_3.5.1-1_amd64.deb 2e3665efad207c64833fd6141cfcbc6f 45302 libdevel optional gambas3-gb-sdl_3.5.1-1_amd64.deb f2db4db261186fb739652a99a36c1b1e 11488 libdevel optional gambas3-gb-sdl-sound_3.5.1-1_amd64.deb c2ccd37010293dbb18e0f408517d299a 17158 libdevel optional gambas3-gb-v4l_3.5.1-1_amd64.deb ad8282acbf9cf8965a41d350b53e8f92 8428 libdevel optional gambas3-gb-vb_3.5.1-1_amd64.deb 72edd81ed1d1ca68d5cc9b3bb0041666 35078 libdevel optional gambas3-gb-xml_3.5.1-1_amd64.deb a7cfb9b644d6a712fde6f796042f2490 6736 libdevel optional gambas3-gb-xml-xslt_3.5.1-1_amd64.deb b4d3a93124011f9e018fdf5358df9abc 13374 libdevel optional gambas3-gb-xml-html_3.5.1-1_amd64.deb f886510a60e3ca84b4a1cc19d04030dc 13848 libdevel optional gambas3-gb-libxml_3.5.1-1_amd64.deb daaf2cc88fab8c9ae38ba98bc947a0f4 272834 libdevel optional gambas3-runtime_3.5.1-1_amd64.deb 851b79daccc86bec94e62c58ebe636fb 7930 libdevel optional gambas3-gb-option_3.5.1-1_amd64.deb eaa3e6e8f04afe49e6d50fbed82971d2 7322 libdevel optional gambas3-gb-signal_3.5.1-1_amd64.deb be7004048fb01ff5eb1371a30234ebcf 34400 libdevel optional gambas3-gb-mysql_3.5.1-1_amd64.deb a0d467965f4956b025be4a08c0fa6ebe 24602 libdevel optional gambas3-gb-gsl_3.5.1-1_amd64.deb fa5d9ec85e4e0f1eeeaa9cb1d06966ac 15190 libdevel optional gambas3-gb-ncurses_3.5.1-1_amd64.deb 723c20c684a640bd77539fb918c6aa1a 8828 libdevel optional gambas3-gb-complex_3.5.1-1_amd64.deb 0efdfb8029eeaebd22bf6216aa48be53 14836 libdevel optional gambas3-gb-data_3.5.1-1_amd64.deb b648d76f4d35de5e912a7699d236d0de 10784 libdevel optional gambas3-gb-mime_3.5.1-1_amd64.deb ee4e76de93ebb993d901f54988f759b5 28950 libdevel optional gambas3-gb-httpd_3.5.1-1_amd64.deb 900939b4955269d8f1288859f5bb103e 128172 libdevel optional gambas3-gb-jit_3.5.1-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (GNU/Linux) iEYEARECAAYFAlKXcQ8ACgkQmqVR2WapDeJSoACfbIDJEisNnh8KRRam1S4aoSrf rvUAnRh2NDVwzGVq90XHwNEUh5DxuUUl =5UkO -----END PGP SIGNATURE-----
--- End Message ---
_______________________________________________ Pkg-gambas-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-gambas-devel
