Compare commits
No commits in common. "5bce67b4c675b3c28ed3cda1600594693defd8b0" and "9c6f39df1d172a3b60168f3363bc4c91d6345c2e" have entirely different histories.
5bce67b4c6
...
9c6f39df1d
BIN
distlib-0.3.4.zip
Normal file
BIN
distlib-0.3.4.zip
Normal file
Binary file not shown.
Binary file not shown.
18
distlib_unbundle.patch
Normal file
18
distlib_unbundle.patch
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
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
|
||||||
|
|
||||||
@ -1,96 +1,50 @@
|
|||||||
%global _empty_manifest_terminate_build 0
|
%bcond_with check
|
||||||
Name: python-distlib
|
|
||||||
Version: 0.3.8
|
Name: python-distlib
|
||||||
Release: 1
|
Version: 0.3.4
|
||||||
Summary: A library of packaging functionality
|
Release: 1
|
||||||
License: Python-2.0
|
Summary: A library of packaging functionality
|
||||||
URL: https://github.com/pypa/distlib
|
License: Python-2.0
|
||||||
# https://pypi.org/project/distlib/#files
|
URL: https://readthedocs.org/projects/distlib/
|
||||||
Source0: https://files.pythonhosted.org/packages/c4/91/e2df406fb4efacdf46871c25cde65d3c6ee5e173b7e5a4547a47bae91920/distlib-0.3.8.tar.gz
|
Source0: %pypi_source distlib %{version} zip
|
||||||
BuildArch: noarch
|
Patch0000: distlib_unbundle.patch
|
||||||
|
BuildRequires: python3-devel
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
A library of packaging functionality which is intended to be used as the
|
A library of packaging functionality which is intended to be used as the
|
||||||
basis for third-party packaging tools.
|
basis for third-party packaging tools.
|
||||||
|
|
||||||
%package -n python3-distlib
|
%package -n python3-distlib
|
||||||
Summary: A library of packaging functionality
|
Summary: A library of packaging functionality
|
||||||
Provides: python-distlib = %{version}-%{release}
|
%{?python_provide:%python_provide python3-distlib}
|
||||||
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
|
%description -n python3-distlib
|
||||||
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
|
A library of packaging functionality which is intended to be used as the
|
||||||
basis for third-party packaging tools.
|
basis for third-party packaging tools.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n distlib-%{version} -p1
|
%autosetup -n distlib-%{version} -p1
|
||||||
|
|
||||||
|
rm distlib/*.exe
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%pyproject_build
|
%py3_build
|
||||||
|
|
||||||
|
%if %{with check}
|
||||||
|
%check
|
||||||
|
export PYTHONHASHSEED=0
|
||||||
|
%{python3} setup.py test
|
||||||
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%pyproject_install distlib==%{version}
|
%py3_install
|
||||||
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 -f filelist.lst
|
%files -n python3-distlib
|
||||||
%dir %{python3_sitelib}/*
|
%doc README.rst LICENSE.txt
|
||||||
%{python3_sitelib}/distlib
|
%{python3_sitelib}/distlib*
|
||||||
|
|
||||||
%files help -f doclist.lst
|
|
||||||
%{_docdir}/*
|
|
||||||
|
|
||||||
%changelog
|
%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
|
* Thu Dec 09 2021 shixuantong <shixuantong@huawei.com> - 0.3.4-1
|
||||||
- update version to 0.3.4
|
- update version to 0.3.4
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user