diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-mando.spec | 79 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 81 insertions, 0 deletions
@@ -0,0 +1 @@ +/mando-0.7.1.tar.gz diff --git a/python-mando.spec b/python-mando.spec new file mode 100644 index 0000000..2f7c1ef --- /dev/null +++ b/python-mando.spec @@ -0,0 +1,79 @@ +%global _empty_manifest_terminate_build 0 +Name: python-mando +Version: 0.7.1 +Release: 1 +Summary: Create Python CLI apps with little to no effort at all! +License: MIT +URL: https://mando.readthedocs.org/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/35/24/cd70d5ae6d35962be752feccb7dca80b5e0c2d450e995b16abd6275f3296/mando-0.7.1.tar.gz +BuildArch: noarch + +Requires: python3-six +Requires: python3-argparse +Requires: python3-funcsigs +Requires: python3-rst2ansi + +%description +mando is a wrapper around ``argparse``, and allows you to write complete CLI +applications in seconds while maintaining all the flexibility. + +%package -n python3-mando +Summary: Create Python CLI apps with little to no effort at all! +Provides: python-mando +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-mando +mando is a wrapper around ``argparse``, and allows you to write complete CLI +applications in seconds while maintaining all the flexibility. + +%package help +Summary: Development documents and examples for mando +Provides: python3-mando-doc +%description help +mando is a wrapper around ``argparse``, and allows you to write complete CLI +applications in seconds while maintaining all the flexibility. + +%prep +%autosetup -n mando-0.7.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-mando -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.7.1-1 +- Package Spec generated @@ -0,0 +1 @@ +b45233627e6eb72893993a7254737acc mando-0.7.1.tar.gz |