diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-kthbuild.spec | 18 | ||||
-rw-r--r-- | sources | 2 |
3 files changed, 11 insertions, 10 deletions
@@ -1 +1,2 @@ /kthbuild-2.8.1.tar.gz +/kthbuild-2.9.1.tar.gz diff --git a/python-kthbuild.spec b/python-kthbuild.spec index 06d9b9c..b6fe4bb 100644 --- a/python-kthbuild.spec +++ b/python-kthbuild.spec @@ -1,11 +1,11 @@ %global _empty_manifest_terminate_build 0 Name: python-kthbuild -Version: 2.8.1 +Version: 2.9.1 Release: 1 Summary: Knuth node build tools License: MIT URL: https://github.com/k-nuth/kthbuild -Source0: https://mirrors.nju.edu.cn/pypi/web/packages/39/ad/705a2071c118b593bd06dba0782d88f25b9727383da12f6a0070e80acaf0/kthbuild-2.8.1.tar.gz +Source0: https://mirrors.aliyun.com/pypi/web/packages/e2/a2/bb64ca9ce376d8190fa78fd3939fad818098521a94d6c13af3ae93d57ef2/kthbuild-2.9.1.tar.gz BuildArch: noarch @@ -28,7 +28,7 @@ Provides: python3-kthbuild-doc Knuth Building Tools (Alpha version) %prep -%autosetup -n kthbuild-2.8.1 +%autosetup -n kthbuild-2.9.1 %build %py3_build @@ -42,20 +42,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 . @@ -68,5 +68,5 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog -* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 2.8.1-1 +* Thu Jun 08 2023 Python_Bot <Python_Bot@openeuler.org> - 2.9.1-1 - Package Spec generated @@ -1 +1 @@ -e33ca383575f0de73e020d2189ea5e51 kthbuild-2.8.1.tar.gz +c1bf2da3d1fc3512e23ee6b16979ad16 kthbuild-2.9.1.tar.gz |