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
|
This package is built from upstream git, with git branches as follows:
master upstream's master branch
upstream where Debian upstream tarball is built
debian where Debian package is built
The remotes used are:
lepton lepton-eda upstream repo at github.com
origin salsa.debian.org repo
To incorporate a new upstream release, do something like:
git fetch lepton
- note that there should be a tag for the new release
git checkout master
git merge lepton/master
git push origin master
git checkout debian
gbp import-orig --upstream-vcs-tag=1.9.15-20210626 \
~/Desktop/lepton-eda_1.9.15.orig.tar.gz
- at this point, just do the usual packaging things in the debian
branch, push the resulting commits and tags to origin, and upload
|