Compare commits
10 Commits
9c6f39df1d
...
5bce67b4c6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5bce67b4c6 | ||
|
|
2f091c5bf9 | ||
|
|
7cc5205dfe | ||
|
|
3ab8f97925 | ||
|
|
af5c977c0b | ||
|
|
2d5f799103 | ||
|
|
dfeba1fdf4 | ||
|
|
49f95e6713 | ||
|
|
e02904c935 | ||
|
|
adfc0ebcba |
Binary file not shown.
BIN
distlib-0.3.8.tar.gz
Normal file
BIN
distlib-0.3.8.tar.gz
Normal file
Binary file not shown.
@ -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
|
|
||||||
|
|
||||||
@ -1,50 +1,96 @@
|
|||||||
%bcond_with check
|
%global _empty_manifest_terminate_build 0
|
||||||
|
Name: python-distlib
|
||||||
Name: python-distlib
|
Version: 0.3.8
|
||||||
Version: 0.3.4
|
Release: 1
|
||||||
Release: 1
|
Summary: A library of packaging functionality
|
||||||
Summary: A library of packaging functionality
|
License: Python-2.0
|
||||||
License: Python-2.0
|
URL: https://github.com/pypa/distlib
|
||||||
URL: https://readthedocs.org/projects/distlib/
|
# https://pypi.org/project/distlib/#files
|
||||||
Source0: %pypi_source distlib %{version} zip
|
Source0: https://files.pythonhosted.org/packages/c4/91/e2df406fb4efacdf46871c25cde65d3c6ee5e173b7e5a4547a47bae91920/distlib-0.3.8.tar.gz
|
||||||
Patch0000: distlib_unbundle.patch
|
BuildArch: noarch
|
||||||
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
|
||||||
%{?python_provide:%python_provide python3-distlib}
|
Provides: python-distlib = %{version}-%{release}
|
||||||
|
BuildRequires: python3-devel
|
||||||
|
BuildRequires: python3-pip
|
||||||
|
BuildRequires: python3-wheel
|
||||||
|
BuildRequires: python3-setuptools
|
||||||
%description -n python3-distlib
|
%description -n python3-distlib
|
||||||
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 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
|
%prep
|
||||||
%autosetup -n distlib-%{version} -p1
|
%autosetup -n distlib-%{version} -p1
|
||||||
|
|
||||||
rm distlib/*.exe
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%pyproject_build
|
||||||
|
|
||||||
%if %{with check}
|
|
||||||
%check
|
|
||||||
export PYTHONHASHSEED=0
|
|
||||||
%{python3} setup.py test
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%install
|
%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
|
%files -n python3-distlib -f filelist.lst
|
||||||
%doc README.rst LICENSE.txt
|
%dir %{python3_sitelib}/*
|
||||||
%{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