]> Raphaƫl G. Git Repositories - youtubedl/blob - debian/patches/skip_support_file_installation.patch
1e5506f640df551a6aeae0ead9e3e950d6429a17
[youtubedl] / debian / patches / skip_support_file_installation.patch
1 From: Carlos Maddela <e7appew@gmail.com>
2 Date: Tue, 1 Mar 2016 02:31:47 +1100
3 Subject: Don't install support files via setup.py
4
5 Description: Don't install support files via setup.py
6 for better control over where they should be installed.
7 Author: Carlos Maddela <e7appew@gmail.com>
8 Origin: vendor
9 Forwarded: not-needed
10 Last-Update: 2016-06-27
11 ---
12 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
13 ---
14 setup.py | 7 +------
15 1 file changed, 1 insertion(+), 6 deletions(-)
16
17 diff --git a/setup.py b/setup.py
18 index 508b27f..7b13ef7 100644
19 --- a/setup.py
20 +++ b/setup.py
21 @@ -58,12 +58,7 @@ py2exe_params = {
22 if len(sys.argv) >= 2 and sys.argv[1] == 'py2exe':
23 params = py2exe_params
24 else:
25 - files_spec = [
26 - ('etc/bash_completion.d', ['youtube-dl.bash-completion']),
27 - ('etc/fish/completions', ['youtube-dl.fish']),
28 - ('share/doc/youtube_dl', ['README.txt']),
29 - ('share/man/man1', ['youtube-dl.1'])
30 - ]
31 + files_spec = []
32 root = os.path.dirname(os.path.abspath(__file__))
33 data_files = []
34 for dirname, files in files_spec: