ef125df
%if 0%{?fedora} || 0%{?rhel} > 7
ef125df
# Enable python3 build by default
ef125df
%bcond_without python3
ef125df
%bcond_without tests
ef125df
%else
6a05cac
%bcond_with python3
6a05cac
%bcond_with tests
ef125df
%endif
ef125df
ef125df
%if 0%{?rhel} > 7
ef125df
# Disable python2 build by default
ef125df
%bcond_with python2
6a05cac
%else
ef125df
%bcond_without python2
6a05cac
%endif
6a05cac
6a05cac
%global srcname docker
6a05cac
6a05cac
Name:           python-%{srcname}
f5570b3
Version:        3.3.0
bf88bbb
Release:        1%{?dist}
6a05cac
Summary:        A Python library for the Docker Engine API
6a05cac
License:        ASL 2.0
6a05cac
URL:            https://pypi.python.org/pypi/%{srcname}
6a05cac
Source0:        https://files.pythonhosted.org/packages/source/d/%{srcname}/%{srcname}-%{version}.tar.gz
6a05cac
769227b
# Upstream uses environment markers to conditionally apply some dependencies.
769227b
# Environment markers were first added in setuptools 20.6.8, so that doesn't
769227b
# work in RHEL.  This patch converts those environment markers into simple if
769227b
# statements.
3fc5522
Patch1: remove-environment-markers.patch
6a05cac
6a05cac
BuildArch:      noarch
6a05cac
6a05cac
%description
6a05cac
It lets you do anything the docker command does, but from within Python apps –
6a05cac
run containers, manage containers, manage Swarms, etc.
6a05cac
ef125df
%if %{with python2}
6a05cac
%package -n python2-%{srcname}
6a05cac
Summary:        A Python library for the Docker Engine API
6a05cac
%{?python_provide:%python_provide python2-%{srcname}}
6a05cac
d25cdbb
BuildRequires:  python2-devel
d25cdbb
BuildRequires:  python%{?fedora:2}-setuptools
6a05cac
%if %{with tests}
8c4607f
BuildRequires:  python2-mock >= 1.0.1
d25cdbb
BuildRequires:  %{?fedora:python2-}pytest >= 2.9.1
1a3de78
BuildRequires:  python%{?fedora:2}-requests >= 2.14.2
d25cdbb
BuildRequires:  python%{?fedora:2}-six >= 1.4.0
4d73ff1
BuildRequires:  python%{?fedora:2}-websocket-client >= 0.32.0
d25cdbb
BuildRequires:  python%{?fedora:2}-docker-pycreds >= 0.2.1
d25cdbb
BuildRequires:  python%{?fedora:2}-backports-ssl_match_hostname >= 3.5
4d73ff1
BuildRequires:  python%{?fedora:2}-ipaddress >= 1.0.16
6a05cac
%endif  # tests
1a3de78
Requires:       python%{?fedora:2}-requests >= 2.14.2
d25cdbb
Requires:       python%{?fedora:2}-six >= 1.4.0
4d73ff1
Requires:       python%{?fedora:2}-websocket-client >= 0.32.0
d25cdbb
Requires:       python%{?fedora:2}-docker-pycreds >= 0.2.1
d25cdbb
Requires:       python%{?fedora:2}-backports-ssl_match_hostname >= 3.5
4d73ff1
Requires:       python%{?fedora:2}-ipaddress >= 1.0.16
4d73ff1
Requires:       python%{?fedora:2}-pyOpenSSL
4d73ff1
Requires:       python%{?fedora:2}-idna
4d73ff1
Requires:       python%{?fedora:2}-cryptography
6a05cac
9c5577f
%if 0%{?fedora} >= 26
9c5577f
Obsoletes:      python-docker-py < 1:2
9c5577f
%else
9c5577f
Obsoletes:      python-docker-py < 2
9c5577f
%endif
6a05cac
6a05cac
%description -n python2-%{srcname}
6a05cac
It lets you do anything the docker command does, but from within Python apps –
6a05cac
run containers, manage containers, manage Swarms, etc.
ef125df
%endif # with python2
6a05cac
ef125df
%if %{with python2}
ef125df
%if %{with tests}
ef125df
%package -n python2-%{srcname}-tests
832ae42
Summary:        Unit tests and integration tests for python-docker
ef125df
ef125df
%{?python_provide:%python_provide python2-%{srcname}-tests}
ef125df
832ae42
Requires:       python2-%{srcname}
832ae42
Requires:       python2-mock >= 1.0.1
832ae42
Requires:       %{?fedora:python2-}pytest >= 2.9.1
1a3de78
Requires:       python%{?fedora:2}-requests >= 2.14.2
832ae42
Requires:       python%{?fedora:2}-six >= 1.4.0
4d73ff1
Requires:       python%{?fedora:2}-websocket-client >= 0.32.0
832ae42
Requires:       python%{?fedora:2}-docker-pycreds >= 0.2.1
832ae42
Requires:       python%{?fedora:2}-backports-ssl_match_hostname >= 3.5
4d73ff1
Requires:       python%{?fedora:2}-ipaddress >= 1.0.16
4d73ff1
Requires:       python%{?fedora:2}-pyOpenSSL
4d73ff1
Requires:       python%{?fedora:2}-idna
4d73ff1
Requires:       python%{?fedora:2}-cryptography
ef125df
ef125df
# Remove at Fedora 31
ef125df
Provides:       python-%{srcname}-tests = %{version}-%{release}
ef125df
Obsoletes:      python-%{srcname}-tests < %{version}-%{release}
ef125df
ef125df
%description -n python2-%{srcname}-tests
832ae42
Upstream test-suite (unit, integration) packaged as RPM.
ef125df
%endif # tests
ef125df
%endif # with python2
832ae42
6a05cac
%if %{with python3}
6a05cac
%package -n python3-%{srcname}
6a05cac
Summary:        A Python library for the Docker Engine API
6a05cac
%{?python_provide:%python_provide python3-%{srcname}}
6a05cac
6a05cac
BuildRequires:  python3-devel
6a05cac
BuildRequires:  python3-setuptools
6a05cac
%if %{with tests}
6a05cac
BuildRequires:  python3-mock >= 1.0.1
6a05cac
BuildRequires:  python3-pytest >= 2.9.1
1a3de78
BuildRequires:  python3-requests >= 2.14.2
d25cdbb
BuildRequires:  python3-six >= 1.4.0
d25cdbb
BuildRequires:  python3-websocket-client >= 0.32.0
d25cdbb
BuildRequires:  python3-docker-pycreds >= 0.2.1
6a05cac
%endif  # tests
1a3de78
Requires:       python3-requests >= 2.14.2
d25cdbb
Requires:       python3-six >= 1.4.0
6a05cac
Requires:       python3-websocket-client >= 0.32.0
d25cdbb
Requires:       python3-docker-pycreds >= 0.2.1
4d73ff1
Requires:       python3-pyOpenSSL
4d73ff1
Requires:       python3-idna
4d73ff1
Requires:       python3-cryptography
6a05cac
9c5577f
%if 0%{?fedora} >= 26
9c5577f
Obsoletes:      python3-docker-py < 1:2
9c5577f
%else
9c5577f
Obsoletes:      python3-docker-py < 2
9c5577f
%endif
6a05cac
6a05cac
%description -n python3-%{srcname}
6a05cac
It lets you do anything the docker command does, but from within Python apps –
6a05cac
run containers, manage containers, manage Swarms, etc.
6a05cac
%endif # with_python3
6a05cac
6a05cac
%prep
6a05cac
%autosetup -n %{srcname}-%{version} -p 1
6a05cac
rm -fr docker.egg-info
6a05cac
6a05cac
%build
ef125df
%if %{with python2}
6a05cac
%py2_build
ef125df
%endif # with python2
6a05cac
6a05cac
%if %{with python3}
6a05cac
%py3_build
6a05cac
%endif # with_python3
6a05cac
6a05cac
%install
ef125df
%if %{with python2}
6a05cac
%py2_install
ef125df
%endif # with python2
6a05cac
6a05cac
%if %{with python3}
6a05cac
%py3_install
6a05cac
%endif # with_python3
6a05cac
ef125df
%if %{with python2}
ef125df
%if %{with tests}
832ae42
# copy tests to /usr/libexec/installed-tests
832ae42
mkdir -p %{buildroot}%{_libexecdir}/installed-tests/%{name}
832ae42
cp -avr tests/ %{buildroot}%{_libexecdir}/installed-tests/%{name}/
ef125df
%endif # tests
ef125df
%endif # with python2
832ae42
6a05cac
%check
ef125df
%if %{with python2}
6a05cac
%if %{with tests}
b5f7fc0
%{__python2} -m pytest -v tests/unit/
ef125df
%endif # tests
ef125df
%endif # with python2
6a05cac
6a05cac
%if %{with python3}
6a05cac
%if %{with tests}
b5f7fc0
%{__python3} -m pytest -v tests/unit/
6a05cac
%endif # tests
6a05cac
%endif # with_python3
6a05cac
ef125df
%if %{with python2}
6a05cac
%files -n python2-%{srcname}
6a05cac
%license LICENSE
6a05cac
%doc README.md
b5f7fc0
%{python2_sitelib}/*
ef125df
%endif # with python2
6a05cac
6a05cac
%if %{with python3}
6a05cac
%files -n python3-%{srcname}
6a05cac
%license LICENSE
6a05cac
%doc README.md
b5f7fc0
%{python3_sitelib}/*
6a05cac
%endif # with_python3
6a05cac
ef125df
%if %{with python2}
ef125df
%if %{with tests}
ef125df
%files -n python2-%{srcname}-tests
832ae42
%{_libexecdir}/installed-tests
ef125df
%endif # tests
ef125df
%endif # with python2
832ae42
6a05cac
%changelog
f5570b3
* Wed May 02 2018 Tomas Tomecek <ttomecek@redhat.com> - 3.3.0-1
f5570b3
- New upstream release 3.3.0
f5570b3
2807ee6
* Tue Apr 03 2018 Tomas Tomecek <ttomecek@redhat.com> - 3.2.1-1
2807ee6
- New upstream release 3.2.1
2807ee6
e71dda1
* Wed Mar 21 2018 Tomas Tomecek <ttomecek@redhat.com> - 3.1.4-1
e71dda1
- New upstream release 3.1.4
e71dda1
bf88bbb
* Wed Mar 21 2018 Tomas Tomecek <ttomecek@redhat.com> - 3.1.3-1
bf88bbb
- New upstream release 3.1.3
bf88bbb
ef125df
* Thu Mar 15 2018 Charalampos Stratakis <cstratak@redhat.com> - 3.1.1-2
ef125df
- Don't build Python 2 subpackage on EL > 7
ef125df
8828c3a
* Tue Mar 06 2018 Tomas Tomecek <ttomecek@redhat.com> - 3.1.1-1
8828c3a
- New upstream release 3.1.1
8828c3a
aa17fcb
* Fri Feb 23 2018 Tomas Tomecek <ttomecek@redhat.com> - 3.1.0-1
aa17fcb
- New upstream release 3.1.0
aa17fcb
dff4e24
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.0.1-2
dff4e24
- Escape macros in %%changelog
dff4e24
4d73ff1
* Wed Feb 07 2018 Tomas Tomecek <ttomecek@redhat.com> - 3.0.1-1
4d73ff1
- New upstream release 3.0.1
4d73ff1
1a3de78
* Wed Dec 27 2017 Carl George <carl@george.computer> - 2.7.0-1
1a3de78
- Latest upstream rhbz#1527712
8ca01cd
- Drop patch1, requirements.txt does not affect final installation
2d4f177
- Drop unnecessary coverage and flake8 build requirements
1a3de78
832ae42
* Tue Nov 28 2017 Tomas Tomecek <ttomecek@redhat.com> - 2.6.1-2
832ae42
- Package tests
832ae42
49558a6
* Thu Nov 09 2017 Tomas Tomecek <ttomecek@redhat.com> - 2.6.1-1
49558a6
- new upstream release: 2.6.1
49558a6
04fb8bb
* Wed Nov 08 2017 Tomas Tomecek <ttomecek@redhat.com> - 2.6.0-1
04fb8bb
- new upstream release: 2.6.0
04fb8bb
0f2e6ef
* Tue Sep 05 2017 Carl George <carl@george.computer> - 2.5.1-2
0f2e6ef
- Add patch3 to remove pip dependency
769227b
- Rewrite patch2 to conditionally apply extra dependencies
d25cdbb
- Update dependencies to be RHEL-compatible
9f9ae4c
- Don't provide python-docker-py
9c5577f
- Update obsoletes to be RHEL-compatible
0f2e6ef
9142b97
* Wed Aug 23 2017 Tomas Tomecek <ttomecek@redhat.com> - 2.5.1-1
9142b97
- new upstream release: 2.5.1
9142b97
0b0d851
* Mon Aug 21 2017 Tomas Tomecek <ttomecek@redhat.com> - 2.5.0-1
0b0d851
- new upstream release: 2.5.0
0b0d851
14294aa
* Tue Aug 01 2017 Tomas Tomecek <ttomecek@redhat.com> - 2.4.2-3
14294aa
- fix provides of version 1
14294aa
516bbb4
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.2-2
516bbb4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
516bbb4
8e66a4a
* Fri Jun 30 2017 Tomas Tomecek <ttomecek@redhat.com> - 2.4.2-1
8e66a4a
- new upstream release: 2.4.2
8e66a4a
b9c0f86
* Wed Jun 28 2017 Tomas Tomecek <ttomecek@redhat.com> - 2.4.0-1
b9c0f86
- new upstream release: 2.4.0
b9c0f86
c902a65
* Wed May 17 2017 Tomas Tomecek <ttomecek@redhat.com> - 2.3.0-1
c902a65
- new upstream release: 2.3.0
c902a65
b733b69
* Fri Apr 07 2017 Tomas Tomecek <ttomecek@redhat.com> - 2.2.1-1
b733b69
- new upstream release: 2.2.1
b733b69
6a05cac
* Mon Feb 20 2017 Tomas Tomecek <ttomecek@redhat.com> - 2.1.0-1
6a05cac
- new upstream release: 2.1.0
6a05cac
6a05cac
* Fri Feb 10 2017 Tomas Tomecek <ttomecek@redhat.com> - 2.0.2-1
6a05cac
- new upstream release: 2.0.2, new review:
6a05cac
 - remove remote inspection patch:
6a05cac
   https://github.com/projectatomic/atomic/issues/898
6a05cac
 - doesn't provide python-docker-py (not bacwards compat)
6a05cac
6a05cac
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.10.6-2
6a05cac
- Rebuild for Python 3.6
6a05cac
6a05cac
* Mon Nov 28 2016 Tomas Tomecek <ttomecek@redhat.com> - 1.10.6-1
6a05cac
- new upstream release: 1.10.6
6a05cac
6a05cac
* Tue Oct 18 2016 Tomas Tomecek <ttomecek@redhat.com> - 1.10.4-1
6a05cac
- new upstream release: 1.10.4
6a05cac
6a05cac
* Wed Oct 05 2016 Tomas Tomecek <ttomecek@redhat.com> - 1.10.3-1
6a05cac
- new upstream release: 1.10.3
6a05cac
6a05cac
* Fri Jul 29 2016 Tomas Tomecek <ttomecek@redhat.com> - 1.9.0-1
6a05cac
- new upstream release: 1.9.0
6a05cac
6a05cac
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.0-0.2.rc2
6a05cac
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
6a05cac
6a05cac
* Wed Jun 29 2016 Tomas Tomecek <ttomecek@redhat.com> - 1.9.0-0.1.rc2
6a05cac
- update to 1.9.0rc2
6a05cac
6a05cac
* Fri Jun 17 2016 Tomas Tomecek <ttomecek@redhat.com> - 1.9.0-0.1.rc1
6a05cac
- update to 1.9.0rc1
6a05cac
6a05cac
* Tue May 03 2016 Tomas Tomecek <ttomecek@redhat.com> - 1.8.1-1
6a05cac
- new upstream release: 1.8.1
6a05cac
6a05cac
* Tue Apr 19 2016 Tomas Tomecek <ttomecek@redhat.com> - 1.8.0-3
6a05cac
- remove "py2-ipaddress" as a dependency since it's not available,
6a05cac
  use python-ipaddress instead
6a05cac
6a05cac
* Mon Apr 11 2016 Colin Walters <walters@redhat.com> - 1.8.0-2
6a05cac
- Use bcond, make it easier to build on CentOS 7 for
6a05cac
  https://lists.projectatomic.io/projectatomic-archives/atomic-devel/2016-April/msg00004.html
6a05cac
6a05cac
* Thu Apr 07 2016 Tomas Tomecek <ttomecek@redhat.com> - 1.8.0-1
6a05cac
- new upstream release: 1.8.0
6a05cac
6a05cac
* Fri Mar 04 2016 Tomas Tomecek <ttomecek@redhat.com> - 1.7.2-1
6a05cac
- new upstream release: 1.7.2
6a05cac
- modernized specfile
6a05cac
- fixed URL
6a05cac
6a05cac
* Mon Feb 08 2016 Tomas Tomecek <ttomecek@redhat.com> - 1.7.0.0-1
6a05cac
- new upstream release: 1.7.0
6a05cac
6a05cac
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0rc2-2
6a05cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
6a05cac
6a05cac
* Mon Jan 25 2016 Tomas Tomecek <ttomecek@redhat.com> - 1.7.0rc2-1
6a05cac
- new upstream release: 1.7.0rc2
6a05cac
6a05cac
* Fri Jan 08 2016 Tomas Tomecek <ttomecek@redhat.com> - 1.6.0-2
6a05cac
- new downstream patch: remote inspection
6a05cac
6a05cac
* Wed Dec 02 2015 Tomas Tomecek <ttomecek@redhat.com> - 1.6.0-1
6a05cac
- new upstream release: 1.6.0
6a05cac
6a05cac
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-2
6a05cac
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
6a05cac
6a05cac
* Tue Oct 13 2015 Tomas Tomecek <ttomecek@redhat.com> - 1.5.0-1
6a05cac
- new upstream release: 1.5.0
6a05cac
6a05cac
* Fri Sep 11 2015 Tomas Tomecek <ttomecek@redhat.com> - 1.4.0-1
6a05cac
- new upstream release: 1.4.0
6a05cac
6a05cac
* Tue Jul 28 2015 Tomas Tomecek <ttomecek@redhat.com> - 1.3.1-1
6a05cac
- new upstream release: 1.3.1
6a05cac
6a05cac
* Fri Jul 10 2015 Tomas Tomecek <ttomecek@redhat.com> - 1.3.0-1
6a05cac
- new upstream release: 1.3.0
6a05cac
6a05cac
* Fri Jun 19 2015 Tomas Tomecek <ttomecek@redhat.com> - 1.2.3-1
6a05cac
- new upstream release: 1.2.3
6a05cac
6a05cac
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.2-2
6a05cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
6a05cac
6a05cac
* Wed May 06 2015 Tomas Tomecek <ttomecek@redhat.com> - 1.2.2-1
6a05cac
- new upstream release: 1.2.2
6a05cac
6a05cac
* Thu Apr 30 2015 Tomas Tomecek <ttomecek@redhat.com> - 1.2.1-1
6a05cac
- new upstream release: 1.2.1
6a05cac
6a05cac
* Wed Mar 18 2015 Tomas Tomecek <ttomecek@redhat.com> - 1.1.0-2
6a05cac
- docker-py 1.1.0 requires requests>=2.5.2
6a05cac
6a05cac
* Fri Mar 13 2015 Tomas Tomecek <ttomecek@redhat.com> - 1.1.0-1
6a05cac
- new upstream release: 1.1.0
6a05cac
- use latest python-requests
6a05cac
- run unit test during build
6a05cac
6a05cac
* Wed Feb 25 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.0.0-1
6a05cac
- update to upstream 1.0.0
6a05cac
- Resolves: rhbz#1195627 - don't (B)R docker
6a05cac
- use github url instead of pypi
6a05cac
- run tests in check if /run/docker.sock exists
6a05cac
6a05cac
* Wed Jan 14 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.7.1-1
6a05cac
- Resolves: rhbz#1182003 - Update to 0.7.1
6a05cac
6a05cac
* Thu Dec 25 2014 Igor Gnatenko <ignatenko@mirantis.com> - 0.7.0-1
6a05cac
- Update to 0.7.0 (RHBZ #1176950)
6a05cac
6a05cac
* Mon Dec 01 2014 Tomas Radej <tradej@redhat.com> - 0.6.0-2
6a05cac
- Added Python 3 subpackage
6a05cac
6a05cac
* Fri Nov 21 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.6.0-1
6a05cac
- Resolves: rhbz#1160293 - update to 0.6.0
6a05cac
6a05cac
* Thu Oct 23 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.5.3-2
6a05cac
- Resolves: rhbz#1145895
6a05cac
- versioned python-requests req only for f21+
6a05cac
6a05cac
* Wed Oct 22 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.5.3-1
6a05cac
- Resolves: rhbz#1153991 - update to 0.5.3
6a05cac
6a05cac
* Tue Sep 23 2014 Tom Prince <tom.prince@clusterhq.com> - 0.5.0-2
6a05cac
- Specify depedencies to match those in setup.py
6a05cac
6a05cac
* Mon Sep 22 2014 Tom Prince <tom.prince@clusterhq.com> - 0.5.0-1
6a05cac
- Resolves: rhbz#1145511 - version bump to 0.5.0
6a05cac
6a05cac
* Tue Aug 26 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.4.0-3
6a05cac
- correct bogus date
6a05cac
6a05cac
* Tue Aug 26 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.4.0-2
6a05cac
- rewrite BR&R conditionals for docker/docker-io
6a05cac
6a05cac
* Thu Aug 21 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.4.0-1
6a05cac
- update to 0.4.0
6a05cac
- Resolves: rhbz#1132604 (epel7 only)
6a05cac
6a05cac
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.2-2
6a05cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
6a05cac
6a05cac
* Sat Jul 12 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.3.2-1
6a05cac
- version bump to 0.3.2
6a05cac
- Resolves: rhbz#1097415
6a05cac
6a05cac
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.3-9
6a05cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
6a05cac
6a05cac
* Mon Feb 10 2014 Lokesh Mandvekar <lsm5@redhat.com> 0.2.3-8
6a05cac
- Bug 1063369 - Fix APIError for python-requests-1.1 on rhel6
6a05cac
6a05cac
* Sat Feb 08 2014 Lokesh Mandvekar <lsm5@redhat.com> 0.2.3-7
6a05cac
- Bug 1048667 - disable debug package cause archful
6a05cac
6a05cac
* Fri Feb 07 2014 Lokesh Mandvekar <lsm5@redhat.com> 0.2.3-6
6a05cac
- doesn't need python-mock at runtime
6a05cac
6a05cac
* Thu Jan 09 2014 Lokesh Mandvekar <lsm5@redhat.com> 0.2.3-5
6a05cac
- python3 to be added after python3-websocket-client (BZ 1049424)
6a05cac
6a05cac
* Tue Jan 07 2014 Lokesh Mandvekar <lsm5@redhat.com> 0.2.3-4
dff4e24
- double '%%' to comment macros
6a05cac
- check section not considered for now
6a05cac
- python3- description in python3- subpackage conditional
6a05cac
6a05cac
* Tue Jan 07 2014 Lokesh Mandvekar <lsm5@redhat.com> 0.2.3-3
6a05cac
- Everything goes in main package
6a05cac
- python3 package requires corrected
6a05cac
- package name python-docker-py
6a05cac
- both packages require docker-io
6a05cac
6a05cac
* Mon Jan 06 2014 Lokesh Mandvekar <lsm5@redhat.com> 0.2.3-2
6a05cac
- python3 subpackage
6a05cac
- upstream uses PyPI
6a05cac
- package owns directories it creates
6a05cac
- build and runtime deps updated
6a05cac
6a05cac
* Sun Jan 05 2014 Lokesh Mandvekar <lsm5@redhat.com> 0.2.3-1
6a05cac
- Initial fedora package