summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-05 13:37:38 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-05 13:37:38 +0000
commitdccacec566fabcf395165a17698916b080d6cd3b (patch)
tree55da49c4d4c5cbeb390d43fd8a962349a225a9c5
parent58bb004208c08732c5bb1b178ad4c9f6a9d4bb55 (diff)
automatic import of python-etebaseopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-etebase.spec174
-rw-r--r--sources1
3 files changed, 176 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..39e36dc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/etebase-0.31.5.tar.gz
diff --git a/python-etebase.spec b/python-etebase.spec
new file mode 100644
index 0000000..4948556
--- /dev/null
+++ b/python-etebase.spec
@@ -0,0 +1,174 @@
+%global _empty_manifest_terminate_build 0
+Name: python-etebase
+Version: 0.31.5
+Release: 1
+Summary: Python client library for Etebase
+License: BSD-3-Clause
+URL: https://github.com/etesync/etebase-py
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/a1/c6/0f33ab4b82acf71d133c074ab10a89debc6ebbe96b05bda1e74459d47d8a/etebase-0.31.5.tar.gz
+
+Requires: python3-msgpack
+
+%description
+<p align="center">
+ <img width="120" src="https://github.com/etesync/etesync-web/blob/master/src/images/logo.svg" />
+ <h1 align="center">Etebase - Encrypt Everything</h1>
+</p>
+
+A Python library for Etebase
+
+This package is implemented in Rust and exposes a Python API for people to use.
+
+![GitHub tag](https://img.shields.io/github/tag/etesync/etebase-py.svg)
+[![PyPI](https://img.shields.io/pypi/v/etebase.svg)](https://pypi.python.org/pypi/etebase/)
+[![Build Status](https://github.com/etesync/etebase-py/workflows/Build/badge.svg)](https://github.com/etesync/etebase-py/actions/)
+[![Chat on freenode](https://img.shields.io/badge/chat-IRC%20|%20Matrix%20|%20Web-blue.svg)](https://www.etebase.com/community-chat/)
+
+# Documentation
+
+In addition to the API documentation, there are docs available at https://docs.etebase.com
+
+# Build
+
+## Install deps
+
+```
+pip install wheel setuptools setuptools-rust
+```
+
+## Build
+
+```
+python setup.py bdist_wheel
+```
+
+
+
+
+%package -n python3-etebase
+Summary: Python client library for Etebase
+Provides: python-etebase
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+BuildRequires: python3-cffi
+BuildRequires: gcc
+BuildRequires: gdb
+%description -n python3-etebase
+<p align="center">
+ <img width="120" src="https://github.com/etesync/etesync-web/blob/master/src/images/logo.svg" />
+ <h1 align="center">Etebase - Encrypt Everything</h1>
+</p>
+
+A Python library for Etebase
+
+This package is implemented in Rust and exposes a Python API for people to use.
+
+![GitHub tag](https://img.shields.io/github/tag/etesync/etebase-py.svg)
+[![PyPI](https://img.shields.io/pypi/v/etebase.svg)](https://pypi.python.org/pypi/etebase/)
+[![Build Status](https://github.com/etesync/etebase-py/workflows/Build/badge.svg)](https://github.com/etesync/etebase-py/actions/)
+[![Chat on freenode](https://img.shields.io/badge/chat-IRC%20|%20Matrix%20|%20Web-blue.svg)](https://www.etebase.com/community-chat/)
+
+# Documentation
+
+In addition to the API documentation, there are docs available at https://docs.etebase.com
+
+# Build
+
+## Install deps
+
+```
+pip install wheel setuptools setuptools-rust
+```
+
+## Build
+
+```
+python setup.py bdist_wheel
+```
+
+
+
+
+%package help
+Summary: Development documents and examples for etebase
+Provides: python3-etebase-doc
+%description help
+<p align="center">
+ <img width="120" src="https://github.com/etesync/etesync-web/blob/master/src/images/logo.svg" />
+ <h1 align="center">Etebase - Encrypt Everything</h1>
+</p>
+
+A Python library for Etebase
+
+This package is implemented in Rust and exposes a Python API for people to use.
+
+![GitHub tag](https://img.shields.io/github/tag/etesync/etebase-py.svg)
+[![PyPI](https://img.shields.io/pypi/v/etebase.svg)](https://pypi.python.org/pypi/etebase/)
+[![Build Status](https://github.com/etesync/etebase-py/workflows/Build/badge.svg)](https://github.com/etesync/etebase-py/actions/)
+[![Chat on freenode](https://img.shields.io/badge/chat-IRC%20|%20Matrix%20|%20Web-blue.svg)](https://www.etebase.com/community-chat/)
+
+# Documentation
+
+In addition to the API documentation, there are docs available at https://docs.etebase.com
+
+# Build
+
+## Install deps
+
+```
+pip install wheel setuptools setuptools-rust
+```
+
+## Build
+
+```
+python setup.py bdist_wheel
+```
+
+
+
+
+%prep
+%autosetup -n etebase-0.31.5
+
+%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-etebase -f filelist.lst
+%dir %{python3_sitearch}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.31.5-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..8fe9835
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+a6173145ce6d6b872e35bb25bd6e6184 etebase-0.31.5.tar.gz