machineconfig 5.26__py3-none-any.whl → 5.27__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of machineconfig might be problematic. Click here for more details.

@@ -1,6 +1,23 @@
1
1
  {
2
2
  "version": "1",
3
3
  "installers": [
4
+ {
5
+ "appName": "jq",
6
+ "repoURL": "https://github.com/jqlang/jq",
7
+ "doc": "🧙‍♂️ Command-line JSON processor",
8
+ "fileNamePattern": {
9
+ "amd64": {
10
+ "linux": "jq-linux-amd64",
11
+ "windows": null,
12
+ "macos": null
13
+ },
14
+ "arm64": {
15
+ "linux": "jq-linux-arm64",
16
+ "windows": null,
17
+ "macos": null
18
+ }
19
+ }
20
+ },
4
21
  {
5
22
  "appName": "speedtest",
6
23
  "repoURL": "CMD",
@@ -16,13 +16,6 @@ PACKAGES_AI_TOOLS = [
16
16
  "auggie",
17
17
  ]
18
18
 
19
- # Tunneling/Port Forwarding - Tools for exposing local services
20
- PACKAGES_TUNNELING = [
21
- "ngrok",
22
- "devtunnel",
23
- "cloudflared",
24
- "forward-cli",
25
- ]
26
19
 
27
20
  # Terminal Emulators & Shells - Terminal applications, emulators, and shell environments
28
21
  PACKAGES_TERMINAL_EMULATORS = [
@@ -41,6 +34,8 @@ PACKAGES_BROWSERS = [
41
34
  "bypass-paywalls-chrome",
42
35
  "browsh",
43
36
  "carbonyl",
37
+ "m365",
38
+ "zoomit",
44
39
  ]
45
40
 
46
41
  # Code Editors & IDEs - Code editing tools
@@ -51,16 +46,7 @@ PACKAGES_CODE_EDITORS = [
51
46
  "lvim",
52
47
  ]
53
48
 
54
- # Presentation & Text UI Tools - Markdown viewers, presentations, prompts, and text decoration
55
- PACKAGES_PRESENTATION = [
56
- "patat",
57
- "marp",
58
- "presenterm",
59
- "glow",
60
- "gum",
61
- "boxes",
62
- "hx",
63
- ]
49
+
64
50
 
65
51
  # Database Tools - Database clients and visualizers
66
52
  PACKAGES_DATABASE = [
@@ -70,12 +56,6 @@ PACKAGES_DATABASE = [
70
56
  "duckdb",
71
57
  ]
72
58
 
73
- # Documentation & Conversion - Document conversion, diagram tools, and fast file operations
74
- PACKAGES_DOC_CONVERSION = [
75
- "mermaid-cli",
76
- "html2markdown",
77
- "pandoc",
78
- ]
79
59
 
80
60
  # Media & Entertainment - Music players and media tools
81
61
  PACKAGES_MEDIA = [
@@ -88,8 +68,10 @@ PACKAGES_MEDIA = [
88
68
 
89
69
  # File Sharing & Cloud - File sharing, transfer, backup, sync, and QR tools
90
70
  PACKAGES_FILE_SHARING = [
91
- "cpz",
92
- "rmz",
71
+ "ngrok",
72
+ "devtunnel",
73
+ "cloudflared",
74
+ "forward-cli",
93
75
  "ffsend",
94
76
  "portal",
95
77
  "qrcp",
@@ -108,14 +90,6 @@ PACKAGES_FILE_SHARING = [
108
90
  ]
109
91
 
110
92
 
111
- # Git & Docker Tools - Version control and container utilities
112
- PACKAGES_GIT_DOCKER_TOOLS = [
113
- "lazygit",
114
- "onefetch",
115
- "gitcs",
116
- "lazydocker",
117
- ]
118
-
119
93
  # Development Tools - Various development utilities
120
94
  PACKAGES_DEV_UTILS = [
121
95
  "devcontainer",
@@ -126,6 +100,10 @@ PACKAGES_DEV_UTILS = [
126
100
 
127
101
  # Code Analysis, Git & Docs - Code analysis, statistics, documentation, and Git tools
128
102
  PACKAGES_CODE_ANALYSIS = [
103
+ "lazygit",
104
+ "onefetch",
105
+ "gitcs",
106
+ "lazydocker",
129
107
  "hyperfine",
130
108
  "kondo",
131
109
  "tokei",
@@ -134,6 +112,8 @@ PACKAGES_CODE_ANALYSIS = [
134
112
  "gitui",
135
113
  "delta",
136
114
  "gh",
115
+ "watchexec",
116
+ "jq",
137
117
  ]
138
118
 
139
119
  # Productivity & Utilities - Productivity tools, security, remote access, and terminal enhancements
@@ -141,16 +121,25 @@ PACKAGES_PRODUCTIVITY = [
141
121
  "espanso",
142
122
  "bitwarden",
143
123
  "openpomodoro-cli",
144
- "just",
145
124
  "rustdesk",
125
+ "mermaid-cli",
126
+ "html2markdown",
127
+ "pandoc",
128
+ "patat",
129
+ "marp",
130
+ "presenterm",
131
+ "glow",
132
+ "gum",
133
+ "hx",
146
134
  ]
147
135
 
148
136
  # Miscellaneous Tools - Other tools
149
137
  PACKAGES_MISC_DEV = [
138
+ "lolcatjs",
139
+ "figlet-cli",
140
+ "boxes",
150
141
  "Gorilla",
151
- "nerdfont",
152
142
  "Redis",
153
- "winget",
154
143
  "transmission",
155
144
  "exa",
156
145
  "bytehound",
@@ -162,24 +151,6 @@ PACKAGES_MISC_DEV = [
162
151
  "nnn",
163
152
  ]
164
153
 
165
- # Main DEV package list - combines all subgroups
166
- PACKAGES_NAMES_DEV = [
167
- *PACKAGES_AI_TOOLS,
168
- *PACKAGES_TUNNELING,
169
- *PACKAGES_TERMINAL_EMULATORS,
170
- *PACKAGES_BROWSERS,
171
- *PACKAGES_CODE_EDITORS,
172
- *PACKAGES_PRESENTATION,
173
- *PACKAGES_DATABASE,
174
- *PACKAGES_DOC_CONVERSION,
175
- *PACKAGES_MEDIA,
176
- *PACKAGES_FILE_SHARING,
177
- *PACKAGES_GIT_DOCKER_TOOLS,
178
- *PACKAGES_DEV_UTILS,
179
- *PACKAGES_CODE_ANALYSIS,
180
- *PACKAGES_PRODUCTIVITY,
181
- *PACKAGES_MISC_DEV,
182
- ]
183
154
 
184
155
  # System & Network Monitoring - System resource monitors, process viewers, network analysis, and system info tools
185
156
  PACKAGES_SYSTEM_MONITORS = [
@@ -193,33 +164,16 @@ PACKAGES_SYSTEM_MONITORS = [
193
164
  "cpufetch",
194
165
  "fastfetch",
195
166
  "topgrade",
167
+ "speedtest",
196
168
  ]
197
169
 
198
170
 
199
- # File Tools - File browsing, navigation, listing, directory jumping, and disk usage analysis
200
- PACKAGES_FILE_TOOLS = [
201
- "xplr",
202
- "joshuto",
203
- "lf",
204
- "tere",
205
- "yazi",
206
- "lsd",
207
- "zoxide",
208
- "diskonaut",
209
- "dua",
210
- "dust",
211
- ]
212
-
213
- # File Viewers - File preview and viewing tools
214
- PACKAGES_FILE_VIEWERS = [
215
- "pistol",
216
- "bat",
217
- "viu",
218
- ]
219
171
 
220
172
 
221
173
  # Search & Archive Tools - File and content search utilities, archive management
222
- PACKAGES_SEARCH = [
174
+ PACKAGES_FILE = [
175
+ "nerdfont",
176
+ "winget",
223
177
  "fd",
224
178
  "fzf",
225
179
  "broot",
@@ -227,6 +181,21 @@ PACKAGES_SEARCH = [
227
181
  "rga",
228
182
  "ugrep",
229
183
  "ouch",
184
+ "pistol",
185
+ "bat",
186
+ "viu",
187
+ "xplr",
188
+ "joshuto",
189
+ "lf",
190
+ "tere",
191
+ "yazi",
192
+ "lsd",
193
+ "zoxide",
194
+ "diskonaut",
195
+ "dua",
196
+ "dust",
197
+ "cpz",
198
+ "rmz",
230
199
  ]
231
200
 
232
201
  # Terminal & Shell Enhancements - Terminal multiplexers, shell history, and prompts
@@ -235,41 +204,14 @@ PACKAGES_TERMINAL_SHELL = [
235
204
  "mprocs",
236
205
  "mcfly",
237
206
  "starship",
238
- "lolcatjs",
239
- "figlet-cli",
240
- ]
241
- # Web Sharing - Share terminal over web
242
- PACKAGES_WEB_TERMINAL = [
243
207
  "gotty",
244
208
  "ttyd",
245
- ]
246
-
247
-
248
- # Cloud & Utilities - Cloud storage, file watching, web terminal, and presentation tools
249
- PACKAGES_CLOUD_UTILS = [
250
209
  "rclone",
251
- "watchexec",
252
- "m365",
253
- "zoomit",
254
- "speedtest",
255
210
  ]
256
211
 
257
212
 
258
213
 
259
214
 
260
- # Main ESSENTIAL package list - combines all subgroups
261
- PACKAGES_NAMES_ESSENTIAL = [
262
- *PACKAGES_CODE_ANALYSIS,
263
- *PACKAGES_PRESENTATION,
264
- *PACKAGES_FILE_VIEWERS,
265
- *PACKAGES_FILE_TOOLS,
266
- *PACKAGES_SYSTEM_MONITORS,
267
- *PACKAGES_WEB_TERMINAL,
268
- *PACKAGES_TERMINAL_SHELL,
269
- *PACKAGES_SEARCH,
270
- *PACKAGES_AI_TOOLS,
271
- *PACKAGES_CLOUD_UTILS,
272
- ]
273
215
 
274
216
  PACKAGE_GROUPS: TypeAlias = Literal[
275
217
  "ESSENTIAL",
@@ -297,31 +239,48 @@ PACKAGE_GROUPS: TypeAlias = Literal[
297
239
  "CLOUD_UTILS",
298
240
  "WEB_TERMINAL",
299
241
  ]
242
+
243
+
244
+
245
+ # Main ESSENTIAL package list - combines all subgroups
246
+ PACKAGES_NAMES_ESSENTIAL = [
247
+ *PACKAGES_CODE_ANALYSIS,
248
+ *PACKAGES_SYSTEM_MONITORS,
249
+ *PACKAGES_TERMINAL_SHELL,
250
+ *PACKAGES_FILE,
251
+ *PACKAGES_AI_TOOLS,
252
+ ]
253
+ PACKAGES_NAMES_DEV = [
254
+ *PACKAGES_AI_TOOLS,
255
+ *PACKAGES_TERMINAL_EMULATORS,
256
+ *PACKAGES_BROWSERS,
257
+ *PACKAGES_CODE_EDITORS,
258
+ *PACKAGES_DATABASE,
259
+ *PACKAGES_MEDIA,
260
+ *PACKAGES_FILE_SHARING,
261
+ *PACKAGES_DEV_UTILS,
262
+ *PACKAGES_CODE_ANALYSIS,
263
+ *PACKAGES_PRODUCTIVITY,
264
+ *PACKAGES_MISC_DEV,
265
+ ]
266
+
300
267
  PACKAGE_GROUP2NAMES: dict[PACKAGE_GROUPS, list[str]] = {
301
268
  "ESSENTIAL": PACKAGES_NAMES_ESSENTIAL,
302
269
  "DEV": PACKAGES_NAMES_DEV,
303
270
  "AI_TOOLS": PACKAGES_AI_TOOLS,
304
- "TUNNELING": PACKAGES_TUNNELING,
305
271
  "TERMINAL_EMULATORS": PACKAGES_TERMINAL_EMULATORS,
306
272
  "BROWSERS": PACKAGES_BROWSERS,
307
273
  "CODE_EDITORS": PACKAGES_CODE_EDITORS,
308
- "PRESENTATION": PACKAGES_PRESENTATION,
309
274
  "DATABASE": PACKAGES_DATABASE,
310
- "DOC_CONVERSION": PACKAGES_DOC_CONVERSION,
311
275
  "MEDIA": PACKAGES_MEDIA,
312
276
  "FILE_SHARING": PACKAGES_FILE_SHARING,
313
- "GIT_DOCKER_TOOLS": PACKAGES_GIT_DOCKER_TOOLS,
314
277
  "DEV_UTILS": PACKAGES_DEV_UTILS,
315
278
  "CODE_ANALYSIS": PACKAGES_CODE_ANALYSIS,
316
279
  "PRODUCTIVITY": PACKAGES_PRODUCTIVITY,
317
280
  "MISC_DEV": PACKAGES_MISC_DEV,
318
281
  "SYSTEM_MONITORS": PACKAGES_SYSTEM_MONITORS,
319
- "FILE_TOOLS": PACKAGES_FILE_TOOLS,
320
- "FILE_VIEWERS": PACKAGES_FILE_VIEWERS,
321
- "SEARCH": PACKAGES_SEARCH,
282
+ "SEARCH": PACKAGES_FILE,
322
283
  "TERMINAL_SHELL": PACKAGES_TERMINAL_SHELL,
323
- "CLOUD_UTILS": PACKAGES_CLOUD_UTILS,
324
- "WEB_TERMINAL": PACKAGES_WEB_TERMINAL,
325
284
  }
326
285
 
327
286
  _ = Union, Literal
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: machineconfig
3
- Version: 5.26
3
+ Version: 5.27
4
4
  Summary: Dotfiles management package
5
5
  Author-email: Alex Al-Saffar <programmer@usa.com>
6
6
  License: Apache 2.0
@@ -46,8 +46,8 @@ machineconfig/cluster/templates/cli_trogon.py,sha256=PFWGy8SFYIhT9r3ZV4oIEYfImsQ
46
46
  machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
47
  machineconfig/jobs/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
48
  machineconfig/jobs/installer/check_installations.py,sha256=wOtvWzyJSxbuFueFfcOc4gX_UbTRWv6tWpRcG-3Ml_8,10780
49
- machineconfig/jobs/installer/installer_data.json,sha256=K6B6EPD8IXIeOzkY7sIIpphBmDVwnV_tczULAx-Y2ps,72114
50
- machineconfig/jobs/installer/package_groups.py,sha256=7LLrbs_yc4dkttIhZ5cR3zAZHMuBV5Gt0zN6t3J_jqg,6822
49
+ machineconfig/jobs/installer/installer_data.json,sha256=ExwnBwbnk_RzBa-aIqk5JTPdO_qWpuLuV6gMALQ1b4w,72527
50
+ machineconfig/jobs/installer/package_groups.py,sha256=IuF6FBVMs4jGsoSZZZdzaBO0wfA3ef2ZmgP8gFdBAl8,5361
51
51
  machineconfig/jobs/installer/custom/gh.py,sha256=gn7TUSrsLx7uqFqj1Z-iYglS0EYBSgtJ9jWHxaJIfXM,4119
52
52
  machineconfig/jobs/installer/custom/hx.py,sha256=YQClQXqWtGvon8BLFGf1Fp20JPkHgZeEZ6ebmCJQQfI,5838
53
53
  machineconfig/jobs/installer/custom_dev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -426,8 +426,8 @@ machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=Xbi59rU35AzR
426
426
  machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoSpdmTIdgS9LS-RvE-QZ-D260tD3o,1214
427
427
  machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
428
428
  machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
429
- machineconfig-5.26.dist-info/METADATA,sha256=boVxQ3Rzan4zRFBtYS6SP8nnqfejZ7idhQW_aWUQMXk,2499
430
- machineconfig-5.26.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
431
- machineconfig-5.26.dist-info/entry_points.txt,sha256=2afE1mw-o4MUlfxyX73SV02XaQI4SV_LdL2r6_CzhPU,1074
432
- machineconfig-5.26.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
433
- machineconfig-5.26.dist-info/RECORD,,
429
+ machineconfig-5.27.dist-info/METADATA,sha256=sYYuJDVjKlKL9-2rzI_-KkWQxxnb3os78fPYPyPe17o,2499
430
+ machineconfig-5.27.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
431
+ machineconfig-5.27.dist-info/entry_points.txt,sha256=2afE1mw-o4MUlfxyX73SV02XaQI4SV_LdL2r6_CzhPU,1074
432
+ machineconfig-5.27.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
433
+ machineconfig-5.27.dist-info/RECORD,,