| 
									
										
										
										
											2013-01-06 22:50:20 +01:00
										 |  |  | #!/bin/bash
 | 
					
						
							| 
									
										
										
										
											2012-09-25 23:56:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-31 19:15:30 +01:00
										 |  |  | # IMPORTANT: the following assumptions are made | 
					
						
							| 
									
										
										
										
											2013-01-02 23:40:24 +01:00
										 |  |  | # * the GH repo is on the origin remote | 
					
						
							| 
									
										
										
										
											2012-12-31 19:15:30 +01:00
										 |  |  | # * the gh-pages branch is named so locally | 
					
						
							|  |  |  | # * the git config user.signingkey is properly set | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # You will need | 
					
						
							|  |  |  | # pip install coverage nose rsa | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-02 23:40:24 +01:00
										 |  |  | # TODO | 
					
						
							|  |  |  | # release notes | 
					
						
							|  |  |  | # make hash on local files | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-31 19:15:30 +01:00
										 |  |  | set -e | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-22 15:06:07 +01:00
										 |  |  | skip_tests=true | 
					
						
							|  |  |  | if [ "$1" = '--run-tests' ]; then | 
					
						
							|  |  |  |     skip_tests=false | 
					
						
							| 
									
										
										
										
											2013-06-24 00:05:02 +02:00
										 |  |  |     shift | 
					
						
							| 
									
										
										
										
											2013-06-23 23:41:52 +02:00
										 |  |  | fi | 
					
						
							| 
									
										
										
										
											2013-06-24 00:09:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-25 23:56:01 +02:00
										 |  |  | if [ -z "$1" ]; then echo "ERROR: specify version number like this: $0 1994.09.06"; exit 1; fi | 
					
						
							|  |  |  | version="$1" | 
					
						
							|  |  |  | if [ ! -z "`git tag | grep "$version"`" ]; then echo 'ERROR: version already present'; exit 1; fi | 
					
						
							| 
									
										
										
										
											2012-12-31 19:15:30 +01:00
										 |  |  | if [ ! -z "`git status --porcelain | grep -v CHANGELOG`" ]; then echo 'ERROR: the working directory is not clean; commit or stash changes'; exit 1; fi | 
					
						
							| 
									
										
										
										
											2014-01-07 08:28:05 +01:00
										 |  |  | useless_files=$(find youtube_dl -type f -not -name '*.py') | 
					
						
							|  |  |  | if [ ! -z "$useless_files" ]; then echo "ERROR: Non-.py files in youtube_dl: $useless_files"; exit 1; fi | 
					
						
							| 
									
										
										
										
											2012-12-31 19:15:30 +01:00
										 |  |  | if [ ! -f "updates_key.pem" ]; then echo 'ERROR: updates_key.pem missing'; exit 1; fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-18 23:22:01 +01:00
										 |  |  | /bin/echo -e "\n### First of all, testing..." | 
					
						
							| 
									
										
										
										
											2013-02-18 23:19:57 +01:00
										 |  |  | make cleanall | 
					
						
							| 
									
										
										
										
											2013-06-24 00:09:20 +02:00
										 |  |  | if $skip_tests ; then | 
					
						
							| 
									
										
										
										
											2013-06-23 23:41:52 +02:00
										 |  |  |     echo 'SKIPPING TESTS' | 
					
						
							|  |  |  | else | 
					
						
							|  |  |  |     nosetests --verbose --with-coverage --cover-package=youtube_dl --cover-html test --stop || exit 1 | 
					
						
							|  |  |  | fi | 
					
						
							| 
									
										
										
										
											2012-12-31 19:15:30 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-18 23:22:01 +01:00
										 |  |  | /bin/echo -e "\n### Changing version in version.py..." | 
					
						
							| 
									
										
										
										
											2013-01-12 23:04:46 +01:00
										 |  |  | sed -i "s/__version__ = '.*'/__version__ = '$version'/" youtube_dl/version.py | 
					
						
							| 
									
										
										
										
											2012-12-31 19:15:30 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-18 23:22:01 +01:00
										 |  |  | /bin/echo -e "\n### Committing CHANGELOG README.md and youtube_dl/version.py..." | 
					
						
							| 
									
										
										
										
											2012-12-31 19:15:30 +01:00
										 |  |  | make README.md | 
					
						
							|  |  |  | git add CHANGELOG README.md youtube_dl/version.py | 
					
						
							| 
									
										
										
										
											2012-09-25 23:56:01 +02:00
										 |  |  | git commit -m "release $version" | 
					
						
							| 
									
										
										
										
											2012-12-31 19:15:30 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-18 23:22:01 +01:00
										 |  |  | /bin/echo -e "\n### Now tagging, signing and pushing..." | 
					
						
							| 
									
										
										
										
											2012-12-31 19:15:30 +01:00
										 |  |  | git tag -s -m "Release $version" "$version" | 
					
						
							|  |  |  | git show "$version" | 
					
						
							|  |  |  | read -p "Is it good, can I push? (y/n) " -n 1 | 
					
						
							|  |  |  | if [[ ! $REPLY =~ ^[Yy]$ ]]; then exit 1; fi | 
					
						
							|  |  |  | echo | 
					
						
							| 
									
										
										
										
											2013-01-02 23:40:24 +01:00
										 |  |  | MASTER=$(git rev-parse --abbrev-ref HEAD) | 
					
						
							|  |  |  | git push origin $MASTER:master | 
					
						
							|  |  |  | git push origin "$version" | 
					
						
							| 
									
										
										
										
											2012-12-31 19:15:30 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-18 23:22:01 +01:00
										 |  |  | /bin/echo -e "\n### OK, now it is time to build the binaries..." | 
					
						
							| 
									
										
										
										
											2012-12-31 19:15:30 +01:00
										 |  |  | REV=$(git rev-parse HEAD) | 
					
						
							|  |  |  | make youtube-dl youtube-dl.tar.gz | 
					
						
							| 
									
										
										
										
											2013-09-16 04:12:43 +02:00
										 |  |  | read -p "VM running? (y/n) " -n 1 | 
					
						
							|  |  |  | wget "http://localhost:8142/build/rg3/youtube-dl/youtube-dl.exe?rev=$REV" -O youtube-dl.exe | 
					
						
							| 
									
										
										
										
											2013-01-11 08:28:37 +01:00
										 |  |  | mkdir -p "build/$version" | 
					
						
							|  |  |  | mv youtube-dl youtube-dl.exe "build/$version" | 
					
						
							|  |  |  | mv youtube-dl.tar.gz "build/$version/youtube-dl-$version.tar.gz" | 
					
						
							| 
									
										
										
										
											2013-01-06 23:14:56 +01:00
										 |  |  | RELEASE_FILES="youtube-dl youtube-dl.exe youtube-dl-$version.tar.gz" | 
					
						
							| 
									
										
										
										
											2013-01-11 08:28:37 +01:00
										 |  |  | (cd build/$version/ && md5sum $RELEASE_FILES > MD5SUMS) | 
					
						
							|  |  |  | (cd build/$version/ && sha1sum $RELEASE_FILES > SHA1SUMS) | 
					
						
							|  |  |  | (cd build/$version/ && sha256sum $RELEASE_FILES > SHA2-256SUMS) | 
					
						
							|  |  |  | (cd build/$version/ && sha512sum $RELEASE_FILES > SHA2-512SUMS) | 
					
						
							| 
									
										
										
										
											2012-12-31 19:15:30 +01:00
										 |  |  | git checkout HEAD -- youtube-dl youtube-dl.exe | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-23 23:57:23 +02:00
										 |  |  | /bin/echo -e "\n### Signing and uploading the new binaries to yt-dl.org ..." | 
					
						
							| 
									
										
										
										
											2013-01-11 08:28:37 +01:00
										 |  |  | for f in $RELEASE_FILES; do gpg --detach-sig "build/$version/$f"; done | 
					
						
							| 
									
										
										
										
											2013-06-25 17:14:25 +02:00
										 |  |  | scp -r "build/$version" ytdl@yt-dl.org:html/tmp/ | 
					
						
							|  |  |  | ssh ytdl@yt-dl.org "mv html/tmp/$version html/downloads/" | 
					
						
							| 
									
										
										
										
											2013-06-25 20:50:54 +02:00
										 |  |  | ssh ytdl@yt-dl.org "sh html/update_latest.sh $version" | 
					
						
							| 
									
										
										
										
											2012-12-31 19:15:30 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-18 23:22:01 +01:00
										 |  |  | /bin/echo -e "\n### Now switching to gh-pages..." | 
					
						
							| 
									
										
										
										
											2013-01-11 08:28:37 +01:00
										 |  |  | git clone --branch gh-pages --single-branch . build/gh-pages | 
					
						
							|  |  |  | ROOT=$(pwd) | 
					
						
							|  |  |  | ( | 
					
						
							|  |  |  |     set -e | 
					
						
							|  |  |  |     ORIGIN_URL=$(git config --get remote.origin.url) | 
					
						
							| 
									
										
										
										
											2013-01-12 18:37:21 +01:00
										 |  |  |     cd build/gh-pages | 
					
						
							| 
									
										
										
										
											2013-01-11 08:28:37 +01:00
										 |  |  |     "$ROOT/devscripts/gh-pages/add-version.py" $version | 
					
						
							| 
									
										
										
										
											2013-03-29 19:42:33 +01:00
										 |  |  |     "$ROOT/devscripts/gh-pages/update-feed.py" | 
					
						
							| 
									
										
										
										
											2013-01-12 18:05:19 +01:00
										 |  |  |     "$ROOT/devscripts/gh-pages/sign-versions.py" < "$ROOT/updates_key.pem" | 
					
						
							| 
									
										
										
										
											2013-01-11 08:28:37 +01:00
										 |  |  |     "$ROOT/devscripts/gh-pages/generate-download.py" | 
					
						
							|  |  |  |     "$ROOT/devscripts/gh-pages/update-copyright.py" | 
					
						
							| 
									
										
										
										
											2013-08-31 15:05:59 +02:00
										 |  |  |     "$ROOT/devscripts/gh-pages/update-sites.py" | 
					
						
							| 
									
										
										
										
											2013-01-11 08:28:37 +01:00
										 |  |  |     git add *.html *.html.in update | 
					
						
							|  |  |  |     git commit -m "release $version" | 
					
						
							| 
									
										
										
										
											2013-01-12 18:37:21 +01:00
										 |  |  |     git push "$ROOT" gh-pages | 
					
						
							| 
									
										
										
										
											2013-01-12 18:05:19 +01:00
										 |  |  |     git push "$ORIGIN_URL" gh-pages | 
					
						
							| 
									
										
										
										
											2013-01-11 08:28:37 +01:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2013-01-12 22:25:54 +01:00
										 |  |  | rm -rf build | 
					
						
							| 
									
										
										
										
											2012-12-31 19:15:30 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-18 23:19:57 +01:00
										 |  |  | make pypi-files | 
					
						
							| 
									
										
										
										
											2013-02-01 18:01:53 +01:00
										 |  |  | echo "Uploading to PyPi ..." | 
					
						
							| 
									
										
										
										
											2013-02-02 14:52:38 +01:00
										 |  |  | python setup.py sdist upload | 
					
						
							| 
									
										
										
										
											2013-02-18 23:19:57 +01:00
										 |  |  | make clean | 
					
						
							| 
									
										
										
										
											2013-02-01 18:01:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-18 23:22:01 +01:00
										 |  |  | /bin/echo -e "\n### DONE!" |