File: pypackages.patch

package info (click to toggle)
onioncircuits 0.7-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 588 kB
  • sloc: python: 459; sh: 24; makefile: 17
file content (20 lines) | stat: -rw-r--r-- 858 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: ensure no packages
 Newer versions of setuptools will complain when no package names
 are declared and will try to infer package names from the directory
 layout, which fails since the repo contains other top-level directories
 unrelated to packages. This patch ensures that setuptools knows we are
 shipping no packages.
Author: Sascha Steinbiss <satta@debian.org>
Forwarded: https://gitlab.tails.boum.org/tails/onioncircuits/-/merge_requests/4
Last-Update: 2022-12-23
--- a/setup.py
+++ b/setup.py
@@ -26,6 +26,8 @@
       author_email='tails@boum.org',
       license='GNU GPL v3',
       scripts=['onioncircuits'],
+      packages=[],
+      py_modules=[],
       data_files=[('share/icons/hicolor/scalable/apps', ['onioncircuits.svg']),
                   ('share/applications', ['onioncircuits.desktop'])],
       requires=['stem', 'gi'],