File: control

package info (click to toggle)
pyinstaller 6.16.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,748 kB
  • sloc: python: 41,632; ansic: 11,944; makefile: 172; sh: 132; xml: 19
file content (121 lines) | stat: -rw-r--r-- 5,598 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
Source: pyinstaller
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Soren Stoutner <soren@debian.org>
# Some of the tests are currently non-functional.  The commented dependencies
# are part of a work-in-progress to get them working.
Build-Depends: debhelper-compat (= 13),
               dh-sequence-python3,
               pybuild-plugin-pyproject,
               python3-all,
               python3-hatchling,
               python3-setuptools,
               zlib1g-dev,
               ghostscript <!nocheck>,
#               libkf6i18nlocaledata6 <!nocheck>,
#               locales <!nocheck>,
               pyinstaller-hooks-contrib <!nocheck>,
               pyqt6-dev-tools <!nocheck>,
               python3-all-dev <!nocheck>,
               python3-altgraph <!nocheck>,
               python3-dev <!nocheck>,
               python3-django <!nocheck>,
               python3-elementpath <!nocheck>,
               python3-gevent <!nocheck>,
               python3-ipython <!nocheck>,
               python3-jinja2 <!nocheck>,
               python3-lxml <!nocheck>,
               python3-matplotlib <!nocheck>,
               python3-numpy <!nocheck>,
               python3-pandas <!nocheck>,
               python3-pil <!nocheck>,
               python3-pkg-resources <!nocheck>,
               python3-psutil <!nocheck>,
               python3-pygments <!nocheck>,
               python3-pyqt5.qtmultimedia <!nocheck>,
               python3-pyqt5.qtquick <!nocheck>,
               python3-pyqt5.qtwebengine <!nocheck>,
               python3-pyqt6.qtmultimedia <!nocheck>,
               python3-pyqt6.qtqml <!nocheck>,
               python3-pyqt6.qtquick <!nocheck>,
               python3-pyqt6.qtwebengine <!nocheck>,
               python3-pyside2.qtcore <!nocheck>,
               python3-pyside2.qtmultimedia <!nocheck>,
               python3-pyside2.qtnetwork <!nocheck>,
               python3-pyside2.qtqml <!nocheck>,
               python3-pyside2.qtquick <!nocheck>,
               python3-pyside2.qtuitools <!nocheck>,
               python3-pyside2.qtwebengine <!nocheck>,
               python3-pyside2.qtwebenginewidgets <!nocheck>,
               python3-pyside2.qtwidgets <!nocheck>,
               python3-pyside6.qtmultimedia <!nocheck>,
               python3-pyside6.qtnetwork <!nocheck>,
               python3-pyside6.qtquick3d <!nocheck>,
               python3-pyside6.qtquickcontrols2 <!nocheck>,
               python3-pyside6.qtquickwidgets <!nocheck>,
               python3-pyside6.qtuitools <!nocheck>,
               python3-pyside6.qtwebenginequick <!nocheck>,
               python3-pyside6.qtwebenginewidgets <!nocheck>,
               python3-pytest <!nocheck>,
               python3-pytest-xvfb <!nocheck>,
#               python3-pytzdata <!nocheck>,
               python3-requests <!nocheck>,
               python3-scapy <!nocheck>,
               python3-scipy <!nocheck>,
               python3-six <!nocheck>,
               python3-sphinx <!nocheck>,
               python3-sqlalchemy <!nocheck>,
               python3-tk <!nocheck>,
               python3-twisted <!nocheck>,
               python3-urllib3 <!nocheck>,
               python3-zeep <!nocheck>,
               python3-zope.interface <!nocheck>,
               qml-module-qtquick-controls <!nocheck>,
               qml-module-qtquick-controls2 <!nocheck>,
               qml-module-qtwebengine <!nocheck>,
               qml6-module-qtqml-workerscript <!nocheck>,
               qml6-module-qtquick-controls <!nocheck>,
               qml6-module-qtquick-window <!nocheck>,
               qml6-module-qtwebengine <!nocheck>,
#               tzdata <!nocheck>,
               xmldiff <!nocheck>
Homepage: https://pyinstaller.org/en/stable/
Vcs-Git: https://salsa.debian.org/python-team/packages/pyinstaller.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/pyinstaller
Standards-Version: 4.7.2

Package: pyinstaller
Architecture: all
Section: utils
Depends: python3-pyinstaller (>= ${source:Version}),
         ${misc:Depends},
         ${python3:Depends},
         ${shlibs:Depends}
Description: Utility to bundle a Python application into a single package
 PyInstaller reads a Python script written by you. It analyzes your code to
 discover every other module and library your script needs in order to execute.
 Then it collects copies of all those files and puts them with your script in a
 single folder, or optionally in a single executable file.
 .
 This package contains the executables.  It depends on 'python3-pyinstaller',
 which contains the Python modules.

Package: python3-pyinstaller
# The architecture needs to be any because of the compiled bootloader.
Architecture: any
# binutils and python3-dev are needed at runtime.  See <https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/873#issuecomment-2708297792>
Depends: binutils,
         python3-dev,
         ${misc:Depends},
         ${python3:Depends},
         ${shlibs:Depends}
Recommends: pyinstaller-hooks-contrib
Description: Python modules to bundle a Python application into a single package
 PyInstaller reads a Python script written by you. It analyzes your code to
 discover every other module and library your script needs in order to execute.
 Then it collects copies of all those files and puts them with your script in a
 single folder, or optionally in a single executable file.
 .
 This package contains the Python modules.  The utility executables are
 contained in the 'pyinstaller' package.