diff options
author | CoprDistGit <infra@openeuler.org> | 2023-06-09 06:46:44 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-06-09 06:46:44 +0000 |
commit | 521c7c366910e52b616109f08d09a9b5484d67d1 (patch) | |
tree | 7991ba5e543347af3b9ca24ef0b80840716e7200 | |
parent | 1b54683da1ac747c6ed8b5a2cf34de5a0ab0a29c (diff) |
automatic import of python-findopeneuler20.03
-rw-r--r-- | python-find.spec | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/python-find.spec b/python-find.spec index edc3aeb..df9980c 100644 --- a/python-find.spec +++ b/python-find.spec @@ -5,7 +5,7 @@ Release: 1 Summary: find files and dirs License: Unlicense URL: https://github.com/andrewp-as-is/find.py -Source0: https://mirrors.nju.edu.cn/pypi/web/packages/91/1c/90cac4602ec146ce6f055b2e9598f46da08e941dd860f0498af764407b7e/find-2020.12.3.tar.gz +Source0: https://mirrors.aliyun.com/pypi/web/packages/91/1c/90cac4602ec146ce6f055b2e9598f46da08e941dd860f0498af764407b7e/find-2020.12.3.tar.gz BuildArch: noarch @@ -120,20 +120,20 @@ 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 + 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 + 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 + 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 + 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 + find usr/share/man -type f -printf "\"/%h/%f.gz\"\n" >> doclist.lst fi popd mv %{buildroot}/filelist.lst . @@ -146,5 +146,5 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog -* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 2020.12.3-1 +* Fri Jun 09 2023 Python_Bot <Python_Bot@openeuler.org> - 2020.12.3-1 - Package Spec generated |