diff options
Diffstat (limited to 'python-dot2tex.spec')
-rw-r--r-- | python-dot2tex.spec | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/python-dot2tex.spec b/python-dot2tex.spec new file mode 100644 index 0000000..b499a4a --- /dev/null +++ b/python-dot2tex.spec @@ -0,0 +1,112 @@ +%global _empty_manifest_terminate_build 0 +Name: python-dot2tex +Version: 2.11.3 +Release: 1 +Summary: A Graphviz to LaTeX converter +License: MIT License +URL: https://github.com/kjellmf/dot2tex +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/49/03/a0ce345bb4b816fffb9107dcbad2f9bd1dd2db314b9fdb782cd398c95c96/dot2tex-2.11.3.tar.gz +BuildArch: noarch + +Requires: python3-pyparsing + +%description +The purpose of dot2tex is to give graphs generated by the graph layout tool +Graphviz_, a more LaTeX friendly look and feel. This is accomplished by: + +- Using native PSTricks_ and `PGF/TikZ`_ commands for drawing arrows, + edges and nodes. +- Typesetting labels with LaTeX, allowing mathematical notation. +- Using backend specific styles to customize the output. + +.. _Graphviz: http://www.graphviz.org/ +.. _PSTricks: http://tug.org/PSTricks/main.cgi/ +.. _PGF/TikZ: http://www.ctan.org/tex-archive/help/Catalogue/entries/pgf.html + + + + +%package -n python3-dot2tex +Summary: A Graphviz to LaTeX converter +Provides: python-dot2tex +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-dot2tex +The purpose of dot2tex is to give graphs generated by the graph layout tool +Graphviz_, a more LaTeX friendly look and feel. This is accomplished by: + +- Using native PSTricks_ and `PGF/TikZ`_ commands for drawing arrows, + edges and nodes. +- Typesetting labels with LaTeX, allowing mathematical notation. +- Using backend specific styles to customize the output. + +.. _Graphviz: http://www.graphviz.org/ +.. _PSTricks: http://tug.org/PSTricks/main.cgi/ +.. _PGF/TikZ: http://www.ctan.org/tex-archive/help/Catalogue/entries/pgf.html + + + + +%package help +Summary: Development documents and examples for dot2tex +Provides: python3-dot2tex-doc +%description help +The purpose of dot2tex is to give graphs generated by the graph layout tool +Graphviz_, a more LaTeX friendly look and feel. This is accomplished by: + +- Using native PSTricks_ and `PGF/TikZ`_ commands for drawing arrows, + edges and nodes. +- Typesetting labels with LaTeX, allowing mathematical notation. +- Using backend specific styles to customize the output. + +.. _Graphviz: http://www.graphviz.org/ +.. _PSTricks: http://tug.org/PSTricks/main.cgi/ +.. _PGF/TikZ: http://www.ctan.org/tex-archive/help/Catalogue/entries/pgf.html + + + + +%prep +%autosetup -n dot2tex-2.11.3 + +%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-dot2tex -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 2.11.3-1 +- Package Spec generated |