aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2017-08-22 21:51:20 +0800
committerGitHub <noreply@github.com>2017-08-22 21:51:20 +0800
commit7b67b60773b70ac74edd3993eeea6fe9b790c664 (patch)
treeb86195a8909a194e07925123f2b9d95733d12d99
parent8d9c2a681a1dcf99ab949e79b1b9da17513e11d8 (diff)
parent305d99f0bd1effc0e164792199bf93a872da2962 (diff)
downloadyoutube-dl-7b67b60773b70ac74edd3993eeea6fe9b790c664.tar.xz
Merge pull request #13669 from bmwiedemann/master
[build] Override timestamps in zip file
-rw-r--r--Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 84ccce2b3..41e3a683a 100644
--- a/Makefile
+++ b/Makefile
@@ -46,8 +46,15 @@ tar: youtube-dl.tar.gz
pypi-files: youtube-dl.bash-completion README.txt youtube-dl.1 youtube-dl.fish
youtube-dl: youtube_dl/*.py youtube_dl/*/*.py
- zip --quiet youtube-dl youtube_dl/*.py youtube_dl/*/*.py
- zip --quiet --junk-paths youtube-dl youtube_dl/__main__.py
+ mkdir -p zip
+ for d in youtube_dl youtube_dl/downloader youtube_dl/extractor youtube_dl/postprocessor ; do \
+ mkdir -p zip/$$d ;\
+ cp -a $$d/*.py zip/$$d/ ;\
+ done
+ touch -t 200001010101 zip/youtube_dl/*.py zip/youtube_dl/*/*.py
+ mv zip/youtube_dl/__main__.py zip/
+ cd zip ; zip --quiet ../youtube-dl youtube_dl/*.py youtube_dl/*/*.py __main__.py
+ rm -rf zip
echo '#!$(PYTHON)' > youtube-dl
cat youtube-dl.zip >> youtube-dl
rm youtube-dl.zip