diff options
Diffstat (limited to 'python-manim-editor.spec')
| -rw-r--r-- | python-manim-editor.spec | 164 |
1 files changed, 164 insertions, 0 deletions
diff --git a/python-manim-editor.spec b/python-manim-editor.spec new file mode 100644 index 0000000..54470d9 --- /dev/null +++ b/python-manim-editor.spec @@ -0,0 +1,164 @@ +%global _empty_manifest_terminate_build 0 +Name: python-manim-editor +Version: 0.3.8 +Release: 1 +Summary: Editor and Presenter for Manim Generated Content. +License: MIT +URL: https://github.com/ManimCommunity/manim_editor +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/29/97/8fd4229a450bf6ce5285f28469e9ec8b36747d506f2b9a17c41368ed4381/manim_editor-0.3.8.tar.gz +BuildArch: noarch + +Requires: python3-Flask +Requires: python3-click +Requires: python3-manim +Requires: python3-waitress +Requires: python3-jsonschema + +%description +<p align="center"> + <a href="#"><img src="https://raw.githubusercontent.com/ManimCommunity/manim_editor/main/manim_editor/app/static/img/banner.png"></a> + <br /> + <br /> + <a href="https://pypi.org/project/manim-editor/"><img src="https://img.shields.io/pypi/v/manim-editor.svg?style=flat&logo=pypi" alt="PyPI Latest Release"></a> + <a href="https://docs.editor.manim.community/en/stable/"><img src='https://readthedocs.org/projects/manim-editor/badge/?version=stable' alt='Documentation Status' /></a> + <a href="http://choosealicense.com/licenses/mit/"><img src="https://img.shields.io/badge/license-MIT-red.svg?style=flat" alt="MIT License"></a> + <a href="https://github.com/ManimCommunity/manim_editor/actions/workflows/build_pages.yml"><img src="https://github.com/ManimCommunity/manim_editor/actions/workflows/build_pages.yml/badge.svg" alt="MIT License"></a> + <br /> + <br /> + <i>Editor and Presenter for Manim Generated Content.</i> +</p> +<hr /> + +Take a look at the [Working Example](https://ManimCommunity.github.io/manim_editor/). +More information can be found in the [documentation](https://docs.editor.manim.community/en/stable/). + +These Browsers are supported: +- Firefox +- Chrome/Chromium-Based +- Edge + +## Create a Project + + + +## Export a Project as a Presentation + + + + +%package -n python3-manim-editor +Summary: Editor and Presenter for Manim Generated Content. +Provides: python-manim-editor +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-manim-editor +<p align="center"> + <a href="#"><img src="https://raw.githubusercontent.com/ManimCommunity/manim_editor/main/manim_editor/app/static/img/banner.png"></a> + <br /> + <br /> + <a href="https://pypi.org/project/manim-editor/"><img src="https://img.shields.io/pypi/v/manim-editor.svg?style=flat&logo=pypi" alt="PyPI Latest Release"></a> + <a href="https://docs.editor.manim.community/en/stable/"><img src='https://readthedocs.org/projects/manim-editor/badge/?version=stable' alt='Documentation Status' /></a> + <a href="http://choosealicense.com/licenses/mit/"><img src="https://img.shields.io/badge/license-MIT-red.svg?style=flat" alt="MIT License"></a> + <a href="https://github.com/ManimCommunity/manim_editor/actions/workflows/build_pages.yml"><img src="https://github.com/ManimCommunity/manim_editor/actions/workflows/build_pages.yml/badge.svg" alt="MIT License"></a> + <br /> + <br /> + <i>Editor and Presenter for Manim Generated Content.</i> +</p> +<hr /> + +Take a look at the [Working Example](https://ManimCommunity.github.io/manim_editor/). +More information can be found in the [documentation](https://docs.editor.manim.community/en/stable/). + +These Browsers are supported: +- Firefox +- Chrome/Chromium-Based +- Edge + +## Create a Project + + + +## Export a Project as a Presentation + + + + +%package help +Summary: Development documents and examples for manim-editor +Provides: python3-manim-editor-doc +%description help +<p align="center"> + <a href="#"><img src="https://raw.githubusercontent.com/ManimCommunity/manim_editor/main/manim_editor/app/static/img/banner.png"></a> + <br /> + <br /> + <a href="https://pypi.org/project/manim-editor/"><img src="https://img.shields.io/pypi/v/manim-editor.svg?style=flat&logo=pypi" alt="PyPI Latest Release"></a> + <a href="https://docs.editor.manim.community/en/stable/"><img src='https://readthedocs.org/projects/manim-editor/badge/?version=stable' alt='Documentation Status' /></a> + <a href="http://choosealicense.com/licenses/mit/"><img src="https://img.shields.io/badge/license-MIT-red.svg?style=flat" alt="MIT License"></a> + <a href="https://github.com/ManimCommunity/manim_editor/actions/workflows/build_pages.yml"><img src="https://github.com/ManimCommunity/manim_editor/actions/workflows/build_pages.yml/badge.svg" alt="MIT License"></a> + <br /> + <br /> + <i>Editor and Presenter for Manim Generated Content.</i> +</p> +<hr /> + +Take a look at the [Working Example](https://ManimCommunity.github.io/manim_editor/). +More information can be found in the [documentation](https://docs.editor.manim.community/en/stable/). + +These Browsers are supported: +- Firefox +- Chrome/Chromium-Based +- Edge + +## Create a Project + + + +## Export a Project as a Presentation + + + + +%prep +%autosetup -n manim-editor-0.3.8 + +%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-manim-editor -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.3.8-1 +- Package Spec generated |
