diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-soundcloud-v2.spec | 159 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 161 insertions, 0 deletions
@@ -0,0 +1 @@ +/soundcloud-v2-1.3.1.tar.gz 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 + +[](https://github.com/7x11x13/soundcloud.py/actions/workflows/ci.yml)[](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 + +[](https://github.com/7x11x13/soundcloud.py/actions/workflows/ci.yml)[](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 + +[](https://github.com/7x11x13/soundcloud.py/actions/workflows/ci.yml)[](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 @@ -0,0 +1 @@ +702631b9eaf87eaa5e9037bd54c6bba6 soundcloud-v2-1.3.1.tar.gz |
