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