Use pyproject to compile package
This commit is contained in:
parent
d9dcd3698e
commit
e2e16d6893
@ -1,25 +0,0 @@
|
|||||||
From d168176f5b942062208eb6dfd1185dfacb599dad Mon Sep 17 00:00:00 2001
|
|
||||||
From: liqiuyu123 <liqiuyu@kylinos.cn>
|
|
||||||
Date: Wed, 7 Dec 2022 16:24:54 +0800
|
|
||||||
Subject: [PATCH] add setup.py
|
|
||||||
|
|
||||||
---
|
|
||||||
setup.py | 6 ++++++
|
|
||||||
1 file changed, 6 insertions(+)
|
|
||||||
create mode 100644 setup.py
|
|
||||||
|
|
||||||
diff --git a/setup.py b/setup.py
|
|
||||||
new file mode 100644
|
|
||||||
index 0000000..bac24a4
|
|
||||||
--- /dev/null
|
|
||||||
+++ b/setup.py
|
|
||||||
@@ -0,0 +1,6 @@
|
|
||||||
+#!/usr/bin/env python
|
|
||||||
+
|
|
||||||
+import setuptools
|
|
||||||
+
|
|
||||||
+if __name__ == "__main__":
|
|
||||||
+ setuptools.setup()
|
|
||||||
--
|
|
||||||
2.37.1.windows.1
|
|
||||||
|
|
||||||
@ -1,12 +1,11 @@
|
|||||||
%global _empty_manifest_terminate_build 0
|
%global _empty_manifest_terminate_build 0
|
||||||
Name: python-jaraco-functools
|
Name: python-jaraco-functools
|
||||||
Version: 3.6.0
|
Version: 3.6.0
|
||||||
Release: 1
|
Release: 2
|
||||||
Summary: Functools like those found in stdlib
|
Summary: Functools like those found in stdlib
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://pypi.org/project/jaraco.functools/
|
URL: https://pypi.org/project/jaraco.functools/
|
||||||
Source0: https://files.pythonhosted.org/packages/6d/82/e94ee23a7924ab1c3b617e42ddee24a60add7d988497d5cde8ae524b1525/jaraco.functools-3.6.0.tar.gz
|
Source0: https://files.pythonhosted.org/packages/6d/82/e94ee23a7924ab1c3b617e42ddee24a60add7d988497d5cde8ae524b1525/jaraco.functools-3.6.0.tar.gz
|
||||||
Patch0: 0001-add-setup.py.patch
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
Requires: python3-more-itertools
|
Requires: python3-more-itertools
|
||||||
@ -25,7 +24,7 @@ Functools like those found in stdlib
|
|||||||
Summary: Functools like those found in stdlib
|
Summary: Functools like those found in stdlib
|
||||||
Provides: python-jaraco-functools = %{version}-%{release}
|
Provides: python-jaraco-functools = %{version}-%{release}
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-pip python3-wheel python3-flit
|
||||||
BuildRequires: python3-setuptools_scm
|
BuildRequires: python3-setuptools_scm
|
||||||
BuildRequires: python3-toml
|
BuildRequires: python3-toml
|
||||||
%description -n python3-jaraco-functools
|
%description -n python3-jaraco-functools
|
||||||
@ -41,43 +40,25 @@ Documentation for jaraco-functools
|
|||||||
%autosetup -n jaraco.functools-%{version} -p1
|
%autosetup -n jaraco.functools-%{version} -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%pyproject_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%py3_install
|
%pyproject_install jaraco-functools==%{version}
|
||||||
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
||||||
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
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
|
|
||||||
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-jaraco-functools -f filelist.lst
|
%files -n python3-jaraco-functools
|
||||||
%dir %{python3_sitelib}/*
|
%{python3_sitelib}/*
|
||||||
|
|
||||||
%files help -f doclist.lst
|
%files help
|
||||||
%{_docdir}/*
|
%{_docdir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Apr 28 2023 jiangxinyu <jiangxinyu@kylinos.cn> - 3.6.0-2
|
||||||
|
- Use pyproject to compile package
|
||||||
|
|
||||||
* Thu Mar 30 2023 wubijie <wubijie@kylinos.cn> - 3.6.0-1
|
* Thu Mar 30 2023 wubijie <wubijie@kylinos.cn> - 3.6.0-1
|
||||||
- Update package to version 3.6.0
|
- Update package to version 3.6.0
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user