From 731ddfe9c921f6e450fa06f7f3be8b6754abe24f Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Tue, 13 Dec 2016 17:48:13 +0100 Subject: [PATCH] Remove docs/doing_a_release.md I am no longer sure why I added this file. It doesn't really belong into the awesome source code. It is better suited to be added to our web page, I think. Signed-off-by: Uli Schlachter --- docs/doing_a_release.md | 65 ----------------------------------------- 1 file changed, 65 deletions(-) delete mode 100644 docs/doing_a_release.md diff --git a/docs/doing_a_release.md b/docs/doing_a_release.md deleted file mode 100644 index 800598f14..000000000 --- a/docs/doing_a_release.md +++ /dev/null @@ -1,65 +0,0 @@ -## How to do a release - -* Edit `awesomeConfig.cmake` and choose a codename that is not already listed in [[Releases]]. jd always picked a song title, you should do the same. -* Commit this changes to `awesomeConfig.cmake` -* Add the release version and date to [[Releases]] -* Change the version in [[Template:Stable-version]] -* Git sign with `git tag -s vX.Y.Z -m 'awesome vX.Y.Z`' -* Push with `git push` and push tag with `git push origin vX.Y.Z` -* Run `make dist` to create tarballs. -* Copy tarballs inside `awesome.naquadah.org:/var/www/awesome.naquadah.org/download/` -* Edit `download.mdwn` from [http://git.naquadah.org/?p=awesome-www.git;a=summary the awesome www repository] to change the version information, links, etc -* Go into the 'src' submodule, and update it to vX.Y.Z with `git checkout vX.Y.Z`. This will be used to build and publish the documentation online. -* Commit `download.mdwn` and `src`. -* `git push` this -* Type `make push` in `awesome-www` to push changes to the website. Be careful to have `ikiwiki`, `asciidoc` and imagemagick for Perl (`perlmagick`, otherwise images get broken) -* Send a mail to `awesome@naquadah.org` with any amount of information and jokes inside. -* Change the topic on IRC - -For the announcement mail, the following shell script might be handy: - - #!/bin/sh - VER=$1 - PREV_VER=$2 - TAG="v$VER" - PTAG="v$PREV_VER" - REVS="$PTAG..$TAG" - - echo "awesome version $VER has been released. It is available from:" - - print_file() - { - EXT="$1" - URL="http://awesome.naquadah.org/download/awesome-$VER.$EXT" - FILE="/var/www/awesome.naquadah.org/download/awesome-$VER.$EXT" - MD5=$(ssh prometheus.naquadah.org "md5sum $FILE" 2>/dev/null | cut -f1 -d ' ') - SHA1=$(ssh prometheus.naquadah.org "sha1sum $FILE" 2>/dev/null | cut -f 1 -d ' ') - - echo - echo "$EXT: $URL" - echo "md5: $MD5" - echo "sha1: $SHA1" - } - - print_headline() - { - HEAD="$@" - echo - echo "$HEAD" - echo "$HEAD" | sed -e 's/./-/g' - } - - print_file "tar.xz" - print_file "tar.bz2" - - print_headline "number of changes" - git rev-list "$REVS" | wc -l - - print_headline "number of commiters" - git log --format=format:%an "$REVS" | sort -u | wc -l - - print_headline "shortlog" - git log "$REVS" | git shortlog --numbered | cat - - print_headline "diffstat" - git diff --stat "$REVS" | cat