diff options
| author | Carlos Maiolino <[email protected]> | 2026-05-02 14:09:27 +0200 |
|---|---|---|
| committer | Carlos Maiolino <[email protected]> | 2026-05-02 14:09:27 +0200 |
| commit | 296c6b9ee85209c0ce375717e30686545baea107 (patch) | |
| tree | f0da71650e8f58ca528589ad4e39476732fa5b88 /xfsprogs-eric-notes.txt | |
| parent | b2e1a1cb259e482720430ff9898d2e564ee73d0f (diff) | |
Diffstat (limited to 'xfsprogs-eric-notes.txt')
| -rw-r--r-- | xfsprogs-eric-notes.txt | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/xfsprogs-eric-notes.txt b/xfsprogs-eric-notes.txt new file mode 100644 index 0000000..7c725cb --- /dev/null +++ b/xfsprogs-eric-notes.txt @@ -0,0 +1,66 @@ +foo +https://korg.wiki.kernel.org/userdoc/kup + +$ git remote add korg [email protected]:pub/scm/fs/xfs/xfsprogs-dev.git + +adds that remote so we can push as "korg" + +$ git push -f korg master:for-next + +-f forces the update into for-next + +to push my for-next to for-next -- for-next:for-next + +*** might need guilt/$BRANCH not just $BRANCH *** + +Modify files for new version! + +VERSION +configure.ac +debian/changelog <-- for -rc as well! +doc/CHANGES + +vim VERSION configure.ac debian/changelog doc/CHANGES + +changelog entry: + + xfsprogs: Release v4.16.0 + + Update all the necessary files for a 4.16.0 release. + + Signed-off-by: Eric Sandeen <[email protected]> + +signed tag: + +yum install pinentry +export GPG_TTY=`tty` +export LC_CTYPE="en_US.UTF-8" +export RELVER="4.14.0" +git tag -s -u [email protected] -m "Release v${RELVER}" v${RELVER} +/////// $ git push --tags korg for-next:master for-next:for-next + +# NEVER USE --tags or --follow-tags +$ git push origin <tag> + + +xfsprogs-summary.sh v${RELVER}.. + +Create the tarballs: +$ make dist + +For actual release, to sign tarball: +gpg -u [email protected] -a --detach-sign xfsprogs-${RELVER}.tar + + + +and to publish it: +$ mv xfsprogs-${RELVER}.tar.asc xfsprogs-${RELVER}.tar.sign +$ gzip xfsprogs-${RELVER}.tar +$ kup put xfsprogs-${RELVER}.tar.gz xfsprogs-${RELVER}.tar.sign pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-${RELVER}.tar.gz + +where: + +# cat ~/.kuprc +host = [email protected] +subcmd = kup-server + |
