aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* [Makefile] Add AUTHORS to youtube-dl.tar.gzSergey M․2017-12-221-2/+2
|
* [Makefile] Include setup.cfg in the tarball (closes #14857)Yen Chi Hsuan2017-11-271-1/+1
|
* [Makefile,devscripts/run_tests.sh] Actually exclude network testsYen Chi Hsuan2017-11-271-1/+10
| | | | Closes #14858
* Add testdata to youtube-dl.tar.gz (closes #14854)Sergey M․2017-11-261-1/+0
|
* Fix build failures with old cp and zipRyan Schmidt2017-08-271-2/+2
|
* [build] Override timestamps in zip fileBernhard M. Wiedemann2017-08-191-2/+9
| | | | | | | to make build reproducible. See https://reproducible-builds.org/ for why this is good Copying files to not interfere with freshness detection.
* [Makefile] Excluding __pycache__ correctly (#13400)Yen Chi Hsuan2017-06-171-1/+1
|
* Ignore and clean *.ytdl filesYen Chi Hsuan2017-04-251-1/+1
|
* Ignore and clean .swf filesYen Chi Hsuan2016-11-271-1/+1
| | | | Some videos on NicoNico are swf
* Clean and ignore more file typesYen Chi Hsuan2016-11-211-1/+1
| | | | | ape is another audio codec seen in kuwo. See https://en.wikipedia.org/wiki/Monkey's_Audio
* Ignore and clean .wav filesYen Chi Hsuan2016-11-031-1/+1
|
* [Makefile] Fix for GNU make < 4 (closes #9387)Yen Chi Hsuan2016-10-091-2/+2
| | | | | | | Shell assignment operator in BSD make != is ported to GNU make in version 4.0, so 3.x doesn't work. I choose to drop BSD make support as installing GNU make on *BSD systems is easier than installing newer GNU make.
* Revert "[Makefilea] Fix for GNU make < 4"Yen Chi Hsuan2016-10-071-2/+2
| | | | | | This reverts commit 831a34caa2112a9b2d867e05f8a4debf965e8389. The reverted commit breaks lazy extractors.
* [Makefilea] Fix for GNU make < 4Yen Chi Hsuan2016-10-071-2/+2
| | | | | | | | | | | | | | | | | | | | Closes #9387 The shell assignment operator != was introduced in GNU make 4.0, or specifically the commit in [1]. This fix removes such usages and fallback to a more portable syntax. Tested with: * GNU make 3.82 on CentOS 7.2 * bmake 20150910 on CentOS 7.2, source RPM from Fedora 24 [2] * GNU make 4.2.1 on Arch Linux (Arch official package) * bmake 20160926 on Arch Linux (Arch official package) * GNU make 3.82 on Arch Linux (Compiled from source) * Apple bsdmake-24 on macOS Sierra, binary package from Homebrew Thanks @bdeyal for the feedback of the first tests [1] http://git.savannah.gnu.org/cgit/make.git/commit/?id=b34438bee83ee906a23b881f257e684a0993b9b1 [2] http://koji.fedoraproject.org/koji/buildinfo?buildID=716769
* Ignore and cleanup 3gp filesYen Chi Hsuan2016-09-261-1/+1
|
* [Makefile] Cleanup files from fragment-based downloadersYen Chi Hsuan2016-09-231-1/+1
|
* Add ChangeLogYen Chi Hsuan2016-07-301-2/+2
|
* [Makefile] Fix youtube-dl.1 targetSergey M․2016-05-291-1/+1
| | | | Now it accepts output filename as argument
* [Makefile] Cleanup m4a filesYen Chi Hsuan2016-05-291-1/+1
| | | | [ci skip]
* [Makefile] delete thumbnailsTRox19722016-05-191-1/+1
|
* [test/test_socks] Add tests for SOCKS proxiesYen Chi Hsuan2016-05-101-1/+1
|
* [Makefile] Remove more media files in `make clean`Yen Chi Hsuan2016-05-051-1/+1
|
* Add experimental support for lazy loading the info extractorsJaime Marquínez Ferrándiz2016-04-081-1/+7
| | | | 'make lazy-extractors' creates the youtube_dl/extractor/lazy_extractors.py (imported by youtube_dl/extractor/__init__.py), which contains simplified classes that only have the 'suitable' class method and that load the appropiate class with the '__new__' method when a instance is created.
* Makefile: remove ISSUE_TEMPLATE.md from the 'all' target (fixes #9088)Jaime Marquínez Ferrándiz2016-04-061-1/+1
| | | | | It isn't included in the tar file, causing build failures. Since it's only used for GitHub, I think we don't need to store it in the tar file.
* Makefile: use full path for the ISSUE_TEMPLATE.md fileJaime Marquínez Ferrándiz2016-04-061-2/+2
|
* Rename ISSUE_TEMPLATE.tmpl in order not to be picked up by githubSergey M․2016-03-291-1/+1
|
* [Makefile] Fix ISSUE_TEMPLATE.md targetSergey M․2016-03-291-4/+4
|
* Add initial ISSUE_TEMPLATESander van den Oever2016-03-281-1/+4
| | | | | | | | | | | | | | Add auto-updating of youtube-dl version in ISSUE_TEMPLATE Move parts of template text and adopt makefile to new format Moved the 'kind-of-issue' section and rephrased a bit Rephrased and moved Example URL section upwards Moved ISSUE_TEMPLATE inside .github folder. Update makefile to match new folderstructure
* Makefile: make it compatible with bmakeJaime Marquínez Ferrándiz2016-03-191-9/+1
| | | | | It's the portable version of BSD make: http://crufty.net/help/sjg/bmake.html The syntax for conditionals is different in GNU make and BSD make, so we use the shell
* [Makefile] Allow specifying the Python version in offline testsYen Chi Hsuan2016-03-031-1/+1
|
* Jython support - handle *.class filesYen Chi Hsuan2016-02-211-0/+1
|
* [Makefile] iQiyi login test requires networkYen Chi Hsuan2016-02-201-1/+1
|
* Merge pull request #7691 from ryandesign/use-PYTHON-env-varYen Chi Hsuan2015-11-291-7/+7
|\ | | | | Always use PYTHON env var in Makefile
| * Always use PYTHON env var in MakefileRyan Schmidt2015-11-281-7/+7
| |
* | Makefile: fix 'find' commandJaime Marquínez Ferrándiz2015-03-271-1/+1
| | | | | | | | It worked with the GNU version, but not with the BSD version.
* | [Makefile] clean pyc files in clean targetPhilipp Hagemeister2015-02-261-0/+1
| |
* | Merge branch 'subtitles-rework'Jaime Marquínez Ferrándiz2015-02-231-1/+1
|\ \ | | | | | | | | | (Closes PR #4964)
| * | [test/YoutubeDL] Add test for subtitlesJaime Marquínez Ferrándiz2015-02-221-1/+1
| |/ | | | | | | Updated the offlinetest make target to not skip it
* | [Makefile] Also delete *.avi files in cleanPhilipp Hagemeister2015-02-191-1/+1
|/
* [Makefile] Simplify clean/cleanallPhilipp Hagemeister2015-02-031-4/+1
|
* Fix build with python 2.6Jaime Marquínez Ferrándiz2015-01-071-1/+1
| | | | | | | * Packages cannot be executed * '.format' needs the index of the argument (Reported in https://github.com/Homebrew/homebrew/issues/35616)
* [Makefile] Make offline tests actually work offlinePhilipp Hagemeister2015-01-041-1/+1
|
* Add documentation about supported sites (Fixes #4503)Philipp Hagemeister2014-12-301-2/+5
|
* Move flake8 configuration to setup.cfgJaime Marquínez Ferrándiz2014-12-161-5/+1
| | | | It will be used when calling flake8 from any directory in the project
* Use flake8 instead of pyflakes and pep8Jaime Marquínez Ferrándiz2014-12-161-4/+3
| | | | It combines both tools
* [Makefile] Ensure that offline test really is offlinePhilipp Hagemeister2014-12-151-1/+1
|
* Add offlinetest make targetPhilipp Hagemeister2014-12-141-1/+15
|
* [Makefile] Add CONTRIBUTING.md (Fixes #2984)Philipp Hagemeister2014-12-121-2/+5
|
* [Makefile] remove *.info.json in clean targetPhilipp Hagemeister2014-12-121-1/+1
|
* [Makefile] remove temporary files in clean targetPhilipp Hagemeister2014-10-271-1/+1
|