diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-10 04:51:59 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-10 04:51:59 +0000 |
| commit | b6ecf63aec96e898e6055761ef1d99c37bcfc1ec (patch) | |
| tree | dc98b597b1a12bcc9c0b5c9b565875a2c6091d9e | |
| parent | 9b481a2d6cfd5cfcec4a713042a820f982a1f03f (diff) | |
automatic import of python-asteroid-filterbanksopeneuler20.03
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-asteroid-filterbanks.spec | 158 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 160 insertions, 0 deletions
@@ -0,0 +1 @@ +/asteroid-filterbanks-0.4.0.tar.gz diff --git a/python-asteroid-filterbanks.spec b/python-asteroid-filterbanks.spec new file mode 100644 index 0000000..63cdf18 --- /dev/null +++ b/python-asteroid-filterbanks.spec @@ -0,0 +1,158 @@ +%global _empty_manifest_terminate_build 0 +Name: python-asteroid-filterbanks +Version: 0.4.0 +Release: 1 +Summary: Asteroid's filterbanks +License: MIT +URL: https://github.com/asteroid-team/asteroid-filterbanks +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/90/fa/5c2be1f96dc179f83cdd3bb267edbd1f47d08f756785c016d5c2163901a7/asteroid-filterbanks-0.4.0.tar.gz +BuildArch: noarch + +Requires: python3-numpy +Requires: python3-torch +Requires: python3-typing-extensions +Requires: python3-librosa +Requires: python3-scipy + +%description +## Install +Latest release using pip: +```bash +pip install asteroid-filterbanks +``` +Dev install +```bash +git clone https://github.com/asteroid-team/asteroid-filterbanks +cd asteroid-filterbanks +pip install -e .["all"] +``` +## Citing Asteroid +```BibTex +@inproceedings{Pariente2020Asteroid, + title={Asteroid: the {PyTorch}-based audio source separation toolkit for researchers}, + author={Manuel Pariente and Samuele Cornell and Joris Cosentino and Sunit Sivasankaran and + Efthymios Tzinis and Jens Heitkaemper and Michel Olvera and Fabian-Robert Stöter and + Mathieu Hu and Juan M. Martín-Doñas and David Ditter and Ariel Frank and Antoine Deleforge + and Emmanuel Vincent}, + year={2020}, + booktitle={Proc. Interspeech}, +} +``` +[comment]: <> (Badge) +[codecov-badge]: https://codecov.io/gh/mpariente/asteroid-filterbanks/branch/master/graph/badge.svg +[codecov]: https://codecov.io/gh/asteroid-team/asteroid-filterbanks +[slack-badge]: https://img.shields.io/badge/slack-chat-green.svg?logo=slack +[slack-invite]: https://join.slack.com/t/asteroid-dev/shared_invite/zt-cn9y85t3-QNHXKD1Et7qoyzu1Ji5bcA + +%package -n python3-asteroid-filterbanks +Summary: Asteroid's filterbanks +Provides: python-asteroid-filterbanks +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-asteroid-filterbanks +## Install +Latest release using pip: +```bash +pip install asteroid-filterbanks +``` +Dev install +```bash +git clone https://github.com/asteroid-team/asteroid-filterbanks +cd asteroid-filterbanks +pip install -e .["all"] +``` +## Citing Asteroid +```BibTex +@inproceedings{Pariente2020Asteroid, + title={Asteroid: the {PyTorch}-based audio source separation toolkit for researchers}, + author={Manuel Pariente and Samuele Cornell and Joris Cosentino and Sunit Sivasankaran and + Efthymios Tzinis and Jens Heitkaemper and Michel Olvera and Fabian-Robert Stöter and + Mathieu Hu and Juan M. Martín-Doñas and David Ditter and Ariel Frank and Antoine Deleforge + and Emmanuel Vincent}, + year={2020}, + booktitle={Proc. Interspeech}, +} +``` +[comment]: <> (Badge) +[codecov-badge]: https://codecov.io/gh/mpariente/asteroid-filterbanks/branch/master/graph/badge.svg +[codecov]: https://codecov.io/gh/asteroid-team/asteroid-filterbanks +[slack-badge]: https://img.shields.io/badge/slack-chat-green.svg?logo=slack +[slack-invite]: https://join.slack.com/t/asteroid-dev/shared_invite/zt-cn9y85t3-QNHXKD1Et7qoyzu1Ji5bcA + +%package help +Summary: Development documents and examples for asteroid-filterbanks +Provides: python3-asteroid-filterbanks-doc +%description help +## Install +Latest release using pip: +```bash +pip install asteroid-filterbanks +``` +Dev install +```bash +git clone https://github.com/asteroid-team/asteroid-filterbanks +cd asteroid-filterbanks +pip install -e .["all"] +``` +## Citing Asteroid +```BibTex +@inproceedings{Pariente2020Asteroid, + title={Asteroid: the {PyTorch}-based audio source separation toolkit for researchers}, + author={Manuel Pariente and Samuele Cornell and Joris Cosentino and Sunit Sivasankaran and + Efthymios Tzinis and Jens Heitkaemper and Michel Olvera and Fabian-Robert Stöter and + Mathieu Hu and Juan M. Martín-Doñas and David Ditter and Ariel Frank and Antoine Deleforge + and Emmanuel Vincent}, + year={2020}, + booktitle={Proc. Interspeech}, +} +``` +[comment]: <> (Badge) +[codecov-badge]: https://codecov.io/gh/mpariente/asteroid-filterbanks/branch/master/graph/badge.svg +[codecov]: https://codecov.io/gh/asteroid-team/asteroid-filterbanks +[slack-badge]: https://img.shields.io/badge/slack-chat-green.svg?logo=slack +[slack-invite]: https://join.slack.com/t/asteroid-dev/shared_invite/zt-cn9y85t3-QNHXKD1Et7qoyzu1Ji5bcA + +%prep +%autosetup -n asteroid-filterbanks-0.4.0 + +%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-asteroid-filterbanks -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.4.0-1 +- Package Spec generated @@ -0,0 +1 @@ +c4dc7098da370086fefc66c9ca514291 asteroid-filterbanks-0.4.0.tar.gz |
