summaryrefslogtreecommitdiff
path: root/python-snakecase.spec
diff options
context:
space:
mode:
Diffstat (limited to 'python-snakecase.spec')
-rw-r--r--python-snakecase.spec210
1 files changed, 210 insertions, 0 deletions
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