about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorFilippo Valsorda <filosottile.wiki@gmail.com>2012-09-25 23:56:01 +0200
committerFilippo Valsorda <filosottile.wiki@gmail.com>2012-09-25 23:56:01 +0200
commit225dceb0468a0608e9805479b927f6fb8cb94067 (patch)
treec525d123069176feb4c0a3fdf9fe576fbf624fbb /Makefile
parentdce1088450becaa95e7fcaea2c70e8965b142a69 (diff)
downloadyoutube-dl-225dceb0468a0608e9805479b927f6fb8cb94067.tar.gz
youtube-dl-225dceb0468a0608e9805479b927f6fb8cb94067.tar.xz
youtube-dl-225dceb0468a0608e9805479b927f6fb8cb94067.zip
moved make release to devscripts/release.sh
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 1 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index 26c85b578..c167d01c4 100644
--- a/Makefile
+++ b/Makefile
@@ -5,17 +5,7 @@ install: youtube-dl youtube-dl.1 youtube-dl.bash-completion
 	install -m 644 --owner root --group root youtube-dl.1 /usr/local/man/man1
 	install -m 644 --owner root --group root youtube-dl.bash-completion /etc/bash_completion.d/youtube-dl
 
-release:
-	@if [ -z "$$version" ]; then echo 'ERROR: specify version number like this: make release version=1994.09.06'; exit 1; fi
-	@if [ ! -z "`git tag | grep "$$version"`" ]; then echo 'ERROR: version already present'; exit 1; fi
-	@if [ ! -z "`git status --porcelain`" ]; then echo 'ERROR: the working directory is not clean; commit or stash changes'; exit 1; fi
-	@sed -i "s/__version__ = '.*'/__version__ = '$$version'/" youtube_dl/__init__.py
-	make all
-	git add -A
-	git commit -m "release $$version"
-	git tag -m "Release $$version" "$$version"
-
-.PHONY: all install release
+.PHONY: all install
 
 youtube-dl: youtube_dl/*.py
 	zip --quiet --junk-paths youtube-dl youtube_dl/*.py