diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-eyeflow-sdk.spec | 100 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 102 insertions, 0 deletions
@@ -0,0 +1 @@ +/eyeflow_sdk-1.1.7.tar.gz diff --git a/python-eyeflow-sdk.spec b/python-eyeflow-sdk.spec new file mode 100644 index 0000000..4e757e6 --- /dev/null +++ b/python-eyeflow-sdk.spec @@ -0,0 +1,100 @@ +%global _empty_manifest_terminate_build 0 +Name: python-eyeflow-sdk +Version: 1.1.7 +Release: 1 +Summary: Functions and classes for development of Eyeflow Applications +License: MIT License +URL: https://github.com/siliconlife-ai/eyeflow_sdk-pkg +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/56/c7/02c43315be0d633e1263e54aa4713630693bc9beadb102160f1034db9a66/eyeflow_sdk-1.1.7.tar.gz +BuildArch: noarch + +Requires: python3-arrow +Requires: python3-azure-storage-blob +Requires: python3-dnspython +Requires: python3-h5py +Requires: python3-numpy +Requires: python3-opencv-python +Requires: python3-pika +Requires: python3-pillow +Requires: python3-protobuf +Requires: python3-psutil +Requires: python3-pyjwt +Requires: python3-pymongo +Requires: python3-pynvml +Requires: python3-dateutil +Requires: python3-pyyaml +Requires: python3-xmltodict + +%description +# eyeflow_sdk-pkg +Package for development of Eyeflow applications + + + + +%package -n python3-eyeflow-sdk +Summary: Functions and classes for development of Eyeflow Applications +Provides: python-eyeflow-sdk +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-eyeflow-sdk +# eyeflow_sdk-pkg +Package for development of Eyeflow applications + + + + +%package help +Summary: Development documents and examples for eyeflow-sdk +Provides: python3-eyeflow-sdk-doc +%description help +# eyeflow_sdk-pkg +Package for development of Eyeflow applications + + + + +%prep +%autosetup -n eyeflow-sdk-1.1.7 + +%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-eyeflow-sdk -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 1.1.7-1 +- Package Spec generated @@ -0,0 +1 @@ +6d3b3a142ea3308a3c70df0a07d464ed eyeflow_sdk-1.1.7.tar.gz |