2017-02-17 09:54:51 +01:00
|
|
|
Upstream
|
|
|
|
========
|
|
|
|
|
2017-09-05 16:47:08 +02:00
|
|
|
* prepare the environment:
|
2017-08-20 00:48:26 +02:00
|
|
|
|
2017-09-05 16:47:08 +02:00
|
|
|
export VERSION=x.y.z
|
2017-08-20 00:48:26 +02:00
|
|
|
|
2021-01-21 22:27:14 +01:00
|
|
|
* update `configure.ac` and `CHANGELOG.md`
|
2017-08-20 00:48:26 +02:00
|
|
|
|
2017-09-05 16:47:08 +02:00
|
|
|
perl -pi -E \
|
2021-01-21 22:29:34 +01:00
|
|
|
"s{^AC_INIT\(\[backupninja\],\[[0-9.\-rc]+\],}{AC_INIT([backupninja],[$VERSION],}" \
|
2021-01-14 16:46:08 +01:00
|
|
|
configure.ac
|
|
|
|
|
2021-01-21 22:27:14 +01:00
|
|
|
RELEASE_DATE=$(LC_ALL=C date '+%Y-%m-%d'); perl -pi -E \
|
2021-01-14 16:46:08 +01:00
|
|
|
"s{^## \[Unreleased\].*}{## [$VERSION] - $RELEASE_DATE}" \
|
|
|
|
CHANGELOG.md
|
2017-08-20 00:48:26 +02:00
|
|
|
|
2017-09-05 16:47:08 +02:00
|
|
|
* commit, tag and create the tarball:
|
2017-02-17 09:54:51 +01:00
|
|
|
|
2021-01-21 22:19:35 +01:00
|
|
|
git commit configure.ac CHANGELOG.md \
|
2017-09-05 16:47:08 +02:00
|
|
|
-m "Releasing backupninja $VERSION" && \
|
|
|
|
git clean -fdx && \
|
2017-08-20 00:48:26 +02:00
|
|
|
git tag -s "backupninja-$VERSION" \
|
2017-09-05 16:47:08 +02:00
|
|
|
-m "Releasing backupninja $VERSION" && \
|
|
|
|
./autogen.sh && \
|
|
|
|
./configure && \
|
2017-02-17 09:54:51 +01:00
|
|
|
make dist
|
|
|
|
|
|
|
|
* compare the content of the generated tarball with the content of the
|
|
|
|
previous one
|
2017-08-20 00:48:26 +02:00
|
|
|
|
2017-09-05 16:47:08 +02:00
|
|
|
* move the tarball outside of the Git working copy and clean up:
|
|
|
|
|
|
|
|
mkdir -p ../tarballs && \
|
|
|
|
mv backupninja-$VERSION.tar.gz ../tarballs/ && \
|
|
|
|
make distclean && \
|
|
|
|
git clean -fdx
|
2017-02-17 09:54:51 +01:00
|
|
|
|
2017-09-05 16:47:08 +02:00
|
|
|
* Install (extract tarball, `.configure && make && sudo make install`)
|
|
|
|
and test.
|
|
|
|
|
|
|
|
Debian
|
|
|
|
======
|
2017-02-17 09:54:51 +01:00
|
|
|
|
2017-09-05 16:47:08 +02:00
|
|
|
Prepare a new package:
|
2017-02-17 09:54:51 +01:00
|
|
|
|
2017-09-05 16:47:08 +02:00
|
|
|
git checkout debian && \
|
|
|
|
gbp import-orig --upstream-vcs-tag="backupninja-$VERSION" \
|
|
|
|
../tarballs/backupninja-$VERSION.tar.gz && \
|
|
|
|
gbp dch --auto && \
|
|
|
|
dch -e && \
|
|
|
|
export DEBIAN_VERSION=$(dpkg-parsechangelog -SVersion) && \
|
|
|
|
git commit debian/changelog \
|
|
|
|
-m "Releasing backupninja ($DEBIAN_VERSION) to Debian unstable" && \
|
|
|
|
gbp buildpackage
|
2017-02-17 09:54:51 +01:00
|
|
|
|
2017-09-05 16:47:08 +02:00
|
|
|
Install the `.deb` and test.
|
2017-08-20 00:48:26 +02:00
|
|
|
|
2017-09-05 16:47:08 +02:00
|
|
|
Release
|
|
|
|
=======
|
2017-08-20 00:48:26 +02:00
|
|
|
|
2017-09-05 16:47:08 +02:00
|
|
|
* sign the release and push it to Git:
|
2017-08-20 00:48:26 +02:00
|
|
|
|
2017-09-05 16:47:08 +02:00
|
|
|
gpg --armor --detach-sign \
|
|
|
|
../tarballs/backupninja-$VERSION.tar.gz && \
|
|
|
|
git checkout debian && \
|
|
|
|
gbp buildpackage --git-tag-only --git-sign-tags && \
|
|
|
|
git push --follow-tags origin \
|
|
|
|
master:master \
|
|
|
|
debian:debian \
|
|
|
|
pristine-tar:pristine-tar \
|
|
|
|
upstream:upstream
|
2017-02-17 09:54:51 +01:00
|
|
|
|
2017-09-05 16:47:08 +02:00
|
|
|
* upload the upstream tarball and detached signature to the GitLab
|
|
|
|
milestone page with *Edit* → *Attach a file*
|
|
|
|
* announce the release on the backupninja mailing-list,
|
|
|
|
pointing to the milestone web page
|
|
|
|
* upload to Debian or ask someone listed in the `Uploaders` control
|
|
|
|
field to review and upload
|
2017-02-17 09:54:51 +01:00
|
|
|
|
2017-09-05 16:47:08 +02:00
|
|
|
Open the next development cycle
|
|
|
|
===============================
|
2017-02-17 09:54:51 +01:00
|
|
|
|
2017-09-05 16:47:08 +02:00
|
|
|
* `git checkout master`
|
2021-01-14 16:46:08 +01:00
|
|
|
* Add an empty new section in `CHANGELOG.md`, commit and push.
|