1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
Nico Schlömer's meshio comes from https://github.com/nschloe/meshio
Some test meshes are stored in the git repo using LFS.
The debian salsa repo is LFS-aware and these mesh files are unpacked
when updating with
gbp import-orig --uscan --pristine-tar
However the corresponding orig source tarball, including the tarball
generated by gbp export-orig, contains LFS reference files rather than
unpacked files. To generate an orig tarball containing unpacked mesh
files, use
git archive upstream/7.0.0-really-5.3.5 -o ../python-meshio_7.0.0-really-5.3.5.orig.tar.gz
(update the version tag as needed)
===================================================================
msh2xdmf
For convenience we also provide Flavien Loiseau's msh2xdmf
from https://github.com/floiseau/msh2xdmf
The msh2xdmf source is held in debian/msh2xdmf.
It is handled as a git subtree (since this is just a convenience copy
not intended for pushing msh2xdmf code changes upstream, a subtree is
more appropriate and simpler to manage than a git submodule).
That means msh2xdmf can be updated to the latest upstream head with
git subtree pull --prefix debian/msh2xdmf https://github.com/floiseau/msh2xdmf master --squash
====================================================================
Manpages in debian/man generated by help2man with
for b in meshio-ascii meshio-binary meshio-compress meshio-decompress meshio-info ; do help2man -N -n "utility for meshio" -S MESHIO $b > $b.1; done
with minor manual editing afterwards (tool name, ümlaut)
|