moved make release to devscripts/release.sh
authorFilippo Valsorda <filosottile.wiki@gmail.com>
Tue, 25 Sep 2012 21:56:01 +0000 (23:56 +0200)
committerFilippo Valsorda <filosottile.wiki@gmail.com>
Tue, 25 Sep 2012 21:56:01 +0000 (23:56 +0200)
Makefile
devscripts/posix-locale.sh [changed mode: 0644->0755]
devscripts/release.sh [new file with mode: 0755]
devscripts/wine-py2exe.sh [changed mode: 0644->0755]

index 26c85b57809f7d7a4ed899a67d7c0c31d7bffbe3..c167d01c43fbdc75b68fa95c767d33532e6cc806 100644 (file)
--- 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
old mode 100644 (file)
new mode 100755 (executable)
diff --git a/devscripts/release.sh b/devscripts/release.sh
new file mode 100755 (executable)
index 0000000..75f8ec8
--- /dev/null
@@ -0,0 +1,11 @@
+#! /bin/bash
+
+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
+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"
\ No newline at end of file
old mode 100644 (file)
new mode 100755 (executable)