1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
drawterm-9front for Debian
-------------------------
Upstream does not tag releases. To create a new version based on the upstream
git repository, from the debian packaging branch, go:
git remote | grep 9front || \
git remote add 9front git://git.9front.org/plan9front/drawterm
export DEBIAN_BRANCH=$(gbp config DEFAULT.debian-branch)
export UPSTREAM_BRANCH=$(gbp config DEFAULT.upstream-branch)
git switch ${UPSTREAM_BRANCH}
git pull --ff-only 9front front
git switch ${DEBIAN_BRANCH}
export UPSTREAM_COMMIT=$(git rev-parse --short 9front/front)
export UPSTREAM_TAG="0.0.0_git$(date +'%Y%m%d').${UPSTREAM_COMMIT}"
gbp import-ref --upstream-tree=${UPSTREAM_COMMIT} -u"${UPSTREAM_TAG}"
-- Ryan Kavanagh <rak@debian.org> Wed, 08 Jun 2022 10:58:32 -0400
|