b4d2de
%if 0%{?fedora}
b4d2de
  %bcond_without python3
b4d2de
  %if 0%{?fedora} > 29
b4d2de
    %bcond_with python2
b4d2de
  %else
b4d2de
    %bcond_without python2
b4d2de
  %endif
b4d2de
%else
b4d2de
  %if 0%{?rhel} > 7
b4d2de
    %bcond_with    python2
b4d2de
    %bcond_without python3
b4d2de
  %else
b4d2de
    %bcond_without python2
b4d2de
    %bcond_with    python3
b4d2de
  %endif
b4d2de
%endif
b4d2de
b4d2de
%bcond_without check
b4d2de
%bcond_with    debugrpms
b4d2de
b4d2de
%global srcname	psycopg2
b4d2de
%global sum	A PostgreSQL database adapter for Python
b4d2de
%global desc	Psycopg is the most popular PostgreSQL adapter for the Python \
b4d2de
programming language. At its core it fully implements the Python DB \
b4d2de
API 2.0 specifications. Several extensions allow access to many of the \
b4d2de
features offered by PostgreSQL.
b4d2de
b4d2de
%global python_runtimes	%{?with_python2:python2 %{?with_debugrpms:python2-debug}} \\\
b4d2de
                        %{?with_python3:python3 %{?with_debugrpms:python3-debug}}
