summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-18 07:37:10 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-18 07:37:10 +0000
commit335f26771ace12b526a2e7b2537d21f2cf7bb48c (patch)
tree0028388391d24ca00db682ec98f7d14c988c382d
parentdf54c4f1b879fa2628a00e4acc253e81fe297d8a (diff)
automatic import of python-aimaster
-rw-r--r--.gitignore1
-rw-r--r--python-aimaster.spec93
-rw-r--r--sources1
3 files changed, 95 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..289dea8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/aimaster-2.4.8.tar.gz
diff --git a/python-aimaster.spec b/python-aimaster.spec
new file mode 100644
index 0000000..849279b
--- /dev/null
+++ b/python-aimaster.spec
@@ -0,0 +1,93 @@
+%global _empty_manifest_terminate_build 0
+Name: python-aimaster
+Version: 2.4.8
+Release: 1
+Summary: Artificial Neural Network learning tools
+License: MIT
+URL: https://github.com/kasinathps/aimaster
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/27/5d/a04e45f4bb45aaf91e3d1c0d6bbd3e3add821d869c7e7ac44b26d1eb2fe7/aimaster-2.4.8.tar.gz
+BuildArch: noarch
+
+Requires: python3-numpy
+Requires: python3-scipy
+Requires: python3-matplotlib
+
+%description
+Artificial Neural Network learning and experimentation tools with live visualization.
+(NOTE: Donot use pipe visualization with very large networks 😅.)
+This module needs `numpy` and `scipy` installed.
+And `matplotlib` for visualization.
+Feel free to experiment with aimaster.
+## Installation
+Use `pip install aimaster` or `pip3 install aimaster` to install package from PyPI.
+
+%package -n python3-aimaster
+Summary: Artificial Neural Network learning tools
+Provides: python-aimaster
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-aimaster
+Artificial Neural Network learning and experimentation tools with live visualization.
+(NOTE: Donot use pipe visualization with very large networks 😅.)
+This module needs `numpy` and `scipy` installed.
+And `matplotlib` for visualization.
+Feel free to experiment with aimaster.
+## Installation
+Use `pip install aimaster` or `pip3 install aimaster` to install package from PyPI.
+
+%package help
+Summary: Development documents and examples for aimaster
+Provides: python3-aimaster-doc
+%description help
+Artificial Neural Network learning and experimentation tools with live visualization.
+(NOTE: Donot use pipe visualization with very large networks 😅.)
+This module needs `numpy` and `scipy` installed.
+And `matplotlib` for visualization.
+Feel free to experiment with aimaster.
+## Installation
+Use `pip install aimaster` or `pip3 install aimaster` to install package from PyPI.
+
+%prep
+%autosetup -n aimaster-2.4.8
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{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 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-aimaster -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu May 18 2023 Python_Bot <Python_Bot@openeuler.org> - 2.4.8-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..4ac645b
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+20bf8cec72eeb07d1dfabd5734d805ac aimaster-2.4.8.tar.gz