rpms/postgresql-dbi-link/devel Makefile, 1.2, 1.3 postgresql-dbi-link.spec, 1.3, 1.4 sources, 1.3, 1.4 .cvsignore, 1.2, 1.3

Devrim GÜNDÜZ (devrim) fedora-extras-commits at redhat.com
Sun Mar 25 23:08:52 UTC 2007


Author: devrim

Update of /cvs/extras/rpms/postgresql-dbi-link/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv32487/devel

Modified Files:
	.cvsignore 
Added Files:
	Makefile postgresql-dbi-link.spec sources 
Log Message:
auto-import postgresql-dbi-link-2.0.0-3 on branch devel from postgresql-dbi-link-2.0.0-3.src.rpm


Index: Makefile
===================================================================
RCS file: Makefile
diff -N Makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ Makefile	25 Mar 2007 23:08:19 -0000	1.3
@@ -0,0 +1,21 @@
+# Makefile for source rpm: postgresql-dbi-link
+# $Id$
+NAME := postgresql-dbi-link
+SPECFILE = $(firstword $(wildcard *.spec))
+
+define find-makefile-common
+for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
+endef
+
+MAKEFILE_COMMON := $(shell $(find-makefile-common))
+
+ifeq ($(MAKEFILE_COMMON),)
+# attept a checkout
+define checkout-makefile-common
+test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
+endef
+
+MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
+endif
+
+include $(MAKEFILE_COMMON)


Index: postgresql-dbi-link.spec
===================================================================
RCS file: postgresql-dbi-link.spec
diff -N postgresql-dbi-link.spec
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ postgresql-dbi-link.spec	25 Mar 2007 23:08:19 -0000	1.4
@@ -0,0 +1,80 @@
+%define sname	dbi-link
+
+Name:		postgresql-%{sname}
+Version:	2.0.0
+Release:	3%{?dist}
+Summary:	Partial implementation of the SQL/MED portion of the SQL:2003 specification
+Group:		Applications/Databases
+License:	BSD
+URL:		http://pgfoundry.org/projects/dbi-link/
+Source0:	http://pgfoundry.org/frs/download.php/1235/%{sname}-%{version}.tar.bz2
+BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+Requires:	postgresql-server, perl, perl-DBI >= 1.52, perl-YAML >= 0.62
+BuildArch:	noarch
+
+%description
+If you've ever wanted to treat DBI-accessible data sources as though
+they were PostgreSQL tables, you now can.
+
+You can do gradual, low-risk migrations from other DBMSs, add speed
+and accuracy to your ETL processes...your imagination is the only
+limit.
+
+%prep
+%setup -q -n %{sname}-%{version}
+
+%build
+
+%install
+rm -rf %{buildroot}
+install -d %{buildroot}/%{_datadir}/%{name}/
+install -p -m 644 *.sql %{buildroot}/%{_datadir}/%{name}/
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%doc copyright.txt  IMPLEMENTATION.txt README.txt
+%doc README.Oracle README.Sybase_MSSQL TODO.txt ROADMAP.txt
+%doc examples
+%dir %{_datadir}/%{name}
+%{_datadir}/%{name}/*.sql
+
+%changelog
+* Tue Feb 20 2007 - Kevin Fenzi <kevin at tummy.com> 2.0.0-3
+- Move examples under the regular doc directory. 
+
+* Tue Feb 20 2007 - Devrim GUNDUZ <devrim at commandprompt.com> 2.0.0-2
+- 2.0.0-2
+- Spec file fix per rh bugzilla #199682
+
+* Sat Jan 27 2007 - David Fetter <david at fetter.org> 2.0.0-1
+- 2.0.0
+- Moved "test" files to the more appropriate "examples" directory per
+  rh bugzilla # 199682.
+- Put back Oracle and Excel portions as they no longer cause
+  inappropriate dependencies.
+- Added new Sybase/MS-SQL Server examples.
+
+* Mon Jan 22 2007 - Devrim GUNDUZ <devrim at commandprompt.com> 2.0-0.4.beta1
+- More spec file fixes per rh bugzilla #199682
+
+* Wed Jan 17 2007 - Devrim GUNDUZ <devrim at commandprompt.com> 2.0-0.3.beta1
+- A few more spec file fixes, per rh bugzilla review # 199682
+
+* Tue Jan 16 2007 - Devrim GUNDUZ <devrim at commandprompt.com> 2.0-0.2.beta1
+- Removed Oracle and Excel portions
+
+* Sun Jan 14 2007 - Devrim GUNDUZ <devrim at commandprompt.com> 2.0-0.1.beta1
+- Some fixes to spec file, per bugzilla review
+
+* Tue Dec 12 2006 - Devrim GUNDUZ <devrim at commandprompt.com> 2.0beta1-1
+- Update to 2.0beta1
+
+* Fri Jul 21 2006 - Devrim GUNDUZ <devrim at commandprompt.com> 1.0.0-2
+- 1.1.0
+- Fixed rpmlint errors
+
+* Thu Dec 29 2005 - Devrim GUNDUZ <devrim at commandprompt.com> 1.0.0
+- Initial version


Index: sources
===================================================================
RCS file: sources
diff -N sources
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ sources	25 Mar 2007 23:08:19 -0000	1.4
@@ -0,0 +1 @@
+26dbd45327e197e7a38d3a81973b9fad  dbi-link-2.0.0.tar.bz2


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/postgresql-dbi-link/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore	15 Jan 2007 14:43:01 -0000	1.2
+++ .cvsignore	25 Mar 2007 23:08:19 -0000	1.3
@@ -1 +1 @@
-dbi-link-2.0beta1.tar.bz2
+dbi-link-2.0.0.tar.bz2




More information about the fedora-extras-commits mailing list