b4d2de
b4d2de
%{!?with_python2:%{!?with_python3:%{error:one python version needed}}}
b4d2de
b4d2de
# Python 2.5+ is not supported by Zope, so it does not exist in
b4d2de
# recent Fedora releases. That's why zope subpackage is disabled.
b4d2de
%global zope 0
b4d2de
%if %zope
b4d2de
%global ZPsycopgDAdir %{_localstatedir}/lib/zope/Products/ZPsycopgDA
b4d2de
%endif
b4d2de
b4d2de
b4d2de
Summary:	%{sum}
b4d2de
Name:		python-%{srcname}
b4d2de
Version:	2.7.5
b4d2de
Release:	7%{?dist}
b4d2de
# The exceptions allow linking to OpenSSL and PostgreSQL's libpq
b4d2de
License:	LGPLv3+ with exceptions
b4d2de
Group:		Applications/Databases
b4d2de
Url:		http://www.psycopg.org/psycopg/
b4d2de
b4d2de
Source0:	http://www.psycopg.org/psycopg/tarballs/PSYCOPG-2-7/psycopg2-%{version}.tar.gz
b4d2de
b4d2de
%{?with_python2:BuildRequires:	%{?with_debugrpms:/usr/bin/python2-debug} python2-devel}
b4d2de
%{?with_python3:BuildRequires:	%{?with_debugrpms:/usr/bin/python3-debug} python3-devel}
b4d2de
b4d2de
BuildRequires:  gcc
b4d2de
BuildRequires: pkgconfig(libpq)
b4d2de
b4d2de
# For testsuite
b4d2de
%if %{with check}
b4d2de
BuildRequires:	postgresql-test-rpm-macros
b4d2de
%endif
b4d2de
b4d2de
Conflicts:	python-psycopg2-zope < %{version}
b4d2de
b4d2de
%description
b4d2de
%{desc}
b4d2de
b4d2de
b4d2de
%if %{with python2}
b4d2de
%package -n python2-%{srcname}
b4d2de
%{?python_provide:%python_provide python2-%{srcname}}
b4d2de
Summary: %{sum} 2
b4d2de
b4d2de
%description -n python2-%{srcname}
b4d2de
%{desc}
b4d2de
b4d2de
b4d2de
%package -n python2-%{srcname}-tests
b4d2de
Summary: A testsuite for %sum 2
b4d2de
Requires: python2-%srcname = %version-%release
b4d2de
b4d2de
%description -n python2-%{srcname}-tests
b4d2de
%desc
b4d2de
This sub-package delivers set of tests for the adapter.
b4d2de
b4d2de
b4d2de
%if %{with debugrpms}
b4d2de
%package -n python2-%{srcname}-debug
b4d2de
Summary: A PostgreSQL database adapter for Python 2 (debug build)
b4d2de
# Require the base package, as we're sharing .py/.pyc files:
b4d2de
Requires:	python2-%{srcname} = %{version}-%{release}
b4d2de
%{?python_provide:%python_provide python2-%{srcname}-debug}
b4d2de
b4d2de
%description -n python2-%{srcname}-debug
b4d2de
This is a build of the psycopg PostgreSQL database adapter for the debug
b4d2de
build of Python 2.
b4d2de
%endif # debugrpms
b4d2de
%endif # python2
b4d2de
b4d2de
b4d2de
%if %{with python3}
b4d2de
%package -n python3-psycopg2
b4d2de
Summary: %{sum} 3
b4d2de
%{?python_provide:%python_provide python3-%{srcname}}
b4d2de
b4d2de
%description  -n python3-psycopg2
b4d2de
%{desc}
b4d2de
b4d2de
b4d2de
%package -n python3-%{srcname}-tests
b4d2de
Summary: A testsuite for %sum 2
b4d2de
Requires: python3-%srcname = %version-%release
b4d2de
b4d2de
%description -n python3-%{srcname}-tests
b4d2de
%desc
b4d2de
This sub-package delivers set of tests for the adapter.
b4d2de
b4d2de
b4d2de
%if %{with debugrpms}
b4d2de
%package -n python3-psycopg2-debug
b4d2de
Summary: A PostgreSQL database adapter for Python 3 (debug build)
b4d2de
# Require base python 3 package, as we're sharing .py/.pyc files:
b4d2de
Requires:	python3-psycopg2 = %{version}-%{release}
b4d2de
b4d2de
%description -n python3-%{srcname}-debug
b4d2de
This is a build of the psycopg PostgreSQL database adapter for the debug
b4d2de
build of Python 3.
b4d2de
%endif # debugrpms
b4d2de
%endif # python3
b4d2de
b4d2de
b4d2de
%package doc
b4d2de
Summary:	Documentation for psycopg python PostgreSQL database adapter
b4d2de
Group:		Documentation
b4d2de
%{?with_python2:Provides: python2-%{srcname}-doc = %{version}-%{release}}
b4d2de
%{?with_python3:Provides: python3-%{srcname}-doc = %{version}-%{release}}
b4d2de
b4d2de
%description doc
b4d2de
Documentation and example files for the psycopg python PostgreSQL
b4d2de
database adapter.
b4d2de
b4d2de
b4d2de
%if %zope
b4d2de
%package zope
b4d2de
Summary:	Zope Database Adapter ZPsycopgDA
b4d2de
# The exceptions allow linking to OpenSSL and PostgreSQL's libpq
b4d2de
License:	GPLv2+ with exceptions or ZPLv1.0
b4d2de
Group:		Applications/Databases
b4d2de
Requires:	%{name} = %{version}-%{release}
b4d2de
Requires:	zope
b4d2de
b4d2de
%description zope
b4d2de
Zope Database Adapter for PostgreSQL, called ZPsycopgDA
b4d2de
%endif
b4d2de
b4d2de
b4d2de
%prep
b4d2de
%autosetup -p1 -n psycopg2-%{version}
b4d2de
b4d2de
b4d2de
%build
b4d2de
export CFLAGS=${RPM_OPT_FLAGS} LDFLAGS=${RPM_LD_FLAGS}
b4d2de
for python in %{python_runtimes} ; do
b4d2de
  $python setup.py build
