Compare commits
10 Commits
28a8464509
...
795a9a44bc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
795a9a44bc | ||
|
|
5ed00502cc | ||
|
|
f37c19cfb5 | ||
|
|
c0ec2ede10 | ||
|
|
e5fa806da1 | ||
|
|
e2e16d6893 | ||
|
|
d9dcd3698e | ||
|
|
75caa9c8c3 | ||
|
|
9ef2e713e3 | ||
|
|
a217ad2c46 |
@ -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
|
|
||||||
|
|
||||||
Binary file not shown.
BIN
jaraco.functools-4.0.0.tar.gz
Normal file
BIN
jaraco.functools-4.0.0.tar.gz
Normal file
Binary file not shown.
@ -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.5.2
|
Version: 4.0.0
|
||||||
Release: 2
|
Release: 1
|
||||||
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/b4/ea/9abca360081de9157668fcc52765989158aaf29b4826f26fcb17852d08e6/jaraco.functools-3.5.2.tar.gz
|
Source0: https://files.pythonhosted.org/packages/57/7c/fe770e264913f9a49ddb9387cca2757b8d7d26f06735c1bfbb018912afce/jaraco.functools-4.0.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
|
||||||
@ -38,50 +37,40 @@ Provides: python3-jaraco-functools-doc
|
|||||||
Documentation for jaraco-functools
|
Documentation for jaraco-functools
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n jaraco.functools-%{version}
|
%autosetup -n jaraco.functools-%{version} -p1
|
||||||
%patch0
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%pyproject_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%py3_install
|
%pyproject_install
|
||||||
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
|
%files -n python3-jaraco-functools
|
||||||
%{python3_sitelib}/b*
|
%{python3_sitelib}/*
|
||||||
%exclude %{python3_sitelib}/b/__pycache__/
|
|
||||||
%{python3_sitelib}/jaraco.functools-%{version}-py%{python3_version}.egg-info/
|
|
||||||
%{python3_sitelib}/jaraco/
|
|
||||||
|
|
||||||
%files help -f doclist.lst
|
%files help
|
||||||
%{_docdir}/*
|
%{_docdir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Feb 21 2024 jiangxinyu <jiangxinyu@kylinos.cn> - 4.0.0-1
|
||||||
|
- Update package to version 4.0.0
|
||||||
|
|
||||||
|
* Tue Jul 04 2023 chenzixuan <chenzixuan@kylinos.cn> - 3.8.0-1
|
||||||
|
- Update package to version 3.8.0
|
||||||
|
|
||||||
|
* 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
|
||||||
|
- Update package to version 3.6.0
|
||||||
|
|
||||||
|
* Mon Feb 27 2023 yaoxin <yaoxin30@h-partners.com> - 3.5.2-3
|
||||||
|
- Fix installation conflicts between python3-jaraco-functools and python3-tempora
|
||||||
|
|
||||||
* Fri Feb 24 2023 yaoxin <yaoxin30@h-partners.com> - 3.5.2-2
|
* Fri Feb 24 2023 yaoxin <yaoxin30@h-partners.com> - 3.5.2-2
|
||||||
- Fix installation conflicts between python3-jaraco-functools and python3-importlib-metadata
|
- Fix installation conflicts between python3-jaraco-functools and python3-importlib-metadata
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user