summaryrefslogtreecommitdiff
path: root/yt-dlp/debian/patches/0001-Don-t-install-support-files-via-setup.py.patch
diff options
context:
space:
mode:
Diffstat (limited to 'yt-dlp/debian/patches/0001-Don-t-install-support-files-via-setup.py.patch')
-rw-r--r--yt-dlp/debian/patches/0001-Don-t-install-support-files-via-setup.py.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/yt-dlp/debian/patches/0001-Don-t-install-support-files-via-setup.py.patch b/yt-dlp/debian/patches/0001-Don-t-install-support-files-via-setup.py.patch
new file mode 100644
index 0000000..4cac87a
--- /dev/null
+++ b/yt-dlp/debian/patches/0001-Don-t-install-support-files-via-setup.py.patch
@@ -0,0 +1,25 @@
+From: Carlos Maddela <e7appew@gmail.com>
+Date: Tue, 1 Mar 2016 02:31:47 +1100
+Subject: Don't install support files via setup.py
+
+Description: Don't install support files via setup.py
+ for better control over where they should be installed.
+Author: Carlos Maddela <e7appew@gmail.com>
+Origin: vendor
+Forwarded: not-needed
+Last-Update: 2016-06-27
+---
+ setup.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/setup.py 2021-10-10 01:09:36.951650937 -0400
++++ b/setup.py 2021-10-10 01:09:36.939651038 -0400
+@@ -59,7 +59,7 @@
+ ('share/bash-completion/completions', ['completions/bash/yt-dlp']),
+ ('share/zsh/site-functions', ['completions/zsh/_yt-dlp']),
+ ('share/fish/vendor_completions.d', ['completions/fish/yt-dlp.fish']),
+- ('share/doc/yt_dlp', ['README.txt']),
++ ('share/doc/yt-dlp', ['README.txt']),
+ ('share/man/man1', ['yt-dlp.1'])
+ ]
+ root = os.path.dirname(os.path.abspath(__file__))
bgstack15