Compare commits

..

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
5bce67b4c6
!16 Update package to version 0.3.8
From: @zhangxianting 
Reviewed-by: @cherry530 
Signed-off-by: @cherry530
2024-02-19 08:13:55 +00:00
zhangxianting
2f091c5bf9 Update package to version 0.3.8 2024-01-10 18:51:12 +08:00
openeuler-ci-bot
7cc5205dfe
!14 Update package to version 0.3.7
From: @lingjuer 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2023-07-28 10:30:58 +00:00
lingjuer
3ab8f97925 Update to verison 0.3.7 2023-07-27 16:01:33 +08:00
openeuler-ci-bot
af5c977c0b
!13 Adapting to the pyproject.toml compilation mode
From: @caodongxia 
Reviewed-by: @cherry530 
Signed-off-by: @cherry530
2023-04-28 05:50:12 +00:00
caodongxia
2d5f799103 Adapting to the pyproject.toml compilation mode 2023-04-28 10:37:20 +08:00
openeuler-ci-bot
dfeba1fdf4
!11 Update package
From: @Wangjunqi123 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2022-12-03 08:35:49 +00:00
Wangjunqi123
49f95e6713 update version to 0.3.6 2022-12-02 15:56:29 +08:00
openeuler-ci-bot
e02904c935
!9 Update package
From: @liqiuyu123 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2022-08-05 05:40:25 +00:00
liqiuyu123
adfc0ebcba update to 0.3.5 2022-08-04 14:37:44 +08:00
4 changed files with 75 additions and 47 deletions

Binary file not shown.

BIN
distlib-0.3.8.tar.gz Normal file

Binary file not shown.

View File

@ -1,18 +0,0 @@
diff --git a/setup.py b/setup.py
index e88d95f..6e1e3df 100644
--- a/setup.py
+++ b/setup.py
@@ -61,10 +61,6 @@ distutils.core.setup(
packages=[
'distlib'
],
- package_data={
- 'distlib': ['t32.exe', 't64.exe', 'w32.exe', 'w64.exe',
- 't64-arm.exe', 'w64-arm.exe'],
- },
cmdclass={
'test': TestCommand,
},
--
1.8.3.1

View File

@ -1,50 +1,96 @@
%bcond_with check
Name: python-distlib
Version: 0.3.4
Release: 1
Summary: A library of packaging functionality
License: Python-2.0
URL: https://readthedocs.org/projects/distlib/
Source0: %pypi_source distlib %{version} zip
Patch0000: distlib_unbundle.patch
BuildRequires: python3-devel
BuildArch: noarch
%global _empty_manifest_terminate_build 0
Name: python-distlib
Version: 0.3.8
Release: 1
Summary: A library of packaging functionality
License: Python-2.0
URL: https://github.com/pypa/distlib
# https://pypi.org/project/distlib/#files
Source0: https://files.pythonhosted.org/packages/c4/91/e2df406fb4efacdf46871c25cde65d3c6ee5e173b7e5a4547a47bae91920/distlib-0.3.8.tar.gz
BuildArch: noarch
%description
A library of packaging functionality which is intended to be used as the
basis for third-party packaging tools.
%package -n python3-distlib
Summary: A library of packaging functionality
%{?python_provide:%python_provide python3-distlib}
%package -n python3-distlib
Summary: A library of packaging functionality
Provides: python-distlib = %{version}-%{release}
BuildRequires: python3-devel
BuildRequires: python3-pip
BuildRequires: python3-wheel
BuildRequires: python3-setuptools
%description -n python3-distlib
A library of packaging functionality which is intended to be used as the
basis for third-party packaging tools.
%package help
Summary: Development documents and examples for distlib
Provides: python3-distlib-doc
%description help
A library of packaging functionality which is intended to be used as the
basis for third-party packaging tools.
%prep
%autosetup -n distlib-%{version} -p1
rm distlib/*.exe
%build
%py3_build
%if %{with check}
%check
export PYTHONHASHSEED=0
%{python3} setup.py test
%endif
%pyproject_build
%install
%py3_install
%pyproject_install distlib==%{version}
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{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 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}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
%files -n python3-distlib
%doc README.rst LICENSE.txt
%{python3_sitelib}/distlib*
%files -n python3-distlib -f filelist.lst
%dir %{python3_sitelib}/*
%{python3_sitelib}/distlib
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Wed Jan 10 2024 zhangxianting <zhangxianting@uniontech.com> - 0.3.8-1
- Update package to version 0.3.8
* Thu Jul 27 2023 zhangchenglin <zhangchenglin@kylinos.cn> - 0.3.7-1
- Update package to version 0.3.7
* Thu Apr 27 2023 caodongxia <caodongxia@h-partners.com> - 0.3.6-2
- Adapting to the pyproject.toml compilation mode
* Fri Dec 02 2022 wangjunqi <wangjunqi@kylinos.cn> - 0.3.6-1
- Update package to version 0.3.6
* Thu Aug 04 2022 liqiuyu <liqiuyu@kylinos.cn> - 0.3.5-1
- update to 0.3.5
* Thu Dec 09 2021 shixuantong <shixuantong@huawei.com> - 0.3.4-1
- update version to 0.3.4