Blame SPECS/python-docker-py.spec

17b382
%if 0%{?fedora}
8ef169
%global         with_python3    0
17b382
%endif #fedora
17b382
17b382
# disable debug package cause archful
8ef169
%global debug_package   %{nil}
8ef169
8ef169
%global owner docker
8ef169
%global project docker-py
8ef169
%global commit cc399d22b4f0631e5901019b005aa5109dc635a0
17b382
%global shortcommit %(c=%{commit}; echo ${c:0:7})
17b382
8ef169
Name:           python-%{project}
8ef169
Version:        1.7.2
8ef169
Release:        1%{?dist}
17b382
Summary:        An API client for docker written in Python
17b382
License:        ASL 2.0
8ef169
URL:            https://github.com/%{owner}/%{project}/
8ef169
Source0:        https://github.com/%{owner}/%{project}/archive/%{commit}/%{project}-%{commit}.tar.gz
8ef169
Patch1:         remote-inspection.patch
8ef169
17b382
BuildArch:      noarch
17b382
BuildRequires:  python2-devel
17b382
BuildRequires:  python-setuptools
8ef169
8ef169
Requires:       python-requests
8ef169
Requires:       python-websocket-client >= 0.32.0
8ef169
Requires:       python-six >= 1.4.0
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
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
8ef169
%setup -q -n %{project}-%{commit}
8ef169
%patch1 -p 1
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
8ef169
# we need pytest and a bunch of packages which are not available in RHEL
8ef169
# PYTHONPATH="${PWD}" py.test-%%{python2_version} tests/unit/
8ef169
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
8ef169
* Fri Mar 04 2016 Tomas Tomecek <ttomecek@redhat.com> - 1.7.2-1
8ef169
- new upstream release: 1.7.2
8ef169
8ef169
* Wed Jan 13 2016 Tomas Tomecek <ttomecek@redhat.com> - 1.6.0-1
8ef169
- update to 1.6.0
8ef169
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