diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-18 03:06:25 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-18 03:06:25 +0000 |
| commit | 16432751ccfe74f96aaf08c328dc2fa6f2c16b39 (patch) | |
| tree | c41ea519a8ba6dc693cbeb80e06833fa0c36bcfe | |
| parent | b567e830bca006f61d441e4cd6c80a797d47a357 (diff) | |
automatic import of python-snakecase
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-snakecase.spec | 210 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 212 insertions, 0 deletions
@@ -0,0 +1 @@ +/snakecase-1.0.1.tar.gz diff --git a/python-snakecase.spec b/python-snakecase.spec new file mode 100644 index 0000000..745753a --- /dev/null +++ b/python-snakecase.spec @@ -0,0 +1,210 @@ +%global _empty_manifest_terminate_build 0 +Name: python-snakecase +Version: 1.0.1 +Release: 1 +Summary: Convert camelCase to snake_case +License: MIT License +URL: https://yoginth.gitlab.io +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/1e/86/9e4764048228bcce63779b0a1a1ae4475958d7f663d1879d855c1634055f/snakecase-1.0.1.tar.gz +BuildArch: noarch + + +%description +## Snakecase Coverter + +> Covert camelCase to snake_case + +## Screenshot + +<img src="https://gitlab.com/yoginth/snakecase/raw/master/Screenshot.png" width="550"> + +## Install + +``` +$ pip install snakecase +``` + +## Usage + +```python +import snakecase + +print (snakecase.convert("YoginthVar")) +#=> yoginth_var + +print (snakecase.convert("thisVariable")) +#=> this_variable +``` + +## Get Help + +There are few ways to get help: + + 1. Please [post questions on Stack Overflow](https://stackoverflow.com/questions/ask). You can open issues with questions, as long you add a link to your Stack Overflow question. + + 2. For bug reports and feature requests, open issues. + + 3. For direct and quick help, you can [email me](mailto://yoginth@zoho.com). + +## How to contribute +Have an idea? Found a bug? See [how to contribute][contributing]. + +Thanks! + +## License + +[MIT][license] + +[LICENSE]: https://yoginth.mit-license.org/ +[contributing]: /CONTRIBUTING.md + +%package -n python3-snakecase +Summary: Convert camelCase to snake_case +Provides: python-snakecase +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-snakecase +## Snakecase Coverter + +> Covert camelCase to snake_case + +## Screenshot + +<img src="https://gitlab.com/yoginth/snakecase/raw/master/Screenshot.png" width="550"> + +## Install + +``` +$ pip install snakecase +``` + +## Usage + +```python +import snakecase + +print (snakecase.convert("YoginthVar")) +#=> yoginth_var + +print (snakecase.convert("thisVariable")) +#=> this_variable +``` + +## Get Help + +There are few ways to get help: + + 1. Please [post questions on Stack Overflow](https://stackoverflow.com/questions/ask). You can open issues with questions, as long you add a link to your Stack Overflow question. + + 2. For bug reports and feature requests, open issues. + + 3. For direct and quick help, you can [email me](mailto://yoginth@zoho.com). + +## How to contribute +Have an idea? Found a bug? See [how to contribute][contributing]. + +Thanks! + +## License + +[MIT][license] + +[LICENSE]: https://yoginth.mit-license.org/ +[contributing]: /CONTRIBUTING.md + +%package help +Summary: Development documents and examples for snakecase +Provides: python3-snakecase-doc +%description help +## Snakecase Coverter + +> Covert camelCase to snake_case + +## Screenshot + +<img src="https://gitlab.com/yoginth/snakecase/raw/master/Screenshot.png" width="550"> + +## Install + +``` +$ pip install snakecase +``` + +## Usage + +```python +import snakecase + +print (snakecase.convert("YoginthVar")) +#=> yoginth_var + +print (snakecase.convert("thisVariable")) +#=> this_variable +``` + +## Get Help + +There are few ways to get help: + + 1. Please [post questions on Stack Overflow](https://stackoverflow.com/questions/ask). You can open issues with questions, as long you add a link to your Stack Overflow question. + + 2. For bug reports and feature requests, open issues. + + 3. For direct and quick help, you can [email me](mailto://yoginth@zoho.com). + +## How to contribute +Have an idea? Found a bug? See [how to contribute][contributing]. + +Thanks! + +## License + +[MIT][license] + +[LICENSE]: https://yoginth.mit-license.org/ +[contributing]: /CONTRIBUTING.md + +%prep +%autosetup -n snakecase-1.0.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-snakecase -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Thu May 18 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.1-1 +- Package Spec generated @@ -0,0 +1 @@ +0f753cabac65f7275fe0b1fb661c7534 snakecase-1.0.1.tar.gz |
