summaryrefslogtreecommitdiff
path: root/python-soundcloud-v2.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-18 04:10:58 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-18 04:10:58 +0000
commita5148a7b0d8b63088ea2c31a3fba396e19270b79 (patch)
tree499ace5bd1cbaba611cd8c29eef7be42e748c063 /python-soundcloud-v2.spec
parenta797baf5fe095225ecd43a95fc09859886188788 (diff)
automatic import of python-soundcloud-v2
Diffstat (limited to 'python-soundcloud-v2.spec')
-rw-r--r--python-soundcloud-v2.spec159
1 files changed, 159 insertions, 0 deletions
diff --git a/python-soundcloud-v2.spec b/python-soundcloud-v2.spec
new file mode 100644
index 0000000..159f324
--- /dev/null
+++ b/python-soundcloud-v2.spec
@@ -0,0 +1,159 @@
+%global _empty_manifest_terminate_build 0
+Name: python-soundcloud-v2
+Version: 1.3.1
+Release: 1
+Summary: Python wrapper for the v2 SoundCloud API
+License: MIT License
+URL: https://github.com/7x11x13/soundcloud.py
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/5f/96/96715641b33e555d0367d596405d30861609aeab6ce5035731bcac883220/soundcloud-v2-1.3.1.tar.gz
+BuildArch: noarch
+
+Requires: python3-dacite
+Requires: python3-dateutil
+Requires: python3-requests
+Requires: python3-coveralls
+Requires: python3-pytest
+Requires: python3-pytest-dotenv
+
+%description
+# soundcloud.py
+
+[![Tests](https://github.com/7x11x13/soundcloud.py/actions/workflows/ci.yml/badge.svg)](https://github.com/7x11x13/soundcloud.py/actions/workflows/ci.yml)[![Coverage Status](https://coveralls.io/repos/github/7x11x13/soundcloud.py/badge.svg?branch=main)](https://coveralls.io/github/7x11x13/soundcloud.py?branch=main)
+
+Python wrapper for some of the v2 SoundCloud API
+
+## Installation
+
+```bash
+pip install soundcloud-v2
+```
+
+## Example
+
+```python
+from soundcloud import SoundCloud
+
+sc = SoundCloud("client_id", "auth_token")
+assert sc.is_client_id_valid()
+assert sc.is_auth_token_valid()
+me = sc.get_user_by_username("7x11x13")
+assert me.permalink == "7x11x13"
+```
+
+## License
+[MIT](https://choosealicense.com/licenses/mit/)
+
+
+
+%package -n python3-soundcloud-v2
+Summary: Python wrapper for the v2 SoundCloud API
+Provides: python-soundcloud-v2
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-soundcloud-v2
+# soundcloud.py
+
+[![Tests](https://github.com/7x11x13/soundcloud.py/actions/workflows/ci.yml/badge.svg)](https://github.com/7x11x13/soundcloud.py/actions/workflows/ci.yml)[![Coverage Status](https://coveralls.io/repos/github/7x11x13/soundcloud.py/badge.svg?branch=main)](https://coveralls.io/github/7x11x13/soundcloud.py?branch=main)
+
+Python wrapper for some of the v2 SoundCloud API
+
+## Installation
+
+```bash
+pip install soundcloud-v2
+```
+
+## Example
+
+```python
+from soundcloud import SoundCloud
+
+sc = SoundCloud("client_id", "auth_token")
+assert sc.is_client_id_valid()
+assert sc.is_auth_token_valid()
+me = sc.get_user_by_username("7x11x13")
+assert me.permalink == "7x11x13"
+```
+
+## License
+[MIT](https://choosealicense.com/licenses/mit/)
+
+
+
+%package help
+Summary: Development documents and examples for soundcloud-v2
+Provides: python3-soundcloud-v2-doc
+%description help
+# soundcloud.py
+
+[![Tests](https://github.com/7x11x13/soundcloud.py/actions/workflows/ci.yml/badge.svg)](https://github.com/7x11x13/soundcloud.py/actions/workflows/ci.yml)[![Coverage Status](https://coveralls.io/repos/github/7x11x13/soundcloud.py/badge.svg?branch=main)](https://coveralls.io/github/7x11x13/soundcloud.py?branch=main)
+
+Python wrapper for some of the v2 SoundCloud API
+
+## Installation
+
+```bash
+pip install soundcloud-v2
+```
+
+## Example
+
+```python
+from soundcloud import SoundCloud
+
+sc = SoundCloud("client_id", "auth_token")
+assert sc.is_client_id_valid()
+assert sc.is_auth_token_valid()
+me = sc.get_user_by_username("7x11x13")
+assert me.permalink == "7x11x13"
+```
+
+## License
+[MIT](https://choosealicense.com/licenses/mit/)
+
+
+
+%prep
+%autosetup -n soundcloud-v2-1.3.1
+
+%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-soundcloud-v2 -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu May 18 2023 Python_Bot <Python_Bot@openeuler.org> - 1.3.1-1
+- Package Spec generated