summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-05 03:55:40 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-05 03:55:40 +0000
commita819943d160cd1cfa34ceb92421ffb824e17cccf (patch)
tree35ce0bcda27f1ff2d93d3fdbec2911cde88c2322
parent9d102b2b0a51fbf0949706f27cec09e2092b0dca (diff)
automatic import of python-nnmnkwiiopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-nnmnkwii.spec231
-rw-r--r--sources1
3 files changed, 233 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..0b0d73f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/nnmnkwii-0.1.2.tar.gz
diff --git a/python-nnmnkwii.spec b/python-nnmnkwii.spec
new file mode 100644
index 0000000..acfbbbf
--- /dev/null
+++ b/python-nnmnkwii.spec
@@ -0,0 +1,231 @@
+%global _empty_manifest_terminate_build 0
+Name: python-nnmnkwii
+Version: 0.1.2
+Release: 1
+Summary: Library to build speech synthesis systems for fast prototyping
+License: MIT
+URL: https://github.com/r9y9/nnmnkwii
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/23/bc/64430b782a54ce4f6a6fc9a6a90c68600e7abbe3011c555e3765138ae999/nnmnkwii-0.1.2.tar.gz
+BuildArch: noarch
+
+
+%description
+![alt text](assets/logo_wide.png)
+
+# nnmnkwii ([nanamin kawaii])
+[![][docs-stable-img]][docs-stable-url]
+[![][docs-latest-img]][docs-latest-url]
+[![PyPI](https://img.shields.io/pypi/v/nnmnkwii.svg)](https://pypi.python.org/pypi/nnmnkwii)
+[![Python package](https://github.com/r9y9/nnmnkwii/actions/workflows/ci.yaml/badge.svg)](https://github.com/r9y9/nnmnkwii/actions/workflows/ci.yaml)
+[![Build Status](https://app.travis-ci.com/r9y9/nnmnkwii.svg?branch=master)](https://app.travis-ci.com/r9y9/nnmnkwii)
+[![codecov](https://codecov.io/gh/r9y9/nnmnkwii/branch/master/graph/badge.svg)](https://codecov.io/gh/r9y9/nnmnkwii)
+[![DOI](https://zenodo.org/badge/96328821.svg)](https://zenodo.org/badge/latestdoi/96328821)
+
+Library to build speech synthesis systems designed for easy and fast prototyping.
+
+## Documentation
+
+- [**STABLE**][docs-stable-url] &mdash; **most recently tagged version of the documentation.**
+- [**LATEST**][docs-latest-url] &mdash; *in-development version of the documentation.*
+
+## Installation
+
+The latest release is availabe on pypi. Assuming you have already ``numpy`` installed, you can install nnmnkwii by:
+
+ pip install nnmnkwii
+
+If you want the latest development version, run:
+
+ pip install git+https://github.com/r9y9/nnmnkwii
+
+or:
+
+ git clone https://github.com/r9y9/nnmnkwii
+ cd nnmnkwii
+ python setup.py develop # or install
+
+This should resolve the package dependencies and install ``nnmnkwii`` property.
+
+At the moment, `nnmnkwii.autograd` package depends on [PyTorch](http://pytorch.org/).
+If you need autograd features, please install PyTorch as well.
+
+## Acknowledgements
+
+The library is inspired by the following open source projects:
+
+- Merlin: https://github.com/CSTR-Edinburgh/merlin
+- Librosa: https://github.com/librosa/librosa
+
+[docs-latest-img]: https://img.shields.io/badge/docs-latest-blue.svg
+[docs-latest-url]: https://r9y9.github.io/nnmnkwii/latest
+
+[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg
+[docs-stable-url]: https://r9y9.github.io/nnmnkwii/stable
+
+Logo was created by Gloomy Ghost([@740291272](https://github.com/740291272)) ([#40](https://github.com/r9y9/nnmnkwii/issues/40))
+
+
+%package -n python3-nnmnkwii
+Summary: Library to build speech synthesis systems for fast prototyping
+Provides: python-nnmnkwii
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-nnmnkwii
+![alt text](assets/logo_wide.png)
+
+# nnmnkwii ([nanamin kawaii])
+[![][docs-stable-img]][docs-stable-url]
+[![][docs-latest-img]][docs-latest-url]
+[![PyPI](https://img.shields.io/pypi/v/nnmnkwii.svg)](https://pypi.python.org/pypi/nnmnkwii)
+[![Python package](https://github.com/r9y9/nnmnkwii/actions/workflows/ci.yaml/badge.svg)](https://github.com/r9y9/nnmnkwii/actions/workflows/ci.yaml)
+[![Build Status](https://app.travis-ci.com/r9y9/nnmnkwii.svg?branch=master)](https://app.travis-ci.com/r9y9/nnmnkwii)
+[![codecov](https://codecov.io/gh/r9y9/nnmnkwii/branch/master/graph/badge.svg)](https://codecov.io/gh/r9y9/nnmnkwii)
+[![DOI](https://zenodo.org/badge/96328821.svg)](https://zenodo.org/badge/latestdoi/96328821)
+
+Library to build speech synthesis systems designed for easy and fast prototyping.
+
+## Documentation
+
+- [**STABLE**][docs-stable-url] &mdash; **most recently tagged version of the documentation.**
+- [**LATEST**][docs-latest-url] &mdash; *in-development version of the documentation.*
+
+## Installation
+
+The latest release is availabe on pypi. Assuming you have already ``numpy`` installed, you can install nnmnkwii by:
+
+ pip install nnmnkwii
+
+If you want the latest development version, run:
+
+ pip install git+https://github.com/r9y9/nnmnkwii
+
+or:
+
+ git clone https://github.com/r9y9/nnmnkwii
+ cd nnmnkwii
+ python setup.py develop # or install
+
+This should resolve the package dependencies and install ``nnmnkwii`` property.
+
+At the moment, `nnmnkwii.autograd` package depends on [PyTorch](http://pytorch.org/).
+If you need autograd features, please install PyTorch as well.
+
+## Acknowledgements
+
+The library is inspired by the following open source projects:
+
+- Merlin: https://github.com/CSTR-Edinburgh/merlin
+- Librosa: https://github.com/librosa/librosa
+
+[docs-latest-img]: https://img.shields.io/badge/docs-latest-blue.svg
+[docs-latest-url]: https://r9y9.github.io/nnmnkwii/latest
+
+[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg
+[docs-stable-url]: https://r9y9.github.io/nnmnkwii/stable
+
+Logo was created by Gloomy Ghost([@740291272](https://github.com/740291272)) ([#40](https://github.com/r9y9/nnmnkwii/issues/40))
+
+
+%package help
+Summary: Development documents and examples for nnmnkwii
+Provides: python3-nnmnkwii-doc
+%description help
+![alt text](assets/logo_wide.png)
+
+# nnmnkwii ([nanamin kawaii])
+[![][docs-stable-img]][docs-stable-url]
+[![][docs-latest-img]][docs-latest-url]
+[![PyPI](https://img.shields.io/pypi/v/nnmnkwii.svg)](https://pypi.python.org/pypi/nnmnkwii)
+[![Python package](https://github.com/r9y9/nnmnkwii/actions/workflows/ci.yaml/badge.svg)](https://github.com/r9y9/nnmnkwii/actions/workflows/ci.yaml)
+[![Build Status](https://app.travis-ci.com/r9y9/nnmnkwii.svg?branch=master)](https://app.travis-ci.com/r9y9/nnmnkwii)
+[![codecov](https://codecov.io/gh/r9y9/nnmnkwii/branch/master/graph/badge.svg)](https://codecov.io/gh/r9y9/nnmnkwii)
+[![DOI](https://zenodo.org/badge/96328821.svg)](https://zenodo.org/badge/latestdoi/96328821)
+
+Library to build speech synthesis systems designed for easy and fast prototyping.
+
+## Documentation
+
+- [**STABLE**][docs-stable-url] &mdash; **most recently tagged version of the documentation.**
+- [**LATEST**][docs-latest-url] &mdash; *in-development version of the documentation.*
+
+## Installation
+
+The latest release is availabe on pypi. Assuming you have already ``numpy`` installed, you can install nnmnkwii by:
+
+ pip install nnmnkwii
+
+If you want the latest development version, run:
+
+ pip install git+https://github.com/r9y9/nnmnkwii
+
+or:
+
+ git clone https://github.com/r9y9/nnmnkwii
+ cd nnmnkwii
+ python setup.py develop # or install
+
+This should resolve the package dependencies and install ``nnmnkwii`` property.
+
+At the moment, `nnmnkwii.autograd` package depends on [PyTorch](http://pytorch.org/).
+If you need autograd features, please install PyTorch as well.
+
+## Acknowledgements
+
+The library is inspired by the following open source projects:
+
+- Merlin: https://github.com/CSTR-Edinburgh/merlin
+- Librosa: https://github.com/librosa/librosa
+
+[docs-latest-img]: https://img.shields.io/badge/docs-latest-blue.svg
+[docs-latest-url]: https://r9y9.github.io/nnmnkwii/latest
+
+[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg
+[docs-stable-url]: https://r9y9.github.io/nnmnkwii/stable
+
+Logo was created by Gloomy Ghost([@740291272](https://github.com/740291272)) ([#40](https://github.com/r9y9/nnmnkwii/issues/40))
+
+
+%prep
+%autosetup -n nnmnkwii-0.1.2
+
+%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-nnmnkwii -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.2-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..cb9f351
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+b2d61a6c9e4cb70776f9818a2e79d4dc nnmnkwii-0.1.2.tar.gz