Your message dated Fri, 16 May 2008 19:17:05 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#481208: fixed in firebird2.0 2.0.3.12981.ds1-14
has caused the Debian Bug report #481208,
regarding firebird2.0 FTBFS on mips
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.)


-- 
481208: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=481208
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: firebird2.0
Version: 2.0.3.12981.ds1-13
Severity: serious
Tags: patch

firebird fails to build on mips (and presumably will fail on arm)
because fbsvcmgr is an invalid make target. I attached updates of
port-arm.patch and port-mips.patch. For reference I appended also
the interdiff between old and new patches.


Thiemo


diff -u 2.0/builds/posix/prefix.linux_arm 2.0/builds/posix/prefix.linux_arm
--- 2.0/builds/posix/prefix.linux_arm   2008-05-02 00:13:57.000000000 +0300
+++ 2.0/builds/posix/prefix.linux_arm   2008-05-02 00:13:57.000000000 +0300
@@ -35,8 +35,8 @@
 #LIB_LINK_RPATH:=-Wl,-rpath,
 #LIB_LINK_SONAME:=-Wl,-soname,
 
-EMBED_UTIL_TARGETS=gstat gds_drop gds_relay gsec nbackup fb_lock_print fbsvcmgr
-CLIENT_UTIL_TARGETS=gstat gds_drop gds_relay gsec nbackup fb_lock_print 
fbguard fbmgr_bin fbsvcmgr
+EMBED_UTIL_TARGETS=gstat gds_drop gds_relay gsec nbackup fb_lock_print
+CLIENT_UTIL_TARGETS=gstat gds_drop gds_relay gsec nbackup fb_lock_print 
fbguard fbmgr_bin
 
 Physical_IO_Module=unix.cpp
 
diff -u 2.0/builds/posix/prefix.linux_mips 2.0/builds/posix/prefix.linux_mips
--- 2.0/builds/posix/prefix.linux_mips  2008-04-09 18:48:11.000000000 +0300
+++ 2.0/builds/posix/prefix.linux_mips  2008-04-09 18:48:11.000000000 +0300
@@ -9,6 +9,6 @@
 OS_ServerFiles=inet_server.cpp
 
-EMBED_UTIL_TARGETS=gstat gds_drop gsec nbackup fb_lock_print fbsvcmgr
-CLIENT_UTIL_TARGETS=gds_drop gstat gsec fbguard fbmgr_bin nbackup 
fb_lock_print fbsvcmgr
+EMBED_UTIL_TARGETS=gstat gds_drop gsec nbackup fb_lock_print
+CLIENT_UTIL_TARGETS=gds_drop gstat gsec fbguard fbmgr_bin nbackup fb_lock_print
 
 Physical_IO_Module=os/posix/unix.cpp
Index: 2.0/builds/posix/prefix.linux_arm
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ 2.0/builds/posix/prefix.linux_arm	2008-05-02 00:13:57.000000000 +0300
@@ -0,0 +1,42 @@
+# The contents of this file are subject to the Interbase Public
+# License Version 1.0 (the "License"); you may not use this file
+# except in compliance with the License. You may obtain a copy
+# of the License at http://www.Inprise.com/IPL.html
+#
+# Software distributed under the License is distributed on an
+# "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
+# or implied. See the License for the specific language governing
+# rights and limitations under the License.
+#
+# The Original Code was created by Inprise Corporation
+# and its predecessors. Portions created by Inprise Corporation are
+# Copyright (C) Inprise Corporation.
+#
+# All Rights Reserved.
+# Contributor(s): ______________________________________.
+# Start of file prefix.linux:  $(VERSION)  $(PLATFORM)
+#
+# $Id: prefix.linux_arm,v 1.1.2.1 2008/04/15 14:11:33 alexpeshkoff Exp $
+#
+#	14 Apr 2008	Alan Barclay	alan AT escribe.co.uk
+
+
[EMAIL PROTECTED]@
+
+#PROD_FLAGS=-ggdb -O3 -fno-omit-frame-pointer -DNDEBUG -DLINUX -pipe -MMD -fPIC
+#DEV_FLAGS=-ggdb -DLINUX -DDEBUG_GDS_ALLOC -pipe -MMD -p -fPIC -Wall -Wno-switch
+
+PROD_FLAGS=-O3 -DNDEBUG -DLINUX -DARM -pipe -p -MMD -fPIC -fsigned-char -fmessage-length=0
+DEV_FLAGS=-ggdb -DLINUX -DARM -pipe -p -MMD -fPIC -Wall -fsigned-char -fmessage-length=0
+
+OS_ServerFiles=inet_server.cpp
+
+#LIB_LINK_OPTIONS:=-shared
+#LIB_LINK_RPATH:=-Wl,-rpath,
+#LIB_LINK_SONAME:=-Wl,-soname,
+
+EMBED_UTIL_TARGETS=gstat gds_drop gds_relay gsec nbackup fb_lock_print
+CLIENT_UTIL_TARGETS=gstat gds_drop gds_relay gsec nbackup fb_lock_print fbguard fbmgr_bin
+
+Physical_IO_Module=unix.cpp
+
Index: 2.0/configure.in
===================================================================
--- 2.0.orig/configure.in	2008-05-02 00:13:36.000000000 +0300
+++ 2.0/configure.in	2008-05-02 00:13:57.000000000 +0300
@@ -115,6 +115,16 @@
     CPU_TYPE=amd64
     ;;
 
