--- Makefile.orig 2025-11-12 00:51:24 UTC +++ Makefile @@ -1,16 +1,16 @@ -all: lazy-extractors yt-dlp doc pypi-files -all-extra: lazy-extractors yt-dlp-extra doc pypi-files +all: lazy-extractors yt-dlp pypi-files +all: lazy-extractors yt-dlp clean: clean-test clean-dist clean-all: clean clean-cache completions: completion-bash completion-fish completion-zsh -doc: README.md CONTRIBUTING.md CONTRIBUTORS issuetemplates supportedsites +doc: README.md supportedsites ot: offlinetest tar: yt-dlp.tar.gz # Keep this list in sync with pyproject.toml includes/artifacts # intended use: when building a source distribution, # make pypi-files && python3 -m build -sn . -pypi-files: AUTHORS Changelog.md LICENSE README.md README.txt supportedsites \ +pypi-files: Changelog.md LICENSE README.md README.txt supportedsites \ completions yt-dlp.1 pyproject.toml devscripts/* test/* .PHONY: all clean clean-all clean-test clean-dist clean-cache \ @@ -30,7 +30,7 @@ clean-dist: test/testdata/sigs/player-*.js test/testdata/thumbnails/empty.webp "test/testdata/thumbnails/foo %d bar/foo_%d."* clean-dist: rm -rf yt-dlp.1.temp.md yt-dlp.1 README.txt MANIFEST build/ dist/ .coverage cover/ yt-dlp.tar.gz completions/ \ - yt_dlp/extractor/lazy_extractors.py *.spec CONTRIBUTING.md.tmp yt-dlp yt-dlp.exe yt_dlp.egg-info/ AUTHORS \ + yt_dlp/extractor/lazy_extractors.py *.spec yt-dlp yt-dlp.exe yt_dlp.egg-info/ \ yt-dlp.zip .ejs-* yt_dlp_ejs/ clean-cache: find . \( \ @@ -129,31 +129,14 @@ yt-dlp: yt-dlp.zip chmod a+x yt-dlp rm -rf zip -README.md: $(PY_CODE_FILES) devscripts/make_readme.py - COLUMNS=80 $(PYTHON) yt_dlp/__main__.py --ignore-config --help | $(PYTHON) devscripts/make_readme.py - -CONTRIBUTING.md: README.md devscripts/make_contributing.py - $(PYTHON) devscripts/make_contributing.py README.md CONTRIBUTING.md - -issuetemplates: devscripts/make_issue_template.py .github/ISSUE_TEMPLATE_tmpl/1_broken_site.yml .github/ISSUE_TEMPLATE_tmpl/2_site_support_request.yml .github/ISSUE_TEMPLATE_tmpl/3_site_feature_request.yml .github/ISSUE_TEMPLATE_tmpl/4_bug_report.yml .github/ISSUE_TEMPLATE_tmpl/5_feature_request.yml yt_dlp/version.py - $(PYTHON) devscripts/make_issue_template.py .github/ISSUE_TEMPLATE_tmpl/1_broken_site.yml .github/ISSUE_TEMPLATE/1_broken_site.yml - $(PYTHON) devscripts/make_issue_template.py .github/ISSUE_TEMPLATE_tmpl/2_site_support_request.yml .github/ISSUE_TEMPLATE/2_site_support_request.yml - $(PYTHON) devscripts/make_issue_template.py .github/ISSUE_TEMPLATE_tmpl/3_site_feature_request.yml .github/ISSUE_TEMPLATE/3_site_feature_request.yml - $(PYTHON) devscripts/make_issue_template.py .github/ISSUE_TEMPLATE_tmpl/4_bug_report.yml .github/ISSUE_TEMPLATE/4_bug_report.yml - $(PYTHON) devscripts/make_issue_template.py .github/ISSUE_TEMPLATE_tmpl/5_feature_request.yml .github/ISSUE_TEMPLATE/5_feature_request.yml - $(PYTHON) devscripts/make_issue_template.py .github/ISSUE_TEMPLATE_tmpl/6_question.yml .github/ISSUE_TEMPLATE/6_question.yml - supportedsites: $(PYTHON) devscripts/make_supportedsites.py supportedsites.md -README.txt: README.md - pandoc -f $(MARKDOWN) -t plain README.md -o README.txt +#yt-dlp.1: README.md devscripts/prepare_manpage.py +# $(PYTHON) devscripts/prepare_manpage.py yt-dlp.1.temp.md +# pandoc -s -f $(MARKDOWN) -t man yt-dlp.1.temp.md -o yt-dlp.1 +# rm -f yt-dlp.1.temp.md -yt-dlp.1: README.md devscripts/prepare_manpage.py - $(PYTHON) devscripts/prepare_manpage.py yt-dlp.1.temp.md - pandoc -s -f $(MARKDOWN) -t man yt-dlp.1.temp.md -o yt-dlp.1 - rm -f yt-dlp.1.temp.md - completions/bash/yt-dlp: $(PY_CODE_FILES) devscripts/bash-completion.in mkdir -p completions/bash $(PYTHON) devscripts/bash-completion.py @@ -184,21 +167,9 @@ yt-dlp.tar.gz: all --exclude '.git' \ -- \ README.md supportedsites.md Changelog.md LICENSE \ - CONTRIBUTING.md Maintainers.md CONTRIBUTORS AUTHORS \ + Maintainers.md \ Makefile yt-dlp.1 README.txt completions .gitignore \ yt-dlp yt_dlp pyproject.toml devscripts test - -AUTHORS: Changelog.md - @if [ -d '.git' ] && command -v git > /dev/null ; then \ - echo 'Generating $@ from git commit history' ; \ - git shortlog -s -n HEAD | cut -f2 | sort > $@ ; \ - fi - -CONTRIBUTORS: Changelog.md - @if [ -d '.git' ] && command -v git > /dev/null ; then \ - echo 'Updating $@ from git commit history' ; \ - $(PYTHON) devscripts/make_changelog.py -v -c > /dev/null ; \ - fi # The following EJS_-prefixed variables are auto-generated by devscripts/update_ejs.py # DO NOT EDIT!