3 # IMPORTANT: the following assumptions are made 
   4 # * the GH repo is on the origin remote 
   5 # * the gh-pages branch is named so locally 
   6 # * the git config user.signingkey is properly set 
   9 # pip install coverage nose rsa 
  13 # make hash on local files 
  17 if [ -z "$1" ]; then echo "ERROR: specify version number like this: $0 1994.09.06"; exit 1; fi 
  19 if [ ! -z "`git tag | grep "$version"`" ]; then echo 'ERROR: version already present'; exit 1; fi 
  20 if [ ! -z "`git status --porcelain | grep -v CHANGELOG`" ]; then echo 'ERROR: the working directory is not clean; commit or stash changes'; exit 1; fi 
  21 if [ ! -f "updates_key.pem" ]; then echo 'ERROR: updates_key.pem missing'; exit 1; fi 
  23 /bin
/echo -e "\n### First of all, testing..." 
  25 nosetests 
--verbose --with-coverage --cover-package=youtube_dl 
--cover-html test --stop || exit 1 
  27 /bin
/echo -e "\n### Changing version in version.py..." 
  28 sed -i "s/__version__ = '.*'/__version__ = '$version'/" youtube_dl
/version.py
 
  30 /bin
/echo -e "\n### Committing CHANGELOG README.md and youtube_dl/version.py..." 
  32 git add CHANGELOG README.md youtube_dl
/version.py
 
  33 git commit 
-m "release $version" 
  35 /bin
/echo -e "\n### Now tagging, signing and pushing..." 
  36 git tag 
-s -m "Release $version" "$version" 
  38 read -p "Is it good, can I push? (y/n) " -n 1 
  39 if [[ ! $REPLY =~ ^
[Yy
]$ 
]]; then exit 1; fi 
  41 MASTER
=$(git rev-parse --abbrev-ref HEAD) 
  42 git push origin 
$MASTER:master
 
  43 git push origin 
"$version" 
  45 /bin
/echo -e "\n### OK, now it is time to build the binaries..." 
  46 REV
=$(git rev-parse HEAD) 
  47 make youtube
-dl youtube
-dl.
tar.gz
 
  48 wget 
"http://jeromelaheurte.net:8142/download/rg3/youtube-dl/youtube-dl.exe?rev=$REV" -O youtube
-dl.exe 
|| \
 
  49         wget 
"http://jeromelaheurte.net:8142/build/rg3/youtube-dl/youtube-dl.exe?rev=$REV" -O youtube
-dl.exe
 
  50 mkdir -p "build/$version" 
  51 mv youtube
-dl youtube
-dl.exe 
"build/$version" 
  52 mv youtube
-dl.
tar.gz 
"build/$version/youtube-dl-$version.tar.gz" 
  53 RELEASE_FILES
="youtube-dl youtube-dl.exe youtube-dl-$version.tar.gz" 
  54 (cd build
/$version/ && md5sum $RELEASE_FILES > MD5SUMS
) 
  55 (cd build
/$version/ && sha1sum $RELEASE_FILES > SHA1SUMS
) 
  56 (cd build
/$version/ && sha256sum 
$RELEASE_FILES > SHA2
-256SUMS) 
  57 (cd build
/$version/ && sha512sum 
$RELEASE_FILES > SHA2
-512SUMS) 
  58 git checkout HEAD 
-- youtube
-dl youtube
-dl.exe
 
  60 /bin
/echo -e "\n### Signing and uploading the new binaries to youtube-dl.org..." 
  61 for f 
in $RELEASE_FILES; do gpg 
--detach-sig "build/$version/$f"; done 
  62 scp 
-r "build/$version" ytdl@youtube
-dl.org
:html
/downloads
/ 
  64 /bin
/echo -e "\n### Now switching to gh-pages..." 
  65 git clone 
--branch gh
-pages --single-branch . build
/gh
-pages 
  69     ORIGIN_URL
=$(git config --get remote.origin.url) 
  71     "$ROOT/devscripts/gh-pages/add-version.py" $version 
  72     "$ROOT/devscripts/gh-pages/update-feed.py" 
  73     "$ROOT/devscripts/gh-pages/sign-versions.py" < "$ROOT/updates_key.pem" 
  74     "$ROOT/devscripts/gh-pages/generate-download.py" 
  75     "$ROOT/devscripts/gh-pages/update-copyright.py" 
  76     git add 
*.html 
*.html.
in update
 
  77     git commit 
-m "release $version" 
  79     read -p "Is it good, can I push? (y/n) " -n 1 
  80     if [[ ! $REPLY =~ ^
[Yy
]$ 
]]; then exit 1; fi 
  82     git push 
"$ROOT" gh
-pages 
  83     git push 
"$ORIGIN_URL" gh
-pages 
  88 echo "Uploading to PyPi ..." 
  89 python setup.py sdist upload
 
  92 /bin
/echo -e "\n### DONE!"