+  arm*-*-linux*)
+    MAKEFILE_PREFIX=linux_arm
+    INSTALL_PREFIX=linux
+    PLATFORM=LINUX
+    AC_DEFINE(LINUX, 1, [Define this if OS is Linux])
+    LOCK_MANAGER_FLG=Y
+    EDITLINE_FLG=Y
+    SHRLIB_EXT=so
+    ;;
+
   sparc*-*-linux* | sparc*-*-gnu* | sparc*-*-k*bsd*-gnu)
     MAKEFILE_PREFIX=linux_sparc32
     INSTALL_PREFIX=linux
Index: 2.0/src/jrd/common.h
===================================================================
--- 2.0.orig/src/jrd/common.h	2008-05-02 00:13:36.000000000 +0300
+++ 2.0/src/jrd/common.h	2008-05-02 00:13:57.000000000 +0300
@@ -134,6 +134,10 @@
 #define IMPLEMENTATION  isc_info_db_impl_i386 /* 60  next higher unique number, See you later  */
 #endif /* i386 */
 
+#ifdef ARM
+#define IMPLEMENTATION  isc_info_db_impl_linux_arm
+#endif /* ARM */
+
 #ifdef sparc
 #define IMPLEMENTATION  isc_info_db_impl_linux_sparc /* 65  */
 #endif /* sparc */
Index: 2.0/src/jrd/inf_pub.h
===================================================================
--- 2.0.orig/src/jrd/inf_pub.h	2008-05-02 00:13:36.000000000 +0300
+++ 2.0/src/jrd/inf_pub.h	2008-05-02 00:17:17.000000000 +0300
@@ -197,6 +197,10 @@
 	isc_info_db_impl_darwin_x86 = 70,
 	isc_info_db_impl_linux_mipsel = 71,
 	isc_info_db_impl_linux_mips = 72,
+	isc_info_db_impl_darwin_x64 = 73,
+	isc_info_db_impl_sun_amd64 = 74,
+
+	isc_info_db_impl_linux_arm = 75,
 
 	isc_info_db_impl_last_value   /* Leave this LAST! */
 };
Index: 2.0/src/jrd/pag.cpp
===================================================================
--- 2.0.orig/src/jrd/pag.cpp	2008-05-02 00:13:36.000000000 +0300
+++ 2.0/src/jrd/pag.cpp	2008-05-02 00:16:00.000000000 +0300
@@ -142,8 +142,12 @@
 static const int CLASS_DARWIN_I386 = 28;	//Darwin/Intel
 static const int CLASS_LINUX_MIPSEL = 29;    // LINUX/MIPSEL
 static const int CLASS_LINUX_MIPS = 30;    // LINUX/MIPS
+static const int CLASS_DARWIN_X64 = 31;   // Darwin/x64
+static const int CLASS_SOLARIS_AMD64 = 32;	//Solaris/amd64
+static const int CLASS_LINUX_ARM = 33;    // LINUX/ARM
+
 static const int CLASS_MAX10 = CLASS_LINUX_AMD64;	// This should not be changed, no new ports with ODS10