b4d2de
done
b4d2de
b4d2de
# Fix for wrong-file-end-of-line-encoding problem; upstream also must fix this.
b4d2de
for i in `find doc -iname "*.html"`; do sed -i 's/\r//' $i; done
b4d2de
for i in `find doc -iname "*.css"`; do sed -i 's/\r//' $i; done
b4d2de
b4d2de
# Get rid of a "hidden" file that rpmlint complains about
b4d2de
rm -f doc/html/.buildinfo
b4d2de
b4d2de
# We can not build docs now:
b4d2de
# https://www.postgresql.org/message-id/2741387.dvL6Cb0VMB@nb.usersys.redhat.com
b4d2de
# make -C doc/src html
b4d2de
b4d2de
b4d2de
%check
b4d2de
%if %{with check}
b4d2de
export PGTESTS_LOCALE=C.UTF-8
b4d2de
%postgresql_tests_run
b4d2de
b4d2de
export PSYCOPG2_TESTDB=${PGTESTS_DATABASES##*:}
b4d2de
export PSYCOPG2_TESTDB_HOST=$PGHOST
b4d2de
export PSYCOPG2_TESTDB_PORT=$PGPORT
b4d2de
b4d2de
cmd="from psycopg2 import tests; tests.unittest.main(defaultTest='tests.test_suite')"
b4d2de
b4d2de
%if %{with python2}
b4d2de
PYTHONPATH=%buildroot%python2_sitearch %__python2 -c "$cmd" --verbose
b4d2de
%endif
b4d2de
%if %{with python3}
b4d2de
PYTHONPATH=%buildroot%python3_sitearch %__python3 -c "$cmd" --verbose
b4d2de
%endif
b4d2de
%endif # check
b4d2de
b4d2de
b4d2de
%install
b4d2de
export CFLAGS=${RPM_OPT_FLAGS} LDFLAGS=${RPM_LD_FLAGS}
b4d2de
for python in %{python_runtimes} ; do
b4d2de
  $python setup.py install --no-compile --root %{buildroot}
b4d2de
done
b4d2de
b4d2de
%if %zope
b4d2de
install -d %{buildroot}%{ZPsycopgDAdir}
b4d2de
cp -pr ZPsycopgDA/* %{buildroot}%{ZPsycopgDAdir}
b4d2de
%endif
b4d2de
b4d2de
# This test is skipped on 3.7 and has a syntax error so brp-python-bytecompile would choke on it
b4d2de
%{?with_python3:rm -r %{buildroot}%{python3_sitearch}/%{srcname}/tests/test_async_keyword.py}
b4d2de
b4d2de
%if %{with python2}
b4d2de
%files -n python2-psycopg2
b4d2de
%license LICENSE
b4d2de
%doc AUTHORS NEWS README.rst
b4d2de
%dir %{python2_sitearch}/psycopg2
b4d2de
%{python2_sitearch}/psycopg2/*.py
b4d2de
%{python2_sitearch}/psycopg2/*.pyc
b4d2de
%{python2_sitearch}/psycopg2/_psycopg.so
b4d2de
%{python2_sitearch}/psycopg2/*.pyo
b4d2de
%{python2_sitearch}/psycopg2-%{version}-py2*.egg-info
b4d2de
b4d2de
b4d2de
%files -n python2-%{srcname}-tests
b4d2de
%{python2_sitearch}/psycopg2/tests
b4d2de
b4d2de
b4d2de
%if %{with debugrpms}
b4d2de
%files -n python2-%{srcname}-debug
b4d2de
%license LICENSE
b4d2de
%{python2_sitearch}/psycopg2/_psycopg_d.so
b4d2de
%endif # debugrpms
b4d2de
%endif # python2
b4d2de
b4d2de
b4d2de
%if %{with python3}
b4d2de
%files -n python3-psycopg2
b4d2de
%license LICENSE
b4d2de
%doc AUTHORS NEWS README.rst
b4d2de
%dir %{python3_sitearch}/psycopg2
b4d2de
%{python3_sitearch}/psycopg2/*.py
b4d2de
%{python3_sitearch}/psycopg2/_psycopg.cpython-3?m*.so
b4d2de
%dir %{python3_sitearch}/psycopg2/__pycache__
b4d2de
%{python3_sitearch}/psycopg2/__pycache__/*.py{c,o}
b4d2de
%{python3_sitearch}/psycopg2-%{version}-py3*.egg-info
b4d2de
b4d2de
b4d2de
%files -n python3-%{srcname}-tests
b4d2de
%{python3_sitearch}/psycopg2/tests
b4d2de
b4d2de
b4d2de
%if %{with debugrpms}
b4d2de
%files -n python3-psycopg2-debug
b4d2de
%license LICENSE
b4d2de
%{python3_sitearch}/psycopg2/_psycopg.cpython-3?dm*.so
b4d2de
%endif # debugrpms
b4d2de
%endif # python3
b4d2de
b4d2de
b4d2de
%files doc
b4d2de
%license LICENSE
b4d2de
%doc doc examples/
b4d2de
b4d2de
b4d2de
%if %zope
b4d2de
%files zope
b4d2de
%license LICENSE
b4d2de
%dir %{ZPsycopgDAdir}
b4d2de
%{ZPsycopgDAdir}/*.py
b4d2de
%{ZPsycopgDAdir}/*.pyo
b4d2de
%{ZPsycopgDAdir}/*.pyc
b4d2de
%{ZPsycopgDAdir}/dtml/*
b4d2de
%{ZPsycopgDAdir}/icons/*
b4d2de
%endif
b4d2de
b4d2de
b4d2de
%changelog
b4d2de
* Fri Oct 05 2018 Pavel Raiskup <praiskup@redhat.com> - 2.7.5-7
b4d2de
- bump the NVR to beat the NVR from module
b4d2de
b4d2de
* Wed Oct 03 2018 Pavel Raiskup <praiskup@redhat.com> - 2.7.5-5
b4d2de
- sync with Fedora Rawide
b4d2de
b4d2de
* Thu Aug 02 2018 Pavel Raiskup <praiskup@redhat.com> - 2.7.5-4
b4d2de
- re-enable testsuite
b4d2de
b4d2de
* Wed Aug 01 2018 Lumír Balhar <lbalhar@redhat.com> - 2.7.5-3
b4d2de
- Disable failing tests
b4d2de
b4d2de
* Wed Jul 18 2018 Tomas Orsava <torsava@redhat.com> - 2.7.5-2
b4d2de
- BuildRequire also python36-rpm-macros as part of the python36 module build
b4d2de
b4d2de
* Tue Jul 17 2018 Pavel Raiskup <praiskup@redhat.com> - 2.7.5-1
b4d2de
- sync with fedora rawhide
b4d2de
b4d2de
* Tue May 01 2018 Tomas Orsava <torsava@redhat.com> - 2.7.4-5
b4d2de
- Let the doc subpackage be standalone installable
b4d2de
b4d2de
* Wed Apr 25 2018 Tomas Orsava <torsava@redhat.com> - 2.7.4-4
b4d2de
- Make requires on python36-devel/debug dependant on a python36_module bcond
b4d2de
b4d2de
* Mon Apr 23 2018 Tomas Orsava <torsava@redhat.com> - 2.7.4-3
b4d2de
- Revert switching Python 3 subpackages to the python3X- prefix
b4d2de
- Switch only the requires for python3-devel/debug to the python36-prefix:
b4d2de
  the rest of the packages in the python36 collection will have the python3
b4d2de
  prefix to be unified with the Python 3 packages for Platform-Python
b4d2de
b4d2de
* Wed Apr 18 2018 Tomas Orsava <torsava@redhat.com> - 2.7.4-2
b4d2de
- Switch the Python 3 subpackages to the python3X- prefix using
b4d2de
  the %{python3_pkgversion} macro
b4d2de
b4d2de
* Mon Feb 12 2018 Pavel Raiskup <praiskup@redhat.com> - 2.7.4-1
b4d2de
- rebase to latest upstream release, per release notes:
b4d2de
  http://initd.org/psycopg/articles/2018/02/08/psycopg-274-released/
b4d2de
b4d2de
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.3.2-3
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
b4d2de
b4d2de
* Thu Dec 14 2017 Pavel Raiskup <praiskup@redhat.com> - 2.7.3.2-2
b4d2de
- treat python3/python2 equally
b4d2de
b4d2de
* Wed Oct 25 2017 Pavel Raiskup <praiskup@redhat.com> - 2.7.3.2-1
b4d2de
- update to 2.7.3.2, per release notes:
b4d2de
  http://initd.org/psycopg/articles/2017/10/24/psycopg-2732-released/
b4d2de
b4d2de
* Mon Aug 28 2017 Pavel Raiskup <praiskup@redhat.com> - 2.7.3.1-1
b4d2de
- http://initd.org/psycopg/articles/2017/08/26/psycopg-2731-released/
b4d2de
b4d2de
* Sun Aug 13 2017 Pavel Raiskup <praiskup@redhat.com> - 2.7.3-1
b4d2de
- rebase to latest upstream release, per release notes:
b4d2de
  http://initd.org/psycopg/articles/2017/07/24/psycopg-273-released/
b4d2de
b4d2de
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.2-3
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
b4d2de
b4d2de
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.2-2
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b4d2de
b4d2de
* Sun Jul 23 2017 Pavel Raiskup <praiskup@redhat.com> - 2.7.2-1
b4d2de
- rebase to latest upstream release, per release notes:
b4d2de
  http://initd.org/psycopg/articles/2017/07/22/psycopg-272-released/
b4d2de
b4d2de
* Mon Mar 13 2017 Pavel Raiskup <praiskup@redhat.com> - 2.7.1-1
b4d2de
- rebase to latest upstream release, per release notes:
b4d2de
  http://initd.org/psycopg/articles/2017/03/01/psycopg-271-released/
b4d2de
- fix testsuite
b4d2de
b4d2de
* Thu Mar 02 2017 Pavel Raiskup <praiskup@redhat.com> - 2.7-1
b4d2de
- rebase to latest upstream release, per release notes:
b4d2de
  http://initd.org/psycopg/articles/2017/03/01/psycopg-27-released/
b4d2de
- enable testsuite during build, and package it
b4d2de
b4d2de
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.2-4
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b4d2de
b4d2de
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.6.2-3
b4d2de
- Rebuild for Python 3.6
b4d2de
b4d2de
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.2-2
b4d2de
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
b4d2de
b4d2de
* Thu Jul 07 2016 Pavel Raiskup <praiskup@redhat.com> - 2.6.2-1
b4d2de
- rebase (rhbz#1353545), per release notes
b4d2de
  http://initd.org/psycopg/articles/2016/07/07/psycopg-262-released/
b4d2de
b4d2de
* Sun May 29 2016 Pavel Raiskup <praiskup@redhat.com> - 2.6.1-6
b4d2de
- provide python2-psycopg2 (rhbz#1306025)
b4d2de
- cleanup obsoleted packaging stuff
b4d2de
b4d2de
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-5
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b4d2de
b4d2de
* Sun Nov 15 2015 Pavel Raiskup <praiskup@redhat.com> - 2.6.1-4
b4d2de
- again bump for new Python 3.5, not build previously?
b4d2de
- fix rpmlint issues
b4d2de
- no pyo files with python 3.5
b4d2de
b4d2de
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
b4d2de
b4d2de
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.1-2
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b4d2de
b4d2de
* Mon Jun 15 2015 Jozef Mlich <jmlich@redhat.com> 2.6.1-1
b4d2de
- Update to 2.6.1
b4d2de
b4d2de
* Mon Feb 9 2015 Devrim Gündüz <devrim@gunduz.org> 2.6-1
b4d2de
- Update to 2.6, per changes described at:
b4d2de
  http://www.psycopg.org/psycopg/articles/2015/02/09/psycopg-26-and-255-released/
b4d2de
b4d2de
* Tue Jan 13 2015 Devrim Gündüz <devrim@gunduz.org> 2.5.4-1
b4d2de
- Update to 2.5.4, per changes described at:
b4d2de
  http://www.psycopg.org/psycopg/articles/2014/08/30/psycopg-254-released
b4d2de
b4d2de
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.3-2
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
b4d2de
b4d2de
* Fri Jul 04 2014 Pavel Raiskup <praiskup@redhat.com> - 2.5.3-1
b4d2de
- rebase to most recent upstream version, per release notes:
b4d2de
  http://www.psycopg.org/psycopg/articles/2014/05/13/psycopg-253-released/
b4d2de
b4d2de
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.2-3
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b4d2de
b4d2de
* Tue May 13 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 2.5.2-2
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
b4d2de
b4d2de
* Tue Jan 7 2014 Devrim Gündüz <devrim@gunduz.org> 2.5.2-1
b4d2de
- Update to 2.5.2, per changes described at:
b4d2de
  http://www.psycopg.org/psycopg/articles/2014/01/07/psycopg-252-released
b4d2de
b4d2de
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.1-2
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
b4d2de
b4d2de
* Sun Jul 07 2013 Pavel Raiskup <praiskup@redhat.com> - 2.5.1-1
b4d2de
- rebase to 2.5.1
b4d2de
b4d2de
* Thu May 16 2013 Devrim Gündüz <devrim@gunduz.org> 2.5-1
b4d2de
- Update to 2.5, per changes described at:
b4d2de
  http://www.psycopg.org/psycopg/articles/2013/04/07/psycopg-25-released/
b4d2de
b4d2de
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.5-7
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
b4d2de
b4d2de
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 2.4.5-6
b4d2de
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
b4d2de
b4d2de
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 2.4.5-5
b4d2de
- generalize python 3 fileglobbing to work with both Python 3.2 and 3.3
b4d2de
b4d2de
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 2.4.5-4
b4d2de
- replace "python3.2dmu" with "python3-debug"; with_python3 fixes
b4d2de
b4d2de
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 2.4.5-3
b4d2de
- add with_python3 conditional
b4d2de
b4d2de
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.5-2
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b4d2de
b4d2de
* Sat Apr  7 2012 Tom Lane <tgl@redhat.com> 2.4.5-1
b4d2de
- Update to 2.4.5
b4d2de
b4d2de
* Thu Feb  2 2012 Tom Lane <tgl@redhat.com> 2.4.4-1
b4d2de
- Update to 2.4.4
b4d2de
- More specfile neatnik-ism
b4d2de
b4d2de
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.2-3
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
b4d2de
b4d2de
* Tue Nov 29 2011 Tom Lane <tgl@redhat.com> 2.4.2-2
b4d2de
- Fix mistaken %%dir marking on python3 files, per Dan Horak
b4d2de
b4d2de
* Sat Jun 18 2011 Tom Lane <tgl@redhat.com> 2.4.2-1
b4d2de
- Update to 2.4.2
b4d2de
Related: #711095
b4d2de
- Some neatnik specfile cleanups
b4d2de
b4d2de
* Thu Feb 10 2011 David Malcolm <dmalcolm@redhat.com> - 2.4-0.beta2
b4d2de
- 2.4.0-beta2
b4d2de
- add python 2 debug, python3 (optimized) and python3-debug subpackages
b4d2de
b4d2de
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.2-2
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b4d2de
b4d2de
* Wed Dec 29 2010 Tom Lane <tgl@redhat.com> 2.3.2-1
b4d2de
- Update to 2.3.2
b4d2de
- Clean up a few rpmlint warnings
b4d2de
b4d2de
* Fri Dec 03 2010 Jason L Tibbitts III <tibbs@math.uh.edu> - 2.2.2-3
b4d2de
- Fix incorrect (and invalid) License: tag.
b4d2de
b4d2de
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.2.2-2
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
b4d2de
b4d2de
* Tue Jul 20 2010 Devrim GUNDUZ <devrim@gunduz.org> - 2.2.2-1
b4d2de
- Update to 2.2.2
b4d2de
b4d2de
* Tue May 18 2010 Devrim GUNDUZ <devrim@gunduz.org> - 2.2.1-1
b4d2de
- Update to 2.2.1
b4d2de
- Improve description for 2.2 features.
b4d2de
- Changelog for 2.2.0 is: 
b4d2de
   http://initd.org/pub/software/psycopg/ChangeLog-2.2
b4d2de
b4d2de
* Wed Mar 17 2010 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.14-1
b4d2de
- Update to 2.0.14
b4d2de
- Update license (upstream switched to LGPL3)
b4d2de
b4d2de
* Sun Jan 24 2010 Tom Lane <tgl@redhat.com> 2.0.13-2
b4d2de
- Fix rpmlint complaints: remove unneeded explicit Requires:, use Conflicts:
b4d2de
  instead of bogus Obsoletes: to indicate lack of zope subpackage
b4d2de
b4d2de
* Sun Oct 18 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.13-1
b4d2de
- Update to 2.0.13
b4d2de
b4d2de
* Fri Aug 14 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.12-1
b4d2de
- Update to 2.0.12
b4d2de
b4d2de
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.11-2
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
b4d2de
b4d2de
* Tue May 19 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.11-1
b4d2de
- Update to 2.0.11
b4d2de
b4d2de
* Tue Apr 21 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.10-1
b4d2de
- Update to 2.0.10
b4d2de
b4d2de
* Fri Mar 20 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.9-1
b4d2de
- Update to 2.0.9
b4d2de
b4d2de
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.8-3
b4d2de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
b4d2de
b4d2de
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0.8-2
b4d2de
- Rebuild for Python 2.6
b4d2de
b4d2de
* Sat Nov 29 2008 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.8-1
b4d2de
- Update to 2.0.8
b4d2de
b4d2de
* Sat Nov 29 2008 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.8-1
b4d2de
- Update to 2.0.8
b4d2de
b4d2de
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0.7-3
b4d2de
- Rebuild for Python 2.6
b4d2de
b4d2de
* Thu May 29 2008 Todd Zullinger <tmz@pobox.com> - 2.0.7-2
b4d2de
- fix license tags
b4d2de
b4d2de
* Wed Apr 30 2008 Devrim GUNDUZ <devrim@commandprompt.com> 2.0.7-1
b4d2de
- Update to 2.0.7
b4d2de
b4d2de
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.0.6-4.1
b4d2de
- Autorebuild for GCC 4.3
b4d2de
b4d2de
* Mon Jan 21 2008 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.6-3.1
b4d2de
- Rebuilt against PostgreSQL 8.3
b4d2de
b4d2de
* Thu Jan 3 2008 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.6-3
b4d2de
- Rebuild for rawhide changes
b4d2de
b4d2de
* Tue Aug 28 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.0.6-2
b4d2de
- Rebuild for selinux ppc32 issue.
b4d2de
b4d2de
* Fri Jun 15 2007 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.6-1
b4d2de
- Update to 2.0.6
b4d2de
b4d2de
* Thu Apr 26 2007 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-8
b4d2de
- Disabled zope package temporarily.
b4d2de
b4d2de
* Wed Dec 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-7
b4d2de
- Rebuilt
b4d2de
b4d2de
* Wed Dec 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-5
b4d2de
- Bumped up spec version
b4d2de
b4d2de
* Wed Dec 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-4
b4d2de
- Rebuilt for PostgreSQL 8.2.0
b4d2de
b4d2de
* Mon Sep 11 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-3
b4d2de
- Rebuilt
b4d2de
b4d2de
* Wed Sep 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-2
b4d2de
- Remove ghost'ing, per Python Packaging Guidelines
b4d2de
b4d2de
* Mon Sep 4 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-1
b4d2de
- Update to 2.0.5.1
b4d2de
b4d2de
* Sun Aug 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.3-3
b4d2de
- Fixed zope package dependencies and macro definition, per bugzilla review (#199784)
b4d2de
- Fixed zope package directory ownership, per bugzilla review (#199784)
b4d2de
- Fixed cp usage for zope subpackage, per bugzilla review (#199784)
b4d2de
b4d2de
* Mon Jul 31 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.3-2
b4d2de
- Fixed 64 bit builds
b4d2de
- Fixed license
b4d2de
- Added Zope subpackage
b4d2de
- Fixed typo in doc description
b4d2de
- Added macro for zope subpackage dir
b4d2de
b4d2de
* Mon Jul 31 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.3-1
b4d2de
- Update to 2.0.3
b4d2de
- Fixed spec file, per bugzilla review (#199784)
b4d2de
b4d2de
* Sat Jul 22 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.2-3
b4d2de
- Removed python dependency, per bugzilla review. (#199784)
b4d2de
- Changed doc package group, per bugzilla review. (#199784)
b4d2de
- Replaced dos2unix with sed, per guidelines and bugzilla review (#199784)
b4d2de
- Fix changelog dates
b4d2de
b4d2de
* Sat Jul 22 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.2-2
b4d2de
- Added dos2unix to buildrequires
b4d2de
- removed python related part from package name
b4d2de
b4d2de
* Fri Jul 21 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.2-1
b4d2de
- Fix rpmlint errors, including dos2unix solution
b4d2de
- Re-engineered spec file
b4d2de
b4d2de
* Mon Jan 23 2006 - Devrim GUNDUZ <devrim@commandprompt.com>
b4d2de
- First 2.0.X build
b4d2de
b4d2de
* Mon Jan 23 2006 - Devrim GUNDUZ <devrim@commandprompt.com>
b4d2de
- Update to 1.2.21
b4d2de
b4d2de
* Tue Dec 06 2005 - Devrim GUNDUZ <devrim@commandprompt.com>
b4d2de
- Initial release for 1.1.20