Compare commits

..

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
50e73cc62d
!23 Upgrade version to 7.0.0
From: @cherry530 
Reviewed-by: @caodongxia 
Signed-off-by: @caodongxia
2024-02-28 01:44:02 +00:00
cherry530
2faa0d6cba Upgrade version to 7.0.0
Signed-off-by: cherry530 <707078654@qq.com>
2024-02-27 17:16:28 +08:00
openeuler-ci-bot
f6253dc8de
!20 Upgrade to latest release [python-docker -> 6.1.3]
From: @lingjuer 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2023-07-12 01:55:35 +00:00
lingjuer
fb1d48cf00 update version to 6.1.3 2023-07-10 11:25:35 +08:00
openeuler-ci-bot
dfa68d8305
!19 Upgrade to latest release [python-docker -> 6.1.2]
From: @wubijie123 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2023-05-19 09:39:57 +00:00
wubijie
a6a3c78950 update version to 6.1.2 2023-05-16 13:57:52 +08:00
openeuler-ci-bot
241c7a3144
!18 修复由于缺少编译依赖python3_setuptools_scm导致的编译问题
From: @cherry530 
Reviewed-by: @caodongxia 
Signed-off-by: @caodongxia
2023-01-31 08:59:22 +00:00
cherry530
3f5960c5e2 Add buildrequires python3-setuptools_scm
Signed-off-by: cherry530 <xuping33@huawei.com>
2023-01-31 16:40:43 +08:00
openeuler-ci-bot
444c402b52
!17 Update package
From: @liqiuyu123 
Reviewed-by: @myeuler 
Signed-off-by: @myeuler
2022-11-22 14:39:52 +00:00
liqiuyu123
fc17e914be update version to 6.0.1 2022-11-22 09:52:21 +08:00
3 changed files with 31 additions and 15 deletions

Binary file not shown.

BIN
docker-7.0.0.tar.gz Normal file

Binary file not shown.

View File

@ -1,42 +1,38 @@
%global _empty_manifest_terminate_build 0 %global _empty_manifest_terminate_build 0
Name: python-docker Name: python-docker
Version: 5.0.3 Version: 7.0.0
Release: 1 Release: 1
Summary: A Python library for the Docker Engine API. Summary: A Python library for the Docker Engine API.
License: Apache-2.0 License: Apache-2.0
URL: https://github.com/docker/docker-py URL: https://github.com/docker/docker-py
Source0: https://files.pythonhosted.org/packages/ab/d2/45ea0ee13c6cffac96c32ac36db0299932447a736660537ec31ec3a6d877/docker-5.0.3.tar.gz Source0: https://files.pythonhosted.org/packages/source/d/docker/docker-%{version}.tar.gz
BuildArch: noarch BuildArch: noarch
%description %description
A Python library for the Docker Engine API. A Python library for the Docker Engine API.
%package -n python3-docker %package -n python3-docker
Summary: A Python library for the Docker Engine API. Summary: A Python library for the Docker Engine API.
Provides: python-docker Provides: python-docker = %{version}-%{release}
BuildRequires: python3-setuptools_scm
BuildRequires: python3-devel BuildRequires: python3-devel
BuildRequires: python3-setuptools BuildRequires: python3-setuptools
Requires: python3-six BuildRequires: python3-pip
Requires: python3-websocket-client
Requires: python3-requests
Requires: python3-ipaddress
# Requires: python3-backports-ssl-match-hostname
# Requires: python3-pywin32
Requires: python3-paramiko Requires: python3-paramiko
Requires: python3-pyOpenSSL Requires: python3-packaging
Requires: python3-cryptography Requires: python3-requests
Requires: python3-idna Requires: python3-urllib3
Requires: python3-websocket-client
%description -n python3-docker %description -n python3-docker
A Python library for the Docker Engine API. A Python library for the Docker Engine API.
%package help %package help
Summary: Development documents and examples for docker Summary: Development documents and examples for docker
Provides: python3-docker-doc Provides: python3-docker-doc
%description help %description help
A Python library for the Docker Engine API. A Python library for the Docker Engine API.
%prep %prep
%autosetup -n docker-%{version} %autosetup -n docker-%{version}
@ -50,6 +46,9 @@ if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
if [ -f README.rst ]; then cp -af README.rst %{buildroot}/%{_pkgdocdir}; fi
if [ -f README.md ]; then cp -af README.md %{buildroot}/%{_pkgdocdir}; fi
if [ -f README.txt ]; then cp -af README.txt %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot} pushd %{buildroot}
if [ -d usr/lib ]; then if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
@ -78,6 +77,23 @@ mv %{buildroot}/doclist.lst .
%{_docdir}/* %{_docdir}/*
%changelog %changelog
* Tue Feb 27 2024 xu_ping <707078654@qq.com> - 7.0.0-1
- Upgrade version to 7.0.0
- Python 3.12 support and python 3.7 no longer supported
- Add support bind mount propagation.
* Thu Jul 06 2023 zhangchenglin <zhangchenglin@kylinos.cn> - 6.1.3-1
- Update package to version 6.1.3
* Tue May 16 2023 wubijie <wubijie@kylinos.cn> - 6.1.2-1
- Update package to version 6.1.2
* Tue Jan 31 2023 xu_ping <xuping33@h-partners.com> - 6.0.1-2
- Add buildrequires python3-setuptools_scm to fix build error
* Mon Nov 21 2022 liqiuyu <liqiuyu@kylinos.cn> - 6.0.1-1
- Update package to version 6.0.1
* Tue Aug 02 2022 zhaoshuang <zhaoshuang@uniontech.com> - 5.0.3-1 * Tue Aug 02 2022 zhaoshuang <zhaoshuang@uniontech.com> - 5.0.3-1
- Update to 5.0.3 - Update to 5.0.3