-static const int CLASS_MAX = CLASS_LINUX_MIPS;
+static const int CLASS_MAX = CLASS_LINUX_ARM;
 
 // ARCHITECTURE COMPATIBILITY CLASSES
 
@@ -229,7 +233,10 @@
 	archBigEndian,    // CLASS_LINUX_PPC
 	archLittleEndian, // CLASS_DARWIN_I386
 	archLittleEndian, // CLASS_LINUX_MIPSEL
-	archBigEndian  // CLASS_LINUX_MIPS
+	archBigEndian,    // CLASS_LINUX_MIPS
+	archLittleEndian, // CLASS_DARWIN_X64
+	archLittleEndian, // CLASS_SOLARIS_AMD64
+	archLittleEndian  // CLASS_LINUX_ARM
 };
 
 #ifdef sun
@@ -274,6 +281,9 @@
 #ifdef sparc
 const SSHORT CLASS		= CLASS_LINUX_SPARC;
 #endif
+#ifdef ARM
+const SSHORT CLASS		= CLASS_LINUX_ARM;
+#endif
 #ifdef PPC
 const SSHORT CLASS		= CLASS_LINUX_PPC;
 #endif
Index: 2.0/src/jrd/utl.cpp
===================================================================
--- 2.0.orig/src/jrd/utl.cpp	2008-05-02 00:13:36.000000000 +0300
+++ 2.0/src/jrd/utl.cpp	2008-05-02 00:18:29.000000000 +0300
@@ -238,7 +238,10 @@
     "Firebird/linux PowerPC",	/* 69 */
 	"Firebird/Darwin/Intel",	/* 70 */
     "Firebird/linux MIPSEL",    /* 71 */
-    "Firebird/linux MIPS"     /* 72 */
+    "Firebird/linux MIPS",	/* 72 */
+	"Firebird/Darwin/Intel64",	/* 73 */
+    "Firebird/sun/amd64",	/* 74 */	
+    "Firebird/linux ARM"	/* 75 */
 };
 
 
Index: 2.0/src/remote/xdr.cpp
===================================================================
--- 2.0.orig/src/remote/xdr.cpp	2008-05-02 00:13:36.000000000 +0300
+++ 2.0/src/remote/xdr.cpp	2008-05-02 00:13:57.000000000 +0300
@@ -39,7 +39,7 @@
 // The simpliest way to check it is to issue
 // "select abs(2.0/3.0) from rdb$database" from correct client
 // It will return big strange value in case of invalid define
-#if defined(i386) || defined(I386) || defined(_M_IX86) || defined(AMD64) || defined(MIPSEL)
+#if defined(i386) || defined(I386) || defined(_M_IX86) || defined(AMD64) || defined(ARM) || defined(MIPSEL)
 #define		SWAP_DOUBLE
 #elif defined(sparc) || defined(PowerPC) || defined(PPC) || defined(__ppc__) || defined(MIPSEB)
 #undef		SWAP_DOUBLE
Index: 2.0/builds/posix/prefix.linux_mips
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ 2.0/builds/posix/prefix.linux_mips	2008-04-09 18:48:11.000000000 +0300
@@ -0,0 +1,14 @@
+COMMON_FLAGS=-ggdb -DFB_SEND_FLAGS=MSG_NOSIGNAL -DLINUX -pipe -MMD -fPIC -fmessage-length=0
+OPTIMIZE_FLAGS=-O3 -fno-omit-frame-pointer -fno-builtin
+WARN_FLAGS=-Wall -Wno-switch -Wno-parentheses -Wno-unknown-pragmas -Wno-unused-variable
+
+PROD_FLAGS=-DNDEBUG $(COMMON_FLAGS) $(OPTIMIZE_FLAGS)
+DEV_FLAGS=-DUSE_VALGRIND -p $(COMMON_FLAGS) $(WARN_FLAGS)
+#DEV_FLAGS=-p $(COMMON_FLAGS) $(WARN_FLAGS)
+
+OS_ServerFiles=inet_server.cpp
+
+EMBED_UTIL_TARGETS=gstat gds_drop gsec nbackup fb_lock_print
+CLIENT_UTIL_TARGETS=gds_drop gstat gsec fbguard fbmgr_bin nbackup fb_lock_print
+
+Physical_IO_Module=os/posix/unix.cpp
Index: 2.0/configure.in
===================================================================
--- 2.0.orig/configure.in	2008-04-09 18:48:11.000000000 +0300
+++ 2.0/configure.in	2008-04-09 18:48:11.000000000 +0300
@@ -79,6 +79,18 @@
     SHRLIB_EXT=so
     ;;
 
