diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-dsw-tdk.spec | 18 | ||||
-rw-r--r-- | sources | 2 |
3 files changed, 11 insertions, 10 deletions
@@ -1 +1,2 @@ /dsw-tdk-3.23.0.tar.gz +/dsw-tdk-3.24.0.tar.gz diff --git a/python-dsw-tdk.spec b/python-dsw-tdk.spec index 1ac1342..ff21015 100644 --- a/python-dsw-tdk.spec +++ b/python-dsw-tdk.spec @@ -1,11 +1,11 @@ %global _empty_manifest_terminate_build 0 Name: python-dsw-tdk -Version: 3.23.0 +Version: 3.24.0 Release: 1 Summary: Data Stewardship Wizard Template Development Toolkit License: Apache License 2.0 URL: https://ds-wizard.org -Source0: https://mirrors.nju.edu.cn/pypi/web/packages/d8/f9/5f1e81859268324942292d64cc66fde8c239a4bc925a9afd6b67b4a235c8/dsw-tdk-3.23.0.tar.gz +Source0: https://mirrors.aliyun.com/pypi/web/packages/49/d9/27dbda6af7172050113f7a2deabf8242b4595faefc9a0572b59a4e236a93/dsw-tdk-3.24.0.tar.gz BuildArch: noarch Requires: python3-aiohttp @@ -396,7 +396,7 @@ This project is licensed under the Apache 2 License - see the [LICENSE](LICENSE) %prep -%autosetup -n dsw-tdk-3.23.0 +%autosetup -n dsw-tdk-3.24.0 %build %py3_build @@ -410,20 +410,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 . @@ -436,5 +436,5 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog -* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 3.23.0-1 +* Fri Jun 09 2023 Python_Bot <Python_Bot@openeuler.org> - 3.24.0-1 - Package Spec generated @@ -1 +1 @@ -125109b75807b13db35ea5a17bfff515 dsw-tdk-3.23.0.tar.gz +5d313c9fb212c35cac744f4bbdc17351 dsw-tdk-3.24.0.tar.gz |