| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 | #!/bin/bash# IMPORTANT: the following assumptions are made# * the GH repo is on the origin remote# * the gh-pages branch is named so locally# * the git config user.signingkey is properly set# You will need# pip install coverage nose rsa# TODO# release notes# make hash on local filesset -eif [ -z "$1" ]; then echo "ERROR: specify version number like this: $0 1994.09.06"; exit 1; fiversion="$1"if [ ! -z "`git tag | grep "$version"`" ]; then echo 'ERROR: version already present'; exit 1; fiif [ ! -z "`git status --porcelain | grep -v CHANGELOG`" ]; then echo 'ERROR: the working directory is not clean; commit or stash changes'; exit 1; fiif [ ! -f "updates_key.pem" ]; then echo 'ERROR: updates_key.pem missing'; exit 1; fiecho "\n### First of all, testing..."make cleannosetests --with-coverage --cover-package=youtube_dl --cover-html test || exit 1echo "\n### Changing version in version.py..."sed -i~ "s/__version__ = '.*'/__version__ = '$version'/" youtube_dl/version.pyecho "\n### Committing CHANGELOG README.md and youtube_dl/version.py..."make README.mdgit add CHANGELOG README.md youtube_dl/version.pygit commit -m "release $version"echo "\n### Now tagging, signing and pushing..."git tag -s -m "Release $version" "$version"git show "$version"read -p "Is it good, can I push? (y/n) " -n 1if [[ ! $REPLY =~ ^[Yy]$ ]]; then exit 1; fiechoMASTER=$(git rev-parse --abbrev-ref HEAD)git push origin $MASTER:mastergit push origin "$version"echo "\n### OK, now it is time to build the binaries..."REV=$(git rev-parse HEAD)make youtube-dl youtube-dl.tar.gzwget "http://jeromelaheurte.net:8142/download/rg3/youtube-dl/youtube-dl.exe?rev=$REV" -O youtube-dl.exe || \	wget "http://jeromelaheurte.net:8142/build/rg3/youtube-dl/youtube-dl.exe?rev=$REV" -O youtube-dl.exemkdir -p "update_staging/$version"mv youtube-dl youtube-dl.exe "update_staging/$version"mv youtube-dl.tar.gz "update_staging/$version/youtube-dl-$version.tar.gz"RELEASE_FILES="youtube-dl youtube-dl.exe youtube-dl-$version.tar.gz"(cd update_staging/$version/ && md5sum $RELEASE_FILES > MD5SUMS)(cd update_staging/$version/ && sha1sum $RELEASE_FILES > SHA1SUMS)(cd update_staging/$version/ && sha256sum $RELEASE_FILES > SHA2-256SUMS)(cd update_staging/$version/ && sha512sum $RELEASE_FILES > SHA2-512SUMS)git checkout HEAD -- youtube-dl youtube-dl.exeecho "\n### Signing and uploading the new binaries to youtube-dl.org..."for f in $RELEASE_FILES; do gpg --detach-sig "update_staging/$version/$f"; donescp -r "update_staging/$version" ytdl@youtube-dl.org:html/downloads/rm -r update_stagingecho "\n### Now switching to gh-pages..."git checkout gh-pagesgit checkout "$MASTER" -- devscripts/gh-pages/git reset devscripts/gh-pages/devscripts/gh-pages/add-version.py $versiondevscripts/gh-pages/sign-versions.py < updates_key.pemdevscripts/gh-pages/generate-download.pydevscripts/gh-pages/update-copyright.pygit add *.html *.html.in updategit commit -m "release $version"git show HEADread -p "Is it good, can I push? (y/n) " -n 1if [[ ! $REPLY =~ ^[Yy]$ ]]; then exit 1; fiechogit push origin gh-pagesecho "\n### DONE!"rm -r devscriptsgit checkout $MASTER
 |