|
 |
ef125df |
%if 0%{?fedora} || 0%{?rhel} > 7
|
|
 |
ef125df |
# Enable python3 build by default
|
|
 |
ef125df |
%bcond_without python3
|
|
 |
ef125df |
%bcond_without tests
|
|
 |
7fa44b2 |
# Disable python2 build by default
|
|
 |
7fa44b2 |
%bcond_with python2
|
|
 |
ef125df |
%else
|
|
 |
6a05cac |
%bcond_with python3
|
|
 |
6a05cac |
%bcond_with tests
|
|
 |
7fa44b2 |
%bcond_without python2
|
|
 |
ef125df |
%endif
|
|
 |
ef125df |
|
|
 |
6a05cac |
|
|
 |
6a05cac |
%global srcname docker
|
|
 |
6a05cac |
|
|
 |
6a05cac |
Name: python-%{srcname}
|
|
 |
052f4c4 |
Version: 5.0.3
|
|
 |
052f4c4 |
Release: 1%{?dist}
|
|
 |
6a05cac |
Summary: A Python library for the Docker Engine API
|
|
 |
6a05cac |
License: ASL 2.0
|
|
 |
c558849 |
URL: https://pypi.org/project/%{srcname}
|
|
 |
6a05cac |
Source0: https://files.pythonhosted.org/packages/source/d/%{srcname}/%{srcname}-%{version}.tar.gz
|
|
 |
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
|
|
 |
9c5577f |
Obsoletes: python-docker-py < 1:2
|
|
 |
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 tests}
|
|
 |
1ff5efe |
%package -n python-%{srcname}-tests
|
|
 |
832ae42 |
Summary: Unit tests and integration tests for python-docker
|
|
 |
ef125df |
|
|
 |
1ff5efe |
%{?python_provide:%python_provide python-%{srcname}-tests}
|
|
 |
ef125df |
|
|
 |
1ff5efe |
%description -n python-%{srcname}-tests
|
|
 |
832ae42 |
Upstream test-suite (unit, integration) packaged as RPM.
|
|
 |
ef125df |
%endif # tests
|
|
 |
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
|
|
 |
9c5577f |
Obsoletes: python3-docker-py < 1:2
|
|
 |
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 |
|
|
 |
