File: README.source

package info (click to toggle)
python-meshplex 0.15.13-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 924 kB
  • sloc: python: 3,112; makefile: 39
file content (23 lines) | stat: -rw-r--r-- 953 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Refreshing upstream LFS objects
===============================

The pypi source tarball does not contains docs or tests, so we want to
take source from the upstream git repo at
https://github.com/nschloe/meshplex.git

If git-buildpackage (gbp import-orig) is used to import the upstream
git tarball, then it may fail if LFS objects are not accessible.

LFS objects (test mesh files in test/meshes) can be fetched via the
following procedure (adapt for the upstream release you're trying to
import. The example here accesses upstream tag v0.13.2).

  git remote add upstream-git https://github.com/nschloe/meshplex.git
  git fetch upstream-git tag v0.13.2  --no-tags
  git lfs fetch upstream-git refs/tags/v0.13.2 
 
It's important to use --no-tags to fetch to just the one reference
from upstream, unless you want the entire upstream tag history.

After this, LFS objects will be available in .git/lfs/objects/, and
can be accessed by gbp import-orig.