summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-31 03:14:35 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-31 03:14:35 +0000
commit3f0d8f5ae5bf504d7eab4f9e63d1562762a89c59 (patch)
treeb8d48d674ec2298ab53ee2102d53dd85f7d32957
parentb8f3bd3c5095e5db4cfc65d975043a59bc7a9040 (diff)
automatic import of python-beyonic
-rw-r--r--.gitignore1
-rw-r--r--python-beyonic.spec201
-rw-r--r--sources1
3 files changed, 203 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..fd597b2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/beyonic-0.1.16.tar.gz
diff --git a/python-beyonic.spec b/python-beyonic.spec
new file mode 100644
index 0000000..e495868
--- /dev/null
+++ b/python-beyonic.spec
@@ -0,0 +1,201 @@
+%global _empty_manifest_terminate_build 0
+Name: python-beyonic
+Version: 0.1.16
+Release: 1
+Summary: The official Python client for the Beyonic.com API
+License: MIT
+URL: https://beyonic.com
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/ab/59/82abba87f24922c7bd13c4a5cd7497c88524034f9fd9d14f9148e8efffec/beyonic-0.1.16.tar.gz
+BuildArch: noarch
+
+
+%description
+# Beyonic Python Library
+
+The official Python library for interacting with http://beyonic.com API
+
+## Installation
+
+You don't need this source code unless you want to modify the package. If you just want to use the Beyonic Python bindings, you should run:
+
+```python
+pip install beyonic
+```
+
+or
+
+```python
+easy_install beyonic
+```
+
+or manually
+
+```python
+git clone https://github.com/beyonic/beyonic-python.git
+cd beyonic-python
+python setup.py install
+```
+
+## Usage
+
+Please visit https://apidocs.beyonic.com/ for usage documentation
+
+## Development
+
+Please see DEVELOPMENT.md for information on adding installing requirements, adding new API methods and running tests
+
+## Changelog
+
+0.1.8
+- Added `Accounts API Wrapper` for interacting with the `accounts api`.
+
+0.1.14
+- Added Network and Currency APIs and ability to set Duplicate-Check-Key header for each request
+
+0.1.15
+- Added `banks API wrapper` for interacting with `the banks api`
+
+%package -n python3-beyonic
+Summary: The official Python client for the Beyonic.com API
+Provides: python-beyonic
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-beyonic
+# Beyonic Python Library
+
+The official Python library for interacting with http://beyonic.com API
+
+## Installation
+
+You don't need this source code unless you want to modify the package. If you just want to use the Beyonic Python bindings, you should run:
+
+```python
+pip install beyonic
+```
+
+or
+
+```python
+easy_install beyonic
+```
+
+or manually
+
+```python
+git clone https://github.com/beyonic/beyonic-python.git
+cd beyonic-python
+python setup.py install
+```
+
+## Usage
+
+Please visit https://apidocs.beyonic.com/ for usage documentation
+
+## Development
+
+Please see DEVELOPMENT.md for information on adding installing requirements, adding new API methods and running tests
+
+## Changelog
+
+0.1.8
+- Added `Accounts API Wrapper` for interacting with the `accounts api`.
+
+0.1.14
+- Added Network and Currency APIs and ability to set Duplicate-Check-Key header for each request
+
+0.1.15
+- Added `banks API wrapper` for interacting with `the banks api`
+
+%package help
+Summary: Development documents and examples for beyonic
+Provides: python3-beyonic-doc
+%description help
+# Beyonic Python Library
+
+The official Python library for interacting with http://beyonic.com API
+
+## Installation
+
+You don't need this source code unless you want to modify the package. If you just want to use the Beyonic Python bindings, you should run:
+
+```python
+pip install beyonic
+```
+
+or
+
+```python
+easy_install beyonic
+```
+
+or manually
+
+```python
+git clone https://github.com/beyonic/beyonic-python.git
+cd beyonic-python
+python setup.py install
+```
+
+## Usage
+
+Please visit https://apidocs.beyonic.com/ for usage documentation
+
+## Development
+
+Please see DEVELOPMENT.md for information on adding installing requirements, adding new API methods and running tests
+
+## Changelog
+
+0.1.8
+- Added `Accounts API Wrapper` for interacting with the `accounts api`.
+
+0.1.14
+- Added Network and Currency APIs and ability to set Duplicate-Check-Key header for each request
+
+0.1.15
+- Added `banks API wrapper` for interacting with `the banks api`
+
+%prep
+%autosetup -n beyonic-0.1.16
+
+%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-beyonic -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.16-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..93508f7
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+cc7f3f710074ac4eae68af08b70e6373 beyonic-0.1.16.tar.gz