Blame SPECS/python-docker-py.spec

17b382
%if 0%{?fedora}
17b382
%global         with_python3    1
17b382
%endif #fedora
17b382
17b382
# disable debug package cause archful
17b382
%global         debug_package   %{nil}
17b382
%global commit 54a154d8b251df5e4788570dac4bea3cfa70b199
17b382
%global shortcommit %(c=%{commit}; echo ${c:0:7})
17b382
17b382
Name:           python-docker-py
17b382
Version:        1.4.0
8ec2ab
Release:        118%{?dist}
17b382
Summary:        An API client for docker written in Python
17b382
License:        ASL 2.0
17b382
URL:            https://github.com/docker/docker-py
17b382
Source0:        https://github.com/rhatdan/docker-py/archive/%{commit}.tar.gz
17b382
BuildArch:      noarch
17b382
BuildRequires:  python2-devel
17b382
BuildRequires:  python-setuptools
17b382
BuildRequires:  python-tools
17b382
BuildRequires:  python-websocket-client >= 0.11.0
17b382
BuildRequires:  python-coverage
17b382
17b382
%if 0%{?with_python3}
17b382
BuildRequires:  python3-devel
17b382
BuildRequires:  python3-tools
17b382
BuildRequires:  python3-setuptools
17b382
BuildRequires:  python3-requests
17b382
BuildRequires:  python3-websocket-client >= 0.11.0
17b382
BuildRequires:  python3-coverage >= 3.7.1
17b382
%endif # with_python3
17b382
17b382
%if 0%{?fedora} >= 21
17b382
BuildRequires:  python-requests >= 2.2.1
17b382
Requires:       python-requests >= 2.2.1
17b382
%else
17b382
BuildRequires:  python-requests
17b382
Requires:       python-requests
17b382
%endif
17b382
17b382
Requires:       python-websocket-client >= 0.11.0
17b382
Requires:       python-six >= 1.3.0
8ec2ab
Obsoletes:      docker-python <= 1.4.0-115.x86_64
17b382
Provides:       docker-python == %{version}-%{release}
17b382
17b382
%description
17b382
%{summary}
17b382
17b382
%if 0%{?with_python3}
17b382
%package -n python3-docker-py
17b382
Requires:       python3-websocket-client >= 0.11.0
17b382
Requires:       python3-requests
17b382
Requires:       python3-six >= 1.3.0
17b382
Summary:        An API client for docker written in Python 3
17b382
17b382
%description -n python3-docker-py
17b382
A Python 3 interface to Docker
17b382
%endif # with_python3
17b382
17b382
%prep
17b382
%setup -q -n docker-py-%{commit}
17b382
17b382
%if 0%{?with_python3}
17b382
rm -rf %{py3dir}
17b382
cp -a . %{py3dir}
17b382
pushd %{py3dir}
17b382
find %{py3dir} -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python3}|'
17b382
popd
17b382
%endif # with_python3
17b382
17b382
%build
17b382
%{__python} setup.py build
17b382
17b382
%if 0%{?with_python3}
17b382
pushd %{py3dir}
17b382
%{__python3} setup.py build
17b382
popd
17b382
%endif # with_python3
17b382
17b382
%install
17b382
%{__python} setup.py install --root %{buildroot}
17b382
17b382
%if 0%{?with_python3}
17b382
pushd %{py3dir}
17b382
%{__python3} setup.py install --root %{buildroot}
17b382
popd
17b382
%endif # with_python3
17b382
17b382
%check
17b382
[ ! -w /run/docker.sock ] || make test
17b382
17b382
%files
17b382
%doc LICENSE README.md
17b382
%{python_sitelib}/docker
17b382
%{python_sitelib}/docker_py-%{version}*
17b382
17b382
%if 0%{?with_python3}
17b382
%files -n python3-docker-py
17b382
%doc LICENSE README.md
17b382
%dir %{python3_sitelib}/docker
17b382
%dir %{python3_sitelib}/docker_py-%{version}-py3*.egg-info
17b382
%{python3_sitelib}/docker/*
17b382
%{python3_sitelib}/docker_py-%{version}-py3*.egg-info/*
17b382
%endif # with_python3
17b382
17b382
%changelog
8ec2ab
* Wed Nov 04 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.0-118
8ec2ab
- Resolves: rhbz#1254579 - previous docker-python was archful
8ec2ab
17b382
* Wed Sep 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.0-117
17b382
- obsoletes docker-python
17b382
17b382
* Wed Sep 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.0-116
17b382
- built @rhatdan/master commit#54a154d
17b382
17b382
* Fri Jun 19 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.2.3-1
17b382
- Rebase to 1.2.3
17b382
17b382
* Thu Jun 18 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.2.2-1
17b382
- update to 1.2.2
17b382
- do not enforce min VR on python-coverage
17b382
- test only if docker.sock is writable
17b382
17b382
* Wed Feb 25 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.0.0-1
17b382
- update to upstream 1.0.0
17b382
- Resolves: rhbz#1195627 - don't (B)R docker
17b382
- use github url instead of pypi
17b382
- run tests in check if /run/docker.sock exists
17b382
17b382
* Wed Jan 14 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.7.1-1
17b382
- Resolves: rhbz#1182003 - Update to 0.7.1
17b382
17b382
* Thu Dec 25 2014 Igor Gnatenko <ignatenko@mirantis.com> - 0.7.0-1
17b382
- Update to 0.7.0 (RHBZ #1176950)
17b382
17b382
* Mon Dec 01 2014 Tomas Radej <tradej@redhat.com> - 0.6.0-2
17b382
- Added Python 3 subpackage
17b382
17b382
* Fri Nov 21 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.6.0-1
17b382
- Resolves: rhbz#1160293 - update to 0.6.0
17b382
17b382
* Thu Oct 23 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.5.3-2
17b382
- Resolves: rhbz#1145895
17b382
- versioned python-requests req only for f21+
17b382
17b382
* Wed Oct 22 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.5.3-1
17b382
- Resolves: rhbz#1153991 - update to 0.5.3
17b382
17b382
* Tue Sep 23 2014 Tom Prince <tom.prince@clusterhq.com> - 0.5.0-2
17b382
- Specify depedencies to match those in setup.py
17b382
17b382
* Mon Sep 22 2014 Tom Prince <tom.prince@clusterhq.com> - 0.5.0-1
17b382
- Resolves: rhbz#1145511 - version bump to 0.5.0
17b382
17b382
* Tue Aug 26 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.4.0-3
17b382
- correct bogus date
17b382
17b382
* Tue Aug 26 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.4.0-2
17b382
- rewrite BR&R conditionals for docker/docker-io
17b382
17b382
* Thu Aug 21 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.4.0-1
17b382
- update to 0.4.0
17b382
- Resolves: rhbz#1132604 (epel7 only)
17b382
17b382
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.2-2
17b382
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
17b382
17b382
* Sat Jul 12 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.3.2-1
17b382
- version bump to 0.3.2
17b382
- Resolves: rhbz#1097415
17b382
17b382
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.3-9
17b382
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
17b382
17b382
* Mon Feb 10 2014 Lokesh Mandvekar <lsm5@redhat.com> 0.2.3-8
17b382
- Bug 1063369 - Fix APIError for python-requests-1.1 on rhel6
17b382
17b382
* Sat Feb 08 2014 Lokesh Mandvekar <lsm5@redhat.com> 0.2.3-7
17b382
- Bug 1048667 - disable debug package cause archful
17b382
17b382
* Fri Feb 07 2014 Lokesh Mandvekar <lsm5@redhat.com> 0.2.3-6
17b382
- doesn't need python-mock at runtime
17b382
17b382
* Thu Jan 09 2014 Lokesh Mandvekar <lsm5@redhat.com> 0.2.3-5
17b382
- python3 to be added after python3-websocket-client (BZ 1049424)
17b382
17b382
* Tue Jan 07 2014 Lokesh Mandvekar <lsm5@redhat.com> 0.2.3-4
17b382
- double '%' to comment macros
17b382
- check section not considered for now
17b382
- python3- description in python3- subpackage conditional
17b382
17b382
* Tue Jan 07 2014 Lokesh Mandvekar <lsm5@redhat.com> 0.2.3-3
17b382
- Everything goes in main package
17b382
- python3 package requires corrected
17b382
- package name python-docker-py
17b382
- both packages require docker-io
17b382
17b382
* Mon Jan 06 2014 Lokesh Mandvekar <lsm5@redhat.com> 0.2.3-2
17b382
- python3 subpackage
17b382
- upstream uses PyPI
17b382
- package owns directories it creates
17b382
- build and runtime deps updated
17b382
17b382
* Sun Jan 05 2014 Lokesh Mandvekar <lsm5@redhat.com> 0.2.3-1
17b382
- Initial fedora package