--- libopendbx-1.4.6.orig/debian/README.source +++ libopendbx-1.4.6/debian/README.source @@ -0,0 +1,68 @@ +The package opendbx-doc contains a Built-Using field because the file +dynsections.js is embedded from the doxygen package during the documentation +build process. + +The opendbx test suite is run during the build process for only the sqlite3 +backend. It is used during build because it doesn't require any pre- +configured database or the addition of extra build-dependencies. The test +files are installed in /usr/bin/opendbx by the opendbx-utils package if +additional testing is desired. + +This package uses quilt to manage all modifications to the upstream +source. Changes are stored in the source package as diffs in +debian/patches and applied during the build. + +To configure quilt to use debian/patches instead of patches, you want +either to export QUILT_PATCHES=debian/patches in your environment +or use this snippet in your ~/.quiltrc: + + for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do + if [ -e ${where}debian/rules -a -d ${where}debian/patches ]; then + export QUILT_PATCHES=debian/patches + break + fi + done + +To get the fully patched source after unpacking the source package, cd to +the root level of the source package and run: + + quilt push -a + +The last patch listed in debian/patches/series will become the current +patch. + +To add a new set of changes, first run quilt push -a, and then run: + + quilt new + +where is a descriptive name for the patch, used as the filename in +debian/patches. Then, for every file that will be modified by this patch, +run: + + quilt add + +before editing those files. You must tell quilt with quilt add what files +will be part of the patch before making changes or quilt will not work +properly. After editing the files, run: + + quilt refresh + +to save the results as a patch. + +Alternately, if you already have an external patch and you just want to +add it to the build system, run quilt push -a and then: + + quilt import -P /path/to/patch + quilt push -a + +(add -p 0 to quilt import if needed). as above is the filename to +use in debian/patches. The last quilt push -a will apply the patch to +make sure it works properly. + +To remove an existing patch from the list of patches that will be applied, +run: + + quilt delete + +You may need to run quilt pop -a to unapply patches first before running +this command. --- libopendbx-1.4.6.orig/debian/changelog +++ libopendbx-1.4.6/debian/changelog @@ -1,9 +1,90 @@ -libopendbx (1.4.6-1) unstable; urgency=low +libopendbx (1.4.6-5) unstable; urgency=medium + * Confirm symbols on all archs + * Capture unforwarded change from Ubuntu to use dh-autoreconf + * Update for symbols on Debian and Ubuntu ports (alpha, arm64, ppc64, + ppc64el, and sparc64) + * Update standards version to 3.9.5 without further change + + -- Scott Kitterman Wed, 19 Mar 2014 17:00:14 -0400 + +libopendbx (1.4.6-4) unstable; urgency=low + + * Switch maintainer address to alioth list (pkg-libopendbx-maintainers) now + that it is set up + * Update Vcs-* now that it's set up on alioth (Closes: #702244) + * Update debian/libopendbx1.symbols to match GCC 4.8 (Closes: #701306) + * Adjust debian/rules to use pkgkde-gensymbols for more consistent C++ + symbols + + -- Scott Kitterman Mon, 22 Jul 2013 21:22:17 -0400 + +libopendbx (1.4.6-3) unstable; urgency=low + + * Reorganize rules to avoid build-stamp in binary + * Update symbols files again based on logs from amd64, ia64, kfreebsd-amd64, + mips, mipsel, powerpc, s390, s390x, and sparc + * Change libopendbx1 Depends on libopendbx1-sqlite3 | libopendbx1-backend to + Recommends to break dependency loop (Closes: #693713) + * Add debian/patches/odbxtest_exit_1_on_error.diff so that test failures + will also cause the build to fail + * Fix debian/odbxtest.site path so tests run correctly + * Update clean rule to correctly remove the test database + + -- Scott Kitterman Mon, 19 Nov 2012 10:20:39 -0500 + +libopendbx (1.4.6-2) unstable; urgency=low + + * Upload to unstable + * Set opendbx@kitterman.com as maintainer address + * Move myself to Uploaders + * Add Marc Haber to Uploaders + * Add Vcs-* fields to debian/control + * Fix install locations for opendbx-utils test scripts + * Update symbols files from build logs on amd64, ia64, kfreebsd-amd64, mips, + powerpc, s390, s390x, and sparc + * Use modified gensymbols from pkg-kde-tools for better management of C++ + symbols (added to build-depends and updated symbols file) + + -- Scott Kitterman Sun, 18 Nov 2012 20:12:24 -0500 + +libopendbx (1.4.6-1) experimental; urgency=low + + [ Norbert Sendetzky ] * New upstream version (stable version) * Fixed build requirements for Ubuntu - -- Norbert Sendetzky Sat, 05 May 2012 00:00:00 +0100 + [ Scott Kitterman ] + * Initial upload to Debian (Closes: #648702) + * Add quilt as a patch system to capture debian specific changes + * Add new opendbx-doc package for OpenDBX HTML documentation + * Include odbxtest, odbxplustest, and odbxtest.sh in opendbx-utils to + support testing during package build + - Add opendbx-utils.install and change debian/rules to use it + * Use debhelper > 9 and compat 9 + * Add misc:Depends to all binaries + * Remove duplicate section/priority fields in binary sections + * Add Homepage field + * Bump standards version to 3.9.4 + * Update debian/copyright + * Add local copy of http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd + to debian dir for documentation building without internet access and patch + xml source documentation to build using the local dtd + * Update debian/rules to also add symlink for docs for opendbx-utils to + libopendbx1's doc directory + * Update debian/rules to used dpkg-buildflags + * Update debian/rules not to ignore errors on make clean + * Add build-arch and build-indep targets to debian/rules + * Modify debian/rules so .la files aren't shipped + * Change the libopendbx1 Depends on libopendbx1-backend to be + libopendbx1-sqlite3 | libopendbx1-backend so a real package is always + specified + * Add debian/libopendbx.symbols + * Updated package descriptions + * Update debian/watch (although it still doesn't work) + * Use dh_prep instead of dh_clean -k + + -- Scott Kitterman Sat, 03 Nov 2012 22:04:14 -0400 libopendbx (1.4.5-1) unstable; urgency=medium --- libopendbx-1.4.6.orig/debian/compat +++ libopendbx-1.4.6/debian/compat @@ -1 +1 @@ -7 +9 --- libopendbx-1.4.6.orig/debian/control +++ libopendbx-1.4.6/debian/control @@ -1,120 +1,149 @@ Source: libopendbx Priority: optional -Maintainer: Norbert Sendetzky -Build-Depends: autoconf, automake, autotools-dev, debhelper (>= 4.0.0), libtool, libmysqlclient-dev, libpq-dev, libsqlite0-dev, libsqlite3-dev, firebird2.5-dev | firebird2.1-dev | firebird2.0-dev | firebird2-dev | firebird1.5-dev, freetds-dev, unixodbc-dev | libiodbc2-dev, libreadline-dev, libncurses-dev | libncurses5-dev, docbook2x, doxygen +Maintainer: Debian OpenDBX Maintainers +Uploaders: Marc Haber , Scott Kitterman +Build-Depends: dh-autoreconf, autoconf, automake, autotools-dev, debhelper (>= 9), libtool, libmysqlclient-dev, libpq-dev, libsqlite0-dev, libsqlite3-dev, firebird2.5-dev | firebird2.1-dev | firebird2.0-dev | firebird2-dev | firebird1.5-dev, freetds-dev, unixodbc-dev | libiodbc2-dev, libreadline-dev, libncurses-dev | libncurses5-dev, docbook2x, doxygen, quilt, pkg-kde-tools Build-Conflicts: autoconf2.13, automake1.4 -Standards-Version: 3.7.3.0 +Homepage: http://www.linuxnetworks.de/doc/index.php/OpenDBX +Vcs-Git: git://anonscm.debian.org/collab-maint/libopendbx.git +Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/libopendbx.git;a=summary +Standards-Version: 3.9.5 Section: libs Package: libopendbx1 -Priority: optional -Section: libs Architecture: any -Depends: libopendbx1-backend, ${shlibs:Depends} +Depends: ${shlibs:Depends}, ${misc:Depends} +Recommends: libopendbx1-sqlite3 | libopendbx1-backend Description: Lightweight database access abstraction layer OpenDBX provides a simple and lightweight API for interfacing native relational database APIs in a consistent way. By using the OpenDBX API you don't have to adapt your program to the different database APIs by yourself. + . + The sqlite3 backend is recommended by default if no other backend is + installed with libopendbx1 Package: libopendbx1-dev -Priority: optional Section: libdevel Architecture: any -Depends: libopendbx1 (= ${binary:Version}) +Depends: libopendbx1 (= ${binary:Version}), ${misc:Depends} Provides: libopendbx-dev Conflicts: libopendbx-dev Description: Lightweight database access abstraction layer (dev) OpenDBX provides a simple and lightweight API for interfacing native relational database APIs in a consistent way. By using the OpenDBX API you don't have to adapt your program to the different database APIs by yourself. + . This package contains the header file to develop backends for libopendbx Package: libopendbx1-firebird -Priority: optional -Section: libs Architecture: any -Depends: libopendbx1 (= ${binary:Version}), ${shlibs:Depends} +Depends: libopendbx1 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} Provides: libopendbx1-backend Description: Firebird backend for OpenDBX - This package contains the Firebird backend for the OpenDBX - database access abstraction layer. + OpenDBX provides a simple and lightweight API for interfacing native + relational database APIs in a consistent way. By using the OpenDBX API you + don't have to adapt your program to the different database APIs by yourself. + . + This package contains the Firebird backend. Package: libopendbx1-mssql -Priority: optional -Section: libs Architecture: any -Depends: libopendbx1 (= ${binary:Version}), ${shlibs:Depends} +Depends: libopendbx1 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} Provides: libopendbx1-backend Description: MSSQL backend for OpenDBX - This package contains the MSSQL backend for the OpenDBX - database access abstraction layer. + OpenDBX provides a simple and lightweight API for interfacing native + relational database APIs in a consistent way. By using the OpenDBX API you + don't have to adapt your program to the different database APIs by yourself. + . + This package contains the MSSQL backend. Package: libopendbx1-mysql -Priority: optional -Section: libs Architecture: any -Depends: libopendbx1 (= ${binary:Version}), ${shlibs:Depends} +Depends: libopendbx1 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} Provides: libopendbx1-backend Description: MySQL backend for OpenDBX - This package contains the MySQL backend for the OpenDBX - database access abstaction layer. + OpenDBX provides a simple and lightweight API for interfacing native + relational database APIs in a consistent way. By using the OpenDBX API you + don't have to adapt your program to the different database APIs by yourself. + . + This package contains the MySQL backend. Package: libopendbx1-odbc -Priority: optional -Section: libs Architecture: any -Depends: libopendbx1 (= ${binary:Version}), ${shlibs:Depends} +Depends: libopendbx1 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} Provides: libopendbx1-backend Description: ODBC backend for OpenDBX - This package contains the ODBC backend for the OpenDBX - database access abstaction layer. + OpenDBX provides a simple and lightweight API for interfacing native + relational database APIs in a consistent way. By using the OpenDBX API you + don't have to adapt your program to the different database APIs by yourself. + . + This package contains the ODBC backend. Package: libopendbx1-pgsql -Priority: optional -Section: libs Architecture: any -Depends: libopendbx1 (= ${binary:Version}), ${shlibs:Depends} +Depends: libopendbx1 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} Provides: libopendbx1-backend Description: PostgreSQL backend for OpenDBX - This package contains the PostgreSQL backend for the OpenDBX - database access abstraction layer. + OpenDBX provides a simple and lightweight API for interfacing native + relational database APIs in a consistent way. By using the OpenDBX API you + don't have to adapt your program to the different database APIs by yourself. + . + This package contains the PostgreSQL backend. Package: libopendbx1-sqlite -Priority: optional -Section: libs Architecture: any -Depends: libopendbx1 (= ${binary:Version}), ${shlibs:Depends} +Depends: libopendbx1 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} Provides: libopendbx1-backend Description: SQLite backend for OpenDBX - This package contains the SQLite backend for the OpenDBX - database access abstraction layer. + OpenDBX provides a simple and lightweight API for interfacing native + relational database APIs in a consistent way. By using the OpenDBX API you + don't have to adapt your program to the different database APIs by yourself. + . + This package contains the SQLite backend. Package: libopendbx1-sqlite3 -Priority: optional -Section: libs Architecture: any -Depends: libopendbx1 (= ${binary:Version}), ${shlibs:Depends} +Depends: libopendbx1 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} Provides: libopendbx1-backend Description: SQLite3 backend for OpenDBX - This package contains the SQLite3 backend for the OpenDBX - database access abstraction layer. + OpenDBX provides a simple and lightweight API for interfacing native + relational database APIs in a consistent way. By using the OpenDBX API you + don't have to adapt your program to the different database APIs by yourself. + . + This package contains the SQLite3 backend. Package: libopendbx1-sybase -Priority: optional -Section: libs Architecture: any -Depends: libopendbx1 (= ${binary:Version}), ${shlibs:Depends} +Depends: libopendbx1 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} Provides: libopendbx1-backend Description: Sybase ctlib backend for OpenDBX - This package contains the Sybase backend for the OpenDBX - database access abstraction layer. + OpenDBX provides a simple and lightweight API for interfacing native + relational database APIs in a consistent way. By using the OpenDBX API you + don't have to adapt your program to the different database APIs by yourself. + . + This package contains the Sybase backend. Package: opendbx-utils -Priority: optional -Section: utils Architecture: any -Depends: libopendbx1 (>= ${binary:Version}), ${shlibs:Depends} +Depends: libopendbx1 (>= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} Provides: opendbx-utils Description: Utility applications using libopendbx - This package provides utility applications for accessing database content - directly via libopendbx + OpenDBX provides a simple and lightweight API for interfacing native + relational database APIs in a consistent way. By using the OpenDBX API you + don't have to adapt your program to the different database APIs by yourself. + . + This package provides the odbx-sql utility application for accessing database + content directly via libopendbx and the opendbx test suite for verifying that + various backends are working + +Package: opendbx-doc +Architecture: all +Depends: ${misc:Depends} +Built-Using: doxygen (= ${doxygen:Version}) +Section: doc +Description: Opendbx documentation + OpenDBX provides a simple and lightweight API for interfacing native + relational database APIs in a consistent way. By using the OpenDBX API you + don't have to adapt your program to the different database APIs by yourself. + . + This package provides html documentation for OpenDBX --- libopendbx-1.4.6.orig/debian/copyright +++ libopendbx-1.4.6/debian/copyright @@ -1,5 +1,7 @@ This package was debianized by Norbert Sendetzky on -Sat, 6 Aug 2005 12:55:17 +0200. +Sat, 6 Aug 2005 12:55:17 +0200. Packaging updated for inclusion in the +Debian archive by Scott Kitterman on Sat, 03 Nov 2012 +22:04:14 -0400. It was downloaded from http://www.linuxnetworks.de/doc/index.php/OpenDBX/Download @@ -8,7 +10,7 @@ License: libopendbx: A lightweight C library for accessing databases with a single API -Copyright 2004-2008 Norbert Sendetzky +Copyright 2004-2009 Norbert Sendetzky This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by @@ -22,4 +24,11 @@ You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, -Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301, USA. + +For Debian, based on the included license, this package is distributed +under the terms of the LGPL-2.1 + +On Debian systems, a full copy of this license can be found in +/usr/share/common-licenses/LGPL-2.1 --- libopendbx-1.4.6.orig/debian/libopendbx1.docs +++ libopendbx-1.4.6/debian/libopendbx1.docs @@ -0,0 +1,2 @@ +README +TODO --- libopendbx-1.4.6.orig/debian/libopendbx1.symbols +++ libopendbx-1.4.6/debian/libopendbx1.symbols @@ -0,0 +1,200 @@ +# SymbolsHelper-Confirmed: 1.4.6 amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc +libopendbx.so.1 libopendbx1 #MINVER# + _odbx_lib_close@Base 1.4.6 + _odbx_lib_open@Base 1.4.6 + odbx_bind@Base 1.4.6 + odbx_bind_simple@Base 1.4.6 + odbx_capabilities@Base 1.4.6 + odbx_column_count@Base 1.4.6 + odbx_column_name@Base 1.4.6 + odbx_column_type@Base 1.4.6 + odbx_error@Base 1.4.6 + odbx_error_type@Base 1.4.6 + odbx_escape@Base 1.4.6 + odbx_field_length@Base 1.4.6 + odbx_field_value@Base 1.4.6 + odbx_finish@Base 1.4.6 + odbx_get_option@Base 1.4.6 + odbx_init@Base 1.4.6 + odbx_lo_close@Base 1.4.6 + odbx_lo_open@Base 1.4.6 + odbx_lo_read@Base 1.4.6 + odbx_lo_write@Base 1.4.6 + odbx_query@Base 1.4.6 + odbx_result@Base 1.4.6 + odbx_result_finish@Base 1.4.6 + odbx_result_free@Base 1.4.6 + odbx_row_fetch@Base 1.4.6 + odbx_rows_affected@Base 1.4.6 + odbx_set_option@Base 1.4.6 + odbx_unbind@Base 1.4.6 +libopendbxplus.so.1 libopendbx1 #MINVER# + _ZN7OpenDBX10Conn_IfaceD0Ev@Base 1.4.6 + _ZN7OpenDBX10Conn_IfaceD1Ev@Base 1.4.6 + _ZN7OpenDBX10Conn_IfaceD2Ev@Base 1.4.6 + _ZN7OpenDBX10Stmt_IfaceD0Ev@Base 1.4.6 + _ZN7OpenDBX10Stmt_IfaceD1Ev@Base 1.4.6 + _ZN7OpenDBX10Stmt_IfaceD2Ev@Base 1.4.6 + _ZN7OpenDBX11Result_Impl10columnNameEm@Base 1.4.6 + _ZN7OpenDBX11Result_Impl10columnTypeEm@Base 1.4.6 + _ZN7OpenDBX11Result_Impl10fieldValueEm@Base 1.4.6 + _ZN7OpenDBX11Result_Impl11columnCountEv@Base 1.4.6 + _ZN7OpenDBX11Result_Impl11fieldLengthEm@Base 1.4.6 + _ZN7OpenDBX11Result_Impl12rowsAffectedEv@Base 1.4.6 + _ZN7OpenDBX11Result_Impl6finishEv@Base 1.4.6 + _ZN7OpenDBX11Result_Impl6getLobEPKc@Base 1.4.6 + _ZN7OpenDBX11Result_Impl6getRowEv@Base 1.4.6 + _ZN7OpenDBX11Result_Impl9columnPosERKSs@Base 1.4.6 + _ZN7OpenDBX11Result_Impl9getResultEP7timevalm@Base 1.4.6 + _ZN7OpenDBX11Result_ImplC1EP6odbx_t@Base 1.4.6 + _ZN7OpenDBX11Result_ImplC2EP6odbx_t@Base 1.4.6 + _ZN7OpenDBX11Result_ImplD0Ev@Base 1.4.6 + _ZN7OpenDBX11Result_ImplD1Ev@Base 1.4.6 + _ZN7OpenDBX11Result_ImplD2Ev@Base 1.4.6 + _ZN7OpenDBX12Result_IfaceD0Ev@Base 1.4.6 + _ZN7OpenDBX12Result_IfaceD1Ev@Base 1.4.6 + _ZN7OpenDBX12Result_IfaceD2Ev@Base 1.4.6 + _ZN7OpenDBX15StmtSimple_Impl7executeEv@Base 1.4.6 + _ZN7OpenDBX15StmtSimple_ImplC1EP6odbx_tRKSs@Base 1.4.6 + _ZN7OpenDBX15StmtSimple_ImplC1Ev@Base 1.4.6 + _ZN7OpenDBX15StmtSimple_ImplC2EP6odbx_tRKSs@Base 1.4.6 + _ZN7OpenDBX15StmtSimple_ImplC2Ev@Base 1.4.6 + _ZN7OpenDBX15StmtSimple_ImplD0Ev@Base 1.4.6 + _ZN7OpenDBX15StmtSimple_ImplD1Ev@Base 1.4.6 + _ZN7OpenDBX15StmtSimple_ImplD2Ev@Base 1.4.6 + (subst|arch=!amd64 !ia64 !kfreebsd-amd64 !s390 !s390x !alpha !arm64 !ppc64 !ppc64el !sparc64)_ZN7OpenDBX3Lob4readEPvj@Base 1.4.6 + (subst|arch=amd64 ia64 kfreebsd-amd64 s390 s390x alpha arm64 ppc64 ppc64el sparc64)_ZN7OpenDBX3Lob4readEPvm@Base 1.4.6 + _ZN7OpenDBX3Lob5closeEv@Base 1.4.6 + (subst|arch=!amd64 !ia64 !kfreebsd-amd64 !s390 !s390x !alpha !arm64 !ppc64 !ppc64el !sparc64)_ZN7OpenDBX3Lob5writeEPvj@Base 1.4.6 + (subst|arch=amd64 ia64 kfreebsd-amd64 s390 s390x alpha arm64 ppc64 ppc64el sparc64)_ZN7OpenDBX3Lob5writeEPvm@Base 1.4.6 + _ZN7OpenDBX3LobC1EPNS_9Lob_IfaceE@Base 1.4.6 + _ZN7OpenDBX3LobC1ERKS0_@Base 1.4.6 + _ZN7OpenDBX3LobC2EPNS_9Lob_IfaceE@Base 1.4.6 + _ZN7OpenDBX3LobC2ERKS0_@Base 1.4.6 + _ZN7OpenDBX3LobD1Ev@Base 1.4.6 + _ZN7OpenDBX3LobD2Ev@Base 1.4.6 + _ZN7OpenDBX3LobaSERKS0_@Base 1.4.6 + _ZN7OpenDBX4Conn13getCapabilityE7odbxcap@Base 1.4.6 + _ZN7OpenDBX4Conn4bindEPKcS2_S2_8odbxbind@Base 1.4.6 + _ZN7OpenDBX4Conn4bindERKSsS2_S2_8odbxbind@Base 1.4.6 + _ZN7OpenDBX4Conn6createEPKcmNS_4Stmt4TypeE@Base 1.4.6 + _ZN7OpenDBX4Conn6createERKSsNS_4Stmt4TypeE@Base 1.4.6 + _ZN7OpenDBX4Conn6escapeEPKcmRSs@Base 1.4.6 + _ZN7OpenDBX4Conn6escapeERKSsRSs@Base 1.4.6 + _ZN7OpenDBX4Conn6finishEv@Base 1.4.6 + _ZN7OpenDBX4Conn6unbindEv@Base 1.4.6 + _ZN7OpenDBX4Conn9getOptionE7odbxoptPv@Base 1.4.6 + _ZN7OpenDBX4Conn9setOptionE7odbxoptPv@Base 1.4.6 + _ZN7OpenDBX4ConnC1EPKcS2_S2_@Base 1.4.6 + _ZN7OpenDBX4ConnC1ERKS0_@Base 1.4.6 + _ZN7OpenDBX4ConnC1ERKSsS2_S2_@Base 1.4.6 + _ZN7OpenDBX4ConnC1Ev@Base 1.4.6 + _ZN7OpenDBX4ConnC2EPKcS2_S2_@Base 1.4.6 + _ZN7OpenDBX4ConnC2ERKS0_@Base 1.4.6 + _ZN7OpenDBX4ConnC2ERKSsS2_S2_@Base 1.4.6 + _ZN7OpenDBX4ConnC2Ev@Base 1.4.6 + _ZN7OpenDBX4ConnD1Ev@Base 1.4.6 + _ZN7OpenDBX4ConnD2Ev@Base 1.4.6 + _ZN7OpenDBX4ConnaSERKS0_@Base 1.4.6 + _ZN7OpenDBX4Stmt7executeEv@Base 1.4.6 + _ZN7OpenDBX4StmtC1EPNS_10Stmt_IfaceE@Base 1.4.6 + _ZN7OpenDBX4StmtC1ERKS0_@Base 1.4.6 + _ZN7OpenDBX4StmtC2EPNS_10Stmt_IfaceE@Base 1.4.6 + _ZN7OpenDBX4StmtC2ERKS0_@Base 1.4.6 + _ZN7OpenDBX4StmtD1Ev@Base 1.4.6 + _ZN7OpenDBX4StmtD2Ev@Base 1.4.6 + _ZN7OpenDBX4StmtaSERKS0_@Base 1.4.6 + _ZN7OpenDBX6Result10columnNameEm@Base 1.4.6 + _ZN7OpenDBX6Result10columnTypeEm@Base 1.4.6 + _ZN7OpenDBX6Result10fieldValueEm@Base 1.4.6 + _ZN7OpenDBX6Result11columnCountEv@Base 1.4.6 + _ZN7OpenDBX6Result11fieldLengthEm@Base 1.4.6 + _ZN7OpenDBX6Result12rowsAffectedEv@Base 1.4.6 + _ZN7OpenDBX6Result6finishEv@Base 1.4.6 + _ZN7OpenDBX6Result6getLobEPKc@Base 1.4.6 + _ZN7OpenDBX6Result6getRowEv@Base 1.4.6 + _ZN7OpenDBX6Result9columnPosERKSs@Base 1.4.6 + _ZN7OpenDBX6Result9getResultEP7timevalm@Base 1.4.6 + _ZN7OpenDBX6ResultC1EPNS_12Result_IfaceE@Base 1.4.6 + _ZN7OpenDBX6ResultC1ERKS0_@Base 1.4.6 + _ZN7OpenDBX6ResultC2EPNS_12Result_IfaceE@Base 1.4.6 + _ZN7OpenDBX6ResultC2ERKS0_@Base 1.4.6 + _ZN7OpenDBX6ResultD1Ev@Base 1.4.6 + _ZN7OpenDBX6ResultD2Ev@Base 1.4.6 + _ZN7OpenDBX6ResultaSERKS0_@Base 1.4.6 + (subst|arch=!amd64 !ia64 !kfreebsd-amd64 !s390 !s390x !alpha !arm64 !ppc64 !ppc64el !sparc64)_ZN7OpenDBX8Lob_Impl4readEPvj@Base 1.4.6 + (subst|arch=amd64 ia64 kfreebsd-amd64 s390 s390x alpha arm64 ppc64 ppc64el sparc64)_ZN7OpenDBX8Lob_Impl4readEPvm@Base 1.4.6 + _ZN7OpenDBX8Lob_Impl5closeEv@Base 1.4.6 + (subst|arch=!amd64 !ia64 !kfreebsd-amd64 !s390 !s390x !alpha !arm64 !ppc64 !ppc64el !sparc64)_ZN7OpenDBX8Lob_Impl5writeEPvj@Base 1.4.6 + (subst|arch=amd64 ia64 kfreebsd-amd64 s390 s390x alpha arm64 ppc64 ppc64el sparc64)_ZN7OpenDBX8Lob_Impl5writeEPvm@Base 1.4.6 + _ZN7OpenDBX8Lob_ImplC1EP13odbx_result_tPKc@Base 1.4.6 + _ZN7OpenDBX8Lob_ImplC2EP13odbx_result_tPKc@Base 1.4.6 + _ZN7OpenDBX8Lob_ImplD0Ev@Base 1.4.6 + _ZN7OpenDBX8Lob_ImplD1Ev@Base 1.4.6 + _ZN7OpenDBX8Lob_ImplD2Ev@Base 1.4.6 + _ZN7OpenDBX9Conn_Impl13getCapabilityE7odbxcap@Base 1.4.6 + _ZN7OpenDBX9Conn_Impl4bindEPKcS2_S2_8odbxbind@Base 1.4.6 + _ZN7OpenDBX9Conn_Impl6createERKSsNS_4Stmt4TypeE@Base 1.4.6 + _ZN7OpenDBX9Conn_Impl6escapeEPKcmRSs@Base 1.4.6 + _ZN7OpenDBX9Conn_Impl6finishEv@Base 1.4.6 + _ZN7OpenDBX9Conn_Impl6unbindEv@Base 1.4.6 + _ZN7OpenDBX9Conn_Impl9getOptionE7odbxoptPv@Base 1.4.6 + _ZN7OpenDBX9Conn_Impl9setOptionE7odbxoptPv@Base 1.4.6 + _ZN7OpenDBX9Conn_ImplC1EPKcS2_S2_@Base 1.4.6 + _ZN7OpenDBX9Conn_ImplC2EPKcS2_S2_@Base 1.4.6 + _ZN7OpenDBX9Conn_ImplD0Ev@Base 1.4.6 + _ZN7OpenDBX9Conn_ImplD1Ev@Base 1.4.6 + _ZN7OpenDBX9Conn_ImplD2Ev@Base 1.4.6 + _ZN7OpenDBX9ExceptionC1ERKSsii@Base 1.4.6 + _ZN7OpenDBX9ExceptionC2ERKSsii@Base 1.4.6 + _ZN7OpenDBX9ExceptionD0Ev@Base 1.4.6 + _ZN7OpenDBX9ExceptionD1Ev@Base 1.4.6 + _ZN7OpenDBX9ExceptionD2Ev@Base 1.4.6 + _ZN7OpenDBX9Lob_IfaceD0Ev@Base 1.4.6 + _ZN7OpenDBX9Lob_IfaceD1Ev@Base 1.4.6 + _ZN7OpenDBX9Lob_IfaceD2Ev@Base 1.4.6 + _ZN7OpenDBX9Stmt_ImplC1EP6odbx_t@Base 1.4.6 + _ZN7OpenDBX9Stmt_ImplC2EP6odbx_t@Base 1.4.6 + _ZN7OpenDBX9Stmt_ImplD0Ev@Base 1.4.6 + _ZN7OpenDBX9Stmt_ImplD1Ev@Base 1.4.6 + _ZN7OpenDBX9Stmt_ImplD2Ev@Base 1.4.6 + _ZNK7OpenDBX9Exception7getCodeEv@Base 1.4.6 + _ZNK7OpenDBX9Exception7getTypeEv@Base 1.4.6 + _ZNK7OpenDBX9Stmt_Impl10_getHandleEv@Base 1.4.6 + (optional=templinst|arch=ia64 powerpc s390 s390x sparc)_ZNSt8_Rb_treeIKSsSt4pairIS0_mESt10_Select1stIS2_ESt4lessIS0_ESaIS2_EE10_M_insert_EPKSt18_Rb_tree_node_baseSB_RKS2_@Base 1.4.6 + (optional=templinst|arch=ia64 powerpc s390 s390x sparc alpha)_ZNSt8_Rb_treeIKSsSt4pairIS0_mESt10_Select1stIS2_ESt4lessIS0_ESaIS2_EE16_M_insert_uniqueERKS2_@Base 1.4.6 + _ZNSt8_Rb_treeIKSsSt4pairIS0_mESt10_Select1stIS2_ESt4lessIS0_ESaIS2_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS2_ERKS2_@Base 1.4.6 + (optional=templinst|arch=!ia64 !powerpc !s390 !s390x !sparc !alpha !ppc64)_ZNSt8_Rb_treeIKSsSt4pairIS0_mESt10_Select1stIS2_ESt4lessIS0_ESaIS2_EE24_M_get_insert_unique_posERS0_@Base 1.4.6 + (optional=templinst|arch=amd64 kfreebsd-amd64 sparc64)_ZNSt8_Rb_treeIKSsSt4pairIS0_mESt10_Select1stIS2_ESt4lessIS0_ESaIS2_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS2_ERS0_@Base 1.4.6 + (arch=amd64 armel armhf i386 kfreebsd-amd64 kfreebsd-i386 mips mipsel arm64 ppc64 ppc64el sparc64)_ZNSt8_Rb_treeIKSsSt4pairIS0_mESt10_Select1stIS2_ESt4lessIS0_ESaIS2_EE4findERS0_@Base 1.4.6 + _ZNSt8_Rb_treeIKSsSt4pairIS0_mESt10_Select1stIS2_ESt4lessIS0_ESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E@Base 1.4.6 + _ZTIN7OpenDBX10Conn_IfaceE@Base 1.4.6 + _ZTIN7OpenDBX10Stmt_IfaceE@Base 1.4.6 + _ZTIN7OpenDBX11Result_ImplE@Base 1.4.6 + _ZTIN7OpenDBX12Result_IfaceE@Base 1.4.6 + _ZTIN7OpenDBX15StmtSimple_ImplE@Base 1.4.6 + _ZTIN7OpenDBX8Lob_ImplE@Base 1.4.6 + _ZTIN7OpenDBX9Conn_ImplE@Base 1.4.6 + _ZTIN7OpenDBX9ExceptionE@Base 1.4.6 + _ZTIN7OpenDBX9Lob_IfaceE@Base 1.4.6 + _ZTIN7OpenDBX9Stmt_ImplE@Base 1.4.6 + _ZTSN7OpenDBX10Conn_IfaceE@Base 1.4.6 + _ZTSN7OpenDBX10Stmt_IfaceE@Base 1.4.6 + _ZTSN7OpenDBX11Result_ImplE@Base 1.4.6 + _ZTSN7OpenDBX12Result_IfaceE@Base 1.4.6 + _ZTSN7OpenDBX15StmtSimple_ImplE@Base 1.4.6 + _ZTSN7OpenDBX8Lob_ImplE@Base 1.4.6 + _ZTSN7OpenDBX9Conn_ImplE@Base 1.4.6 + _ZTSN7OpenDBX9ExceptionE@Base 1.4.6 + _ZTSN7OpenDBX9Lob_IfaceE@Base 1.4.6 + _ZTSN7OpenDBX9Stmt_ImplE@Base 1.4.6 + _ZTVN7OpenDBX10Conn_IfaceE@Base 1.4.6 + _ZTVN7OpenDBX10Stmt_IfaceE@Base 1.4.6 + _ZTVN7OpenDBX11Result_ImplE@Base 1.4.6 + _ZTVN7OpenDBX12Result_IfaceE@Base 1.4.6 + _ZTVN7OpenDBX15StmtSimple_ImplE@Base 1.4.6 + _ZTVN7OpenDBX8Lob_ImplE@Base 1.4.6 + _ZTVN7OpenDBX9Conn_ImplE@Base 1.4.6 + _ZTVN7OpenDBX9ExceptionE@Base 1.4.6 + _ZTVN7OpenDBX9Lob_IfaceE@Base 1.4.6 + _ZTVN7OpenDBX9Stmt_ImplE@Base 1.4.6 --- libopendbx-1.4.6.orig/debian/odbxtest.site +++ libopendbx-1.4.6/debian/odbxtest.site @@ -0,0 +1,15 @@ +# +# OpenDBX regression test +# +# This file contains the backends to test and the database +# parameter which should be used for each test +# + +# Backends to test +ODBXTEST_BACKENDS="sqlite3" + +SQLITE3_HOST="../debian/" +SQLITE3_PORT="" +SQLITE3_DATABASE="testdb" +SQLITE3_USERNAME="" +SQLITE3_PASSWORD="" --- libopendbx-1.4.6.orig/debian/opendbx-doc.docs +++ libopendbx-1.4.6/debian/opendbx-doc.docs @@ -0,0 +1,3 @@ +README +TODO +doc/html --- libopendbx-1.4.6.orig/debian/opendbx-utils.install +++ libopendbx-1.4.6/debian/opendbx-utils.install @@ -0,0 +1,6 @@ +test/odbx*test /usr/bin +test/odbxtest.sh /usr/bin +debian/odbxtest.site /usr/share/doc/opendbx +debian/tmp/usr/bin/odbx-sql usr/bin +debian/tmp/usr/share/locale/*/*/opendbx-utils.mo +debian/tmp/usr/share/opendbx/keywords usr/share/opendbx --- libopendbx-1.4.6.orig/debian/patches/odbxtest_exit_1_on_error.diff +++ libopendbx-1.4.6/debian/patches/odbxtest_exit_1_on_error.diff @@ -0,0 +1,34 @@ +This way if the test fails, the build will fail. +Need to send upstream. +Index: libopendbx-1.4.6/test/odbxtest.sh +=================================================================== +--- libopendbx-1.4.6.orig/test/odbxtest.sh 2012-05-06 08:10:59.000000000 -0400 ++++ libopendbx-1.4.6/test/odbxtest.sh 2012-11-19 12:21:05.468414873 -0500 +@@ -7,6 +7,7 @@ + if ! test -f odbxtest.site + then + echo "No odbxtest.site file found" ++ exit 1 + fi + + ODBXAPP="./odbxtest ./odbxplustest" +@@ -28,6 +29,7 @@ + echo "$1 ERRORS:" >> testresult.err + cat test.err >> testresult.err + diff -b test.out ref/$1.ref >> testresult.err ++ FAILURE="FAILED" + else + echo " $1 OK" + echo " $1 OK" >> testresult.log +@@ -154,5 +156,9 @@ + rm -f test.out + rm -f test.err + +- +-exit 0 ++if [ -n "$FAILURE" ] ++then ++ exit 1 ++else ++ exit 0 ++fi --- libopendbx-1.4.6.orig/debian/patches/series +++ libopendbx-1.4.6/debian/patches/series @@ -0,0 +1,2 @@ +odbxtest_exit_1_on_error.diff +use_local_dtd.diff --- libopendbx-1.4.6.orig/debian/patches/use_local_dtd.diff +++ libopendbx-1.4.6/debian/patches/use_local_dtd.diff @@ -0,0 +1,30 @@ +Description: Use local copy of docbookx.dtd + http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd is added to debian + dir and used instead of the online one so the package can build with no + network access. +Author: Scott Kitterman +Origin: vendor +Forwarded: not-needed + +Index: libopendbx-1.4.6/utils/doc/opendbx-utils.en.xml +=================================================================== +--- libopendbx-1.4.6.orig/utils/doc/opendbx-utils.en.xml 2012-11-03 22:31:11.226725868 -0400 ++++ libopendbx-1.4.6/utils/doc/opendbx-utils.en.xml 2012-11-03 22:31:15.022725927 -0400 +@@ -1,5 +1,5 @@ + ++ "../../debian/xml/docbookx.dtd"> + + + OpenDBX +Index: libopendbx-1.4.6/doc/opendbx.en.xml +=================================================================== +--- libopendbx-1.4.6.orig/doc/opendbx.en.xml 2012-11-03 22:29:36.550724394 -0400 ++++ libopendbx-1.4.6/doc/opendbx.en.xml 2012-11-03 22:34:20.582728815 -0400 +@@ -1,5 +1,5 @@ + ++ "../debian/xml/docbookx.dtd"> + + + OpenDBX --- libopendbx-1.4.6.orig/debian/rules +++ libopendbx-1.4.6/debian/rules @@ -1,6 +1,6 @@ #!/usr/bin/make -f -package := libopendbx1 +package := libopendbx1 backends := firebird mssql mysql pgsql odbc sqlite sqlite3 sybase includes := -I/usr/include/mysql -I/usr/include/postgresql tmpdir := debian/tmp @@ -13,53 +13,80 @@ export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +doxygen_version := $(shell dpkg-query -W -f="\$${Version}\n" doxygen) + ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) CONFFLAGS = --build $(DEB_HOST_GNU_TYPE) else CONFFLAGS = --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) endif +ifneq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS))) + with_check := disabled by DEB_BUILD_OPTIONS. +else + ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) + with_check := disabled because cross-compiling. + else + with_check := yes + endif +endif +PATH2=$PATH\ export PATH='/usr/share/pkg-kde-tools/bin:'$PATH2 -CFLAGS = -Wall -pedantic -std=c99 -g -CXXFLAGS = -Wall -pedantic -g +CFLAGS = $(shell dpkg-buildflags --get CFLAGS) -Wall -pedantic -std=c99 +CPPFLAGS = $(shell dpkg-buildflags --get CPPFLAGS) +CXXFLAGS = $(shell dpkg-buildflags --get CXXFLAGS) -Wall -pedantic +LDFLAGS = $(shell dpkg-buildflags --get LDFLAGS) -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 - CXXFLAGS += -O0 -else - CFLAGS += -O2 - CXXFLAGS += -O2 -endif +include /usr/share/quilt/quilt.make +build: $(QUILT_STAMPFN) build-stamp +build-stamp: build-arch build-indep + touch build-stamp -build: +build-arch: build-arch-stamp +build-arch-stamp: dh_testdir - - CPPFLAGS="${includes} ${CPPFLAGS}" \ + dh_autoreconf CFLAGS="${CFLAGS}" \ + CPPFLAGS="${includes} ${CPPFLAGS}" \ CXXFLAGS="${CXXFLAGS}" \ + LDFLAGS="${LDFLAGS}" \ ./configure ${CONFFLAGS} \ --prefix=/usr \ --disable-rpath \ --with-backends="${backends}" $(MAKE) - touch build-stamp +ifeq ($(with_check),yes) + cp $(CURDIR)/debian/odbxtest.site $(CURDIR)/test + cd test; ./odbxtest.sh + rm -f $(CURDIR)/test/odbxtest.site + rm -f $(CURDIR)/debian/testdb + rm -r $(CURDIR)/test/testresult* +else + @echo "Testsuite not run: $(with_check)." +endif + +build-indep: build-indep-stamp +build-indep-stamp: + +install: install-indep install-arch +install-indep: install-indep-stamp +install-indep-stamp: build-indep-stamp -install: build +install-arch: install-arch-stamp +install-arch-stamp: dh_testdir dh_testroot - dh_clean -k + dh_prep dh_installdirs $(MAKE) install DESTDIR="${CURDIR}/${tmpdir}" - - -binary-arch: build install - dh_testdir - dh_testroot +binary-arch: install + dh_testdir -a + dh_testroot -a dh_installdocs -p${package} dh_installchangelogs -p${package} ChangeLog @@ -70,36 +97,36 @@ dh_install -p${package} --autodest "${tmpdir}/usr/share/locale/*/*/opendbx.mo" dh_install -p${package}-dev "${tmpdir}/usr/include/opendbx/api" "usr/include/opendbx" dh_install -p${package}-dev "${tmpdir}/usr/include/opendbx/api.h" "usr/include/opendbx" - dh_install -p${package}-dev "${tmpdir}/usr/lib/libopendbx.so" "${tmpdir}/usr/lib/libopendbx.*a" "usr/lib/" - dh_install -p${package}-dev "${tmpdir}/usr/lib/libopendbxplus.so" "${tmpdir}/usr/lib/libopendbxplus.*a" "usr/lib/" + dh_install -p${package}-dev "${tmpdir}/usr/lib/libopendbx.so" "${tmpdir}/usr/lib/libopendbx.a" "usr/lib/" + dh_install -p${package}-dev "${tmpdir}/usr/lib/libopendbxplus.so" "${tmpdir}/usr/lib/libopendbxplus.a" "usr/lib/" dh_install -p${package}-dev "opendbx.pc" "usr/lib/pkgconfig/" dh_link -p${package}-dev "usr/share/doc/${package}" "usr/share/doc/${package}-dev" dh_link -p${package}-dev "usr/include/opendbx/api.h" "usr/include/odbx.h" - @set -e ; \ + dh_link -popendbx-utils "usr/share/doc/${package}" "usr/share/doc/opendbx-utils" + set -e ; \ for be in ${backends} ; do \ dh_install -p${package}-$${be} "${tmpdir}/usr/lib/opendbx/lib$${be}backend.so*" "usr/lib/opendbx/" ; \ dh_link -p${package}-$${be} "usr/share/doc/${package}" "usr/share/doc/${package}-$${be}" ; \ done dh_installman -popendbx-utils ${tmpdir}/usr/share/man/man1/* - dh_install -popendbx-utils "${tmpdir}/usr/bin/odbx-sql" "usr/bin/" - dh_install -popendbx-utils --autodest "${tmpdir}/usr/share/locale/*/*/opendbx-utils.mo" - dh_install -popendbx-utils "${tmpdir}/usr/share/opendbx/keywords" "usr/share/opendbx/" - - dh_link - dh_strip - dh_compress - dh_fixperms - - dh_makeshlibs --exclude=backend - dh_installdeb - dh_shlibdeps - dh_md5sums + dh_install -popendbx-utils + mv $(CURDIR)/debian/opendbx-utils/usr/bin/odbxtest.sh $(CURDIR)/debian/opendbx-utils/usr/bin/odbxtest.master + + dh_link -a + dh_strip -a + dh_compress -a + dh_fixperms -a + + dh_makeshlibs -a --exclude=backend + dh_installdeb -a + dh_shlibdeps -a + dh_md5sums -a dh_gencontrol -p${package} dh_builddeb -p${package} dh_gencontrol -p${package}-dev dh_builddeb -p${package}-dev - @set -e ; \ + set -e ; \ for be in ${backends} ; do \ dh_gencontrol -p${package}-$${be} ; \ dh_builddeb -p${package}-$${be} ; \ @@ -107,25 +134,38 @@ dh_gencontrol -popendbx-utils dh_builddeb -popendbx-utils - binary-indep: - + dh_testdir -i + dh_testroot -i + dh_installdocs -i + dh_installchangelogs -i ChangeLog + dh_install -i + dh_compress -i + dh_fixperms -i + dh_installdeb -i + dh_md5sums -i + dh_gencontrol -i -- -Vdoxygen:Version=$(doxygen_version) + dh_builddeb -i binary: binary-arch binary-indep -clean: - rm -f build-stamp +clean: unpatch + rm -f build*stamp + rm -f install*stamp rm -f debian/files + rm -rf doc/html + rm -f doc/*.3 + rm -rf doc/man + rm -rf doc/xml dh_testdir dh_testroot - -$(MAKE) distclean - autoreconf --force + [ ! -f Makefile ] || $(MAKE) distclean + dh_autoreconf_clean dh_clean - -.PHONY: binary binary-arch binary-indep build clean install +.PHONY: build clean binary-indep binary-arch binary install --- libopendbx-1.4.6.orig/debian/watch +++ libopendbx-1.4.6/debian/watch @@ -1,10 +1,3 @@ -# Example watch control file for uscan -# Rename this file to "watch" and then you can run the "uscan" command -# to check for upstream updates and more. -# See uscan(1) for format - -# Compulsory line, this is a version 2 file -version=2 - -# Uncomment to examine a Webserver directory -http://www.linuxnetworks.de/opendbx/download/libopendbx-(.*)\.tar\.gz +version=3 +opts=filenamemangle=s/.*=(.*)/$1/ \ +http://linuxnetworks.de/opendbx/download/\?path=&download=opendbx-(.+)\.tar\.gz --- libopendbx-1.4.6.orig/debian/xml/calstblx.dtd +++ libopendbx-1.4.6/debian/xml/calstblx.dtd @@ -0,0 +1,200 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/dbcentx.mod +++ libopendbx-1.4.6/debian/xml/dbcentx.mod @@ -0,0 +1,384 @@ + + + + + + + + + + + + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/dbgenent.mod +++ libopendbx-1.4.6/debian/xml/dbgenent.mod @@ -0,0 +1,41 @@ + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/dbhierx.mod +++ libopendbx-1.4.6/debian/xml/dbhierx.mod @@ -0,0 +1,2115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +%rdbhier; +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +%rdbhier2; +]]> + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> +]]> + + + + + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> +]]> + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + +]]> +]]> +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> + +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> + +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> +]]> + + + + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> +]]> + + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> +]]> + + + + + + + + + + + +]]> + + + +]]> + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> +]]> + + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> +]]> + + + + + + + + + + + + +]]> + + + + + + + +]]> +]]> + + + --- libopendbx-1.4.6.orig/debian/xml/dbnotnx.mod +++ libopendbx-1.4.6/debian/xml/dbnotnx.mod @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/dbpoolx.mod +++ libopendbx-1.4.6/debian/xml/dbpoolx.mod @@ -0,0 +1,7924 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +%rdbpool; +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> +]]> + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + + +]]> +]]> +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> + +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + +]]> + + + +]]> + + + + +]]> + + + +]]> + + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + + +]]> + + + +]]> + +]]> + + + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> +]]> + + + + + + + + + + +]]> + + + + + + + +]]> +]]> + + + + + + + + +]]> + + + + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> +]]> + + + + + + + + + + +]]> + + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> +]]> + + + + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> +]]> + + + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> + +]]> + + + + + + + + +]]> + + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + + +]]> +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> + +]]> + + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> +]]> + + + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + + + + + + +]]> + + + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> +]]> + + + + + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + +]]> + +%tablemodel; + +]]> + + + + + + + + +]]> + + + + + + + + + +]]> +]]> + + + + + + + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + + +]]> +]]> + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> +]]> + + + + + + + + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + + + +]]> + + + +]]> + ]]> +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + + + +]]> + + + +]]> + ]]> + + +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> + +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> + + + ]]> + + + + +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + + + +]]> + + + +]]> + ]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + +]]> + + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> + +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> + +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> + + + + + + + +]]> + + + +]]> + ]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> + ]]> + + +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + +]]> + + + + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + +]]> + + + + + + + +]]> +]]> + + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + +]]> + + + +]]> +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + +]]> +]]> + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + +]]> + + + +]]> + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + +]]> +]]> + + + + + + + + + +]]> + + + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + + +]]> +]]> + + + + + + + + + +]]> + + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + + + + +]]> + + + + + + + + + + +]]> +]]> + + + + + + + + +]]> + + + + +]]> + + + + +]]> + + + + +]]> + + + + +]]> + + + + +]]> + +]]> + + + + + + + +]]> + + + +]]> + + + +]]> + + + +]]> +]]> +]]> + + + --- libopendbx-1.4.6.orig/debian/xml/docbookx.dtd +++ libopendbx-1.4.6/debian/xml/docbookx.dtd @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + +]]> + + + + + + + + + +]]> +]]> + + + +]]> + + + +]]> + + + + + + +%dbnotn; +]]> + + + + + + +]]> + +]]> + + +%dbcent; +]]> + + + + + + + + +%dbpool; +]]> + + + + + + +%rdbmods; +]]> + + + + + +%dbhier; +]]> + + + + + + +%dbgenent; +]]> + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-amsa.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-amsa.ent @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-amsb.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-amsb.ent @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-amsc.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-amsc.ent @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-amsn.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-amsn.ent @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-amso.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-amso.ent @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-amsr.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-amsr.ent @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-box.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-box.ent @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-cyr1.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-cyr1.ent @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-cyr2.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-cyr2.ent @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-dia.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-dia.ent @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-grk1.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-grk1.ent @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-grk2.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-grk2.ent @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-grk3.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-grk3.ent @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-grk4.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-grk4.ent @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-lat1.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-lat1.ent @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-lat2.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-lat2.ent @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-num.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-num.ent @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-pub.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-pub.ent @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- libopendbx-1.4.6.orig/debian/xml/ent/iso-tech.ent +++ libopendbx-1.4.6/debian/xml/ent/iso-tech.ent @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +