rdobuilder 38e662
# when bootstrapping Python, pytest-xdist is not yet available (also not yet in EPEL9)
rdobuilder 38e662
%if ! 0%{?rhel} || 0%{?rhel} > 9
rdobuilder 38e662
%bcond_without xdist
cf0ac3
%else
rdobuilder 38e662
%bcond_with xdist
cf0ac3
%endif
cf0ac3
cf0ac3
%global srcname SQLAlchemy
cf0ac3
rdobuilder 38e662
%global python_pkg_extras \
rdobuilder 38e662
    asyncio \
rdobuilder 38e662
    mssql_pymssql \
rdobuilder 38e662
    mssql_pyodbc \
rdobuilder 38e662
    mysql \
rdobuilder 38e662
    postgresql \
rdobuilder 38e662
    postgresql_pg8000 \
rdobuilder 38e662
    postgresql_asyncpg \
rdobuilder 38e662
    pymysql \
rdobuilder 38e662
    aiomysql \
rdobuilder 38e662
    aiosqlite
rdobuilder 38e662
cf0ac3
Name:           python-sqlalchemy
rdobuilder 38e662
Version:        1.4.36
rdobuilder 38e662
# cope with pre-release versions containing tildes
rdobuilder 38e662
%global srcversion %{lua: srcversion, num = rpm.expand("%{version}"):gsub("~", ""); print(srcversion);}
rdobuilder 38e662
Release:        1%{?dist}
cf0ac3
Summary:        Modular and flexible ORM library for python
cf0ac3
cf0ac3
License:        MIT
cf0ac3
URL:            http://www.sqlalchemy.org/
rdobuilder 38e662
Source0:        https://files.pythonhosted.org/packages/source/S/%{srcname}/%{srcname}-%{srcversion}.tar.gz
cf0ac3
cf0ac3
BuildRequires:  gcc
rdobuilder 38e662
BuildRequires:  python3-devel >= 3.6
rdobuilder 38e662
BuildRequires:  python3-greenlet >= 1.0
cf0ac3
BuildRequires:  python3-setuptools
cf0ac3
BuildRequires:  python3-pytest
rdobuilder 38e662
%if %{with xdist}
rdobuilder 38e662
BuildRequires:  python3-pytest-xdist
cf0ac3
%endif
cf0ac3
cf0ac3
%description
rdobuilder 38e662
SQLAlchemy is an Object Relational Mapper (ORM) that provides a flexible,
cf0ac3
high-level interface to SQL databases.  Database and domain concepts are
cf0ac3
decoupled, allowing both sides maximum flexibility and power. SQLAlchemy
cf0ac3
provides a powerful mapping layer that can work as automatically or as manually
cf0ac3
as you choose, determining relationships based on foreign keys or letting you
cf0ac3
define the join conditions explicitly, to bridge the gap between database and
cf0ac3
domain.
cf0ac3
rdobuilder 38e662
This package includes the python 2 version of the module.
rdobuilder 38e662
cf0ac3
%package doc
cf0ac3
Summary:        Documentation for SQLAlchemy
cf0ac3
BuildArch:      noarch
cf0ac3
cf0ac3
%description doc
cf0ac3
Documentation for SQLAlchemy
cf0ac3
cf0ac3
%package -n python3-sqlalchemy
cf0ac3
Summary:        Modular and flexible ORM library for python
cf0ac3
%{?python_provide:%python_provide python%{python3_pkgversion}-sqlalchemy}
rdobuilder 38e662
Obsoletes:      python2-sqlalchemy < 1.3.10-2
cf0ac3
cf0ac3
%description -n python3-sqlalchemy
rdobuilder 38e662
SQLAlchemy is an Object Relational Mapper (ORM) that provides a flexible,
cf0ac3
high-level interface to SQL databases.  Database and domain concepts are
cf0ac3
decoupled, allowing both sides maximum flexibility and power. SQLAlchemy
cf0ac3
provides a powerful mapping layer that can work as automatically or as manually
cf0ac3
as you choose, determining relationships based on foreign keys or letting you
cf0ac3
define the join conditions explicitly, to bridge the gap between database and
cf0ac3
domain.
cf0ac3
cf0ac3
This package includes the python 3 version of the module.
cf0ac3
rdobuilder 38e662
# Subpackages to ensure dependencies enabling extra functionality
rdobuilder 38e662
%{?python_extras_subpkg:%python_extras_subpkg -n python3-sqlalchemy -i %{python3_sitearch}/*.egg-info %python_pkg_extras}
cf0ac3
cf0ac3
rdobuilder 38e662
%prep
rdobuilder 38e662
%setup -q -n %{srcname}-%{srcversion}
cf0ac3
cf0ac3
%build
cf0ac3
%py3_build
cf0ac3
cf0ac3
%install
cf0ac3
%py3_install
cf0ac3
cf0ac3
# remove unnecessary scripts for building documentation
cf0ac3
rm -rf doc/build
cf0ac3
cf0ac3
%check
rdobuilder 38e662
PYTHONPATH=. %{__python3} -m pytest test \
rdobuilder 38e662
%if %{with xdist}
rdobuilder 38e662
--numprocesses=auto
cf0ac3
%endif
cf0ac3
cf0ac3
cf0ac3
%files doc
cf0ac3
%doc doc examples
cf0ac3
cf0ac3
%files -n python3-sqlalchemy
cf0ac3
%license LICENSE
cf0ac3
%doc README.rst
cf0ac3
%{python3_sitearch}/*
cf0ac3
cf0ac3
%changelog
rdobuilder 38e662
* Wed Apr 27 2022 Nils Philippsen <nils@tiptoe.de> - 1.4.36-1
rdobuilder 38e662
- version 1.4.36
rdobuilder 38e662
rdobuilder 38e662
* Thu Apr 07 2022 Nils Philippsen <nils@tiptoe.de> - 1.4.35-1
rdobuilder 38e662
- version 1.4.35
rdobuilder 38e662
rdobuilder 38e662
* Fri Apr 01 2022 Nils Philippsen <nils@tiptoe.de> - 1.4.34-1
rdobuilder 38e662
- version 1.4.34
rdobuilder 38e662
rdobuilder 38e662
* Tue Mar 08 2022 Nils Philippsen <nils@tiptoe.de> - 1.4.32-1
rdobuilder 38e662
- version 1.4.32
rdobuilder 38e662
- don't BR: python3-pytest-xdist on EL9
rdobuilder 38e662
- remove obsolete (no-op) tweak of setup.cfg
rdobuilder 38e662
rdobuilder 38e662
* Fri Jan 21 2022 Nils Philippsen <nils@tiptoe.de> - 1.4.31-1
rdobuilder 38e662
- version 1.4.31
rdobuilder 38e662
rdobuilder 38e662
* Thu Dec 23 2021 Nils Philippsen <nils@tiptoe.de> - 1.4.29-1
rdobuilder 38e662
- version 1.4.29
rdobuilder 38e662
rdobuilder 38e662
* Wed Dec 15 2021 Nils Philippsen <nils@tiptoe.de> - 1.4.28-1
rdobuilder 38e662
- version 1.4.28
rdobuilder 38e662
- remove build dependency on python3-mock
rdobuilder 38e662
rdobuilder 38e662
* Fri Nov 12 2021 Nils Philippsen <nils@tiptoe.de> - 1.4.27-1
rdobuilder 38e662
- version 1.4.27
rdobuilder 38e662
rdobuilder 38e662
* Tue Oct 26 2021 Joel Capitao <jcapitao@redhat.com> - 1.4.26-1
rdobuilder 38e662
- Update to 1.4.26. Fixes rhbz#2015705
rdobuilder 38e662
rdobuilder 38e662
* Sun Sep 26 2021 Kevin Fenzi <kevin@scrye.com> - 1.4.25-1
rdobuilder 38e662
- Update to 1.4.25. Fixes rhbz#1995262
rdobuilder 38e662
rdobuilder 38e662
* Wed Aug 25 2021 Nils Philippsen <nils@tiptoe.de> - 1.4.23-1
rdobuilder 38e662
- version 1.4.23
rdobuilder 38e662
rdobuilder 38e662
* Sun Aug 08 2021 Kevin Fenzi <kevin@scrye.com> - 1.4.22-1
rdobuilder 38e662
- Update to 1.4.22. Fixes rhbz#1975029
rdobuilder 38e662
rdobuilder 38e662
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.18-2
rdobuilder 38e662
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
rdobuilder 38e662
rdobuilder 38e662
* Sun Jun 13 2021 Nils Philippsen <nils@tiptoe.de> - 1.4.18-1
rdobuilder 38e662
- version 1.4.18
rdobuilder 38e662
rdobuilder 38e662
* Thu Jun 03 2021 Python Maint <python-maint@redhat.com> - 1.4.15-2
rdobuilder 38e662
- Rebuilt for Python 3.10
rdobuilder 38e662
rdobuilder 38e662
* Fri May 14 2021 Nils Philippsen <nils@tiptoe.de> - 1.4.15-1
rdobuilder 38e662
- version 1.4.15
rdobuilder 38e662
rdobuilder 38e662
* Mon May 10 2021 Nils Philippsen <nils@tiptoe.de> - 1.4.14-1
rdobuilder 38e662
- version 1.4.14
rdobuilder 38e662
- drop Python 2.x support
rdobuilder 38e662
- define extras subpackages
rdobuilder 38e662
rdobuilder 38e662
* Fri Apr 30 2021 Tomas Hrnciar <thrnciar@redhat.com> - 1.3.22-3
rdobuilder 38e662
- Disabled failing test test_pyodbc_extra_connect_azure
rdobuilder 38e662
rdobuilder 38e662
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.22-2
rdobuilder 38e662
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
rdobuilder 38e662
rdobuilder 38e662
* Mon Dec 21 2020 Nils Philippsen <nils@tiptoe.de> - 1.3.22-1
rdobuilder 38e662
- version 1.3.22
rdobuilder 38e662
rdobuilder 38e662
* Sun Nov 01 2020 Nils Philippsen <nils@tiptoe.de> - 1.3.20-1
rdobuilder 38e662
- version 1.3.20
rdobuilder 38e662
rdobuilder 38e662
* Tue Aug 18 2020 Nils Philippsen <nils@tiptoe.de> - 1.3.19-1
rdobuilder 38e662
- version 1.3.19
rdobuilder 38e662
rdobuilder 38e662
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.18-2
rdobuilder 38e662
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
rdobuilder 38e662
rdobuilder 38e662
* Fri Jul 10 2020 Nils Philippsen <nils@tiptoe.de> - 1.3.18-1
rdobuilder 38e662
- version 1.3.18
rdobuilder 38e662
rdobuilder 38e662
* Sun May 24 2020 Miro Hron훾ok <mhroncok@redhat.com> - 1.3.17-3
rdobuilder 38e662
- Rebuilt for Python 3.9
rdobuilder 38e662
rdobuilder 38e662
* Fri May 22 2020 Miro Hron훾ok <mhroncok@redhat.com> - 1.3.17-2
rdobuilder 38e662
- Bootstrap for Python 3.9
rdobuilder 38e662
rdobuilder 38e662
* Sat May 16 2020 Nils Philippsen <nils@tiptoe.de> - 1.3.17-1
rdobuilder 38e662
- version 1.3.17
rdobuilder 38e662
rdobuilder 38e662
* Thu Mar 26 2020 Nils Philippsen <nils@tiptoe.de> - 1.3.15-1
rdobuilder 38e662
- version 1.3.15
rdobuilder 38e662
- quieten %%setup
rdobuilder 38e662
rdobuilder 38e662
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.13-2
rdobuilder 38e662
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
rdobuilder 38e662
rdobuilder 38e662
* Sun Jan 26 2020 Nils Philippsen <nils@tiptoe.de> - 1.3.13-1
rdobuilder 38e662
- version 1.3.13
rdobuilder 38e662
rdobuilder 38e662
* Wed Dec 18 2019 Nils Philippsen <nils@tiptoe.de> - 1.3.12-1
rdobuilder 38e662
- version 1.3.12
rdobuilder 38e662
rdobuilder 38e662
* Tue Nov 19 2019 Randy Barlow <bowlofeggs@fedoraproject.org> - 1.3.11-1
rdobuilder 38e662
- Update to 1.3.11 (#1771196).
rdobuilder 38e662
- https://docs.sqlalchemy.org/en/13/changelog/changelog_13.html#change-1.3.11
rdobuilder 38e662
rdobuilder 38e662
* Wed Nov 13 2019 Nils Philippsen <nils@tiptoe.de> - 1.3.10-2
rdobuilder 38e662
- drop python2-sqlalchemy from F32 on
rdobuilder 38e662
rdobuilder 38e662
* Fri Oct 18 2019 Nils Philippsen <nils@tiptoe.de> - 1.3.10-1
rdobuilder 38e662
- fix/skip tests that are broken on SQLite 3.30
rdobuilder 38e662
rdobuilder 38e662
* Wed Oct 16 2019 Nils Philippsen <nils@tiptoe.de> - 1.3.10-1
rdobuilder 38e662
- version 1.3.10
rdobuilder 38e662
rdobuilder 38e662
* Tue Sep 17 2019 Randy Barlow <bowlofeggs@fedoraproject.org> - 1.3.8-1
rdobuilder 38e662
- Update to 1.3.8 (#1747080).
rdobuilder 38e662
- https://docs.sqlalchemy.org/en/13/changelog/changelog_13.html#change-1.3.8
rdobuilder 38e662
rdobuilder 38e662
* Sun Aug 25 2019 Nils Philippsen <nils@tiptoe.de> - 1.3.7-1
rdobuilder 38e662
- version 1.3.7
rdobuilder 38e662
- require python3-mock for building
rdobuilder 38e662
rdobuilder 38e662
* Thu Aug 15 2019 Miro Hron훾ok <mhroncok@redhat.com> - 1.3.6-2
rdobuilder 38e662
- Rebuilt for Python 3.8
rdobuilder 38e662
rdobuilder 38e662
* Sat Jul 27 2019 Nils Philippsen <nils@tiptoe.de> - 1.3.6-1
rdobuilder 38e662
- version 1.3.6
rdobuilder 38e662
rdobuilder 38e662
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.5-3
rdobuilder 38e662
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
rdobuilder 38e662
rdobuilder 38e662
* Mon Jul 22 2019 Petr Viktorin <pviktori@redhat.com> - 1.3.5-2
rdobuilder 38e662
- Remove dependency on python2-xdist
rdobuilder 38e662
- Enable multi-process testing using python3-xdist
rdobuilder 38e662
rdobuilder 38e662
* Tue Jun 18 2019 Randy Barlow <bowlofeggs@fedoraproject.org> - 1.3.5-1
rdobuilder 38e662
- Update to 1.3.5 (#1721271).
rdobuilder 38e662
- https://docs.sqlalchemy.org/en/13/changelog/changelog_13.html#change-1.3.5
rdobuilder 38e662
rdobuilder 38e662
* Mon Jun 03 2019 Nils Philippsen <nils@tiptoe.de> - 1.3.4-1
rdobuilder 38e662
- version 1.3.4
rdobuilder 38e662
rdobuilder 38e662
* Thu Apr 18 2019 Nils Philippsen <nils@tiptoe.de> - 1.3.3-1
rdobuilder 38e662
- version 1.3.3
rdobuilder 38e662
rdobuilder 38e662
* Wed Apr 10 2019 Nils Philippsen <nils@tiptoe.de> - 1.3.2-1
rdobuilder 38e662
- version 1.3.2
rdobuilder 38e662
rdobuilder 38e662
* Wed Mar 13 2019 Nils Philippsen <nils@tiptoe.de> - 1.3.1-1
rdobuilder 38e662
- version 1.3.1
rdobuilder 38e662
rdobuilder 38e662
* Tue Mar 05 2019 Nils Philippsen <nils@tiptoe.de> - 1.3.0-1
rdobuilder 38e662
- version 1.3.0
rdobuilder 38e662
rdobuilder 38e662
* Fri Mar 01 2019 Nils Philippsen <nils@tiptoe.de> - 1.3.0~b3-1
rdobuilder 38e662
- version 1.3.0b3
rdobuilder 38e662
rdobuilder 38e662
* Wed Feb 20 2019 Nils Philippsen <nils@tiptoe.de> - 1.2.18-1
rdobuilder 38e662
- version 1.2.18
rdobuilder 38e662
rdobuilder 38e662
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.17-2
rdobuilder 38e662
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
rdobuilder 38e662
rdobuilder 38e662
* Wed Jan 30 2019 Nils Philippsen <nils@tiptoe.de> - 1.2.17-1
rdobuilder 38e662
- version 1.2.17
rdobuilder 38e662
rdobuilder 38e662
* Sat Jan 12 2019 Nils Philippsen <nils@tiptoe.de> - 1.2.16-1
rdobuilder 38e662
- version 1.2.16
rdobuilder 38e662
rdobuilder 38e662
* Tue Oct 30 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.12-1
rdobuilder 38e662
- version 1.2.12
rdobuilder 38e662
rdobuilder 38e662
* Tue Aug 21 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.11-1
rdobuilder 38e662
- version 1.2.11
rdobuilder 38e662
rdobuilder 38e662
* Sun Jul 22 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.10-1
rdobuilder 38e662
- version 1.2.10
rdobuilder 38e662
rdobuilder 38e662
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.8-4
rdobuilder 38e662
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
rdobuilder 38e662
rdobuilder 38e662
* Sun Jun 17 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.8-3
rdobuilder 38e662
- rename patch, apply with backups
rdobuilder 38e662
- fix failing test for sqlite 3.24 instead of skipping it
rdobuilder 38e662
rdobuilder 38e662
* Thu Jun 14 2018 Miro Hron훾ok <mhroncok@redhat.com> - 1.2.8-2
rdobuilder 38e662
- Rebuilt for Python 3.7
cf0ac3
rdobuilder 38e662
* Tue Jun 05 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.8-1
rdobuilder 38e662
- version 1.2.8
cf0ac3
cf0ac3
* Sun Apr 22 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.7-1
cf0ac3
- version 1.2.7
cf0ac3
cf0ac3
* Sat Mar 31 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.6-1
cf0ac3
- version 1.2.6
cf0ac3
cf0ac3
* Mon Mar 19 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.5-1
cf0ac3
- version 1.2.5
cf0ac3
cf0ac3
* Tue Feb 27 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.4-1
cf0ac3
- version 1.2.4
cf0ac3
cf0ac3
* Tue Feb 20 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.3-2
cf0ac3
- require gcc for building
cf0ac3
cf0ac3
* Tue Feb 20 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.3-1
cf0ac3
- version 1.2.3
cf0ac3
cf0ac3
* Mon Feb 12 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.2.2-3
cf0ac3
- Update Python 2 dependency declarations to new packaging standards
cf0ac3
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
cf0ac3
cf0ac3
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-2
cf0ac3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
cf0ac3
cf0ac3
* Tue Jan 30 2018 Nils Philippsen <nils@tiptoe.de> - 1.2.2-1
cf0ac3
- version 1.2.2
cf0ac3
cf0ac3
* Sun Dec 31 2017 Nils Philippsen <nils@tiptoe.de> - 1.2.0-1
cf0ac3
- version 1.2.0
cf0ac3
- fix version-releases in changelog
cf0ac3
cf0ac3
* Fri Sep 29 2017 Troy Dawson <tdawson@redhat.com> - 1.1.13-2
cf0ac3
- Cleanup spec file conditionals
cf0ac3
cf0ac3
* Sat Aug 05 2017 Nils Philippsen <nils@tiptoe.de> - 1.1.13-1
cf0ac3
- version 1.1.13
cf0ac3
cf0ac3
* Tue Aug 01 2017 Nils Philippsen <nils@tiptoe.de> - 1.1.12-1
cf0ac3
- version 1.1.12
cf0ac3
- remove comments with macros
cf0ac3
cf0ac3
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.11-2
cf0ac3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
cf0ac3
cf0ac3
* Mon Jun 26 2017 Nils Philippsen <nils@tiptoe.de> - 1.1.11-1
cf0ac3
- version 1.1.11
cf0ac3
cf0ac3
* Sat May 27 2017 Nils Philippsen <nils@tiptoe.de> - 1.1.10-1
cf0ac3
- version 1.1.10
cf0ac3
cf0ac3
* Thu Apr  6 2017 hguemar <hguemar@fedoraproject.org> - 1.1.9-1
cf0ac3
- Upstream 1.1.9 (RHBZ#1436464)
cf0ac3
cf0ac3
* Wed Mar 15 2017 Nils Philippsen <nils@tiptoe.de> - 1.1.6-1
cf0ac3
- version 1.1.6
cf0ac3
cf0ac3
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-2
cf0ac3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
cf0ac3
cf0ac3
* Fri Feb 03 2017 Nils Philippsen <nils@redhat.com> - 1.1.5-1
cf0ac3
- version 1.1.5
cf0ac3
cf0ac3
* Tue Dec 13 2016 Charalampos Stratakis <cstratak@redhat.com> - 1.1.4-3
cf0ac3
- Enable tests
cf0ac3
cf0ac3
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 1.1.4-2
cf0ac3
- Rebuild for Python 3.6
cf0ac3
- Disable python3 tests for now
cf0ac3
cf0ac3
* Wed Nov 23 2016 Kevin Fenzi <kevin@scrye.com> - 1.1.4-1
cf0ac3
- Update to 1.1.4. Fixes bug #1395470
cf0ac3
cf0ac3
* Tue Nov 8 2016 Orion Poplawski <orion@cora.nwra.com> - 1.1.3-2
cf0ac3
- Ship python2-sqlalchemy
cf0ac3
- Move docs into sub-package
cf0ac3
- Modernize spec
cf0ac3
cf0ac3
* Mon Oct 31 2016 Kevin Fenzi <kevin@scrye.com> - 1.1.3-1
cf0ac3
- Update to 1.1.3. Fixes bug #1389638
cf0ac3
cf0ac3
* Tue Oct 18 2016 Kevin Fenzi <kevin@scrye.com> - 1.1.2-1
cf0ac3
- Update to 1.1.2. Fixes bug #1385990
cf0ac3
cf0ac3
* Mon Oct 10 2016 Nils Philippsen <nils@redhat.com> - 1.1.1-1
cf0ac3
- version 1.1.1
cf0ac3
cf0ac3
* Thu Oct 06 2016 Kevin Fenzi <kevin@scrye.com> - 1.1.0-1
cf0ac3
- Update to 1.1.0. Fixes bug #1382203
cf0ac3
cf0ac3
* Thu Aug 18 2016 Nils Philippsen <nils@redhat.com> - 1.0.14-1
cf0ac3
- version 1.0.14
cf0ac3
cf0ac3
* Tue May 31 2016 Nils Philippsen <nils@redhat.com> - 1.0.14-1
cf0ac3
- fix source URL
cf0ac3
cf0ac3
* Tue May 17 2016 Nils Philippsen <nils@redhat.com> - 1.0.13-1
cf0ac3
- version 1.0.13
cf0ac3
cf0ac3
* Thu Feb 25 2016 Nils Philippsen <nils@redhat.com> - 1.0.12-1
cf0ac3
- version 1.0.12
cf0ac3
cf0ac3
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.11-2
cf0ac3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
cf0ac3
cf0ac3
* Fri Jan 08 2016 Kevin Fenzi <kevin@scrye.com> - 1.0.11-1
cf0ac3
- Update to 1.0.11. Fixes bug #1296757
cf0ac3
cf0ac3
* Sat Dec 12 2015 Kevin Fenzi <kevin@scrye.com> - 1.0.10-1
cf0ac3
- Update to 1.0.10. Fixes bug #1290945
cf0ac3
cf0ac3
* Thu Nov 12 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.9-2
cf0ac3
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
cf0ac3
cf0ac3
* Wed Oct 21 2015 Nils Philippsen <nils@redhat.com> - 1.0.9-1
cf0ac3
- version 1.0.9, upstream feature and bugfix release
cf0ac3
cf0ac3
* Mon Oct 12 2015 Robert Kuska <rkuska@redhat.com> - 1.0.8-2
cf0ac3
- Rebuilt for Python3.5 rebuild
cf0ac3
cf0ac3
* Fri Jul 24 2015 Nils Philippsen <nils@redhat.com> 1.0.8-1
cf0ac3
- version 1.0.8, upstream bugfix release
cf0ac3
cf0ac3
* Tue Jul 21 2015 Fedora Release Monitoring <release-monitoring@fedoraproject.org> - 1.0.7-1
cf0ac3
- Update to 1.0.7 (#1244991)
cf0ac3
cf0ac3
* Mon Jun 29 2015 Nils Philippsen <nils@redhat.com> 1.0.6-1
cf0ac3
- version 1.0.6, upstream feature and bugfix release
cf0ac3
cf0ac3
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.5-2
cf0ac3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
cf0ac3
cf0ac3
* Sun Jun 07 2015 Kevin Fenzi <kevin@scrye.com> 1.0.4-1
cf0ac3
- Update to 1.0.5. Fixes bug #1229067
cf0ac3
cf0ac3
* Fri May 08 2015 Nils Philippsen <nils@redhat.com> 1.0.4-1
cf0ac3
- version 1.0.4, upstream bugfix release
cf0ac3
cf0ac3
* Sat May 02 2015 Kevin Fenzi <kevin@scrye.com> 1.0.3-1
cf0ac3
- Update to 1.0.3. Fixes bug #1217761
cf0ac3
cf0ac3
* Sat Apr 25 2015 Nils Philippsen <nils@redhat.com> - 1.0.2-1
cf0ac3
- version 1.0.2, upstream bugfix release
cf0ac3
cf0ac3
* Fri Apr 24 2015 Nils Philippsen <nils@redhat.com> - 1.0.1-1
cf0ac3
- version 1.0.1, upstream bugfix release
cf0ac3
cf0ac3
* Fri Apr 17 2015 Nils Philippsen <nils@redhat.com> - 1.0.0-1
cf0ac3
- version 1.0.0, upstream feature release
cf0ac3
cf0ac3
* Fri Apr 10 2015 Nils Philippsen <nils@redhat.com> - 0.9.9-1
cf0ac3
- version 0.9.9, upstream feature and bugfix release
cf0ac3
cf0ac3
* Wed Oct 15 2014 Nils Philippsen <nils@redhat.com> - 0.9.8-1
cf0ac3
- version 0.9.8, upstream feature and bugfix release
cf0ac3
- avoid using unversioned python macros
cf0ac3
- use py.test instead of nose for tests
cf0ac3
cf0ac3
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.7-2
cf0ac3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
cf0ac3
cf0ac3
* Tue Jul 29 2014 Nils Philippsen <nils@redhat.com> - 0.9.7-1
cf0ac3
- version 0.9.7, upstream feature and bugfix release
cf0ac3
cf0ac3
* Mon Jun 30 2014 Nils Philippsen <nils@redhat.com> - 0.9.6-1
cf0ac3
- version 0.9.6, upstream feature and bugfix release
cf0ac3
cf0ac3
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-3
cf0ac3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
cf0ac3
cf0ac3
* Fri May 16 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 0.9.4-2
cf0ac3
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
cf0ac3
cf0ac3
* Thu May 15 2014 Nils Philippsen <nils@redhat.com> - 0.9.4-1
cf0ac3
- version 0.9.4, upstream feature and bugfix release
cf0ac3
cf0ac3
* Thu Feb 20 2014 Nils Philippsen <nils@redhat.com> - 0.9.3-1
cf0ac3
- version 0.9.3, upstream feature and bugfix release
cf0ac3
cf0ac3
* Wed Feb 05 2014 Nils Philippsen <nils@redhat.com> - 0.9.2-1
cf0ac3
- version 0.9.2, upstream feature and bugfix release
cf0ac3
cf0ac3
* Tue Jan 07 2014 Nils Philippsen <nils@redhat.com> - 0.9.1-1
cf0ac3
- version 0.9.1, upstream feature and bugfix release
cf0ac3
- no need to use 2to3 for python 3.x anymore
cf0ac3
- build C extension for python 3.x
cf0ac3
- require python2-devel >= 2.6 for building
cf0ac3
cf0ac3
* Mon Dec 09 2013 Nils Philippsen <nils@redhat.com> - 0.8.4-1
cf0ac3
- version 0.8.4, upstream bugfix release
cf0ac3
cf0ac3
* Tue Oct 29 2013 Nils Philippsen <nils@redhat.com> - 0.8.3-1
cf0ac3
- version 0.8.3, upstream bugfix release
cf0ac3
cf0ac3
* Wed Aug 14 2013 Nils Philippsen <nils@redhat.com> - 0.8.2-1
cf0ac3
- version 0.8.2, upstream bugfix release
cf0ac3
- drop obsolete sqlalchemy-test-bidirectional-order patch
cf0ac3
- fix bogus date in changelog
cf0ac3
cf0ac3
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-2
cf0ac3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
cf0ac3
cf0ac3
* Mon Apr 29 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.8.1-1
cf0ac3
- Upstream bugfix
cf0ac3
- Stop calling sa2to3 explicitly on the library.  It seems to break mapper.py's
cf0ac3
  import of collections.deque
cf0ac3
cf0ac3
* Fri Apr 12 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.8.0-1
cf0ac3
- Final release of 0.8.0
cf0ac3
- Fix for a unittest that assumes order in dicts
cf0ac3
cf0ac3
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.0-0.2.b1
cf0ac3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
cf0ac3
cf0ac3
* Thu Nov  1 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.8.0-0.1.b1
cf0ac3
- Update to 0.8.0 beta
cf0ac3
cf0ac3
* Mon Aug 13 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.8-4.20120813hg8535
cf0ac3
- Update to a snapshot to fix unittest errors with python-3.3
cf0ac3
cf0ac3
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 0.7.8-3
cf0ac3
- remove rhel logic from with_python3 conditional
cf0ac3
cf0ac3
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.8-2
cf0ac3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
cf0ac3
cf0ac3
* Mon Jun 18 2012 Nils Philippsen <nils@redhat.com> - 0.7.8-1
cf0ac3
- Upstream bugfix release
cf0ac3
cf0ac3
* Tue May 15 2012 Nils Philippsen <nils@redhat.com> - 0.7.7-1
cf0ac3
- Upstream bugfix release
cf0ac3
cf0ac3
* Tue Mar 20 2012 Nils Philippsen <nils@redhat.com> - 0.7.6-1
cf0ac3
- Upstream bugfix release
cf0ac3
cf0ac3
* Mon Jan 30 2012 Nils Philippsen <nils@redhat.com> - 0.7.5-1
cf0ac3
- Upstream bugfix release
cf0ac3
- package README.rst instead of README as documentation
cf0ac3
cf0ac3
* Tue Jan 10 2012 Nils Philippsen <nils@redhat.com> - 0.7.3-2
cf0ac3
- rebuild for gcc 4.7
cf0ac3
cf0ac3
* Mon Oct 17 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.3-1
cf0ac3
- Upstream bugfix release
cf0ac3
cf0ac3
* Mon Aug 1 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.2-1
cf0ac3
- Upstream bugfix release
cf0ac3
cf0ac3
* Mon Jun 06 2011 Nils Philippsen <nils@redhat.com> - 0.7.1-1
cf0ac3
- 0.7.1 Upstream release
cf0ac3
- no need to fix examples/dynamic_dict/dynamic_dict.py anymore
cf0ac3
- use sqla_nose.py to fix %%check
cf0ac3
cf0ac3
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.6-2
cf0ac3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
cf0ac3
cf0ac3
* Mon Jan 17 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.6-1
cf0ac3
- 0.6.6 Upstream release
cf0ac3
cf0ac3
* Fri Dec 3 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.5-1
cf0ac3
- 0.6.5 Upstream release
cf0ac3
cf0ac3
* Wed Sep 29 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.4-2
cf0ac3
- Filter out the C extensions from provides
cf0ac3
cf0ac3
* Tue Sep 07 2010 Luke Macken <lmacken@redhat.com> - 0.6.4-1
cf0ac3
- 0.6.4 upstream release
cf0ac3
cf0ac3
* Mon Aug 23 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.3-1
cf0ac3
- 0.6.3 upstream release
cf0ac3
cf0ac3
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com>
cf0ac3
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
cf0ac3
cf0ac3
* Thu Jun 24 2010 Nils Philippsen <nils@redhat.com> - 0.6.1-1
cf0ac3
- 0.6.1 upstream release
cf0ac3
cf0ac3
* Tue Apr 13 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6-0.4.beta3
cf0ac3
- Build beta3
cf0ac3
cf0ac3
* Fri Mar 19 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6-0.3.beta2
cf0ac3
- Build beta2 with cextension
cf0ac3
cf0ac3
* Sun Mar 7 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6-0.2.beta1
cf0ac3
- Build python3 package
cf0ac3
cf0ac3
* Tue Mar 2 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6-0.1.beta1
cf0ac3
- 0.6 beta1 upstream release
cf0ac3
cf0ac3
* Tue Feb 2 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5.8-3
cf0ac3
- One last cleanup
cf0ac3
cf0ac3
* Tue Feb 2 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5.8-2
cf0ac3
- just some cleanups to older styles of building packages.
cf0ac3
cf0ac3
* Mon Feb 1 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5.8-1
cf0ac3
- Upstream bugfix release 0.5.8
cf0ac3
cf0ac3
* Fri Aug 14 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5.5-2
cf0ac3
- Upstream bugfix release 0.5.5
cf0ac3
cf0ac3
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.4-2.p2
cf0ac3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
cf0ac3
cf0ac3
* Fri Jun 12 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5.4-1.p2
cf0ac3
- Upstream bugfix release 0.5.4p2.
cf0ac3
cf0ac3
* Thu Apr 16 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5.3-1
cf0ac3
- Upstream bugfix release.
cf0ac3
cf0ac3
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.2-2
cf0ac3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
cf0ac3
cf0ac3
* Wed Feb 11 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5.2-1
cf0ac3
- Update to 0.5.2
cf0ac3
cf0ac3
* Wed Jan 21 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5.1-1
cf0ac3
- Update to 0.5.1.
cf0ac3
cf0ac3
* Mon Dec 1 2008 Toshio Kuratomi <toshio@fedoraproject.org> - 0.5-0.1.rc4
cf0ac3
- Update to 0.5.0rc4 which works with the new pysqlite
cf0ac3
- And update test cases to work with the new pysqlite
cf0ac3
cf0ac3
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.4.7-2
cf0ac3
- Rebuild for Python 2.6
cf0ac3
cf0ac3
* Sun Jul 27 2008 Toshio Kuratomi <toshio@fedoraproject.org> 0.4.7-1
cf0ac3
- Update to 0.4.7.
cf0ac3
cf0ac3
* Sun Jun 1 2008 Toshio Kuratomi <toshio@fedoraproject.org> 0.4.6-1
cf0ac3
- Update to 0.4.6.
cf0ac3
cf0ac3
* Tue Apr 8 2008 Toshio Kuratomi <toshio@fedoraproject.org> 0.4.5-1
cf0ac3
- Update to 0.4.5.
cf0ac3
cf0ac3
* Fri Feb 22 2008 Toshio Kuratomi <toshio@fedoraproject.org> 0.4.3-1
cf0ac3
- Update to 0.4.3.
cf0ac3
cf0ac3
* Tue Dec 11 2007 Toshio Kuratomi <a.badger@gmail.com> 0.4.2-1.p3
cf0ac3
- Update to 0.4.2p3.
cf0ac3
cf0ac3
* Tue Dec 11 2007 Toshio Kuratomi <a.badger@gmail.com> 0.4.1-1
cf0ac3
- Update to 0.4.1.
cf0ac3
cf0ac3
* Wed Oct 17 2007 Toshio Kuratomi <a.badger@gmail.com> 0.4.0-1
cf0ac3
- SQLAlchemy-0.4.0 final
cf0ac3
- Run the testsuite
cf0ac3
cf0ac3
* Wed Oct  3 2007 Luke Macken <lmacken@redhat.com> 0.4.0-0.4.beta6
cf0ac3
- SQLAlchemy-0.4.0beta6
cf0ac3
cf0ac3
* Tue Sep 11 2007 Toshio Kuratomi <a.badger@gmail.com> - 0.4.0-0.4.beta5
cf0ac3
- Update to 0.4beta5.
cf0ac3
cf0ac3
* Fri Sep 07 2007 Toshio Kuratomi <a.badger@gmail.com> - 0.4.0-0.4.beta4
cf0ac3
- setuptools has been fixed.
cf0ac3
cf0ac3
* Fri Aug 31 2007 Toshio Kuratomi <a.badger@gmail.com> - 0.4.0-0.3.beta4
cf0ac3
- setuptools seems to be broken WRT having an active and inactive version
cf0ac3
  of an egg.  Have to make both versions inactive and manually setup a copy
cf0ac3
  that can be started via import. (Necessary for the sqlalchemy0.3 compat
cf0ac3
  package.)
cf0ac3
cf0ac3
* Tue Aug 28 2007 Toshio Kuratomi <a.badger@gmail.com> - 0.4.0-0.2.beta4
cf0ac3
- Modify setuptools to handle the -devel subpackage split in F-8.
cf0ac3
cf0ac3
* Mon Aug 27 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.4.0-0.1.beta4
cf0ac3
- Update to 0.4 beta4.
cf0ac3
cf0ac3
* Tue Jul 24 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.10-2
cf0ac3
- Remove python-abi Requires.  This is automatic since FC4+.
cf0ac3
cf0ac3
* Tue Jul 24 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.10-1
cf0ac3
- Update to new upstream version 0.3.10
cf0ac3
cf0ac3
* Fri Mar 23 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.6-1
cf0ac3
- Update to new upstream version 0.3.6
cf0ac3
cf0ac3
* Sat Mar 10 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.5-1
cf0ac3
- Update to new upstream version 0.3.5
cf0ac3
- Simplify the files listing
cf0ac3
cf0ac3
* Tue Jan 23 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.4-2
cf0ac3
- Remember to upload the source tarball to the lookaside cache.
cf0ac3
cf0ac3
* Tue Jan 23 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.4-1
cf0ac3
- Update to new upstream version 0.3.4
cf0ac3
cf0ac3
* Mon Jan 01 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.3-1
cf0ac3
- Update to new upstream version 0.3.3
cf0ac3
cf0ac3
* Sat Dec 09 2006 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.1-2
cf0ac3
- Bump and rebuild for python 2.5 on devel.
cf0ac3
- BuildRequire: python-devel as a header is missing otherwise.
cf0ac3
cf0ac3
* Fri Nov 24 2006 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.3.1-1
cf0ac3
- Update to new upstream version 0.3.1
cf0ac3
cf0ac3
* Sat Sep 16 2006 Shahms E. King <shahms@shahms.com> 0.2.7-2
cf0ac3
- Rebuild for FC6
cf0ac3
cf0ac3
* Thu Aug 17 2006 Shahms E. King <shahms@shahms.com> 0.2.7-1
cf0ac3
- Update to new upstream version
cf0ac3
cf0ac3
* Fri Aug 11 2006 Shahms E. King <shahms@shahms.com> 0.2.6-2
cf0ac3
- Include, don't ghost .pyo files per new guidelines
cf0ac3
cf0ac3
* Tue Aug 08 2006 Shahms E. King <shahms@shahms.com> 0.2.6-1
cf0ac3
- Update to new upstream version
cf0ac3
cf0ac3
* Fri Jul 07 2006 Shahms E. King <shahms@shahms.com> 0.2.4-1
cf0ac3
- Update to new upstream version
cf0ac3
cf0ac3
* Mon Jun 26 2006 Shahms E. King <shahms@shahms.com> 0.2.3-1
cf0ac3
- Update to new upstream version
cf0ac3
cf0ac3
* Wed May 31 2006 Shahms E. King <shahms@shahms.com> 0.2.1-1
cf0ac3
- Update to new upstream version