Files
snapd/packaging/debian-sid/README.Source
2020-03-19 09:13:52 +01:00

36 lines
1.0 KiB
Plaintext

# Overview
The packaging is maintained in the upstream git repo at
github.com/snapcore/snapd in the packaging/debian-sid dir
Please push any debian changes back there to make packaging
easier.
## Release a new version
To release a new upstream version the following steps are
recommended:
# one time setup
$ git clone git@salsa.debian.org:debian/snapd
$ cd snapd
$ git remote add upstream https://github.com/snapcore/snapd
# releasing a new version
$ git fetch upstream
$ git merge upstream/<tag> # e.g. upstream/2.44
$ cp -ar packaging/debian-sid/* debian/
# ensure to git add any new files
# set debian/changelog to UNRELEASED
$ git commit -a -m 'debian: sync packaging changes from upstream'
# update changelog
$ debcommit -ar
$ gbp buildpackage -S -d
# testbuild
$ pbuilder-dist sid update
$ pbuilder-dist sid build ../build-area/snapd_<version>.dsc
$ dput ftp-master ../build-area/snapd_<version>_source.changes
-- Michael Vogt <michael.vogt@ubuntu.com>, Wed, 18 Mar 2020 13:11:03 +0100