+  mips-*-linux*)
+    MAKEFILE_PREFIX=linux_mips
+    INSTALL_PREFIX=linux
+    PLATFORM=LINUX
+    AC_DEFINE(LINUX)
+    LOCK_MANAGER_FLG=Y
+    EDITLINE_FLG=Y
+    SHRLIB_EXT=so
+    PTHREAD_CFLAGS=-pthread
+    PTHREAD_LIBS=-lpthread
+    ;;
+
   mipsel-*-linux*)
     MAKEFILE_PREFIX=linux_mipsel
     INSTALL_PREFIX=linux
Index: 2.0/src/jrd/common.h
===================================================================
--- 2.0.orig/src/jrd/common.h	2008-04-09 18:48:11.000000000 +0300
+++ 2.0/src/jrd/common.h	2008-04-09 18:48:11.000000000 +0300
@@ -142,6 +142,10 @@
 #define IMPLEMENTATION  isc_info_db_impl_linux_mipsel /* 70  */
 #endif /* mipsel */
 
+#ifdef MIPSEB
+#define IMPLEMENTATION  isc_info_db_impl_linux_mips /* 72  */
+#endif /* mips */
+
 #define MEMMOVE(from, to, length)		memmove ((void *)to, (void *)from, (size_t) length)
 #define MOVE_FAST(from, to, length)       memcpy (to, from, (int) (length))
 #define MOVE_FASTER(from, to, length)     memcpy (to, from, (int) (length))
Index: 2.0/src/jrd/inf_pub.h
===================================================================
--- 2.0.orig/src/jrd/inf_pub.h	2008-04-09 18:48:11.000000000 +0300
+++ 2.0/src/jrd/inf_pub.h	2008-04-09 18:48:11.000000000 +0300
@@ -196,6 +196,7 @@
 	isc_info_db_impl_linux_ppc = 69,
 	isc_info_db_impl_darwin_x86 = 70,
 	isc_info_db_impl_linux_mipsel = 71,
+	isc_info_db_impl_linux_mips = 72,
 
 	isc_info_db_impl_last_value   /* Leave this LAST! */
 };
Index: 2.0/src/jrd/pag.cpp
===================================================================
--- 2.0.orig/src/jrd/pag.cpp	2008-04-09 18:48:11.000000000 +0300
+++ 2.0/src/jrd/pag.cpp	2008-04-09 18:48:11.000000000 +0300
@@ -140,9 +140,10 @@
 //static const int CLASS_WINDOWS_AMD64 = 26;// Windows/amd64 - not ported yet
 static const int CLASS_LINUX_PPC = 27;    // LINUX/PowerPC
 static const int CLASS_DARWIN_I386 = 28;	//Darwin/Intel
-static const int CLASS_LINUX_MIPSEL = 29;    // LINUX/MIPS
+static const int CLASS_LINUX_MIPSEL = 29;    // LINUX/MIPSEL
+static const int CLASS_LINUX_MIPS = 30;    // LINUX/MIPS
 static const int CLASS_MAX10 = CLASS_LINUX_AMD64;	// This should not be changed, no new ports with ODS10
-static const int CLASS_MAX = CLASS_LINUX_MIPSEL;
+static const int CLASS_MAX = CLASS_LINUX_MIPS;
 
 // ARCHITECTURE COMPATIBILITY CLASSES
 
@@ -227,7 +228,8 @@
 	archLittleEndian, // CLASS_WINDOWS_AMD64
 	archBigEndian,    // CLASS_LINUX_PPC
 	archLittleEndian, // CLASS_DARWIN_I386
