diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-30 17:15:42 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-30 17:15:42 +0000 |
| commit | 5cf7492cab6528cf6062b73b80eb7dbb4682b17e (patch) | |
| tree | 1c2442ac7226149e9b4f7236b3d774d2ab0c313b | |
| parent | 06cd39129ae3b0b14fa8e5cdaa62c67e1514c5c4 (diff) | |
automatic import of python-pyvisfile
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-pyvisfile.spec | 129 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 131 insertions, 0 deletions
@@ -0,0 +1 @@ +/pyvisfile-2022.1.1.tar.gz diff --git a/python-pyvisfile.spec b/python-pyvisfile.spec new file mode 100644 index 0000000..ffb51be --- /dev/null +++ b/python-pyvisfile.spec @@ -0,0 +1,129 @@ +%global _empty_manifest_terminate_build 0 +Name: python-pyvisfile +Version: 2022.1.1 +Release: 1 +Summary: Large-scale Visualization Data Storage +License: MIT +URL: http://mathema.tician.de/software/pyvisfile +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/c3/d1/dd1d4555fc19aadc2af35916e41b68036c0dc9894e58268d82546c8515ac/pyvisfile-2022.1.1.tar.gz +BuildArch: noarch + + +%description +Pyvisfile allows you to write a variety of visualization file formats, +including +* `Kitware's <http://www.kitware.com>`_ + `XML-style <http://www.vtk.org/VTK/help/documentation.html>`_ + `VTK <http://vtk.org>`_ data files. VTK files can be written without + additional software installed (e.g. VTK's Python bindings). +* Silo visualization files, as used by the + `VisIt <https://wci.llnl.gov/codes/visit/>`_ large-scale visualization program. + To use pyvisfile to create Silo files, you need `libsilo + <https://wci.llnl.gov/codes/silo/>`_ as well as `pybind11 + <https://pybind11.readthedocs.io/en/stable>`_. +pyvisfile supports many mesh geometries, such as unstructured +and rectangular structured meshes, particle meshes, as well as +scalar and vector variables on them. In addition, pyvisfile allows the +semi-automatic writing of parallelization-segmented visualization files +in both Silo and VTK formats. For Silo files, pyvisfile also +supports the writing of expressions as visualization variables. +Resources: +* `Documentation <https://documen.tician.de/pyvisfile/>`_. +* `Source Code <https://github.com/inducer/pyvisfile>`_. + +%package -n python3-pyvisfile +Summary: Large-scale Visualization Data Storage +Provides: python-pyvisfile +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-pyvisfile +Pyvisfile allows you to write a variety of visualization file formats, +including +* `Kitware's <http://www.kitware.com>`_ + `XML-style <http://www.vtk.org/VTK/help/documentation.html>`_ + `VTK <http://vtk.org>`_ data files. VTK files can be written without + additional software installed (e.g. VTK's Python bindings). +* Silo visualization files, as used by the + `VisIt <https://wci.llnl.gov/codes/visit/>`_ large-scale visualization program. + To use pyvisfile to create Silo files, you need `libsilo + <https://wci.llnl.gov/codes/silo/>`_ as well as `pybind11 + <https://pybind11.readthedocs.io/en/stable>`_. +pyvisfile supports many mesh geometries, such as unstructured +and rectangular structured meshes, particle meshes, as well as +scalar and vector variables on them. In addition, pyvisfile allows the +semi-automatic writing of parallelization-segmented visualization files +in both Silo and VTK formats. For Silo files, pyvisfile also +supports the writing of expressions as visualization variables. +Resources: +* `Documentation <https://documen.tician.de/pyvisfile/>`_. +* `Source Code <https://github.com/inducer/pyvisfile>`_. + +%package help +Summary: Development documents and examples for pyvisfile +Provides: python3-pyvisfile-doc +%description help +Pyvisfile allows you to write a variety of visualization file formats, +including +* `Kitware's <http://www.kitware.com>`_ + `XML-style <http://www.vtk.org/VTK/help/documentation.html>`_ + `VTK <http://vtk.org>`_ data files. VTK files can be written without + additional software installed (e.g. VTK's Python bindings). +* Silo visualization files, as used by the + `VisIt <https://wci.llnl.gov/codes/visit/>`_ large-scale visualization program. + To use pyvisfile to create Silo files, you need `libsilo + <https://wci.llnl.gov/codes/silo/>`_ as well as `pybind11 + <https://pybind11.readthedocs.io/en/stable>`_. +pyvisfile supports many mesh geometries, such as unstructured +and rectangular structured meshes, particle meshes, as well as +scalar and vector variables on them. In addition, pyvisfile allows the +semi-automatic writing of parallelization-segmented visualization files +in both Silo and VTK formats. For Silo files, pyvisfile also +supports the writing of expressions as visualization variables. +Resources: +* `Documentation <https://documen.tician.de/pyvisfile/>`_. +* `Source Code <https://github.com/inducer/pyvisfile>`_. + +%prep +%autosetup -n pyvisfile-2022.1.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-pyvisfile -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue May 30 2023 Python_Bot <Python_Bot@openeuler.org> - 2022.1.1-1 +- Package Spec generated @@ -0,0 +1 @@ +be4319a07c94fff0e10bb6b75db62b8a pyvisfile-2022.1.1.tar.gz |
