diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-10 04:49:01 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-10 04:49:01 +0000 |
commit | 35e451683d38e1ef58f5f0c6f8c6451174b6eddc (patch) | |
tree | 92fbcdc31db7382e9306ed57518f21702130b2f2 | |
parent | 9f67b08c3c68066e274a786d77489ec82b5e3e47 (diff) |
automatic import of python-pyhtmlopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-pyhtml.spec | 78 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 80 insertions, 0 deletions
@@ -0,0 +1 @@ +/PyHTML-1.3.2.tar.gz diff --git a/python-pyhtml.spec b/python-pyhtml.spec new file mode 100644 index 0000000..37547bf --- /dev/null +++ b/python-pyhtml.spec @@ -0,0 +1,78 @@ +%global _empty_manifest_terminate_build 0 +Name: python-PyHTML +Version: 1.3.2 +Release: 1 +Summary: Simple HTML generator for Python +License: Apache Software License +URL: https://github.com/cenkalti/pyhtml +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/52/b5/ac8e2ff8748b76ee09696b29365100da1828af7f49a8614358733de2d9e8/PyHTML-1.3.2.tar.gz +BuildArch: noarch + + +%description +PyHTML is a simple HTML generation library for Python. +Inspired by `Flask-HTMLBuilder <http://majorz.github.com/flask-htmlbuilder/>`_ +and `this gist <https://gist.github.com/3516334>`_. + +%package -n python3-PyHTML +Summary: Simple HTML generator for Python +Provides: python-PyHTML +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-PyHTML +PyHTML is a simple HTML generation library for Python. +Inspired by `Flask-HTMLBuilder <http://majorz.github.com/flask-htmlbuilder/>`_ +and `this gist <https://gist.github.com/3516334>`_. + +%package help +Summary: Development documents and examples for PyHTML +Provides: python3-PyHTML-doc +%description help +PyHTML is a simple HTML generation library for Python. +Inspired by `Flask-HTMLBuilder <http://majorz.github.com/flask-htmlbuilder/>`_ +and `this gist <https://gist.github.com/3516334>`_. + +%prep +%autosetup -n PyHTML-1.3.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-PyHTML -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 1.3.2-1 +- Package Spec generated @@ -0,0 +1 @@ +fd4e12ad0c48b1e2b09346cb3f1f757d PyHTML-1.3.2.tar.gz |