2021-01-16 18:54:52 +00:00
|
|
|
all: youtube-dlc doc man
|
2021-01-07 20:35:52 +00:00
|
|
|
doc: README.md CONTRIBUTING.md issuetemplates supportedsites
|
2021-01-16 18:54:52 +00:00
|
|
|
man: README.txt youtube-dlc.1 youtube-dlc.bash-completion youtube-dlc.zsh youtube-dlc.fish
|
|
|
|
|
2011-08-24 22:09:28 +00:00
|
|
|
|
2012-09-27 17:41:51 +00:00
|
|
|
clean:
|
2021-02-12 04:34:04 +00:00
|
|
|
rm -rf youtube-dlc.1.temp.md youtube-dlc.1 youtube-dlc.bash-completion README.txt MANIFEST build/ dist/ .coverage cover/ youtube-dlc.tar.gz youtube-dlc.zsh youtube-dlc.fish youtube_dlc/extractor/lazy_extractors.py *.dump *.part* *.ytdl *.info.json *.mp4 *.m4a *.flv *.mp3 *.avi *.mkv *.webm *.3gp *.wav *.ape *.swf *.jpg *.png *.spec *.frag *.frag.urls *.frag.aria2 CONTRIBUTING.md.tmp youtube-dlc youtube-dlc.exe
|
2015-03-27 13:21:53 +00:00
|
|
|
find . -name "*.pyc" -delete
|
2016-02-20 19:29:49 +00:00
|
|
|
find . -name "*.class" -delete
|
2011-08-24 22:09:28 +00:00
|
|
|
|
2014-08-14 15:01:23 +00:00
|
|
|
PREFIX ?= /usr/local
|
|
|
|
BINDIR ?= $(PREFIX)/bin
|
|
|
|
MANDIR ?= $(PREFIX)/man
|
2014-10-06 11:02:11 +00:00
|
|
|
SHAREDIR ?= $(PREFIX)/share
|
2021-01-10 21:36:58 +00:00
|
|
|
# make_supportedsites.py doesnot work correctly in python2
|
|
|
|
PYTHON ?= /usr/bin/env python3
|
2012-10-25 19:19:13 +00:00
|
|
|
|
2013-05-10 21:47:37 +00:00
|
|
|
# set SYSCONFDIR to /etc if PREFIX=/usr or PREFIX=/usr/local
|
2016-10-09 10:22:55 +00:00
|
|
|
SYSCONFDIR = $(shell if [ $(PREFIX) = /usr -o $(PREFIX) = /usr/local ]; then echo /etc; else echo $(PREFIX)/etc; fi)
|
2013-05-10 21:47:37 +00:00
|
|
|
|
2018-04-22 19:50:11 +00:00
|
|
|
# set markdown input format to "markdown-smart" for pandoc version 2 and to "markdown" for pandoc prior to version 2
|
|
|
|
MARKDOWN = $(shell if [ `pandoc -v | head -n1 | cut -d" " -f2 | head -c1` = "2" ]; then echo markdown-smart; else echo markdown; fi)
|
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
install: youtube-dlc youtube-dlc.1 youtube-dlc.bash-completion youtube-dlc.zsh youtube-dlc.fish
|
2012-10-25 19:19:13 +00:00
|
|
|
install -d $(DESTDIR)$(BINDIR)
|
2020-09-02 18:25:25 +00:00
|
|
|
install -m 755 youtube-dlc $(DESTDIR)$(BINDIR)
|
2012-10-25 19:19:13 +00:00
|
|
|
install -d $(DESTDIR)$(MANDIR)/man1
|
2020-09-02 18:25:25 +00:00
|
|
|
install -m 644 youtube-dlc.1 $(DESTDIR)$(MANDIR)/man1
|
2012-10-25 19:19:13 +00:00
|
|
|
install -d $(DESTDIR)$(SYSCONFDIR)/bash_completion.d
|
2020-09-02 18:25:25 +00:00
|
|
|
install -m 644 youtube-dlc.bash-completion $(DESTDIR)$(SYSCONFDIR)/bash_completion.d/youtube-dlc
|
2014-10-06 11:02:11 +00:00
|
|
|
install -d $(DESTDIR)$(SHAREDIR)/zsh/site-functions
|
2020-09-02 18:25:25 +00:00
|
|
|
install -m 644 youtube-dlc.zsh $(DESTDIR)$(SHAREDIR)/zsh/site-functions/_youtube-dlc
|
2014-09-14 12:07:33 +00:00
|
|
|
install -d $(DESTDIR)$(SYSCONFDIR)/fish/completions
|
2020-09-02 18:25:25 +00:00
|
|
|
install -m 644 youtube-dlc.fish $(DESTDIR)$(SYSCONFDIR)/fish/completions/youtube-dlc.fish
|
2012-08-03 18:10:54 +00:00
|
|
|
|
2014-12-14 20:55:57 +00:00
|
|
|
codetest:
|
2014-12-16 18:54:22 +00:00
|
|
|
flake8 .
|
2014-12-14 20:55:57 +00:00
|
|
|
|
2012-11-26 21:35:12 +00:00
|
|
|
test:
|
2020-09-02 18:25:25 +00:00
|
|
|
#nosetests --with-coverage --cover-package=youtube_dlc --cover-html --verbose --processes 4 test
|
2012-12-11 19:07:35 +00:00
|
|
|
nosetests --verbose test
|
2014-12-14 20:55:57 +00:00
|
|
|
$(MAKE) codetest
|
|
|
|
|
|
|
|
ot: offlinetest
|
|
|
|
|
2017-11-27 13:32:06 +00:00
|
|
|
# Keep this list in sync with devscripts/run_tests.sh
|
2014-12-14 20:55:57 +00:00
|
|
|
offlinetest: codetest
|
2017-11-27 13:32:06 +00:00
|
|
|
$(PYTHON) -m nose --verbose test \
|
|
|
|
--exclude test_age_restriction.py \
|
|
|
|
--exclude test_download.py \
|
|
|
|
--exclude test_iqiyi_sdk_interpreter.py \
|
2019-10-13 16:00:48 +00:00
|
|
|
--exclude test_overwrites.py \
|
2017-11-27 13:32:06 +00:00
|
|
|
--exclude test_socks.py \
|
|
|
|
--exclude test_subtitles.py \
|
|
|
|
--exclude test_write_annotations.py \
|
|
|
|
--exclude test_youtube_lists.py \
|
2020-12-29 15:03:07 +00:00
|
|
|
--exclude test_youtube_signature.py \
|
|
|
|
--exclude test_post_hooks.py
|
2012-11-26 21:35:12 +00:00
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
tar: youtube-dlc.tar.gz
|
2013-01-06 22:02:31 +00:00
|
|
|
|
2014-12-30 18:35:35 +00:00
|
|
|
.PHONY: all clean install test tar bash-completion pypi-files zsh-completion fish-completion ot offlinetest codetest supportedsites
|
2013-02-18 22:19:57 +00:00
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
pypi-files: youtube-dlc.bash-completion README.txt youtube-dlc.1 youtube-dlc.fish
|
2012-08-03 18:10:54 +00:00
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
youtube-dlc: youtube_dlc/*.py youtube_dlc/*/*.py
|
2017-07-17 11:49:09 +00:00
|
|
|
mkdir -p zip
|
2020-09-02 18:25:25 +00:00
|
|
|
for d in youtube_dlc youtube_dlc/downloader youtube_dlc/extractor youtube_dlc/postprocessor ; do \
|
2017-07-17 11:49:09 +00:00
|
|
|
mkdir -p zip/$$d ;\
|
2017-08-27 23:07:09 +00:00
|
|
|
cp -pPR $$d/*.py zip/$$d/ ;\
|
2017-07-17 11:49:09 +00:00
|
|
|
done
|
2020-09-02 18:25:25 +00:00
|
|
|
touch -t 200001010101 zip/youtube_dlc/*.py zip/youtube_dlc/*/*.py
|
|
|
|
mv zip/youtube_dlc/__main__.py zip/
|
|
|
|
cd zip ; zip -q ../youtube-dlc youtube_dlc/*.py youtube_dlc/*/*.py __main__.py
|
2017-07-17 11:49:09 +00:00
|
|
|
rm -rf zip
|
2020-09-02 18:25:25 +00:00
|
|
|
echo '#!$(PYTHON)' > youtube-dlc
|
|
|
|
cat youtube-dlc.zip >> youtube-dlc
|
|
|
|
rm youtube-dlc.zip
|
|
|
|
chmod a+x youtube-dlc
|
2012-08-03 18:10:54 +00:00
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
README.md: youtube_dlc/*.py youtube_dlc/*/*.py
|
|
|
|
COLUMNS=80 $(PYTHON) youtube_dlc/__main__.py --help | $(PYTHON) devscripts/make_readme.py
|
2011-08-24 22:09:28 +00:00
|
|
|
|
2014-12-12 15:42:40 +00:00
|
|
|
CONTRIBUTING.md: README.md
|
2015-11-29 04:56:24 +00:00
|
|
|
$(PYTHON) devscripts/make_contributing.py README.md CONTRIBUTING.md
|
2014-12-12 15:42:40 +00:00
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
issuetemplates: devscripts/make_issue_template.py .github/ISSUE_TEMPLATE_tmpl/1_broken_site.md .github/ISSUE_TEMPLATE_tmpl/2_site_support_request.md .github/ISSUE_TEMPLATE_tmpl/3_site_feature_request.md .github/ISSUE_TEMPLATE_tmpl/4_bug_report.md .github/ISSUE_TEMPLATE_tmpl/5_feature_request.md youtube_dlc/version.py
|
2019-04-26 21:55:30 +00:00
|
|
|
$(PYTHON) devscripts/make_issue_template.py .github/ISSUE_TEMPLATE_tmpl/1_broken_site.md .github/ISSUE_TEMPLATE/1_broken_site.md
|
|
|
|
$(PYTHON) devscripts/make_issue_template.py .github/ISSUE_TEMPLATE_tmpl/2_site_support_request.md .github/ISSUE_TEMPLATE/2_site_support_request.md
|
|
|
|
$(PYTHON) devscripts/make_issue_template.py .github/ISSUE_TEMPLATE_tmpl/3_site_feature_request.md .github/ISSUE_TEMPLATE/3_site_feature_request.md
|
|
|
|
$(PYTHON) devscripts/make_issue_template.py .github/ISSUE_TEMPLATE_tmpl/4_bug_report.md .github/ISSUE_TEMPLATE/4_bug_report.md
|
|
|
|
$(PYTHON) devscripts/make_issue_template.py .github/ISSUE_TEMPLATE_tmpl/5_feature_request.md .github/ISSUE_TEMPLATE/5_feature_request.md
|
2016-03-06 22:16:13 +00:00
|
|
|
|
2014-12-30 18:35:35 +00:00
|
|
|
supportedsites:
|
2015-11-29 04:56:24 +00:00
|
|
|
$(PYTHON) devscripts/make_supportedsites.py docs/supportedsites.md
|
2014-12-30 18:35:35 +00:00
|
|
|
|
2012-11-29 15:51:55 +00:00
|
|
|
README.txt: README.md
|
2018-04-22 19:50:11 +00:00
|
|
|
pandoc -f $(MARKDOWN) -t plain README.md -o README.txt
|
2012-11-29 15:51:55 +00:00
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
youtube-dlc.1: README.md
|
|
|
|
$(PYTHON) devscripts/prepare_manpage.py youtube-dlc.1.temp.md
|
|
|
|
pandoc -s -f $(MARKDOWN) -t man youtube-dlc.1.temp.md -o youtube-dlc.1
|
|
|
|
rm -f youtube-dlc.1.temp.md
|
2012-08-01 09:53:17 +00:00
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
youtube-dlc.bash-completion: youtube_dlc/*.py youtube_dlc/*/*.py devscripts/bash-completion.in
|
2015-11-29 04:56:24 +00:00
|
|
|
$(PYTHON) devscripts/bash-completion.py
|
2012-12-07 13:46:14 +00:00
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
bash-completion: youtube-dlc.bash-completion
|
2013-02-18 22:19:57 +00:00
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
youtube-dlc.zsh: youtube_dlc/*.py youtube_dlc/*/*.py devscripts/zsh-completion.in
|
2015-11-29 04:56:24 +00:00
|
|
|
$(PYTHON) devscripts/zsh-completion.py
|
2014-10-06 11:02:11 +00:00
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
zsh-completion: youtube-dlc.zsh
|
2014-10-06 11:02:11 +00:00
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
youtube-dlc.fish: youtube_dlc/*.py youtube_dlc/*/*.py devscripts/fish-completion.in
|
2015-11-29 04:56:24 +00:00
|
|
|
$(PYTHON) devscripts/fish-completion.py
|
2014-09-14 12:07:33 +00:00
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
fish-completion: youtube-dlc.fish
|
2014-09-14 12:07:33 +00:00
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
lazy-extractors: youtube_dlc/extractor/lazy_extractors.py
|
2016-02-10 13:01:31 +00:00
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
_EXTRACTOR_FILES = $(shell find youtube_dlc/extractor -iname '*.py' -and -not -iname 'lazy_extractors.py')
|
|
|
|
youtube_dlc/extractor/lazy_extractors.py: devscripts/make_lazy_extractors.py devscripts/lazy_load_template.py $(_EXTRACTOR_FILES)
|
2016-02-10 13:01:31 +00:00
|
|
|
$(PYTHON) devscripts/make_lazy_extractors.py $@
|
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
youtube-dlc.tar.gz: youtube-dlc README.md README.txt youtube-dlc.1 youtube-dlc.bash-completion youtube-dlc.zsh youtube-dlc.fish ChangeLog AUTHORS
|
|
|
|
@tar -czf youtube-dlc.tar.gz --transform "s|^|youtube-dlc/|" --owner 0 --group 0 \
|
2013-01-06 22:02:31 +00:00
|
|
|
--exclude '*.DS_Store' \
|
|
|
|
--exclude '*.kate-swp' \
|
|
|
|
--exclude '*.pyc' \
|
|
|
|
--exclude '*.pyo' \
|
|
|
|
--exclude '*~' \
|
2017-06-17 09:09:24 +00:00
|
|
|
--exclude '__pycache__' \
|
2013-01-07 11:48:07 +00:00
|
|
|
--exclude '.git' \
|
2014-03-26 11:01:08 +00:00
|
|
|
--exclude 'docs/_build' \
|
2013-01-07 11:48:07 +00:00
|
|
|
-- \
|
2020-09-02 18:25:25 +00:00
|
|
|
bin devscripts test youtube_dlc docs \
|
2017-12-22 16:46:08 +00:00
|
|
|
ChangeLog AUTHORS LICENSE README.md README.txt \
|
2020-09-02 18:25:25 +00:00
|
|
|
Makefile MANIFEST.in youtube-dlc.1 youtube-dlc.bash-completion \
|
|
|
|
youtube-dlc.zsh youtube-dlc.fish setup.py setup.cfg \
|
|
|
|
youtube-dlc
|