2012-08-03 18:32:07 +00:00
|
|
|
%if 0%{?fedora} > 12
|
|
|
|
%global with_python3 1
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
2012-08-03 19:16:38 +00:00
|
|
|
%global python_runtimes python python-debug python3 python3-debug
|
2012-08-03 18:32:07 +00:00
|
|
|
%else
|
|
|
|
%global python_runtimes python python-debug
|
|
|
|
%endif # with_python3
|
2011-02-17 18:59:53 +00:00
|
|
|
|
2006-08-29 21:18:42 +00:00
|
|
|
# Python major version.
|
|
|
|
%{expand: %%define pyver %(python -c 'import sys;print(sys.version[0:3])')}
|
|
|
|
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
|
|
|
|
2012-08-03 18:32:07 +00:00
|
|
|
%if 0%{?with_python3}
|
2011-02-17 18:59:53 +00:00
|
|
|
%{expand: %%define py3ver %(python3 -c 'import sys;print(sys.version[0:3])')}
|
2012-08-03 18:32:07 +00:00
|
|
|
%endif # with_python3
|
2011-02-17 18:59:53 +00:00
|
|
|
|
|
|
|
|
2010-01-24 18:29:26 +00:00
|
|
|
# Python 2.5+ is not supported by Zope, so it does not exist in
|
|
|
|
# recent Fedora releases. That's why zope subpackage is disabled.
|
2010-12-29 22:29:01 +00:00
|
|
|
%global zope 0
|
|
|
|
%if %zope
|
|
|
|
%global ZPsycopgDAdir %{_localstatedir}/lib/zope/Products/ZPsycopgDA
|
|
|
|
%endif
|
2006-08-29 21:18:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
Summary: A PostgreSQL database adapter for Python
|
|
|
|
Name: python-psycopg2
|
2012-04-07 19:21:26 +00:00
|
|
|
Version: 2.4.5
|
2013-02-14 20:08:58 +00:00
|
|
|
Release: 7%{?dist}
|
2008-05-29 20:19:03 +00:00
|
|
|
# The exceptions allow linking to OpenSSL and PostgreSQL's libpq
|
2010-12-03 17:38:42 +00:00
|
|
|
License: LGPLv3+ with exceptions
|
2006-08-29 21:18:42 +00:00
|
|
|
Group: Applications/Databases
|
2011-06-18 21:21:49 +00:00
|
|
|
Url: http://www.initd.org/psycopg/
|
2010-01-24 19:26:11 +00:00
|
|
|
|
2012-02-02 19:46:20 +00:00
|
|
|
Source0: http://initd.org/psycopg/tarballs/PSYCOPG-2-4/psycopg2-%{version}.tar.gz
|
|
|
|
|
2011-02-17 18:59:53 +00:00
|
|
|
BuildRequires: postgresql-devel
|
|
|
|
BuildRequires: python-devel
|
|
|
|
BuildRequires: python-debug
|
2012-08-03 19:16:38 +00:00
|
|
|
%if 0%{?with_python3}
|
2011-02-17 18:59:53 +00:00
|
|
|
BuildRequires: python3-devel
|
|
|
|
BuildRequires: python3-debug
|
2012-08-03 19:16:38 +00:00
|
|
|
%endif # with_python3
|
2012-02-02 19:46:20 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2006-08-29 21:18:42 +00:00
|
|
|
|
2010-01-24 19:26:11 +00:00
|
|
|
Conflicts: python-psycopg2-zope < %{version}
|
2007-04-26 19:23:58 +00:00
|
|
|
|
2006-08-29 21:18:42 +00:00
|
|
|
%description
|
2011-06-18 21:21:49 +00:00
|
|
|
Psycopg is the most popular PostgreSQL adapter for the Python
|
|
|
|
programming language. At its core it fully implements the Python DB
|
|
|
|
API 2.0 specifications. Several extensions allow access to many of the
|
|
|
|
features offered by PostgreSQL.
|
2010-05-18 05:34:12 +00:00
|
|
|
|
2011-02-17 18:59:53 +00:00
|
|
|
%package debug
|
|
|
|
Summary: A PostgreSQL database adapter for Python 2 (debug build)
|
|
|
|
# Require the base package, as we're sharing .py/.pyc files:
|
2011-06-18 21:21:49 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2011-02-17 18:59:53 +00:00
|
|
|
|
|
|
|
%description debug
|
|
|
|
This is a build of the psycopg PostgreSQL database adapter for the debug
|
2011-06-18 21:21:49 +00:00
|
|
|
build of Python 2.
|
2011-02-17 18:59:53 +00:00
|
|
|
|
2012-08-03 18:32:07 +00:00
|
|
|
%if 0%{?with_python3}
|
2011-02-17 18:59:53 +00:00
|
|
|
%package -n python3-psycopg2
|
|
|
|
Summary: A PostgreSQL database adapter for Python 3
|
|
|
|
|
|
|
|
%description -n python3-psycopg2
|
2011-06-18 21:21:49 +00:00
|
|
|
This is a build of the psycopg PostgreSQL database adapter for Python 3.
|
2011-02-17 18:59:53 +00:00
|
|
|
|
|
|
|
%package -n python3-psycopg2-debug
|
|
|
|
Summary: A PostgreSQL database adapter for Python 3 (debug build)
|
|
|
|
# Require base python 3 package, as we're sharing .py/.pyc files:
|
2011-06-18 21:21:49 +00:00
|
|
|
Requires: python3-psycopg2 = %{version}-%{release}
|
2011-02-17 18:59:53 +00:00
|
|
|
|
|
|
|
%description -n python3-psycopg2-debug
|
|
|
|
This is a build of the psycopg PostgreSQL database adapter for the debug
|
2011-06-18 21:21:49 +00:00
|
|
|
build of Python 3.
|
2012-08-03 18:32:07 +00:00
|
|
|
%endif # with_python3
|
2011-02-17 18:59:53 +00:00
|
|
|
|
2006-08-29 21:18:42 +00:00
|
|
|
%package doc
|
|
|
|
Summary: Documentation for psycopg python PostgreSQL database adapter
|
|
|
|
Group: Documentation
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description doc
|
|
|
|
Documentation and example files for the psycopg python PostgreSQL
|
|
|
|
database adapter.
|
|
|
|
|
2010-12-29 22:29:01 +00:00
|
|
|
%if %zope
|
|
|
|
%package zope
|
|
|
|
Summary: Zope Database Adapter ZPsycopgDA
|
2008-05-29 20:19:03 +00:00
|
|
|
# The exceptions allow linking to OpenSSL and PostgreSQL's libpq
|
2010-12-29 22:29:01 +00:00
|
|
|
License: GPLv2+ with exceptions or ZPLv1.0
|
|
|
|
Group: Applications/Databases
|
2011-06-18 21:21:49 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: zope
|
2006-08-29 21:18:42 +00:00
|
|
|
|
2010-12-29 22:29:01 +00:00
|
|
|
%description zope
|
|
|
|
Zope Database Adapter for PostgreSQL, called ZPsycopgDA
|
|
|
|
%endif
|
2006-08-29 21:18:42 +00:00
|
|
|
|
|
|
|
%prep
|
2011-06-18 21:21:49 +00:00
|
|
|
%setup -q -n psycopg2-%{version}
|
2006-08-29 21:18:42 +00:00
|
|
|
|
|
|
|
%build
|
2011-02-17 18:59:53 +00:00
|
|
|
for python in %{python_runtimes} ; do
|
|
|
|
$python setup.py build
|
|
|
|
done
|
2010-12-29 22:29:01 +00:00
|
|
|
|
2006-08-29 21:18:42 +00:00
|
|
|
# Fix for wrong-file-end-of-line-encoding problem; upstream also must fix this.
|
|
|
|
for i in `find doc -iname "*.html"`; do sed -i 's/\r//' $i; done
|
|
|
|
for i in `find doc -iname "*.css"`; do sed -i 's/\r//' $i; done
|
|
|
|
|
2010-12-29 22:29:01 +00:00
|
|
|
# Get rid of a "hidden" file that rpmlint complains about
|
|
|
|
rm -f doc/html/.buildinfo
|
|
|
|
|
2006-08-29 21:18:42 +00:00
|
|
|
%install
|
2010-12-29 22:29:01 +00:00
|
|
|
|
2011-02-17 18:59:53 +00:00
|
|
|
DoInstall() {
|
|
|
|
PythonBinary=$1
|
|
|
|
|
|
|
|
Python_SiteArch=$($PythonBinary -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")
|
2006-08-29 21:18:42 +00:00
|
|
|
|
2011-02-17 18:59:53 +00:00
|
|
|
mkdir -p %{buildroot}$Python_SiteArch/psycopg2
|
|
|
|
$PythonBinary setup.py install --no-compile --root %{buildroot}
|
|
|
|
|
|
|
|
# We're not currently interested in packaging the test suite.
|
|
|
|
rm -rf %{buildroot}$Python_SiteArch/psycopg2/tests
|
|
|
|
}
|
|
|
|
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
for python in %{python_runtimes} ; do
|
|
|
|
DoInstall $python
|
|
|
|
done
|
2010-12-29 22:29:01 +00:00
|
|
|
|
|
|
|
%if %zope
|
|
|
|
install -d %{buildroot}%{ZPsycopgDAdir}
|
|
|
|
cp -pr ZPsycopgDA/* %{buildroot}%{ZPsycopgDAdir}
|
|
|
|
%endif
|
2006-08-29 21:18:42 +00:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2012-02-02 19:46:20 +00:00
|
|
|
%doc AUTHORS ChangeLog LICENSE NEWS README
|
2006-08-29 21:18:42 +00:00
|
|
|
%dir %{python_sitearch}/psycopg2
|
|
|
|
%{python_sitearch}/psycopg2/*.py
|
|
|
|
%{python_sitearch}/psycopg2/*.pyc
|
2011-02-17 18:59:53 +00:00
|
|
|
%{python_sitearch}/psycopg2/_psycopg.so
|
2006-09-11 01:58:40 +00:00
|
|
|
%{python_sitearch}/psycopg2/*.pyo
|
2011-06-18 21:21:49 +00:00
|
|
|
%{python_sitearch}/psycopg2-%{version}-py%{pyver}.egg-info
|
2011-02-17 18:59:53 +00:00
|
|
|
|
|
|
|
%files debug
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc LICENSE
|
|
|
|
%{python_sitearch}/psycopg2/_psycopg_d.so
|
|
|
|
|
2012-08-03 18:32:07 +00:00
|
|
|
%if 0%{?with_python3}
|
2011-02-17 18:59:53 +00:00
|
|
|
%files -n python3-psycopg2
|
|
|
|
%defattr(-,root,root)
|
2012-02-02 19:46:20 +00:00
|
|
|
%doc AUTHORS ChangeLog LICENSE NEWS README
|
2011-02-17 18:59:53 +00:00
|
|
|
%dir %{python3_sitearch}/psycopg2
|
|
|
|
%{python3_sitearch}/psycopg2/*.py
|
2012-08-03 19:50:16 +00:00
|
|
|
%{python3_sitearch}/psycopg2/_psycopg.cpython-3?m*.so
|
2011-02-17 18:59:53 +00:00
|
|
|
%dir %{python3_sitearch}/psycopg2/__pycache__
|
2011-11-29 07:56:24 +00:00
|
|
|
%{python3_sitearch}/psycopg2/__pycache__/*.pyc
|
|
|
|
%{python3_sitearch}/psycopg2/__pycache__/*.pyo
|
2011-06-18 21:21:49 +00:00
|
|
|
%{python3_sitearch}/psycopg2-%{version}-py%{py3ver}.egg-info
|
2011-02-17 18:59:53 +00:00
|
|
|
|
|
|
|
%files -n python3-psycopg2-debug
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc LICENSE
|
2012-08-03 19:50:16 +00:00
|
|
|
%{python3_sitearch}/psycopg2/_psycopg.cpython-3?dm*.so
|
2012-08-03 18:32:07 +00:00
|
|
|
%endif # with_python3
|
2011-02-17 18:59:53 +00:00
|
|
|
|
2006-08-29 21:18:42 +00:00
|
|
|
|
|
|
|
%files doc
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc doc examples/
|
|
|
|
|
2010-12-29 22:29:01 +00:00
|
|
|
%if %zope
|
|
|
|
%files zope
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%dir %{ZPsycopgDAdir}
|
|
|
|
%{ZPsycopgDAdir}/*.py
|
|
|
|
%{ZPsycopgDAdir}/*.pyo
|
|
|
|
%{ZPsycopgDAdir}/*.pyc
|
|
|
|
%{ZPsycopgDAdir}/dtml/*
|
|
|
|
%{ZPsycopgDAdir}/icons/*
|
|
|
|
%endif
|
2006-08-29 21:18:42 +00:00
|
|
|
|
|
|
|
%changelog
|
2013-02-14 20:08:58 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.5-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-08-04 14:20:19 +00:00
|
|
|
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 2.4.5-6
|
|
|
|
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
|
|
|
|
2012-08-03 19:50:16 +00:00
|
|
|
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 2.4.5-5
|
|
|
|
- generalize python 3 fileglobbing to work with both Python 3.2 and 3.3
|
|
|
|
|
2012-08-03 19:16:38 +00:00
|
|
|
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 2.4.5-4
|
|
|
|
- replace "python3.2dmu" with "python3-debug"; with_python3 fixes
|
|
|
|
|
2012-08-03 18:32:07 +00:00
|
|
|
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 2.4.5-3
|
|
|
|
- add with_python3 conditional
|
|
|
|
|
2012-07-21 07:52:45 +00:00
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-04-07 19:21:26 +00:00
|
|
|
* Sat Apr 7 2012 Tom Lane <tgl@redhat.com> 2.4.5-1
|
|
|
|
- Update to 2.4.5
|
|
|
|
|
2012-02-02 19:46:20 +00:00
|
|
|
* Thu Feb 2 2012 Tom Lane <tgl@redhat.com> 2.4.4-1
|
|
|
|
- Update to 2.4.4
|
|
|
|
- More specfile neatnik-ism
|
|
|
|
|
2012-01-14 02:01:10 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-11-29 07:56:24 +00:00
|
|
|
* Tue Nov 29 2011 Tom Lane <tgl@redhat.com> 2.4.2-2
|
|
|
|
- Fix mistaken %%dir marking on python3 files, per Dan Horak
|
|
|
|
|
2011-06-18 21:21:49 +00:00
|
|
|
* Sat Jun 18 2011 Tom Lane <tgl@redhat.com> 2.4.2-1
|
|
|
|
- Update to 2.4.2
|
|
|
|
Related: #711095
|
|
|
|
- Some neatnik specfile cleanups
|
|
|
|
|
2011-02-17 18:59:53 +00:00
|
|
|
* Thu Feb 10 2011 David Malcolm <dmalcolm@redhat.com> - 2.4-0.beta2
|
|
|
|
- 2.4.0-beta2
|
|
|
|
- add python 2 debug, python3 (optimized) and python3-debug subpackages
|
|
|
|
|
2011-02-09 05:52:17 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-12-29 22:29:01 +00:00
|
|
|
* Wed Dec 29 2010 Tom Lane <tgl@redhat.com> 2.3.2-1
|
|
|
|
- Update to 2.3.2
|
|
|
|
- Clean up a few rpmlint warnings
|
|
|
|
|
2010-12-03 17:38:42 +00:00
|
|
|
* Fri Dec 03 2010 Jason L Tibbitts III <tibbs@math.uh.edu> - 2.2.2-3
|
|
|
|
- Fix incorrect (and invalid) License: tag.
|
|
|
|
|
2010-07-22 05:07:16 +00:00
|
|
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.2.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-07-21 14:08:19 +00:00
|
|
|
* Tue Jul 20 2010 Devrim GUNDUZ <devrim@gunduz.org> - 2.2.2-1
|
2010-07-19 21:59:52 +00:00
|
|
|
- Update to 2.2.2
|
|
|
|
|
2010-05-18 05:34:12 +00:00
|
|
|
* Tue May 18 2010 Devrim GUNDUZ <devrim@gunduz.org> - 2.2.1-1
|
|
|
|
- Update to 2.2.1
|
|
|
|
- Improve description for 2.2 features.
|
|
|
|
- Changelog for 2.2.0 is:
|
|
|
|
http://initd.org/pub/software/psycopg/ChangeLog-2.2
|
|
|
|
|
2010-03-17 13:03:34 +00:00
|
|
|
* Wed Mar 17 2010 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.14-1
|
|
|
|
- Update to 2.0.14
|
|
|
|
- Update license (upstream switched to LGPL3)
|
|
|
|
|
2010-01-24 19:26:11 +00:00
|
|
|
* Sun Jan 24 2010 Tom Lane <tgl@redhat.com> 2.0.13-2
|
|
|
|
- Fix rpmlint complaints: remove unneeded explicit Requires:, use Conflicts:
|
|
|
|
instead of bogus Obsoletes: to indicate lack of zope subpackage
|
|
|
|
|
2009-10-18 07:16:38 +00:00
|
|
|
* Sun Oct 18 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.13-1
|
|
|
|
- Update to 2.0.13
|
|
|
|
|
2009-08-14 18:38:28 +00:00
|
|
|
* Fri Aug 14 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.12-1
|
|
|
|
- Update to 2.0.12
|
|
|
|
|
2009-07-26 20:54:16 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.11-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-19 19:23:33 +00:00
|
|
|
* Tue May 19 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.11-1
|
|
|
|
- Update to 2.0.11
|
|
|
|
|
2009-04-20 22:12:17 +00:00
|
|
|
* Tue Apr 21 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.10-1
|
|
|
|
- Update to 2.0.10
|
|
|
|
|
2009-03-19 22:30:18 +00:00
|
|
|
* Fri Mar 20 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.9-1
|
2009-03-19 22:26:34 +00:00
|
|
|
- Update to 2.0.9
|
|
|
|
|
2009-02-26 23:04:12 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.8-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-04 18:06:33 +00:00
|
|
|
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0.8-2
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-11-29 17:37:45 +00:00
|
|
|
* Sat Nov 29 2008 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.8-1
|
|
|
|
- Update to 2.0.8
|
|
|
|
|
2009-03-19 22:26:34 +00:00
|
|
|
* Sat Nov 29 2008 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.8-1
|
|
|
|
- Update to 2.0.8
|
|
|
|
|
2008-11-29 15:52:19 +00:00
|
|
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0.7-3
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-05-29 20:19:03 +00:00
|
|
|
* Thu May 29 2008 Todd Zullinger <tmz@pobox.com> - 2.0.7-2
|
|
|
|
- fix license tags
|
|
|
|
|
2008-04-30 14:26:31 +00:00
|
|
|
* Wed Apr 30 2008 Devrim GUNDUZ <devrim@commandprompt.com> 2.0.7-1
|
|
|
|
- Update to 2.0.7
|
|
|
|
|
2008-02-19 01:30:27 +00:00
|
|
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.0.6-4.1
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-01-22 04:00:07 +00:00
|
|
|
* Mon Jan 21 2008 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.6-3.1
|
|
|
|
- Rebuilt against PostgreSQL 8.3
|
|
|
|
|
2008-01-03 18:50:52 +00:00
|
|
|
* Thu Jan 3 2008 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.6-3
|
|
|
|
- Rebuild for rawhide changes
|
|
|
|
|
2007-08-29 03:59:17 +00:00
|
|
|
* Tue Aug 28 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.0.6-2
|
|
|
|
- Rebuild for selinux ppc32 issue.
|
|
|
|
|
2007-06-15 11:41:58 +00:00
|
|
|
* Fri Jun 15 2007 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.6-1
|
|
|
|
- Update to 2.0.6
|
|
|
|
|
2007-04-26 19:23:58 +00:00
|
|
|
* Thu Apr 26 2007 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-8
|
|
|
|
- Disabled zope package temporarily.
|
|
|
|
|
2006-12-09 19:17:46 +00:00
|
|
|
* Wed Dec 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-7
|
2006-12-09 19:15:21 +00:00
|
|
|
- Rebuilt
|
|
|
|
|
2006-12-06 14:27:57 +00:00
|
|
|
* Wed Dec 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-5
|
|
|
|
- Bumped up spec version
|
|
|
|
|
2006-12-06 14:26:30 +00:00
|
|
|
* Wed Dec 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-4
|
|
|
|
- Rebuilt for PostgreSQL 8.2.0
|
|
|
|
|
2006-09-11 01:58:40 +00:00
|
|
|
* Mon Sep 11 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-3
|
|
|
|
- Rebuilt
|
|
|
|
|
|
|
|
* Wed Sep 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-2
|
|
|
|
- Remove ghost'ing, per Python Packaging Guidelines
|
|
|
|
|
2006-09-04 11:22:05 +00:00
|
|
|
* Mon Sep 4 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-1
|
|
|
|
- Update to 2.0.5.1
|
|
|
|
|
2006-08-29 21:18:42 +00:00
|
|
|
* Sun Aug 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.3-3
|
|
|
|
- Fixed zope package dependencies and macro definition, per bugzilla review (#199784)
|
|
|
|
- Fixed zope package directory ownership, per bugzilla review (#199784)
|
|
|
|
- Fixed cp usage for zope subpackage, per bugzilla review (#199784)
|
|
|
|
|
|
|
|
* Mon Jul 31 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.3-2
|
|
|
|
- Fixed 64 bit builds
|
|
|
|
- Fixed license
|
|
|
|
- Added Zope subpackage
|
|
|
|
- Fixed typo in doc description
|
|
|
|
- Added macro for zope subpackage dir
|
|
|
|
|
|
|
|
* Mon Jul 31 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.3-1
|
|
|
|
- Update to 2.0.3
|
|
|
|
- Fixed spec file, per bugzilla review (#199784)
|
|
|
|
|
|
|
|
* Sat Jul 22 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.2-3
|
|
|
|
- Removed python dependency, per bugzilla review. (#199784)
|
|
|
|
- Changed doc package group, per bugzilla review. (#199784)
|
|
|
|
- Replaced dos2unix with sed, per guidelines and bugzilla review (#199784)
|
|
|
|
- Fix changelog dates
|
|
|
|
|
|
|
|
* Sat Jul 21 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.2-2
|
|
|
|
- Added dos2unix to buildrequires
|
|
|
|
- removed python related part from package name
|
|
|
|
|
|
|
|
* Fri Jul 20 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.2-1
|
|
|
|
- Fix rpmlint errors, including dos2unix solution
|
|
|
|
- Re-engineered spec file
|
|
|
|
|
|
|
|
* Fri Jan 23 2006 - Devrim GUNDUZ <devrim@commandprompt.com>
|
|
|
|
- First 2.0.X build
|
|
|
|
|
|
|
|
* Fri Jan 23 2006 - Devrim GUNDUZ <devrim@commandprompt.com>
|
|
|
|
- Update to 1.2.21
|
|
|
|
|
|
|
|
* Tue Dec 06 2005 - Devrim GUNDUZ <devrim@commandprompt.com>
|
|
|
|
- Initial release for 1.1.20
|