From 124858fc527c136ca74d7db4ad529d115cb2a0db Mon Sep 17 00:00:00 2001 From: Caolan McNamara Date: Mar 15 2005 08:13:04 +0000 Subject: auto-import libgda-1.2.0-5 on branch devel from libgda-1.2.0-5.src.rpm --- diff --git a/.cvsignore b/.cvsignore index e69de29..79f396c 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +libgda-1.2.0.tar.bz2 diff --git a/libgda-1.2.0-64bitgnomeXXXXXX.patch b/libgda-1.2.0-64bitgnomeXXXXXX.patch new file mode 100644 index 0000000..cd26785 --- /dev/null +++ b/libgda-1.2.0-64bitgnomeXXXXXX.patch @@ -0,0 +1,51 @@ +--- libgda-1.2.0/configure.in.orig 2005-02-04 14:55:37.264111391 +0000 ++++ libgda-1.2.0/configure.in 2005-02-04 14:57:40.495430489 +0000 +@@ -157,25 +157,31 @@ + bdbdir="" + if test $try_bdb = true + then +- AC_MSG_CHECKING(for Berkeley DB files) +- for d in $dir /usr /usr/local +- do +- if test -f $d/$lib/libdb.so -a -f $d/include/db.h ++ AC_CHECK_HEADER(db.h, bdb_ok=yes, bdb_ok=no, []) ++ if test $bdb_ok = yes ; then ++ bdbdir=yes ++ BDB_LIBS="-ldb" ++ else ++ AC_MSG_CHECKING(for Berkeley DB files) ++ for d in $dir /usr /usr/local ++ do ++ if test -f $d/$lib/libdb.so -a -f $d/include/db.h ++ then ++ AC_MSG_RESULT(found Berkeley DB in $d) ++ bdblib="-ldb" ++ bdbdir=$d ++ break ++ fi ++ dnl FIXME: check for db1 (non-sleepycat implementation) ++ done ++ if test x$bdbdir = x + then +- AC_MSG_RESULT(found Berkeley DB in $d) +- bdblib="-ldb" +- bdbdir=$d +- break ++ AC_MSG_WARN(Berkeley DB backend not used) ++ else ++ AC_DEFINE(HAVE_BDB, 1, [Have Berkeley DB]) ++ BDB_CFLAGS="-I${bdbdir}/include" ++ BDB_LIBS="-L${bdbdir}/lib ${bdblib}" + fi +- dnl FIXME: check for db1 (non-sleepycat implementation) +- done +- if test x$bdbdir = x +- then +- AC_MSG_WARN(Berkeley DB backend not used) +- else +- AC_DEFINE(HAVE_BDB, 1, [Have Berkeley DB]) +- BDB_CFLAGS="-I${bdbdir}/include" +- BDB_LIBS="-L${bdbdir}/lib ${bdblib}" + fi + fi + diff --git a/libgda-1.2.0-configure.patch b/libgda-1.2.0-configure.patch new file mode 100644 index 0000000..a6b0904 --- /dev/null +++ b/libgda-1.2.0-configure.patch @@ -0,0 +1,11 @@ +--- libgda-1.2.0/configure.in.orig 2005-02-04 09:54:32.000000000 +0000 ++++ libgda-1.2.0/configure.in 2005-02-04 09:59:32.030377459 +0000 +@@ -251,7 +251,7 @@ + mysqldir="" + if test $try_mysql = true + then +- AC_PATH_PROG(MYSQL_CONFIG, mysql_config) ++ AC_PATH_PROG(MYSQL_CONFIG, mysql_config, 'no', [${libdir}/mysql3/mysql:$PATH]) + + if test x$MYSQL_CONFIG = xno; then + AC_MSG_CHECKING(for MySQL files) diff --git a/libgda-1.2.0-gnome162569.patch b/libgda-1.2.0-gnome162569.patch new file mode 100644 index 0000000..af7f5c3 --- /dev/null +++ b/libgda-1.2.0-gnome162569.patch @@ -0,0 +1,12 @@ +--- libgda-1.2.0/providers/bdb/gda-bdb-recordset.c.orig 2005-02-04 12:38:17.332297982 +0000 ++++ libgda-1.2.0/providers/bdb/gda-bdb-recordset.c 2005-02-04 12:39:29.939219610 +0000 +@@ -227,6 +227,9 @@ + + /* get the number of records in the database */ + ret = dbp->stat (dbp, ++#if BDB_VERSION > 40300 ++ NULL, ++#endif + &statp, + #if BDB_VERSION < 40000 + NULL, diff --git a/libgda-1.2.0-gnomeXXXXXX.patch b/libgda-1.2.0-gnomeXXXXXX.patch new file mode 100644 index 0000000..44ea413 --- /dev/null +++ b/libgda-1.2.0-gnomeXXXXXX.patch @@ -0,0 +1,135 @@ +diff -ru libgda-1.2.0.orig/providers/bdb/Makefile.am libgda-1.2.0/providers/bdb/Makefile.am +--- libgda-1.2.0.orig/providers/bdb/Makefile.am 2005-02-04 14:04:28.990148676 +0000 ++++ libgda-1.2.0/providers/bdb/Makefile.am 2005-02-04 14:06:25.117365278 +0000 +@@ -1,4 +1,4 @@ +-providerdir=$(prefix)/lib/libgda/providers ++providerdir=$(libdir)/libgda/providers + provider_LTLIBRARIES = libgda-bdb.la + + AM_CPPFLAGS = \ +diff -ru libgda-1.2.0.orig/providers/firebird/Makefile.am libgda-1.2.0/providers/firebird/Makefile.am +--- libgda-1.2.0.orig/providers/firebird/Makefile.am 2005-02-04 14:04:23.061056775 +0000 ++++ libgda-1.2.0/providers/firebird/Makefile.am 2005-02-04 14:06:32.416247710 +0000 +@@ -1,4 +1,4 @@ +-providerdir=$(prefix)/lib/libgda/providers ++providerdir=$(libdir)/libgda/providers + provider_LTLIBRARIES = libgda-firebird.la + + AM_CPPFLAGS = \ +diff -ru libgda-1.2.0.orig/providers/freetds/Makefile.am libgda-1.2.0/providers/freetds/Makefile.am +--- libgda-1.2.0.orig/providers/freetds/Makefile.am 2005-02-04 14:04:22.368162899 +0000 ++++ libgda-1.2.0/providers/freetds/Makefile.am 2005-02-04 14:06:36.861567075 +0000 +@@ -1,4 +1,4 @@ +-providerdir=$(prefix)/lib/libgda/providers ++providerdir=$(libdir)/libgda/providers + provider_LTLIBRARIES = libgda-freetds.la + + AM_CPPFLAGS = \ +diff -ru libgda-1.2.0.orig/providers/ibmdb2/Makefile.am libgda-1.2.0/providers/ibmdb2/Makefile.am +--- libgda-1.2.0.orig/providers/ibmdb2/Makefile.am 2005-02-04 14:04:30.323944395 +0000 ++++ libgda-1.2.0/providers/ibmdb2/Makefile.am 2005-02-04 14:06:42.224745913 +0000 +@@ -1,4 +1,4 @@ +-providerdir=$(prefix)/lib/libgda/providers ++providerdir=$(libdir)/libgda/providers + provider_LTLIBRARIES = libgda-ibmdb2.la + + AM_CPPFLAGS = \ +diff -ru libgda-1.2.0.orig/providers/ldap/Makefile.am libgda-1.2.0/providers/ldap/Makefile.am +--- libgda-1.2.0.orig/providers/ldap/Makefile.am 2005-02-04 14:04:31.462769975 +0000 ++++ libgda-1.2.0/providers/ldap/Makefile.am 2005-02-04 14:06:46.713058713 +0000 +@@ -1,4 +1,4 @@ +-providerdir=$(prefix)/lib/libgda/providers ++providerdir=$(libdir)/libgda/providers + provider_LTLIBRARIES = libgda-ldap.la + + AM_CPPFLAGS = \ +diff -ru libgda-1.2.0.orig/providers/mdb/Makefile.am libgda-1.2.0/providers/mdb/Makefile.am +--- libgda-1.2.0.orig/providers/mdb/Makefile.am 2005-02-04 14:04:24.488838095 +0000 ++++ libgda-1.2.0/providers/mdb/Makefile.am 2005-02-04 14:06:50.902417292 +0000 +@@ -1,4 +1,4 @@ +-providerdir=$(prefix)/lib/libgda/providers ++providerdir=$(libdir)/libgda/providers + provider_LTLIBRARIES = libgda-mdb.la + + AM_CPPFLAGS = \ +diff -ru libgda-1.2.0.orig/providers/msql/Makefile.am libgda-1.2.0/providers/msql/Makefile.am +--- libgda-1.2.0.orig/providers/msql/Makefile.am 2005-02-04 14:04:31.593749914 +0000 ++++ libgda-1.2.0/providers/msql/Makefile.am 2005-02-04 14:06:59.626081654 +0000 +@@ -1,4 +1,4 @@ +-providerdir=$(prefix)/lib/libgda/providers ++providerdir=$(libdir)/libgda/providers + provider_LTLIBRARIES = libgda-msql.la + + AM_CPPFLAGS = \ +diff -ru libgda-1.2.0.orig/providers/mysql/Makefile.am libgda-1.2.0/providers/mysql/Makefile.am +--- libgda-1.2.0.orig/providers/mysql/Makefile.am 2005-02-04 14:04:25.430693840 +0000 ++++ libgda-1.2.0/providers/mysql/Makefile.am 2005-02-04 14:07:03.699458009 +0000 +@@ -1,4 +1,4 @@ +-providerdir=$(prefix)/lib/libgda/providers ++providerdir=$(libdir)/libgda/providers + provider_LTLIBRARIES = libgda-mysql.la + + AM_CPPFLAGS = \ +diff -ru libgda-1.2.0.orig/providers/odbc/Makefile.am libgda-1.2.0/providers/odbc/Makefile.am +--- libgda-1.2.0.orig/providers/odbc/Makefile.am 2005-02-04 14:04:30.094979462 +0000 ++++ libgda-1.2.0/providers/odbc/Makefile.am 2005-02-04 14:07:07.067942289 +0000 +@@ -1,4 +1,4 @@ +-providerdir=$(prefix)/lib/libgda/providers ++providerdir=$(libdir)/libgda/providers + provider_LTLIBRARIES = libgda-odbc.la + + AM_CPPFLAGS = \ +diff -ru libgda-1.2.0.orig/providers/oracle/Makefile.am libgda-1.2.0/providers/oracle/Makefile.am +--- libgda-1.2.0.orig/providers/oracle/Makefile.am 2005-02-04 14:04:22.745105166 +0000 ++++ libgda-1.2.0/providers/oracle/Makefile.am 2005-02-04 14:07:11.378282375 +0000 +@@ -1,4 +1,4 @@ +-providerdir=$(prefix)/lib/libgda/providers ++providerdir=$(libdir)/libgda/providers + provider_LTLIBRARIES = libgda-oracle.la + + AM_CPPFLAGS = \ +diff -ru libgda-1.2.0.orig/providers/postgres/Makefile.am libgda-1.2.0/providers/postgres/Makefile.am +--- libgda-1.2.0.orig/providers/postgres/Makefile.am 2005-02-04 14:04:31.058831841 +0000 ++++ libgda-1.2.0/providers/postgres/Makefile.am 2005-02-04 14:07:15.095713241 +0000 +@@ -1,4 +1,4 @@ +-providerdir=$(prefix)/lib/libgda/providers ++providerdir=$(libdir)/libgda/providers + provider_LTLIBRARIES = libgda-postgres.la + + AM_CPPFLAGS = \ +diff -ru libgda-1.2.0.orig/providers/sqlite/Makefile.am libgda-1.2.0/providers/sqlite/Makefile.am +--- libgda-1.2.0.orig/providers/sqlite/Makefile.am 2005-02-04 14:04:29.397086350 +0000 ++++ libgda-1.2.0/providers/sqlite/Makefile.am 2005-02-04 14:07:20.493886796 +0000 +@@ -1,4 +1,4 @@ +-providerdir=$(prefix)/lib/libgda/providers ++providerdir=$(libdir)/libgda/providers + provider_LTLIBRARIES = libgda-sqlite.la + + AM_CPPFLAGS = \ +diff -ru libgda-1.2.0.orig/providers/sybase/Makefile.am libgda-1.2.0/providers/sybase/Makefile.am +--- libgda-1.2.0.orig/providers/sybase/Makefile.am 2005-02-04 14:04:29.291102583 +0000 ++++ libgda-1.2.0/providers/sybase/Makefile.am 2005-02-04 14:07:24.356295478 +0000 +@@ -1,4 +1,4 @@ +-providerdir=$(prefix)/lib/libgda/providers ++providerdir=$(libdir)/libgda/providers + provider_LTLIBRARIES = libgda-sybase.la + + AM_CPPFLAGS = \ +diff -ru libgda-1.2.0.orig/providers/xbase/Makefile.am libgda-1.2.0/providers/xbase/Makefile.am +--- libgda-1.2.0.orig/providers/xbase/Makefile.am 2005-02-04 14:04:25.803636720 +0000 ++++ libgda-1.2.0/providers/xbase/Makefile.am 2005-02-04 14:07:27.598799070 +0000 +@@ -1,4 +1,4 @@ +-providerdir=$(prefix)/lib/libgda/providers ++providerdir=$(libdir)/libgda/providers + provider_LTLIBRARIES = libgda-xbase.la + + AM_CPPFLAGS = \ +diff -ru libgda-1.2.0.orig/providers/xml/Makefile.am libgda-1.2.0/providers/xml/Makefile.am +--- libgda-1.2.0.orig/providers/xml/Makefile.am 2005-02-04 14:04:24.039906854 +0000 ++++ libgda-1.2.0/providers/xml/Makefile.am 2005-02-04 14:07:35.898528447 +0000 +@@ -1,4 +1,4 @@ +-providerdir=$(prefix)/lib/libgda/providers ++providerdir=$(libdir)/libgda/providers + provider_LTLIBRARIES = libgda-xml.la + + AM_CPPFLAGS = \ diff --git a/libgda.spec b/libgda.spec new file mode 100644 index 0000000..18d64c7 --- /dev/null +++ b/libgda.spec @@ -0,0 +1,453 @@ +# Default provider build options (MySQL, Postgres & unixODBC) +# +# Package build options: +# --with tds +# --with db2 +# --with oracle +# --with sqlite +# --with sybase +# --with mdb +# --with ldap +# --without mysql +# --without odbc +# --without postgres +# + +%define FREETDS 0 +%define IBMDB2 0 +%define MYSQL 1 +%define ODBC 1 +%define ORACLE 0 +%define POSTGRES 1 +%define SQLITE 0 +%define SYBASE 0 +%define MDB 0 +%define LDAP 0 + +%{?_with_tds:%define FREETDS 1} +%{?_with_db2:%define IBMDB2 1} +%{?_with_ldap:%define LDAP 1} +%{?_with_mdb:%define MDB 1} +%{?_with_oracle:%define ORACLE 1} +%{?_with_sqlite:%define SQLITE 1} +%{?_with_sybase:%define SYBASE 1} +%{?_without_mysql:%define MYSQL 0} +%{?_without_odbc:%define ODBC 0} +%{?_without_postgres:%define POSTGRES 0} + +Summary: Library for writing gnome database programs +Name: libgda +Version: 1.2.0 +Release: 5 +Epoch: 1 +Source: %{name}-%{version}.tar.bz2 +URL: http://www.gnome-db.org/ +Group: System Environment/Libraries +License: LGPL +BuildRoot: %{_tmppath}/%{name}-%{version}-root +BuildRequires: pkgconfig >= 0.8 +Requires: glib2 >= 2.0.0 +Requires: libxml2 +Requires: libxslt >= 1.0.9 +Requires: ncurses +BuildRequires: glib2-devel >= 2.0.0 +BuildRequires: libxml2-devel +BuildRequires: libxslt-devel >= 1.0.9 +BuildRequires: ncurses-devel +BuildRequires: scrollkeeper +BuildRequires: groff +BuildRequires: readline-devel +BuildRequires: db4-devel + +%if %{FREETDS} +BuildRequires: freetds-devel +%endif + +%if %{MYSQL} +BuildRequires: mysqlclient10-devel +%endif + +%if %{POSTGRES} +BuildRequires: postgresql-devel +%endif + +%if %{ODBC} +BuildRequires: unixODBC-devel +%endif + +%if %{SQLITE} +BuildRequires: sqlite-devel +%endif + +%if %{MDB} +BuildRequires: mdbtools-devel +%endif + +%if %{LDAP} +BuildRequires: openldap-devel +%endif + +Patch0: libgda-1.2.0-configure.patch +Patch1: libgda-1.2.0-gnome162569.patch +Patch2: libgda-1.2.0-gnomeXXXXXX.patch +Patch3: libgda-1.2.0-64bitgnomeXXXXXX.patch + +%description +libgda is a library that eases the task of writing +gnome database programs. + + +%package devel +Summary: Development libraries and header files for libgda. +Group: Development/Libraries +Requires: glib2-devel >= 2.0.0 +Requires: libxml2-devel +Requires: libxslt-devel >= 1.0.9 +Requires: db4-devel +Requires: %{name} = %{epoch}:%{version}-%{release} + +%description devel +This package contains the header files and libraries needed to write +or compile programs that use libgda. + +%if %{FREETDS} +%package -n gda-freetds +Summary: GDA FreeTDS Provider +Group: System Environment/Libraries +%description -n gda-freetds +This package includes the GDA FreeTDS provider. +%endif + +%if %{IBMDB2} +%package -n gda-ibmdb2 +Summary: GDA IBM DB2 Provider +Group: System Environment/Libraries +%description -n gda-ibmdb2 +This package includes the GDA IBM DB2 provider. +%endif + +%if %{MYSQL} +%package -n gda-mysql +Summary: GDA MySQL Provider +Group: System Environment/Libraries +%description -n gda-mysql +This package includes the GDA MySQL provider. +%endif + +%if %{ODBC} +%package -n gda-odbc +Summary: GDA ODBC Provider +Group: System Environment/Libraries +%description -n gda-odbc +This package includes the GDA ODBC provider. +%endif + +%if %{ORACLE} +%package -n gda-oracle +Summary: GDA Oracle Provider +Group: System Environment/Libraries +%description -n gda-oracle +This package includes the GDA Oracle provider. +%endif + +%if %{POSTGRES} +%package -n gda-postgres +Summary: GDA PostgreSQL Provider +Group: System Environment/Libraries +%description -n gda-postgres +This package includes the GDA PostgreSQL provider. +%endif + +%if %{SQLITE} +%package -n gda-sqlite +Summary: GDA SQLite Provider +Group: System Environment/Libraries +%description -n gda-sqlite +This package includes the GDA SQLite provider. +%endif + +%if %{SYBASE} +%package -n gda-sybase +Summary: GDA Sybase Provider +Group: System Environment/Libraries +%description -n gda-sybase +This package includes the GDA Sybase provider. +%endif + +%if %{MDB} +%package -n gda-mdb +Summary: GDA MDB Provider +Group: System Environment/Libraries +%description -n gda-mdb +This package includes the GDA MDB provider. +%endif + +%if %{LDAP} +%package -n gda-ldap +Summary: GDA LDAP Provider +Group: System Environment/Libraries +%description -n gda-ldap +This package includes the GDA LDAP provider. +%endif + +%prep +%setup -q +%patch0 -p1 -b .configure +%patch1 -p1 -b .gnome162569 +%patch2 -p1 -b .gnomeXXXXXX +%patch3 -p1 -b .64bitgnomeXXXXXX.patch + +%build +aclocal +automake +autoconf +%if %{FREETDS} +CONFIG="$CONFIG --with-tds" +%else +CONFIG="$CONFIG --without-tds" +%endif + +%if %{IBMDB2} +CONFIG="$CONFIG --with-ibmdb2" +%else +CONFIG="$CONFIG --without-ibmdb2" +%endif + +%if %{MYSQL} +CONFIG="$CONFIG --with-mysql" +%else +CONFIG="$CONFIG --without-mysql" +%endif + +%if %{POSTGRES} +CONFIG="$CONFIG --with-postgres" +%else +CONFIG="$CONFIG --without-postgres" +%endif + +%if %{ODBC} +CONFIG="$CONFIG --with-odbc" +%else +CONFIG="$CONFIG --without-odbc" +%endif + +%if %{ORACLE} +CONFIG="$CONFIG --with-oracle" +%else +CONFIG="$CONFIG --without-oracle" +%endif + +%if %{SQLITE} +CONFIG="$CONFIG --with-sqlite" +%else +CONFIG="$CONFIG --without-sqlite" +%endif + +%if %{SYBASE} +CONFIG="$CONFIG --with-sybase" +%else +CONFIG="$CONFIG --without-sybase" +%endif + +%if %{MDB} +CONFIG="$CONFIG --with-mdb" +%else +CONFIG="$CONFIG --without-mdb" +%endif + +%if %{LDAP} +CONFIG="$CONFIG --with-ldap" +%else +CONFIG="$CONFIG --without-ldap" +%endif + +%configure $CONFIG --disable-gtk-doc +make + +%install +rm -rf %{buildroot} +%makeinstall + +# Cleanup unnecessary, unpackaged files +rm -f %{buildroot}/%{_libdir}/libgda/providers/*.{a,la} + +%find_lang libgda-2 + +%post -p /sbin/ldconfig + +%post devel +if which scrollkeeper-update >/dev/null 2>&1; then scrollkeeper-update; fi + +%postun -p /sbin/ldconfig + +%postun devel +if which scrollkeeper-update >/dev/null 2>&1; then scrollkeeper-update; fi + +%clean +rm -rf %{buildroot} + +%files -f libgda-2.lang +%defattr(-,root,root) +%doc AUTHORS COPYING ChangeLog README NEWS +#%doc %{_datadir}/gnome/help/libgda +%dir %{_sysconfdir}/libgda +%config(noreplace) %{_sysconfdir}/libgda/config +%{_bindir}/* +%{_datadir}/libgda +%{_libdir}/*.so.* +%dir %{_libdir}/libgda +%dir %{_libdir}/libgda/providers +%{_libdir}/libgda/providers/libgda-xml.so +%{_libdir}/libgda/providers/libgda-bdb.so +%{_mandir}/man1/* +%{_mandir}/man5/* + +%files devel +%defattr(-,root,root) +%doc %{_datadir}/gtk-doc/html/libgda +%{_datadir}/omf/* +%{_includedir}/* +%{_libdir}/*.a +%{_libdir}/*.la +%{_libdir}/*.so +%{_libdir}/pkgconfig/* + +%if %{FREETDS} +%files -n gda-freetds +%defattr(-,root,root) +%{_libdir}/libgda/providers/libgda-freetds.so +%endif + +%if %{IBMDB2} +%files -n gda-ibmdb2 +%defattr(-,root,root) +%{_libdir}/libgda/providers/libgda-ibmdb2.so +%endif + +%if %{MYSQL} +%files -n gda-mysql +%defattr(-,root,root) +%{_libdir}/libgda/providers/libgda-mysql.so +%endif + +%if %{ODBC} +%files -n gda-odbc +%defattr(-,root,root) +%{_libdir}/libgda/providers/libgda-odbc.so +%endif + +%if %{ORACLE} +%files -n gda-oracle +%defattr(-,root,root) +%{_libdir}/libgda/providers/libgda-oracle.so +%endif + +%if %{POSTGRES} +%files -n gda-postgres +%defattr(-,root,root) +%{_libdir}/libgda/providers/libgda-postgres.so +%endif + +%if %{SQLITE} +%files -n gda-sqlite +%defattr(-,root,root) +%{_libdir}/libgda/providers/libgda-sqlite.so +%endif + +%if %{SYBASE} +%files -n gda-sybase +%defattr(-,root,root) +%{_libdir}/libgda/providers/libgda-sybase.so +%endif + +%if %{MDB} +%files -n gda-mdb +%defattr(-,root,root) +%{_libdir}/libgda/providers/libgda-mdb.so +%endif + +%if %{LDAP} +%files -n gda-ldap +%defattr(-,root,root) +%{_libdir}/libgda/providers/libgda-ldap.so +%endif + + +%changelog +* Wed Mar 2 2005 Caolan McNamara 1:1.2.0-5 +- rebuild with gcc4 + +* Fri Feb 11 2005 Caolan McNamara 1:1.2.0-4 +- well, that was moronic + +* Wed Feb 10 2005 Caolan McNamara 1:1.2.0-3 +- bandaid + +* Wed Feb 9 2005 Jeremy Katz - 1:1.2.0-2 +- rebuild to try to fix broken dep + +* Fri Feb 4 2005 Caolan McNamara 1:1.2.0-1 +- bump to latest version +- drop integrated break warning patch +- update configure patch + +* Wed Jan 12 2005 Tim Waugh 1:1.0.4-5 +- Rebuilt for new readline. + +* Sat Oct 30 2004 Caolan McNamara 1:1.0.4-4 +- Use mysqlclient10 + +* Fri Oct 8 2004 Caolan McNamara 1:1.0.4-3 +- #rh135043# Extra BuildRequires + +* Thu Sep 9 2004 Bill Nottingham 1:1.0.4-2 +- %%defattr + +* Thu Aug 12 2004 Caolan McNamara 1:1.0.4-1 +- Initial Red Hat import +- patch for missing break statement +- fixup devel package requirement pickiness +- autoconf patch to pick up correct mysql path from mysql_config (e.g. x64) +- autoconf patch to just look in the normal place for postgres first + +* Tue Mar 11 2003 David Hollis +- Fix --with-tds & --without-tds to match what configure wants + +* Tue Jan 28 2003 Yanko Kaneti +- Remove the idl path +- Include gda-config man page +- add --without-* for disabled providers +- package and use the omf/scrollkeeper bits + +* Tue Dec 31 2002 David Hollis +- Added sqlite-devel buildreq +- Include gda-config-tool man page + +* Mon Aug 19 2002 Ben Liblit +- Fixed version number substitutions + +- Removed some explicit "Requires:" prerequisites that RPM will figure + out on its own. Removed explicit dependency on older MySQL client + libraries + +- Required that the ODBC development package be installed if we are + building the ODBC provider + +- Created distinct subpackages for each provider, conditional on that + provider actually being enabled; some of these will need to be + updated as the family of available providers changes + +- Updated files list to match what "make install" actually installs + +- Added URL tag pointing to GNOME-DB project's web site + +* Tue Feb 26 2002 Chris Chabot +- Added defines and configure flags for all supported DB types + +* Mon Feb 25 2002 Chris Chabot +- Cleaned up formatting +- Added Requirements +- Added defines for postgres, mysql, odbc support + +* Thu Feb 21 2002 Chris Chabot +- Initial spec file diff --git a/sources b/sources index e69de29..3b4ec30 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +c18ac2dc6484c58cc9f72387abb9a10c libgda-1.2.0.tar.bz2