-	archLittleEndian  // CLASS_LINUX_MIPSEL
+	archLittleEndian, // CLASS_LINUX_MIPSEL
+	archBigEndian  // CLASS_LINUX_MIPS
 };
 
 #ifdef sun
@@ -278,6 +280,9 @@
 #ifdef MIPSEL
 const SSHORT CLASS		= CLASS_LINUX_MIPSEL;
 #endif
+#ifdef MIPSEB
+const SSHORT CLASS		= CLASS_LINUX_MIPS;
+#endif
 #endif
 
 #ifdef FREEBSD
Index: 2.0/src/jrd/utl.cpp
===================================================================
--- 2.0.orig/src/jrd/utl.cpp	2008-04-09 18:48:11.000000000 +0300
+++ 2.0/src/jrd/utl.cpp	2008-04-09 18:48:11.000000000 +0300
@@ -237,7 +237,8 @@
     NULL, // "Firebird/x86-64/Windows NT",   /* 68 */		//Windows/amd64 - not ported yet
     "Firebird/linux PowerPC",	/* 69 */
 	"Firebird/Darwin/Intel",	/* 70 */
-    "Firebird/linux MIPSEL"     /* 71 */
+    "Firebird/linux MIPSEL",    /* 71 */
+    "Firebird/linux MIPS"     /* 72 */
 };
 
 
Index: 2.0/src/remote/xdr.cpp
===================================================================
--- 2.0.orig/src/remote/xdr.cpp	2008-04-09 18:48:11.000000000 +0300
+++ 2.0/src/remote/xdr.cpp	2008-04-09 18:49:24.000000000 +0300
@@ -41,7 +41,7 @@
 // It will return big strange value in case of invalid define
 #if defined(i386) || defined(I386) || defined(_M_IX86) || defined(AMD64) || defined(MIPSEL)
 #define		SWAP_DOUBLE
-#elif defined(sparc) || defined(PowerPC) || defined(PPC) || defined(__ppc__)
+#elif defined(sparc) || defined(PowerPC) || defined(PPC) || defined(__ppc__) || defined(MIPSEB)
 #undef		SWAP_DOUBLE
 #else
 #error "Define SWAP_DOUBLE for your platform correctly !"

--- End Message ---
--- Begin Message ---
Source: firebird2.0
Source-Version: 2.0.3.12981.ds1-14

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

firebird2.0-classic_2.0.3.12981.ds1-14_i386.deb
  to pool/main/f/firebird2.0/firebird2.0-classic_2.0.3.12981.ds1-14_i386.deb
firebird2.0-common_2.0.3.12981.ds1-14_i386.deb
  to pool/main/f/firebird2.0/firebird2.0-common_2.0.3.12981.ds1-14_i386.deb
firebird2.0-dev_2.0.3.12981.ds1-14_all.deb
  to pool/main/f/firebird2.0/firebird2.0-dev_2.0.3.12981.ds1-14_all.deb
firebird2.0-doc_2.0.3.12981.ds1-14_all.deb
  to pool/main/f/firebird2.0/firebird2.0-doc_2.0.3.12981.ds1-14_all.deb
firebird2.0-examples_2.0.3.12981.ds1-14_all.deb
  to pool/main/f/firebird2.0/firebird2.0-examples_2.0.3.12981.ds1-14_all.deb
firebird2.0-server-common_2.0.3.12981.ds1-14_i386.deb
  to 
pool/main/f/firebird2.0/firebird2.0-server-common_2.0.3.12981.ds1-14_i386.deb
firebird2.0-super_2.0.3.12981.ds1-14_i386.deb
  to pool/main/f/firebird2.0/firebird2.0-super_2.0.3.12981.ds1-14_i386.deb
firebird2.0_2.0.3.12981.ds1-14.diff.gz
  to pool/main/f/firebird2.0/firebird2.0_2.0.3.12981.ds1-14.diff.gz
firebird2.0_2.0.3.12981.ds1-14.dsc
  to pool/main/f/firebird2.0/firebird2.0_2.0.3.12981.ds1-14.dsc
libfbclient2_2.0.3.12981.ds1-14_i386.deb
  to pool/main/f/firebird2.0/libfbclient2_2.0.3.12981.ds1-14_i386.deb
