Update to 1.1.0. Fixes bug #1382203

This commit is contained in:
Kevin Fenzi 2016-10-06 17:27:03 -06:00
parent 92c65a5737
commit e4a7f972e2
3 changed files with 10 additions and 6 deletions

1
.gitignore vendored
View File

@ -40,3 +40,4 @@ SQLAlchemy-0.6.1.tar.gz
/SQLAlchemy-1.0.12.tar.gz
/SQLAlchemy-1.0.13.tar.gz
/SQLAlchemy-1.0.14.tar.gz
/SQLAlchemy-1.1.0.tar.gz

View File

@ -12,7 +12,7 @@
%global srcname SQLAlchemy
Name: python-sqlalchemy
Version: 1.0.14
Version: 1.1.0
Release: 1%{?dist}
Summary: Modular and flexible ORM library for python
@ -73,11 +73,11 @@ cp -a . %{py3dir}
%endif # with_python3
%build
CFLAGS="%{optflags}" %{__python2} setup.py --with-cextensions build
CFLAGS="%{optflags}" %{__python2} setup.py build
%if 0%{?with_python3}
pushd %{py3dir}
CFLAGS="%{optflags}" %{__python3} setup.py --with-cextensions build
CFLAGS="%{optflags}" %{__python3} setup.py build
popd
%endif
@ -85,12 +85,12 @@ popd
rm -rf %{buildroot}
mkdir -p %{buildroot}%{python2_sitelib}
%{__python2} setup.py --with-cextensions install --skip-build --root %{buildroot}
%{__python2} setup.py install --skip-build --root %{buildroot}
%if 0%{?with_python3}
pushd %{py3dir}
mkdir -p %{buildroot}%{python3_sitelib}
%{__python3} setup.py --with-cextensions install --skip-build --root %{buildroot}
%{__python3} setup.py install --skip-build --root %{buildroot}
popd
%endif
@ -125,6 +125,9 @@ popd
%endif # with_python3
%changelog
* Thu Oct 06 2016 Kevin Fenzi <kevin@scrye.com> - 1.1.0-1
- Update to 1.1.0. Fixes bug #1382203
* Thu Aug 18 2016 Nils Philippsen <nils@redhat.com> - 1.0.14-1
- version 1.0.14

View File

@ -1 +1 @@
173c9d1ea5cf51893e65d213c280bd2a SQLAlchemy-1.0.14.tar.gz
30f47273d7d14d1021ca964a6c083960 SQLAlchemy-1.1.0.tar.gz