From a5148a7b0d8b63088ea2c31a3fba396e19270b79 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Thu, 18 May 2023 04:10:58 +0000 Subject: automatic import of python-soundcloud-v2 --- python-soundcloud-v2.spec | 159 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 159 insertions(+) create mode 100644 python-soundcloud-v2.spec (limited to 'python-soundcloud-v2.spec') 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 - 1.3.1-1 +- Package Spec generated -- cgit v1.2.3