File: 0001-Source-patch-removing-from-binary-package-not-needed.patch

package info (click to toggle)
urlscan 0.9.9-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 228 kB
  • sloc: python: 1,145; sh: 5; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 722 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Marcin Kulisz <debian@kulisz.net>
Date: Sun, 5 Jun 2022 19:39:03 +0100
Subject: Source patch removing from binary package not needed COPYING file

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 7951f9a..f6afd13 100755
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@ setup(name="urlscan",
           'console_scripts': ['urlscan=urlscan.__main__:main']
       },
       package_data={'urlscan': ['assets/*']},
-      data_files=[('share/doc/urlscan', ['README.md', 'COPYING']),
+      data_files=[('share/doc/urlscan', ['README.md']),
                   ('share/man/man1', ['urlscan.1'])],
       license="GPLv2",
       install_requires=["urwid>=1.2.1"],