libfbembed2_2.0.3.12981.ds1-14_i386.deb
  to pool/main/f/firebird2.0/libfbembed2_2.0.3.12981.ds1-14_i386.deb



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.
Damyan Ivanov <[EMAIL PROTECTED]> (supplier of updated firebird2.0 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: Thu, 15 May 2008 22:15:24 +0300
Source: firebird2.0
Binary: firebird2.0-super firebird2.0-classic libfbclient2 libfbembed2 
firebird2.0-common firebird2.0-server-common firebird2.0-dev 
firebird2.0-examples firebird2.0-doc
Architecture: source all i386
Version: 2.0.3.12981.ds1-14
Distribution: unstable
Urgency: high
Maintainer: Debian Firebird Group <[EMAIL PROTECTED]>
Changed-By: Damyan Ivanov <[EMAIL PROTECTED]>
Description: 
 firebird2.0-classic - Firebird Classic Server - an RDBMS based on InterBase 
6.0 code
 firebird2.0-common - common files for firebird 2.0 servers and clients
 firebird2.0-dev - Development files for Firebird - an RDBMS based on InterBase 
6.0 
 firebird2.0-doc - Documentation files for firebird database version 2.0
 firebird2.0-examples - Examples for Firebird - an RDBMS based on InterBase 6.0 
code
 firebird2.0-server-common - common files for firebird 2.0 servers
 firebird2.0-super - Firebird Super Server - an RDBMS based on InterBase 6.0 
code
 libfbclient2 - Firebird client library
 libfbembed2 - Firebird embedded client/server library
Closes: 406691 481208 481389
Changes: 
 firebird2.0 (2.0.3.12981.ds1-14) unstable; urgency=high
 .
   * firebird2.0-super.init: stop exporting ISC_USER and ISC_PASSWORD.
     Fixes a hole causing remote connections as user SYSDBA to succeed
     without giving a password.
     Closes: #481389 and CVE-2008-1880
   * remove linda overrides
   * coincidentaly also closes: #406691, an ex-wontfix bug -- "fails to
     upgrade when misconfigured", caused by the initscript relying on
     correct SYSDBA password in /etc -- something that is no longer
     needed for shutdown.
   * port-{mips,arm}.patch: unify the {EMBED,CLIENT}_TARGETS with the rest of
     the tree. Closes: #481208 -- FTBFS on mips. Thanks to Thiemo Seufer. Added
     gds_relay to mips targets in addition to his patch.
Checksums-Sha1: 
 2818600d9b18f2d38d1c0f8bfe03426ccc76ffa0 1645 
firebird2.0_2.0.3.12981.ds1-14.dsc
 574d11d916c7fa2dbd71b2be5187d83af770a34b 420229 
firebird2.0_2.0.3.12981.ds1-14.diff.gz
 35e730a95ce774b3fdbe8efeda584a39dadf1c3d 436692 
firebird2.0-dev_2.0.3.12981.ds1-14_all.deb
 40a1de5296d18f6b5b9c044873816b3ce5aa47e4 536192 
firebird2.0-examples_2.0.3.12981.ds1-14_all.deb
 24d9208c01488952728825d15be636a3f97f9992 1242496 
firebird2.0-doc_2.0.3.12981.ds1-14_all.deb
 a6024f59a6945c0eee915f4bc7d16549d8dc2b9d 2822594 
firebird2.0-super_2.0.3.12981.ds1-14_i386.deb
 56756402d51eabac0f0dd35c9ef86985152dd836 1682590 
firebird2.0-classic_2.0.3.12981.ds1-14_i386.deb
 b97a1819fdd977081cc96d56aa03ca86b7f506a8 612032 
libfbclient2_2.0.3.12981.ds1-14_i386.deb
 eaf6facff401ff97ae5fd6c6fd02902fbc28b456 1472612 
libfbembed2_2.0.3.12981.ds1-14_i386.deb
 ce1fcb6b37d851871694757628f5526cb14645fd 772842 
firebird2.0-common_2.0.3.12981.ds1-14_i386.deb
 467652617bcd5a0f08a217af8f7c6570a7d42684 504818 
firebird2.0-server-common_2.0.3.12981.ds1-14_i386.deb
Checksums-Sha256: 
 f92287993187fe9a1aba446a8fa0c10c1535784d646f33dd23e22228835dc4ce 1645 
firebird2.0_2.0.3.12981.ds1-14.dsc
 500933c3357f356d9164a7c3374c133a491b223d1b11ccf00764a8e641cb30ce 420229 
firebird2.0_2.0.3.12981.ds1-14.diff.gz
 ec4cc890a67f010fd3d839b1d5c25aa27b785eaee068556cfa8a2749a39a9398 436692 
firebird2.0-dev_2.0.3.12981.ds1-14_all.deb
 129216d251401c6ef4039d9fd79cb86359800d17b95cad70b250a20e97b74874 536192 
firebird2.0-examples_2.0.3.12981.ds1-14_all.deb
 281d4ee2a37610460df32616b29a4f3ce37bc115428a0e46ec1b2a91b234451d 1242496 
firebird2.0-doc_2.0.3.12981.ds1-14_all.deb
 7b53d0fd55759c90aa0308619630c7e1b4f3b9da33ee6bbb54f8fafdc19aa2e1 2822594 
firebird2.0-super_2.0.3.12981.ds1-14_i386.deb
 05d2d0e67e1298221cf57e314b5296230115abf8306c10d1c64913211907cd93 1682590 
firebird2.0-classic_2.0.3.12981.ds1-14_i386.deb
 54e9abe381f9c28b00b33b363c047595d1bc74538446fd36fbbc6518b57ff65f 612032 
libfbclient2_2.0.3.12981.ds1-14_i386.deb
 df0cefe5551e7abecd31ce0709824a81aeae7488dd10fa4742fd3771666089df 1472612 
libfbembed2_2.0.3.12981.ds1-14_i386.deb
 c9dad9fafe4fbd67110ef486d82e28eb9934d7f06b4a65e32563aadf7fe551e2 772842 
firebird2.0-common_2.0.3.12981.ds1-14_i386.deb
 8812f584573ab7fdd7d17415671e8f0bd04e76b3f6fa89f99b92b9dbdf7af0ed 504818 
firebird2.0-server-common_2.0.3.12981.ds1-14_i386.deb
Files: 
 125e53b9fc6c03a3d11837671033e526 1645 misc optional 
firebird2.0_2.0.3.12981.ds1-14.dsc
 3c0727c5f500a2d375ecf5511cd572ca 420229 misc optional 
firebird2.0_2.0.3.12981.ds1-14.diff.gz
 3e56ea3b037b0908c1344fee37dfaee8 436692 libdevel optional 
firebird2.0-dev_2.0.3.12981.ds1-14_all.deb
 43907c0b2a50b46499ce56205706bd26 536192 doc optional 
firebird2.0-examples_2.0.3.12981.ds1-14_all.deb
 940ebab00344af4e9113bda3ec92e55a 1242496 doc optional 
firebird2.0-doc_2.0.3.12981.ds1-14_all.deb
 02c78fd99c1637113a9ec8c75a788e0d 2822594 misc optional 
firebird2.0-super_2.0.3.12981.ds1-14_i386.deb
 00d3edcf39cf84fcaad8dc1a332797be 1682590 misc optional 
firebird2.0-classic_2.0.3.12981.ds1-14_i386.deb
 e53d565efd110ba9d696e0cc47b48558 612032 libs optional 
libfbclient2_2.0.3.12981.ds1-14_i386.deb
 cbf8463039211f790753c9367990caad 1472612 libs optional 
libfbembed2_2.0.3.12981.ds1-14_i386.deb
 8c3b54874cacae700ae19ff3dbc84994 772842 misc optional 
firebird2.0-common_2.0.3.12981.ds1-14_i386.deb
 98a001f806d11b70609c358a6c9cf52a 504818 misc optional 
firebird2.0-server-common_2.0.3.12981.ds1-14_i386.deb

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

iD8DBQFILdpAHqjlqpcl9jsRAifiAJ47cCk3aNAIgr1Li03uI6ty2Y2JCgCeMhyw
BLyU1V3agTVrvnILTyzNbOc=
=ARw6
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to