2016-01-02 23:08:27 +00:00
|
|
|
%if 0%{?rhel}
|
|
|
|
%global with_python3 0
|
|
|
|
%{!?__python2: %global __python2 /usr/bin/python2}
|
|
|
|
%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
|
|
|
%{!?python2_sitearch: %global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
|
|
|
|
%{!?py2_build: %global py2_build %{expand: CFLAGS="%{optflags}" %{__python2} setup.py %{?py_setup_args} build --executable="%{__python2} -s"}}
|
|
|
|
%{!?py2_install: %global py2_install %{expand: CFLAGS="%{optflags}" %{__python2} setup.py %{?py_setup_args} install -O1 --skip-build --root %{buildroot}}}
|
2014-08-15 18:15:46 +00:00
|
|
|
%else
|
2016-01-02 23:08:27 +00:00
|
|
|
%global with_python3 1
|
2014-08-15 18:15:46 +00:00
|
|
|
%endif
|
|
|
|
|
2016-01-13 07:08:23 +00:00
|
|
|
%global pypi_name botocore
|
|
|
|
|
|
|
|
# Enable tests
|
|
|
|
%global with_tests 1
|
|
|
|
# Disable documentation generation for now
|
2016-01-02 23:08:27 +00:00
|
|
|
%global with_docs 0
|
|
|
|
|
2016-01-13 07:08:23 +00:00
|
|
|
# Tests not yet ready for EL
|
|
|
|
%{?rhel: %global with_tests 0}
|
2016-01-02 23:08:27 +00:00
|
|
|
|
|
|
|
Name: python-%{pypi_name}
|
2016-03-29 15:22:56 +00:00
|
|
|
Version: 1.4.7
|
2016-01-13 07:08:23 +00:00
|
|
|
Release: 1%{?dist}
|
2016-01-02 23:08:27 +00:00
|
|
|
Summary: Low-level, data-driven core of boto 3
|
2014-08-15 18:15:46 +00:00
|
|
|
|
|
|
|
License: ASL 2.0
|
2014-08-15 18:15:52 +00:00
|
|
|
URL: https://github.com/boto/botocore
|
2016-01-02 23:08:27 +00:00
|
|
|
Source0: https://pypi.python.org/packages/source/b/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
|
2014-08-15 18:15:46 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
BuildRequires: python2-devel
|
|
|
|
BuildRequires: python-setuptools
|
2016-01-02 23:08:27 +00:00
|
|
|
%if 0%{?with_docs}
|
|
|
|
BuildRequires: python-sphinx
|
|
|
|
BuildRequires: python-guzzle_sphinx_theme
|
|
|
|
%endif # with_docs
|
|
|
|
%if 0%{?with_tests}
|
2016-01-13 07:08:23 +00:00
|
|
|
BuildRequires: mock
|
2016-01-02 23:08:27 +00:00
|
|
|
BuildRequires: python-tox
|
2016-01-13 07:08:23 +00:00
|
|
|
BuildRequires: python-behave
|
|
|
|
BuildRequires: python-nose
|
|
|
|
BuildRequires: python-wheel
|
2016-01-02 23:08:27 +00:00
|
|
|
BuildRequires: python-docutils
|
|
|
|
BuildRequires: python-dateutil
|
|
|
|
BuildRequires: python2-jmespath
|
|
|
|
%endif # with_tests
|
|
|
|
%if 0%{?with_python3}
|
2014-08-15 18:15:46 +00:00
|
|
|
BuildRequires: python3-devel
|
|
|
|
BuildRequires: python3-setuptools
|
2016-01-02 23:08:27 +00:00
|
|
|
%if 0%{?with_docs}
|
|
|
|
BuildRequires: python3-sphinx
|
|
|
|
BuildRequires: python3-guzzle_sphinx_theme
|
|
|
|
%endif # with_docs
|
|
|
|
%if 0%{?with_tests}
|
2016-01-13 07:42:35 +00:00
|
|
|
%{?fc24:BuildRequires: python3-behave}
|
2016-01-13 07:08:23 +00:00
|
|
|
BuildRequires: python3-nose
|
|
|
|
BuildRequires: python3-wheel
|
2016-01-02 23:08:27 +00:00
|
|
|
BuildRequires: python3-tox
|
|
|
|
BuildRequires: python3-docutils
|
|
|
|
BuildRequires: python3-dateutil
|
|
|
|
BuildRequires: python3-jmespath
|
|
|
|
%endif # with_tests
|
|
|
|
%endif # with_python3
|
2014-08-15 18:15:46 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
A low-level interface to a growing number of Amazon Web Services. The
|
2016-01-02 23:08:27 +00:00
|
|
|
botocore package is the foundation for the AWS CLI as well as boto3.
|
2014-08-15 18:15:46 +00:00
|
|
|
|
2016-01-02 23:08:27 +00:00
|
|
|
%package -n python2-%{pypi_name}
|
|
|
|
Summary: Low-level, data-driven core of boto 3
|
|
|
|
Requires: python-jmespath
|
|
|
|
Requires: python-dateutil
|
|
|
|
Requires: python-docutils
|
|
|
|
Requires: python-requests
|
2016-01-06 11:25:03 +00:00
|
|
|
%{?el6:Provides: python-%{pypi_name}}
|
2016-01-02 23:08:27 +00:00
|
|
|
%{?python_provide:%python_provide python2-%{pypi_name}}
|
2014-08-15 18:15:46 +00:00
|
|
|
|
2016-01-02 23:08:27 +00:00
|
|
|
%description -n python2-%{pypi_name}
|
|
|
|
A low-level interface to a growing number of Amazon Web Services. The
|
|
|
|
botocore package is the foundation for the AWS CLI as well as boto3.
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
%package -n python3-%{pypi_name}
|
|
|
|
Summary: Low-level, data-driven core of boto 3
|
|
|
|
Requires: python3-jmespath
|
|
|
|
Requires: python3-dateutil
|
|
|
|
Requires: python3-docutils
|
2014-08-15 18:15:46 +00:00
|
|
|
Requires: python3-requests
|
2016-01-02 23:08:27 +00:00
|
|
|
%{?python_provide:%python_provide python3-%{pypi_name}}
|
2014-08-15 18:15:46 +00:00
|
|
|
|
2016-01-02 23:08:27 +00:00
|
|
|
%description -n python3-%{pypi_name}
|
2014-08-15 18:15:46 +00:00
|
|
|
A low-level interface to a growing number of Amazon Web Services. The
|
2016-01-02 23:08:27 +00:00
|
|
|
botocore package is the foundation for the AWS CLI as well as boto3.
|
|
|
|
%endif # with_python3
|
2014-08-15 18:15:46 +00:00
|
|
|
|
2016-01-02 23:08:27 +00:00
|
|
|
%if 0%{?with_docs}
|
|
|
|
%package -n python-%{pypi_name}-doc
|
|
|
|
Summary: botocore documentation
|
|
|
|
%description -n python-%{pypi_name}-doc
|
|
|
|
Documentation for botocore
|
|
|
|
%endif # with_docs
|
2014-08-15 18:15:46 +00:00
|
|
|
|
|
|
|
%prep
|
2016-01-07 10:31:11 +00:00
|
|
|
%setup -q -n %{pypi_name}-%{version}
|
2016-01-06 16:45:57 +00:00
|
|
|
sed -i -e '1 d' botocore/vendored/requests/packages/chardet/chardetect.py
|
|
|
|
sed -i -e '1 d' botocore/vendored/requests/certs.py
|
2016-01-02 23:08:27 +00:00
|
|
|
rm -rf %{pypi_name}.egg-info
|
2016-03-01 18:48:55 +00:00
|
|
|
# Remove online tests
|
|
|
|
rm -rf tests/integration
|
2014-08-15 18:15:46 +00:00
|
|
|
|
|
|
|
%build
|
2016-01-02 23:08:27 +00:00
|
|
|
%py2_build
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
%py3_build
|
|
|
|
%endif # with_python3
|
2014-08-15 18:15:46 +00:00
|
|
|
|
|
|
|
%install
|
2016-01-02 23:08:27 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
%py3_install
|
|
|
|
%endif # with_python3
|
|
|
|
%py2_install
|
|
|
|
%if 0%{?with_docs}
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
sphinx-build-3 docs/source html
|
|
|
|
rm -rf html/.{doctrees,buildinfo}
|
|
|
|
%else # with_python3
|
|
|
|
sphinx-build docs/source html
|
|
|
|
rm -rf html/.{doctrees,buildinfo}
|
|
|
|
%endif # with_python3
|
|
|
|
%endif # with_docs
|
|
|
|
|
|
|
|
%if 0%{?with_tests}
|
2014-08-15 18:15:46 +00:00
|
|
|
%check
|
|
|
|
%{__python2} setup.py test
|
2016-01-02 23:08:27 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
%{__python3} setup.py test
|
|
|
|
%endif # with_python3
|
|
|
|
%endif # with_tests
|
2014-08-15 18:15:46 +00:00
|
|
|
|
2016-01-02 23:08:27 +00:00
|
|
|
%files -n python2-%{pypi_name}
|
|
|
|
%{!?_licensedir:%global license %doc}
|
2014-08-15 18:15:46 +00:00
|
|
|
%doc README.rst
|
2016-01-02 23:08:27 +00:00
|
|
|
%license LICENSE.txt
|
|
|
|
%{python2_sitelib}/%{pypi_name}
|
|
|
|
%{python2_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
|
2014-08-15 18:15:46 +00:00
|
|
|
|
2016-01-02 23:08:27 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
%files -n python3-%{pypi_name}
|
2014-08-15 18:15:46 +00:00
|
|
|
%doc README.rst
|
2016-01-02 23:08:27 +00:00
|
|
|
%license LICENSE.txt
|
|
|
|
%{python3_sitelib}/%{pypi_name}
|
|
|
|
%{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
|
|
|
|
%endif # with_python3
|
2014-08-15 18:15:46 +00:00
|
|
|
|
2016-01-02 23:08:27 +00:00
|
|
|
%if 0%{?with_docs}
|
|
|
|
%files -n python-%{pypi_name}-doc
|
|
|
|
%doc html
|
|
|
|
%endif # with_docs
|
2014-08-15 18:15:46 +00:00
|
|
|
|
|
|
|
%changelog
|
2016-03-29 15:22:56 +00:00
|
|
|
* Tue Mar 29 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.4.7-1
|
|
|
|
- New version from upstream
|
|
|
|
|
2016-03-01 18:48:55 +00:00
|
|
|
* Tue Mar 01 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.30-1
|
|
|
|
- New version from upstream
|
|
|
|
|
2016-02-24 09:40:38 +00:00
|
|
|
* Wed Feb 24 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.29-1
|
|
|
|
- New version from upstream
|
|
|
|
|
2016-02-19 12:47:07 +00:00
|
|
|
* Fri Feb 19 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.28-1
|
2016-02-19 12:46:24 +00:00
|
|
|
- New version from upstream
|
|
|
|
|
2016-02-17 19:18:45 +00:00
|
|
|
* Wed Feb 17 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.27-1
|
|
|
|
- New version from upstream
|
|
|
|
|
2016-02-12 14:53:58 +00:00
|
|
|
* Fri Feb 12 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.26-1
|
|
|
|
- New version from upstream
|
|
|
|
|
2016-02-10 08:50:10 +00:00
|
|
|
* Wed Feb 10 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.25-1
|
|
|
|
- New version from upstream
|
|
|
|
|
2016-02-10 08:49:12 +00:00
|
|
|
* Tue Feb 09 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.24-1
|
|
|
|
- New version from upstream
|
|
|
|
|
2016-02-02 14:51:26 +00:00
|
|
|
* Tue Feb 02 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.23-1
|
2016-02-02 14:47:02 +00:00
|
|
|
- New version from upstream
|
|
|
|
|
2016-01-22 12:47:10 +00:00
|
|
|
* Fri Jan 22 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.22-1
|
|
|
|
- New version from upstream
|
|
|
|
|
2016-01-20 06:49:10 +00:00
|
|
|
* Wed Jan 20 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.21-1
|
|
|
|
- New version from upstream
|
|
|
|
|
2016-01-15 11:32:24 +00:00
|
|
|
* Fri Jan 15 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.20-1
|
|
|
|
- New version from upstream
|
|
|
|
|
2016-01-15 10:54:42 +00:00
|
|
|
* Fri Jan 15 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.19-1
|
|
|
|
- New version from upstream
|
|
|
|
|
2016-01-13 07:08:23 +00:00
|
|
|
* Wed Jan 13 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.18-1
|
|
|
|
- New version from upstream
|
|
|
|
|
2016-01-12 17:01:15 +00:00
|
|
|
* Tue Jan 12 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.17-2
|
|
|
|
- Add testing for Fedora
|
|
|
|
|
2016-01-07 18:54:03 +00:00
|
|
|
* Thu Jan 07 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.17-1
|
|
|
|
- Update to upstream version
|
|
|
|
|
2016-01-06 16:55:48 +00:00
|
|
|
* Wed Jan 06 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.16-2
|
|
|
|
- Fix shabang on botocore/vendored/requests/packages/chardet/chardetect.py
|
|
|
|
- Fix shabang on botocore/vendored/requests/certs.py
|
|
|
|
- Remove the useless dependency with python-urllib3
|
|
|
|
|
2016-01-06 11:25:03 +00:00
|
|
|
* Wed Jan 06 2016 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.16-1
|
|
|
|
- Update to new upstream version
|
|
|
|
- Fix Provides for EL6
|
|
|
|
|
2016-01-02 23:08:27 +00:00
|
|
|
* Tue Dec 29 2015 Fabio Alessandro Locati <fabio@locati.cc> - 1.3.15-1
|
|
|
|
- Update to current version
|
|
|
|
- Improve the spec
|
|
|
|
|
2015-11-10 15:20:03 +00:00
|
|
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.79.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
|
|
2015-06-18 18:39:24 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.79.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-12-19 16:47:20 +00:00
|
|
|
* Fri Dec 19 2014 Lubomir Rintel <lkundrak@v3.sk> - 0.79.0-1
|
|
|
|
- New version
|
|
|
|
|
2014-08-15 18:15:46 +00:00
|
|
|
* Fri Jul 25 2014 Lubomir Rintel <lkundrak@v3.sk> - 0.58.0-2
|
|
|
|
- Add Python 3 support
|
|
|
|
|
|
|
|
* Fri Jul 25 2014 Lubomir Rintel <lkundrak@v3.sk> - 0.58.0-1
|
|
|
|
- Initial packaging
|