Skip to content

Commit 552a25b

Browse files
author
PyCompiler ARK++
committed
feat(sysdeps): automate non-interactive installs with retries, timeouts, and detailed debug
feat(pyarmor): expand DEFAULT_SETTINGS (globbing, excludes, advanced flags, timeout, workspace opts) and wire to runtime chore(windows): winget auto-accept agreements for silent installs refactor(sysdeps): auto-resend sudo password prompts; broaden package manager detection (add yum)
1 parent 8b7623f commit 552a25b

2 files changed

Lines changed: 0 additions & 39 deletions

File tree

ENGINES/cx_freeze/engine.py

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,6 @@ def _tr(fr, en):
153153
"gcc": "gcc",
154154
"g++": "g++",
155155
"make": "make",
156-
"ld (binutils)": "ld",
157-
"ar (binutils)": "ar",
158-
"autoconf": "autoconf",
159-
"automake": "automake",
160-
"libtool": "libtool",
161156
"pkg-config/pkgconf": "pkg-config",
162157
"patchelf": "patchelf",
163158
"python3-dev/python3-devel (headers)": "python3-config",
@@ -248,21 +243,12 @@ def _tr(fr, en):
248243
if pm == "apt":
249244
packages = [
250245
"build-essential",
251-
"automake",
252-
"autoconf",
253-
"libtool",
254-
"binutils",
255-
"make",
256-
"gcc",
257-
"g++",
258-
"libc6-dev",
259246
"python3",
260247
"python3-dev",
261248
"python3-pip",
262249
"pkg-config",
263250
"libssl-dev",
264251
"zlib1g-dev",
265-
"libxcrypt1",
266252
"patchelf",
267253
"p7zip-full",
268254
]
@@ -272,9 +258,6 @@ def _tr(fr, en):
272258
"gcc-c++",
273259
"make",
274260
"binutils",
275-
"autoconf",
276-
"automake",
277-
"libtool",
278261
"glibc-devel",
279262
"python3",
280263
"python3-devel",
@@ -304,9 +287,6 @@ def _tr(fr, en):
304287
"gcc-c++",
305288
"make",
306289
"binutils",
307-
"autoconf",
308-
"automake",
309-
"libtool",
310290
"glibc-devel",
311291
"python3",
312292
"python3-devel",

ENGINES/nuitka/engine.py

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,6 @@ def _tr(fr, en):
4646
"gcc": "gcc",
4747
"g++": "g++",
4848
"make": "make",
49-
"ld (binutils)": "ld",
50-
"ar (binutils)": "ar",
51-
"autoconf": "autoconf",
52-
"automake": "automake",
53-
"libtool": "libtool",
5449
"pkg-config/pkgconf": "pkg-config",
5550
"patchelf": "patchelf",
5651
"python3-dev/python3-devel (headers)": "python3-config",
@@ -144,14 +139,6 @@ def _tr(fr, en):
144139
if pm == "apt":
145140
packages = [
146141
"build-essential",
147-
"automake",
148-
"autoconf",
149-
"libtool",
150-
"binutils",
151-
"make",
152-
"gcc",
153-
"g++",
154-
"libc6-dev",
155142
"python3",
156143
"python3-dev",
157144
"python3-pip",
@@ -168,9 +155,6 @@ def _tr(fr, en):
168155
"gcc-c++",
169156
"make",
170157
"binutils",
171-
"autoconf",
172-
"automake",
173-
"libtool",
174158
"glibc-devel",
175159
"python3",
176160
"python3-devel",
@@ -200,9 +184,6 @@ def _tr(fr, en):
200184
"gcc-c++",
201185
"make",
202186
"binutils",
203-
"autoconf",
204-
"automake",
205-
"libtool",
206187
"glibc-devel",
207188
"python3",
208189
"python3-devel",

0 commit comments

Comments
 (0)