dff67c
%global debug_package %{nil}
dff67c
dff67c
%if 0%{?fedora} || 0%{?rhel} > 7
dff67c
%bcond_without python3
dff67c
%endif
dff67c
dff67c
# python2X and python3X are built form the same module, so we need a conditional for python2 bits
dff67c
# the state of the conditional is not important in the spec, it is set in modulemd
dff67c
%bcond_with python2
dff67c
dff67c
dff67c
%bcond_with python36_module
dff67c
dff67c
%global srcname SQLAlchemy
dff67c
dff67c
Name:           python-sqlalchemy
dff67c
Version:        1.3.2
3b8cc7
Release:        2%{?dist}
dff67c
Summary:        Modular and flexible ORM library for python
dff67c
dff67c
Group:          Development/Libraries
dff67c
License:        MIT
dff67c
URL:            http://www.sqlalchemy.org/
dff67c
Source0:        https://files.pythonhosted.org/packages/source/S/%{srcname}/%{srcname}-%{version}.tar.gz
dff67c
3b8cc7
# Fold entities into existing joins when resolving FROM ambiguity.
3b8cc7
# This regression was introduced with the 1.3 sqlalchemy series.
3b8cc7
# Fixed upstream: https://github.com/sqlalchemy/sqlalchemy/commit/25a42e93f4ef5ce1a9f9c23fbcdea3e21a7b3f1a
3b8cc7
# Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1829932
3b8cc7
Patch0:         fix-regression-in-ambiguous-join-logic.patch
3b8cc7
dff67c
BuildRequires:  gcc
dff67c
dff67c
%if %{with python2}
dff67c
BuildRequires:  python2-devel >= 2.6
dff67c
BuildRequires:  python2-setuptools
dff67c
BuildRequires:  python2-mock
dff67c
BuildRequires:  python2-pytest
dff67c
%endif
dff67c
dff67c
%if %{with python3}
dff67c
%if %{with python36_module}
dff67c
BuildRequires:  python36-devel
dff67c
BuildRequires:  python36-rpm-macros
dff67c
%else
dff67c
BuildRequires:  python3-devel
dff67c
%endif
dff67c
BuildRequires:  python3-setuptools
dff67c
BuildRequires:  python3-pytest
dff67c
%endif
dff67c
dff67c
%description
dff67c
SQLAlchemy is an Object Relational Mappper (ORM) that provides a flexible,
dff67c
high-level interface to SQL databases.  Database and domain concepts are
dff67c
decoupled, allowing both sides maximum flexibility and power. SQLAlchemy
dff67c
provides a powerful mapping layer that can work as automatically or as manually
dff67c
as you choose, determining relationships based on foreign keys or letting you
dff67c
define the join conditions explicitly, to bridge the gap between database and
dff67c
domain.
dff67c
dff67c
This package includes the python 2 version of the module.
dff67c
dff67c
%package doc
dff67c
Summary:        Documentation for SQLAlchemy
dff67c
BuildArch:      noarch
dff67c
dff67c
%description doc
dff67c
Documentation for SQLAlchemy
dff67c
dff67c
%if %{with python2}
dff67c
%package -n python2-sqlalchemy
dff67c
Summary:        Modular and flexible ORM library for python
dff67c
Group:          Development/Libraries
dff67c
%{?python_provide:%python_provide python2-sqlalchemy}
dff67c
dff67c
%description -n python2-sqlalchemy
dff67c
SQLAlchemy is an Object Relational Mappper (ORM) that provides a flexible,
dff67c
high-level interface to SQL databases.  Database and domain concepts are
dff67c
decoupled, allowing both sides maximum flexibility and power. SQLAlchemy
dff67c
provides a powerful mapping layer that can work as automatically or as manually
dff67c
as you choose, determining relationships based on foreign keys or letting you
dff67c
define the join conditions explicitly, to bridge the gap between database and
dff67c
domain.
dff67c
dff67c
This package includes the python 2 version of the module.
dff67c
%endif
dff67c
dff67c
%if %{with python3}
dff67c
%package -n python3-sqlalchemy
dff67c
Summary:        Modular and flexible ORM library for python
dff67c
Group:          Development/Libraries
dff67c
%{?python_provide:%python_provide python%{python3_pkgversion}-sqlalchemy}
dff67c
dff67c
%description -n python3-sqlalchemy
dff67c
SQLAlchemy is an Object Relational Mappper (ORM) that provides a flexible,
dff67c
high-level interface to SQL databases.  Database and domain concepts are
dff67c
decoupled, allowing both sides maximum flexibility and power. SQLAlchemy
dff67c
provides a powerful mapping layer that can work as automatically or as manually
dff67c
as you choose, determining relationships based on foreign keys or letting you
dff67c
define the join conditions explicitly, to bridge the gap between database and
dff67c
domain.
dff67c
dff67c
This package includes the python 3 version of the module.
dff67c
%endif # with python3
dff67c
dff67c
%prep
dff67c
%setup -n %{srcname}-%{version}
3b8cc7
%patch0 -p1
dff67c
dff67c
%build
dff67c
%{?with_python2:%py2_build}
dff67c
dff67c
%if %{with python3}
dff67c
%py3_build
dff67c
%endif
dff67c
dff67c
%install
dff67c
%{?with_python2:%py2_install}
dff67c
dff67c
%if %{with python3}
dff67c
%py3_install
dff67c
%endif
dff67c
dff67c
# remove unnecessary scripts for building documentation
dff67c
rm -rf doc/build
dff67c
dff67c
%check
dff67c
%{?with_python2:PYTHONPATH=. %{__python2} -m pytest test}
dff67c
dff67c
%if %{with python3}
dff67c
PYTHONPATH=. %{__python3} -m pytest test
dff67c
%endif
dff67c
dff67c
dff67c
%files doc
dff67c
%doc doc examples
dff67c
dff67c
%if %{with python2}
dff67c
%files -n python2-sqlalchemy
dff67c
%license LICENSE
dff67c
%doc README.rst
dff67c
%{python2_sitearch}/*
dff67c
%endif
dff67c
dff67c
%if %{with python3}
dff67c
%files -n python3-sqlalchemy
dff67c
%license LICENSE
dff67c
%doc README.rst
dff67c
%{python3_sitearch}/*
dff67c
%endif # with python3
dff67c
dff67c
%changelog
3b8cc7
* Fri May 15 2020 Charalampos Stratakis <cstratak@redhat.com> - 1.3.2-2
3b8cc7
- Fix regression in ambiguous join logic
3b8cc7
Resolves: rhbz#1829932
3b8cc7
dff67c
* Fri Apr 05 2019 Charalampos Stratakis <cstratak@redhat.com> - 1.3.2-1
dff67c
- Rebase to 1.3.2 to fix CVE-2019-7164 and CVE-2019-7548
dff67c
Resolves: rhbz#1695754
dff67c
dff67c
* Tue Jul 31 2018 Lumír Balhar <lbalhar@redhat.com> - 1.2.8-6
dff67c
- Switch python3 coditions to bcond
dff67c
dff67c
* Wed Jul 18 2018 Tomas Orsava <torsava@redhat.com> - 1.2.8-5
dff67c
- BuildRequire also python36-rpm-macros as part of the python36 module build
dff67c
dff67c
* Wed Jul 04 2018 Miro Hrončok <mhroncok@redhat.com> - 1.2.8-4
dff67c
- Add a bcond for python2
dff67c
- Remove provides filter, it was only needed 100 years ago
dff67c
dff67c
* Sun Jun 17 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.8-3
dff67c
- rename patch, apply with backups
dff67c
- fix failing test for sqlite 3.24 instead of skipping it
dff67c
dff67c
* Thu Jun 14 2018 Miro Hrončok <mhroncok@redhat.com> - 1.2.8-2
dff67c
- Rebuilt for Python 3.7
dff67c
dff67c
* Tue Jun 05 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.8-1
dff67c
- version 1.2.8
dff67c
dff67c
* Mon Apr 30 2018 Tomas Orsava <torsava@redhat.com> - 1.2.7-2
dff67c
- Require the python36-devel package when building for the python36 module
dff67c
dff67c
* Sun Apr 22 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.7-1
dff67c
- version 1.2.7
dff67c
dff67c
* Sat Mar 31 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.6-1
dff67c
- version 1.2.6
dff67c
dff67c
* Mon Mar 19 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.5-1
dff67c
- version 1.2.5
dff67c
dff67c
* Tue Feb 27 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.4-1
dff67c
- version 1.2.4
dff67c
dff67c
* Tue Feb 20 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.3-2
dff67c
- require gcc for building
dff67c
dff67c
* Tue Feb 20 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.3-1
dff67c
- version 1.2.3
dff67c
dff67c
* Mon Feb 12 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.2.2-3
dff67c
- Update Python 2 dependency declarations to new packaging standards
dff67c
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
dff67c
dff67c
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-2
dff67c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
dff67c
dff67c
* Tue Jan 30 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.2-1
dff67c
- version 1.2.2
dff67c
dff67c
* Sun Dec 31 2017 Nils Philippsen <nils@tiptoe.de> - 1.2.0-1
dff67c
- version 1.2.0
dff67c
- fix version-releases in changelog
dff67c
dff67c
* Fri Sep 29 2017 Troy Dawson <tdawson@redhat.com> - 1.1.13-2
dff67c
- Cleanup spec file conditionals
dff67c
dff67c
* Sat Aug 05 2017 Nils Philippsen <nils@tiptoe.de> - 1.1.13-1
dff67c
- version 1.1.13
dff67c
dff67c
* Tue Aug 01 2017 Nils Philippsen <nils@tiptoe.de> - 1.1.12-1
dff67c
- version 1.1.12
dff67c
- remove comments with macros
dff67c
dff67c
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.11-2
dff67c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
dff67c
dff67c
* Mon Jun 26 2017 Nils Philippsen <nils@tiptoe.de> - 1.1.11-1
dff67c
- version 1.1.11
dff67c
dff67c
* Sat May 27 2017 Nils Philippsen <nils@tiptoe.de> - 1.1.10-1
dff67c
- version 1.1.10
dff67c
dff67c
* Thu Apr  6 2017 hguemar <hguemar@fedoraproject.org> - 1.1.9-1
dff67c
- Upstream 1.1.9 (RHBZ#1436464)
dff67c
dff67c
* Wed Mar 15 2017 Nils Philippsen <nils@tiptoe.de> - 1.1.6-1
dff67c
- version 1.1.6
dff67c
dff67c
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-2
dff67c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
dff67c
dff67c
* Fri Feb 03 2017 Nils Philippsen <nils@redhat.com> - 1.1.5-1
dff67c
- version 1.1.5
dff67c
dff67c
* Tue Dec 13 2016 Charalampos Stratakis <cstratak@redhat.com> - 1.1.4-3
dff67c
- Enable tests
dff67c
dff67c
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 1.1.4-2
dff67c
- Rebuild for Python 3.6
dff67c
- Disable python3 tests for now
dff67c
dff67c
* Wed Nov 23 2016 Kevin Fenzi <kevin@scrye.com> - 1.1.4-1
dff67c
- Update to 1.1.4. Fixes bug #1395470
dff67c
dff67c
* Tue Nov 8 2016 Orion Poplawski <orion@cora.nwra.com> - 1.1.3-2
dff67c
- Ship python2-sqlalchemy
dff67c
- Move docs into sub-package
dff67c
- Modernize spec
dff67c
dff67c
* Mon Oct 31 2016 Kevin Fenzi <kevin@scrye.com> - 1.1.3-1
dff67c
- Update to 1.1.3. Fixes bug #1389638
dff67c
dff67c
* Tue Oct 18 2016 Kevin Fenzi <kevin@scrye.com> - 1.1.2-1
dff67c
- Update to 1.1.2. Fixes bug #1385990
dff67c
dff67c
* Mon Oct 10 2016 Nils Philippsen <nils@redhat.com> - 1.1.1-1
dff67c
- version 1.1.1
dff67c
dff67c
* Thu Oct 06 2016 Kevin Fenzi <kevin@scrye.com> - 1.1.0-1
dff67c
- Update to 1.1.0. Fixes bug #1382203
dff67c
dff67c
* Thu Aug 18 2016 Nils Philippsen <nils@redhat.com> - 1.0.14-1
dff67c
- version 1.0.14
dff67c
dff67c
* Tue May 31 2016 Nils Philippsen <nils@redhat.com> - 1.0.14-1
dff67c
- fix source URL
dff67c
dff67c
* Tue May 17 2016 Nils Philippsen <nils@redhat.com> - 1.0.13-1
dff67c
- version 1.0.13
dff67c
dff67c
* Thu Feb 25 2016 Nils Philippsen <nils@redhat.com> - 1.0.12-1
dff67c
- version 1.0.12
dff67c
dff67c
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.11-2
dff67c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
dff67c
dff67c
* Fri Jan 08 2016 Kevin Fenzi <kevin@scrye.com> - 1.0.11-1
dff67c
- Update to 1.0.11. Fixes bug #1296757
dff67c
dff67c
* Sat Dec 12 2015 Kevin Fenzi <kevin@scrye.com> - 1.0.10-1
dff67c
- Update to 1.0.10. Fixes bug #1290945
dff67c
dff67c
* Thu Nov 12 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.9-2
dff67c
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
dff67c
dff67c
* Wed Oct 21 2015 Nils Philippsen <nils@redhat.com> - 1.0.9-1
dff67c
- version 1.0.9, upstream feature and bugfix release
dff67c
dff67c
* Mon Oct 12 2015 Robert Kuska <rkuska@redhat.com> - 1.0.8-2
dff67c
- Rebuilt for Python3.5 rebuild
dff67c
dff67c
* Fri Jul 24 2015 Nils Philippsen <nils@redhat.com> 1.0.8-1
dff67c
- version 1.0.8, upstream bugfix release
dff67c
dff67c
* Tue Jul 21 2015 Fedora Release Monitoring <release-monitoring@fedoraproject.org> - 1.0.7-1
dff67c
- Update to 1.0.7 (#1244991)
dff67c
dff67c
* Mon Jun 29 2015 Nils Philippsen <nils@redhat.com> 1.0.6-1
dff67c
- version 1.0.6, upstream feature and bugfix release
dff67c
dff67c
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.5-2
dff67c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
dff67c
dff67c
* Sun Jun 07 2015 Kevin Fenzi <kevin@scrye.com> 1.0.4-1
dff67c
- Update to 1.0.5. Fixes bug #1229067
dff67c
dff67c
* Fri May 08 2015 Nils Philippsen <nils@redhat.com> 1.0.4-1
dff67c
- version 1.0.4, upstream bugfix release
dff67c
dff67c
* Sat May 02 2015 Kevin Fenzi <kevin@scrye.com> 1.0.3-1
dff67c
- Update to 1.0.3. Fixes bug #1217761
dff67c
dff67c
* Sat Apr 25 2015 Nils Philippsen <nils@redhat.com> - 1.0.2-1
dff67c
- version 1.0.2, upstream bugfix release
dff67c
dff67c
* Fri Apr 24 2015 Nils Philippsen <nils@redhat.com> - 1.0.1-1
dff67c
- version 1.0.1, upstream bugfix release
dff67c
dff67c
* Fri Apr 17 2015 Nils Philippsen <nils@redhat.com> - 1.0.0-1
dff67c
- version 1.0.0, upstream feature release
dff67c
dff67c
* Fri Apr 10 2015 Nils Philippsen <nils@redhat.com> - 0.9.9-1
dff67c
- version 0.9.9, upstream feature and bugfix release
dff67c
dff67c
* Wed Oct 15 2014 Nils Philippsen <nils@redhat.com> - 0.9.8-1
dff67c
- version 0.9.8, upstream feature and bugfix release
dff67c
- avoid using unversioned python macros
dff67c
- use py.test instead of nose for tests
dff67c
dff67c
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.7-2
dff67c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
dff67c
dff67c
* Tue Jul 29 2014 Nils Philippsen <nils@redhat.com> - 0.9.7-1
dff67c
- version 0.9.7, upstream feature and bugfix release
dff67c
dff67c
* Mon Jun 30 2014 Nils Philippsen <nils@redhat.com> - 0.9.6-1
dff67c
- version 0.9.6, upstream feature and bugfix release
dff67c
dff67c
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-3
dff67c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
dff67c
dff67c
* Fri May 16 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 0.9.4-2
dff67c
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
dff67c
dff67c
* Thu May 15 2014 Nils Philippsen <nils@redhat.com> - 0.9.4-1
dff67c
- version 0.9.4, upstream feature and bugfix release
dff67c
dff67c
* Thu Feb 20 2014 Nils Philippsen <nils@redhat.com> - 0.9.3-1
dff67c
- version 0.9.3, upstream feature and bugfix release
dff67c
dff67c
* Wed Feb 05 2014 Nils Philippsen <nils@redhat.com> - 0.9.2-1
dff67c
- version 0.9.2, upstream feature and bugfix release
dff67c
dff67c
* Tue Jan 07 2014 Nils Philippsen <nils@redhat.com> - 0.9.1-1
dff67c
- version 0.9.1, upstream feature and bugfix release
dff67c
- no need to use 2to3 for python 3.x anymore
dff67c
- build C extension for python 3.x
dff67c
- require python2-devel >= 2.6 for building
dff67c
dff67c
* Mon Dec 09 2013 Nils Philippsen <nils@redhat.com> - 0.8.4-1
dff67c
- version 0.8.4, upstream bugfix release
dff67c
dff67c
* Tue Oct 29 2013 Nils Philippsen <nils@redhat.com> - 0.8.3-1
dff67c
- version 0.8.3, upstream bugfix release
dff67c
dff67c
* Wed Aug 14 2013 Nils Philippsen <nils@redhat.com> - 0.8.2-1
dff67c
- version 0.8.2, upstream bugfix release
dff67c
- drop obsolete sqlalchemy-test-bidirectional-order patch
dff67c
- fix bogus date in changelog
dff67c
dff67c
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-2
dff67c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
dff67c
dff67c
* Mon Apr 29 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.8.1-1
dff67c
- Upstream bugfix
dff67c
- Stop calling sa2to3 explicitly on the library.  It seems to break mapper.py's
dff67c
  import of collections.deque
dff67c
dff67c
* Fri Apr 12 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.8.0-1
dff67c
- Final release of 0.8.0
dff67c
- Fix for a unittest that assumes order in dicts
dff67c
dff67c
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.0-0.2.b1
dff67c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
dff67c
dff67c
* Thu Nov  1 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.8.0-0.1.b1
dff67c
- Update to 0.8.0 beta
dff67c
dff67c
* Mon Aug 13 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.8-4.20120813hg8535
dff67c
- Update to a snapshot to fix unittest errors with python-3.3
dff67c
dff67c
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 0.7.8-3
dff67c
- remove rhel logic from with_python3 conditional
dff67c
dff67c
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.8-2
dff67c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
dff67c
dff67c
* Mon Jun 18 2012 Nils Philippsen <nils@redhat.com> - 0.7.8-1
dff67c
- Upstream bugfix release
dff67c
dff67c
* Tue May 15 2012 Nils Philippsen <nils@redhat.com> - 0.7.7-1
dff67c
- Upstream bugfix release
dff67c
dff67c
* Tue Mar 20 2012 Nils Philippsen <nils@redhat.com> - 0.7.6-1
dff67c
- Upstream bugfix release
dff67c
dff67c
* Mon Jan 30 2012 Nils Philippsen <nils@redhat.com> - 0.7.5-1
dff67c
- Upstream bugfix release
dff67c
- package README.rst instead of README as documentation
dff67c
dff67c
* Tue Jan 10 2012 Nils Philippsen <nils@redhat.com> - 0.7.3-2
dff67c
- rebuild for gcc 4.7
dff67c
dff67c
* Mon Oct 17 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.3-1
dff67c
- Upstream bugfix release
dff67c
dff67c
* Mon Aug 1 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.2-1
dff67c
- Upstream bugfix release
dff67c
dff67c
* Mon Jun 06 2011 Nils Philippsen <nils@redhat.com> - 0.7.1-1
dff67c
- 0.7.1 Upstream release
dff67c
- no need to fix examples/dynamic_dict/dynamic_dict.py anymore
dff67c
- use sqla_nose.py to fix %%check
dff67c
dff67c
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.6-2
dff67c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
dff67c
dff67c
* Mon Jan 17 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.6-1
dff67c
- 0.6.6 Upstream release
dff67c
dff67c
* Fri Dec 3 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.5-1
dff67c
- 0.6.5 Upstream release
dff67c
dff67c
* Wed Sep 29 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.4-2
dff67c
- Filter out the C extensions from provides
dff67c
dff67c
* Tue Sep 07 2010 Luke Macken <lmacken@redhat.com> - 0.6.4-1
dff67c
- 0.6.4 upstream release
dff67c
dff67c
* Mon Aug 23 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.3-1
dff67c
- 0.6.3 upstream release
dff67c
dff67c
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com>
dff67c
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
dff67c
dff67c
* Thu Jun 24 2010 Nils Philippsen <nils@redhat.com> - 0.6.1-1
dff67c
- 0.6.1 upstream release
dff67c
dff67c
* Tue Apr 13 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6-0.4.beta3
dff67c
- Build beta3
dff67c
dff67c
* Fri Mar 19 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6-0.3.beta2
dff67c
- Build beta2 with cextension
dff67c
dff67c
* Sun Mar 7 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6-0.2.beta1
dff67c
- Build python3 package
dff67c
dff67c
* Tue Mar 2 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6-0.1.beta1
dff67c
- 0.6 beta1 upstream release
dff67c
dff67c
* Tue Feb 2 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5.8-3
dff67c
- One last cleanup
dff67c
dff67c
* Tue Feb 2 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5.8-2
dff67c
- just some cleanups to older styles of building packages.
dff67c
dff67c
* Mon Feb 1 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5.8-1
dff67c
- Upstream bugfix release 0.5.8
dff67c
dff67c
* Fri Aug 14 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5.5-2
dff67c
- Upstream bugfix release 0.5.5
dff67c
dff67c
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.4-2.p2
dff67c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
dff67c
dff67c
* Fri Jun 12 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5.4-1.p2
dff67c
- Upstream bugfix release 0.5.4p2.
dff67c
dff67c
* Thu Apr 16 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5.3-1
dff67c
- Upstream bugfix release.
dff67c
dff67c
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.2-2
dff67c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
dff67c
dff67c
* Wed Feb 11 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5.2-1
dff67c
- Update to 0.5.2
dff67c
dff67c
* Wed Jan 21 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5.1-1
dff67c
- Update to 0.5.1.
dff67c
dff67c
* Mon Dec 1 2008 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5-0.1.rc4
dff67c
- Update to 0.5.0rc4 which works with the new pysqlite
dff67c
- And update test cases to work with the new pysqlite
dff67c
dff67c
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.4.7-2
dff67c
- Rebuild for Python 2.6
dff67c
dff67c
* Sun Jul 27 2008 Toshio Kuratomi <toshio@fedoraproject.org> 0.4.7-1
dff67c
- Update to 0.4.7.
dff67c
dff67c
* Sun Jun 1 2008 Toshio Kuratomi <toshio@fedoraproject.org> 0.4.6-1
dff67c
- Update to 0.4.6.
dff67c
dff67c
* Tue Apr 8 2008 Toshio Kuratomi <toshio@fedoraproject.org> 0.4.5-1
dff67c
- Update to 0.4.5.
dff67c
dff67c
* Fri Feb 22 2008 Toshio Kuratomi <toshio@fedoraproject.org> 0.4.3-1
dff67c
- Update to 0.4.3.
dff67c
dff67c
* Tue Dec 11 2007 Toshio Kuratomi <a.badger@gmail.com> 0.4.2-1.p3
dff67c
- Update to 0.4.2p3.
dff67c
dff67c
* Tue Dec 11 2007 Toshio Kuratomi <a.badger@gmail.com> 0.4.1-1
dff67c
- Update to 0.4.1.
dff67c
dff67c
* Wed Oct 17 2007 Toshio Kuratomi <a.badger@gmail.com> 0.4.0-1
dff67c
- SQLAlchemy-0.4.0 final
dff67c
- Run the testsuite
dff67c
dff67c
* Wed Oct  3 2007 Luke Macken <lmacken@redhat.com> 0.4.0-0.4.beta6
dff67c
- SQLAlchemy-0.4.0beta6
dff67c
dff67c
* Tue Sep 11 2007 Toshio Kuratomi <a.badger@gmail.com> - 0.4.0-0.4.beta5
dff67c
- Update to 0.4beta5.
dff67c
dff67c
* Fri Sep 07 2007 Toshio Kuratomi <a.badger@gmail.com> - 0.4.0-0.4.beta4
dff67c
- setuptools has been fixed.
dff67c
dff67c
* Fri Aug 31 2007 Toshio Kuratomi <a.badger@gmail.com> - 0.4.0-0.3.beta4
dff67c
- setuptools seems to be broken WRT having an active and inactive version
dff67c
  of an egg.  Have to make both versions inactive and manually setup a copy
dff67c
  that can be started via import. (Necessary for the sqlalchemy0.3 compat
dff67c
  package.)
dff67c
dff67c
* Tue Aug 28 2007 Toshio Kuratomi <a.badger@gmail.com> - 0.4.0-0.2.beta4
dff67c
- Modify setuptools to handle the -devel subpackage split in F-8.
dff67c
dff67c
* Mon Aug 27 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.4.0-0.1.beta4
dff67c
- Update to 0.4 beta4.
dff67c
dff67c
* Tue Jul 24 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.10-2
dff67c
- Remove python-abi Requires.  This is automatic since FC4+.
dff67c
dff67c
* Tue Jul 24 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.10-1
dff67c
- Update to new upstream version 0.3.10
dff67c
dff67c
* Fri Mar 23 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.6-1
dff67c
- Update to new upstream version 0.3.6
dff67c
dff67c
* Sat Mar 10 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.5-1
dff67c
- Update to new upstream version 0.3.5
dff67c
- Simplify the files listing
dff67c
dff67c
* Tue Jan 23 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.4-2
dff67c
- Remember to upload the source tarball to the lookaside cache.
dff67c
dff67c
* Tue Jan 23 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.4-1
dff67c
- Update to new upstream version 0.3.4
dff67c
dff67c
* Mon Jan 01 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.3-1
dff67c
- Update to new upstream version 0.3.3
dff67c
dff67c
* Sat Dec 09 2006 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.1-2
dff67c
- Bump and rebuild for python 2.5 on devel.
dff67c
- BuildRequire: python-devel as a header is missing otherwise.
dff67c
dff67c
* Fri Nov 24 2006 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.1-1
dff67c
- Update to new upstream version 0.3.1
dff67c
dff67c
* Sat Sep 16 2006 Shahms E. King <shahms@shahms.com> 0.2.7-2
dff67c
- Rebuild for FC6
dff67c
dff67c
* Thu Aug 17 2006 Shahms E. King <shahms@shahms.com> 0.2.7-1
dff67c
- Update to new upstream version
dff67c
dff67c
* Fri Aug 11 2006 Shahms E. King <shahms@shahms.com> 0.2.6-2
dff67c
- Include, don't ghost .pyo files per new guidelines
dff67c
dff67c
* Tue Aug 08 2006 Shahms E. King <shahms@shahms.com> 0.2.6-1
dff67c
- Update to new upstream version
dff67c
dff67c
* Fri Jul 07 2006 Shahms E. King <shahms@shahms.com> 0.2.4-1
dff67c
- Update to new upstream version
dff67c
dff67c
* Mon Jun 26 2006 Shahms E. King <shahms@shahms.com> 0.2.3-1
dff67c
- Update to new upstream version
dff67c
dff67c
* Wed May 31 2006 Shahms E. King <shahms@shahms.com> 0.2.1-1
dff67c
- Update to new upstream version