On the developer computer:
--------------------------
VERSION=3.2.2
git2cl > ChangeLog
# edit NEWS
# edit configure.ac (AC_INIT)
# edit freedink.spec (Version/Release + %changelog)
make distcheck
git commit -am "Release $VERSION"
git tag v$VERSION
git push
git push --tags

# TODO: pristine-tar

On the autobuilder:
-------------------
./dfarc-snapshot.sh release
./dfarc-exe.sh
./dfarc-debs.sh # as root
./dfarc-rpms.sh # in a Fedora vserver


On the maintainer computer:
---------------------------
# http://www.gnu.org/prep/maintain/html_node/FTP-Upload-Directive-File-_002d-v1_002e1.html
gpg --sign -b dfarc-$VERSION.tar.gz
cat <<EOF | gpg --clearsign -a > dfarc-$VERSION.tar.gz.directive.asc
version: 1.1
directory: dfarc
filename: dfarc-$VERSION.tar.gz
EOF
lftp -e "mput dfarc-$VERSION*; exit" -u anonymous, ftp-upload.gnu.org/incoming/ftp/
# Check ftp://ftp.gnu.org/gnu/freedink/


On the website:
---------------
cd www/releases/
    for f in ../snapshots/dfarc-*$VERSION*; do
        ln -nfs $f
    done
for dir in debian fedora woe; do
    pushd $dir
    for f in ../../snapshots/$dir/freedink-dfarc-*$VERSION*; do
        ln -nfs $f
    done
    make
    popd
done
pushd fedora
cp -a ../../snapshots/fedora/freedink-dfarc.spec .


Submit the release to:
----------------------
- GNU
  info-gnu@gnu.org
- Savannah / GNU Planet
  http://savannah.gnu.org/p/freedink
- freshmeat
  http://freshmeat.net/projects/freedink/
- Translation Project
  http://translationproject.org/html/maintainers.html
- Dink Network
  http://www.dinknetwork.com/contribute/version/new/gnu_freedink/
- Debian GNU/Linux
  http://wiki.debian.org/Games/Sponsors/Queue
- Fedora GNU/Linux
  http://fedoraproject.org/wiki/PackageMaintainers/UpdatingPackageHowTo
- OpenSUSE GNU/Linux
  tell Stefan about the latest official srpm
- ArchLinux GNU/Linux
  contact Petteri
- FreeBSD
  contact Stephen
- Ubuntu GNU/Linux (Debian merge request)
  contact shirish
- Press...


Debian notes:
-------------

# http://wiki.debian.org/Games/VCS
git-checkout master
git-import-orig --pristine-tar ../dfarc-$VERSION.tar.gz
# Fix stuff...
git commit -am "New upstream release - ..."
git-buildpackage --git-tag --git-pristine-tar
git push --all
git push --tags
# http://mentors.debian.net/cgi-bin/maintainer-intro
dput mentors ../dfarc_$VERSION-1_i386.changes
