diff options
author | CoprDistGit <infra@openeuler.org> | 2023-06-08 17:46:46 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-06-08 17:46:46 +0000 |
commit | 6dcdc9d489b9b8769681a954be3009ee5cb70abd (patch) | |
tree | 23a59056b672b8442f33d70647397c291a1919cd | |
parent | acdd64fec33ee811e3946c36265d50f5d9e8c671 (diff) |
automatic import of python-nn-builderopeneuler20.03
-rw-r--r-- | python-nn-builder.spec | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/python-nn-builder.spec b/python-nn-builder.spec index 2fa66fd..1657b10 100644 --- a/python-nn-builder.spec +++ b/python-nn-builder.spec @@ -5,7 +5,7 @@ Release: 1 Summary: Build neural networks in 1 line License: MIT License URL: https://github.com/p-christ/nn_builder -Source0: https://mirrors.nju.edu.cn/pypi/web/packages/6f/2e/4db9d142ad6c39a91503bdde1bb1f0d8ebe796dc4de34dabc335de0a7781/nn_builder-1.0.5.tar.gz +Source0: https://mirrors.aliyun.com/pypi/web/packages/6f/2e/4db9d142ad6c39a91503bdde1bb1f0d8ebe796dc4de34dabc335de0a7781/nn_builder-1.0.5.tar.gz BuildArch: noarch Requires: python3-tensorflow @@ -50,7 +50,7 @@ model = NN(input_dim=5, layers_info=[10, 10, 1], output_activation=None, hidden_ dropout=0.0, initialiser="xavier", batch_norm=False) %prep -%autosetup -n nn-builder-1.0.5 +%autosetup -n nn_builder-1.0.5 %build %py3_build @@ -64,20 +64,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 . @@ -90,5 +90,5 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog -* Tue May 30 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.5-1 +* Thu Jun 08 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.5-1 - Package Spec generated |