2013-01-07 06:50:20 +09:00
|
|
|
#!/bin/bash
|
2012-09-26 06:56:01 +09:00
|
|
|
|
2013-01-01 03:15:30 +09:00
|
|
|
# IMPORTANT: the following assumptions are made
|
2013-01-03 07:40:24 +09:00
|
|
|
# * the GH repo is on the origin remote
|
2013-01-01 03:15:30 +09:00
|
|
|
# * the gh-pages branch is named so locally
|
|
|
|
# * the git config user.signingkey is properly set
|
|
|
|
|
|
|
|
# You will need
|
2016-05-29 14:49:14 +09:00
|
|
|
# pip install coverage nose rsa wheel
|
2013-01-01 03:15:30 +09:00
|
|
|
|
2013-01-03 07:40:24 +09:00
|
|
|
# TODO
|
|
|
|
# release notes
|
|
|
|
# make hash on local files
|
|
|
|
|
2013-01-01 03:15:30 +09:00
|
|
|
set -e
|
|
|
|
|
2014-02-22 23:06:07 +09:00
|
|
|
skip_tests=true
|
2016-06-14 05:16:56 +09:00
|
|
|
gpg_sign_commits=""
|
2016-05-30 01:36:42 +09:00
|
|
|
buildserver='localhost:8142'
|
|
|
|
|
|
|
|
while true
|
|
|
|
do
|
|
|
|
case "$1" in
|
|
|
|
--run-tests)
|
|
|
|
skip_tests=false
|
|
|
|
shift
|
|
|
|
;;
|
2016-06-14 05:16:56 +09:00
|
|
|
--gpg-sign-commits|-S)
|
|
|
|
gpg_sign_commits="-S"
|
|
|
|
shift
|
|
|
|
;;
|
2016-05-30 01:36:42 +09:00
|
|
|
--buildserver)
|
|
|
|
buildserver="$2"
|
|
|
|
shift 2
|
|
|
|
;;
|
|
|
|
--*)
|
|
|
|
echo "ERROR: unknown option $1"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2013-06-24 07:09:20 +09:00
|
|
|
|
2012-09-26 06:56:01 +09:00
|
|
|
if [ -z "$1" ]; then echo "ERROR: specify version number like this: $0 1994.09.06"; exit 1; fi
|
|
|
|
version="$1"
|
2014-03-24 18:25:49 +09:00
|
|
|
major_version=$(echo "$version" | sed -n 's#^\([0-9]*\.[0-9]*\.[0-9]*\).*#\1#p')
|
|
|
|
if test "$major_version" '!=' "$(date '+%Y.%m.%d')"; then
|
|
|
|
echo "$version does not start with today's date!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2012-09-26 06:56:01 +09:00
|
|
|
if [ ! -z "`git tag | grep "$version"`" ]; then echo 'ERROR: version already present'; exit 1; fi
|
2013-01-01 03:15:30 +09: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 16:28:05 +09: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
|
2013-01-01 03:15:30 +09:00
|
|
|
if [ ! -f "updates_key.pem" ]; then echo 'ERROR: updates_key.pem missing'; exit 1; fi
|
2016-05-22 04:46:42 +09:00
|
|
|
if ! type pandoc >/dev/null 2>/dev/null; then echo 'ERROR: pandoc is missing'; exit 1; fi
|
|
|
|
if ! python3 -c 'import rsa' 2>/dev/null; then echo 'ERROR: python3-rsa is missing'; exit 1; fi
|
2016-05-29 14:49:14 +09:00
|
|
|
if ! python3 -c 'import wheel' 2>/dev/null; then echo 'ERROR: wheel is missing'; exit 1; fi
|
2013-01-01 03:15:30 +09:00
|
|
|
|
2016-09-12 01:29:25 +09:00
|
|
|
read -p "Is ChangeLog up to date? (y/n) " -n 1
|
2016-09-12 01:32:01 +09:00
|
|
|
if [[ ! $REPLY =~ ^[Yy]$ ]]; then exit 1; fi
|
2016-09-12 01:29:25 +09:00
|
|
|
|
2013-02-19 07:22:01 +09:00
|
|
|
/bin/echo -e "\n### First of all, testing..."
|
2015-02-03 08:14:42 +09:00
|
|
|
make clean
|
2013-06-24 07:09:20 +09:00
|
|
|
if $skip_tests ; then
|
2013-06-24 06:41:52 +09:00
|
|
|
echo 'SKIPPING TESTS'
|
|
|
|
else
|
|
|
|
nosetests --verbose --with-coverage --cover-package=youtube_dl --cover-html test --stop || exit 1
|
|
|
|
fi
|
2013-01-01 03:15:30 +09:00
|
|
|
|
2013-02-19 07:22:01 +09:00
|
|
|
/bin/echo -e "\n### Changing version in version.py..."
|
2013-01-13 07:04:46 +09:00
|
|
|
sed -i "s/__version__ = '.*'/__version__ = '$version'/" youtube_dl/version.py
|
2013-01-01 03:15:30 +09:00
|
|
|
|
2016-07-07 14:41:25 +09:00
|
|
|
/bin/echo -e "\n### Changing version in ChangeLog..."
|
|
|
|
sed -i "s/<unreleased>/$version/" ChangeLog
|
|
|
|
|
2016-03-29 05:18:52 +09:00
|
|
|
/bin/echo -e "\n### Committing documentation, templates and youtube_dl/version.py..."
|
2019-04-27 06:22:35 +09:00
|
|
|
make README.md CONTRIBUTING.md issuetemplates supportedsites
|
|
|
|
git add README.md CONTRIBUTING.md .github/ISSUE_TEMPLATE/1_broken_site.md .github/ISSUE_TEMPLATE/2_site_support_request.md .github/ISSUE_TEMPLATE/3_site_feature_request.md .github/ISSUE_TEMPLATE/4_bug_report.md .github/ISSUE_TEMPLATE/5_feature_request.md .github/ISSUE_TEMPLATE/6_question.md docs/supportedsites.md youtube_dl/version.py ChangeLog
|
2016-06-14 05:16:56 +09:00
|
|
|
git commit $gpg_sign_commits -m "release $version"
|
2013-01-01 03:15:30 +09:00
|
|
|
|
2013-02-19 07:22:01 +09:00
|
|
|
/bin/echo -e "\n### Now tagging, signing and pushing..."
|
2013-01-01 03:15:30 +09: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-03 07:40:24 +09:00
|
|
|
MASTER=$(git rev-parse --abbrev-ref HEAD)
|
|
|
|
git push origin $MASTER:master
|
|
|
|
git push origin "$version"
|
2013-01-01 03:15:30 +09:00
|
|
|
|
2013-02-19 07:22:01 +09:00
|
|
|
/bin/echo -e "\n### OK, now it is time to build the binaries..."
|
2013-01-01 03:15:30 +09:00
|
|
|
REV=$(git rev-parse HEAD)
|
|
|
|
make youtube-dl youtube-dl.tar.gz
|
2013-09-16 11:12:43 +09:00
|
|
|
read -p "VM running? (y/n) " -n 1
|
2019-03-09 21:14:41 +09:00
|
|
|
wget "http://$buildserver/build/ytdl-org/youtube-dl/youtube-dl.exe?rev=$REV" -O youtube-dl.exe
|
2013-01-11 16:28:37 +09: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-07 07:14:56 +09:00
|
|
|
RELEASE_FILES="youtube-dl youtube-dl.exe youtube-dl-$version.tar.gz"
|
2013-01-11 16:28:37 +09: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)
|
2013-01-01 03:15:30 +09:00
|
|
|
|
2016-06-05 02:48:33 +09:00
|
|
|
/bin/echo -e "\n### Signing and uploading the new binaries to GitHub..."
|
2014-03-18 23:02:37 +09:00
|
|
|
for f in $RELEASE_FILES; do gpg --passphrase-repeat 5 --detach-sig "build/$version/$f"; done
|
2016-06-04 18:42:52 +09:00
|
|
|
|
2016-06-05 02:48:33 +09:00
|
|
|
ROOT=$(pwd)
|
2016-11-18 02:17:46 +09:00
|
|
|
python devscripts/create-github-release.py ChangeLog $version "$ROOT/build/$version"
|
2016-06-04 18:42:52 +09:00
|
|
|
|
2013-06-26 03:50:54 +09:00
|
|
|
ssh ytdl@yt-dl.org "sh html/update_latest.sh $version"
|
2013-01-01 03:15:30 +09:00
|
|
|
|
2013-02-19 07:22:01 +09:00
|
|
|
/bin/echo -e "\n### Now switching to gh-pages..."
|
2013-01-11 16:28:37 +09:00
|
|
|
git clone --branch gh-pages --single-branch . build/gh-pages
|
|
|
|
(
|
|
|
|
set -e
|
|
|
|
ORIGIN_URL=$(git config --get remote.origin.url)
|
2013-01-13 02:37:21 +09:00
|
|
|
cd build/gh-pages
|
2013-01-11 16:28:37 +09:00
|
|
|
"$ROOT/devscripts/gh-pages/add-version.py" $version
|
2013-03-30 03:42:33 +09:00
|
|
|
"$ROOT/devscripts/gh-pages/update-feed.py"
|
2013-01-13 02:05:19 +09:00
|
|
|
"$ROOT/devscripts/gh-pages/sign-versions.py" < "$ROOT/updates_key.pem"
|
2013-01-11 16:28:37 +09:00
|
|
|
"$ROOT/devscripts/gh-pages/generate-download.py"
|
|
|
|
"$ROOT/devscripts/gh-pages/update-copyright.py"
|
2013-08-31 22:05:59 +09:00
|
|
|
"$ROOT/devscripts/gh-pages/update-sites.py"
|
2013-01-11 16:28:37 +09:00
|
|
|
git add *.html *.html.in update
|
2016-06-14 05:16:56 +09:00
|
|
|
git commit $gpg_sign_commits -m "release $version"
|
2013-01-13 02:37:21 +09:00
|
|
|
git push "$ROOT" gh-pages
|
2013-01-13 02:05:19 +09:00
|
|
|
git push "$ORIGIN_URL" gh-pages
|
2013-01-11 16:28:37 +09:00
|
|
|
)
|
2013-01-13 06:25:54 +09:00
|
|
|
rm -rf build
|
2013-01-01 03:15:30 +09:00
|
|
|
|
2013-02-19 07:19:57 +09:00
|
|
|
make pypi-files
|
2013-02-02 02:01:53 +09:00
|
|
|
echo "Uploading to PyPi ..."
|
2014-03-16 18:22:41 +09:00
|
|
|
python setup.py sdist bdist_wheel upload
|
2013-02-19 07:19:57 +09:00
|
|
|
make clean
|
2013-02-02 02:01:53 +09:00
|
|
|
|
2013-02-19 07:22:01 +09:00
|
|
|
/bin/echo -e "\n### DONE!"
|