summaryrefslogtreecommitdiff
path: root/python-gordo-components.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-06-20 04:02:05 +0000
committerCoprDistGit <infra@openeuler.org>2023-06-20 04:02:05 +0000
commit2725c83e39a8b98952ff2a9c82074baa681adbc7 (patch)
tree02ac8eef3c2628f854ec3ce2f39c320069b68e1a /python-gordo-components.spec
parent716a2cf343ff97d7d73ee897b836d74cf05f52e8 (diff)
automatic import of python-gordo-componentsopeneuler20.03
Diffstat (limited to 'python-gordo-components.spec')
-rw-r--r--python-gordo-components.spec104
1 files changed, 104 insertions, 0 deletions
diff --git a/python-gordo-components.spec b/python-gordo-components.spec
new file mode 100644
index 0000000..a32df45
--- /dev/null
+++ b/python-gordo-components.spec
@@ -0,0 +1,104 @@
+%global _empty_manifest_terminate_build 0
+Name: python-gordo-components
+Version: 0.47.0
+Release: 1
+Summary: Train and build models for Argo / Kubernetes
+License: AGPLv3
+URL: https://github.com/equinor/gordo-components
+Source0: https://mirrors.aliyun.com/pypi/web/packages/be/e1/23a4882b2423b2ea30d00902474d806ecdd8195b0727d0c82f66e2545d6d/gordo-components-0.47.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-apscheduler
+Requires: python3-Click
+Requires: python3-cachetools
+Requires: python3-dictdiffer
+Requires: python3-dataclasses-json
+Requires: python3-gunicorn
+Requires: python3-h5py
+Requires: python3-influxdb
+Requires: python3-jinja2
+Requires: python3-pyarrow
+Requires: python3-numpy
+Requires: python3-pandas
+Requires: python3-peewee
+Requires: python3-numexpr
+Requires: python3-psycopg2-binary
+Requires: python3-dateutil
+Requires: python3-pyyaml
+Requires: python3-requests
+Requires: python3-scikit-learn
+Requires: python3-tensorflow
+Requires: python3-Flask
+Requires: python3-flask-restplus
+Requires: python3-azure-datalake-store
+Requires: python3-kubernetes
+Requires: python3-cchardet
+Requires: python3-urllib3
+Requires: python3-simplejson
+Requires: python3-gevent
+Requires: python3-catboost
+Requires: python3-typing-extensions
+Requires: python3-mlflow
+Requires: python3-azureml-contrib-run
+
+%description
+
+
+%package -n python3-gordo-components
+Summary: Train and build models for Argo / Kubernetes
+Provides: python-gordo-components
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-gordo-components
+
+
+%package help
+Summary: Development documents and examples for gordo-components
+Provides: python3-gordo-components-doc
+%description help
+
+
+%prep
+%autosetup -n gordo-components-0.47.0
+
+%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-gordo-components -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Jun 20 2023 Python_Bot <Python_Bot@openeuler.org> - 0.47.0-1
+- Package Spec generated