3e6b80d |
%{?python_extras_subpkg:%python_extras_subpkg -n python3-%{srcname} -i %{python3_sitelib}/*.egg-info ssh}
|
|
 |
3e6b80d |
|
|
 |
6a05cac |
%prep
|
|
 |
1792a05 |
%autosetup -n %{srcname}-%{version}
|
|
 |
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 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
|
|
 |
6a05cac |
|
|
 |
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 tests}
|
|
 |
1ff5efe |
%files -n python-%{srcname}-tests
|
|
 |
832ae42 |
%{_libexecdir}/installed-tests
|
|
 |
ef125df |
%endif # tests
|
|
 |
832ae42 |
|
|
 |
6a05cac |
%changelog
|
|
 |
052f4c4 |
* Tue Jun 21 2022 Tomas Tomecek <ttomecek@redhat.com> - 5.0.3-1
|
|
 |
052f4c4 |
- New upstream release 5.0.3
|
|
 |
052f4c4 |
|
|
 |
2da4e48 |
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 5.0.2-3
|
|
 |
2da4e48 |
- Rebuilt for Python 3.11
|
|
 |
2da4e48 |
|
|
 |
e6e835e |
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.2-2
|
|
 |
e6e835e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
 |
e6e835e |
|
|
 |
88becdf |
* Wed Sep 15 2021 Tomas Tomecek <ttomecek@redhat.com> - 5.0.2-1
|
|
 |
88becdf |
- New upstream release 5.0.2
|
|
 |
88becdf |
|
|
 |
039bf6a |
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-3
|
|
 |
039bf6a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
 |
039bf6a |
|
|
 |
03cb084 |
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 5.0.0-2
|
|
 |
03cb084 |
- Rebuilt for Python 3.10
|
|
 |
03cb084 |
|
|
 |
7b0a99f |
* Tue Apr 13 2021 Tomas Tomecek <ttomecek@redhat.com> - 5.0.0-1
|
|
 |
7b0a99f |
- New upstream release 5.0.0
|
|
 |
7b0a99f |
|
|
 |
bb2dff1 |
* Fri Mar 05 2021 Tomas Tomecek <ttomecek@redhat.com> - 4.4.4-1
|
|
 |
bb2dff1 |
- New upstream release 4.4.4
|
|
 |
bb2dff1 |
|
|
 |
93f127d |
* Mon Feb 22 2021 Tomas Tomecek <ttomecek@redhat.com> - 4.4.3-1
|
|
 |
93f127d |
- New upstream release 4.4.3
|
|
 |
93f127d |
|
|
 |
466c6b4 |
* Wed Feb 17 2021 Tomas Tomecek <ttomecek@redhat.com> - 4.4.2-1
|
|
 |
466c6b4 |
- New upstream release 4.4.2
|
|
 |
466c6b4 |
|
|
 |
3bbc788 |
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.1-2
|
|
 |
3bbc788 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
 |
3bbc788 |
|
|
 |
bdcdab2 |
* Mon Jan 04 2021 Tomas Tomecek <ttomecek@redhat.com> - 4.4.1-1
|
|
 |
bdcdab2 |
- New upstream release 4.4.1
|
|
 |
bdcdab2 |
|
|
 |
8071158 |
* Wed Nov 25 13:38:59 CET 2020 Tomas Tomecek <ttomecek@redhat.com> - 4.4.0-1
|
|
 |
8071158 |
- new upstream release: 4.4.0
|
|
 |
8071158 |
|
|
 |
11eb381 |
* Mon Sep 14 2020 Tomas Tomecek <ttomecek@redhat.com> - 4.3.1-1
|
|
 |
11eb381 |
- new upstream release: 4.3.1
|
|
 |
11eb381 |
|
|
 |
dc8ca88 |
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-3
|
|
 |
dc8ca88 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
 |
dc8ca88 |
|
|
 |
3e6b80d |
* Fri Jul 10 2020 Miro Hrončok <mhroncok@redhat.com> - 4.2.1-2
|
|
 |
3e6b80d |
- Add docker[ssh] subpackage
|
|
 |
de4673c |
- Drop all manual requires
|
|
 |
3e6b80d |
|
|
 |
7814cbb |
* Thu Jun 18 2020 Tomas Tomecek <ttomecek@redhat.com> - 4.2.1-1
|
|
 |
7814cbb |
- new upstream release: 4.2.1
|
|
 |
7814cbb |
|
|
 |
741b7da |
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 4.2.0-2
|
|
 |
741b7da |
- Rebuilt for Python 3.9
|
|
 |
741b7da |
|
|
 |
4788d85 |
* Tue Mar 24 2020 Tomas Tomecek <ttomecek@redhat.com> - 4.2.0-1
|
|
 |
4788d85 |
- New upstream release 4.2.0
|
|
 |
4788d85 |
|
|
 |
88a9a3c |
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.2-3
|
|
 |
88a9a3c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
 |
88a9a3c |
|
|
 |
ad4bb6f |
* Tue Oct 01 2019 Tomas Tomecek <ttomecek@redhat.com> - 4.0.2-2
|
|
 |
ad4bb6f |
- drop env markers patch
|
|
 |
ad4bb6f |
|
|
 |
46ee10c |
* Fri Sep 13 2019 Tomas Tomecek <ttomecek@redhat.com> - 4.0.2-1
|
|
 |
46ee10c |
- new upstream release: 4.0.2
|
|
 |
46ee10c |
|
|
 |
0ee3196 |
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 4.0.1-3
|
|
 |
0ee3196 |
- Rebuilt for Python 3.8
|
|
 |
0ee3196 |
|
|
 |
63cd69e |
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-2
|
|
 |
63cd69e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
 |
63cd69e |
|
|
 |
91c47d9 |
* Mon May 27 2019 Frantisek Lachman <flachman@redhat.com> - 4.0.1-1
|
|
 |
91c47d9 |
- New upstream release 4.0.1
|
|
 |
91c47d9 |
|
|
 |
91c47d9 |
* Fri May 24 2019 Frantisek Lachman <flachman@redhat.com> - 4.0.0-1
|
|
 |
91c47d9 |
- New upstream release 4.0.0
|
|
 |
91c47d9 |
|
|
 |
7fa44b2 |
* Mon Feb 25 2019 Yatin Karel <ykarel@redhat.com> - 3.7.0-2
|
|
 |
7fa44b2 |
- Enable python2 build for el7
|
|
 |
7fa44b2 |
|
|
 |
c558849 |
* Tue Feb 05 2019 Tomas Tomecek <ttomecek@redhat.com> - 3.7.0-1
|
|
 |
c558849 |
- New upstream release 3.7.0
|
|
 |
c558849 |
|
|
 |
8935d56 |
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.0-2
|
|
 |
8935d56 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
 |
8935d56 |
|
|
 |
e19e50a |
* Sat Aug 11 2018 Tomas Tomecek <ttomecek@redhat.com> - 3.5.0-1
|
|
 |
e19e50a |
- New upstream release 3.5.0
|
|
 |
e19e50a |
|
|
 |
6b57efc |
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-3
|
|
 |
6b57efc |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
 |
6b57efc |
|
|
 |
3b15c8e |
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 3.4.1-2
|
|
 |
3b15c8e |
- Rebuilt for Python 3.7
|
|
 |
3b15c8e |
|
|
 |
70948db |
* Mon Jul 02 2018 Tomas Tomecek <ttomecek@redhat.com> - 3.4.1-1
|
|
 |
70948db |
- New upstream release 3.4.1
|
|
 |
70948db |
|
|
 |
bd113e7 |
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 3.4.0-2
|
|
 |
bd113e7 |
- Rebuilt for Python 3.7
|
|
 |
bd113e7 |
|
|
 |
ee9ece7 |
* Tue Jun 19 2018 Tomas Tomecek <ttomecek@redhat.com> - 3.4.0-1
|
|
 |
ee9ece7 |
- New upstream release 3.4.0
|
|
 |
ee9ece7 |
|
|
 |
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
|