summaryrefslogtreecommitdiff
path: root/python-stakenix.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-18 04:23:40 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-18 04:23:40 +0000
commite6c9ecd5fd83769ba7c4c7d79c6404b87f58e058 (patch)
tree458932d06e2239e7c7fb66a306fa95c13a8bb8c5 /python-stakenix.spec
parent919a67b4a8c681c0a3723223b4829bfce54ee055 (diff)
automatic import of python-stakenix
Diffstat (limited to 'python-stakenix.spec')
-rw-r--r--python-stakenix.spec87
1 files changed, 87 insertions, 0 deletions
diff --git a/python-stakenix.spec b/python-stakenix.spec
new file mode 100644
index 0000000..97cca53
--- /dev/null
+++ b/python-stakenix.spec
@@ -0,0 +1,87 @@
+%global _empty_manifest_terminate_build 0
+Name: python-stakenix
+Version: 0.2.7
+Release: 1
+Summary: Package for work with different DB's by a simple interface
+License: MIT
+URL: https://pypi.org/project/stakenix/
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/42/8c/9a6431a317ff8ae74edc439b3d9368f938646ba722b3596ca332246bb903/stakenix-0.2.7.tar.gz
+BuildArch: noarch
+
+Requires: python3-pyodbc
+Requires: python3-mysql-connector
+Requires: python3-clickhouse-sqlalchemy
+Requires: python3-clickhouse-driver
+Requires: python3-pymongo
+Requires: python3-sshtunnel
+Requires: python3-pandas
+Requires: python3-PyYAML
+Requires: python3-openpyxl
+Requires: python3-psycopg2-binary
+Requires: python3-SQLAlchemy
+Requires: python3-google-cloud-bigquery-storage
+Requires: python3-pyarrow
+Requires: python3-sqlalchemy-bigquery
+Requires: python3-pymssql
+
+%description
+
+
+%package -n python3-stakenix
+Summary: Package for work with different DB's by a simple interface
+Provides: python-stakenix
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-stakenix
+
+
+%package help
+Summary: Development documents and examples for stakenix
+Provides: python3-stakenix-doc
+%description help
+
+
+%prep
+%autosetup -n stakenix-0.2.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-stakenix -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu May 18 2023 Python_Bot <Python_Bot@openeuler.org> - 0.2.7-1
+- Package Spec generated