ae-shell 0.3.2__tar.gz → 0.3.3__tar.gz
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.
- {ae_shell-0.3.2/ae_shell.egg-info → ae_shell-0.3.3}/PKG-INFO +6 -6
- {ae_shell-0.3.2 → ae_shell-0.3.3}/README.md +5 -5
- {ae_shell-0.3.2 → ae_shell-0.3.3}/ae/shell.py +4 -3
- {ae_shell-0.3.2 → ae_shell-0.3.3/ae_shell.egg-info}/PKG-INFO +6 -6
- {ae_shell-0.3.2 → ae_shell-0.3.3}/setup.py +6 -6
- {ae_shell-0.3.2 → ae_shell-0.3.3}/LICENSE.md +0 -0
- {ae_shell-0.3.2 → ae_shell-0.3.3}/ae_shell.egg-info/SOURCES.txt +0 -0
- {ae_shell-0.3.2 → ae_shell-0.3.3}/ae_shell.egg-info/dependency_links.txt +0 -0
- {ae_shell-0.3.2 → ae_shell-0.3.3}/ae_shell.egg-info/requires.txt +0 -0
- {ae_shell-0.3.2 → ae_shell-0.3.3}/ae_shell.egg-info/top_level.txt +0 -0
- {ae_shell-0.3.2 → ae_shell-0.3.3}/ae_shell.egg-info/zip-safe +0 -0
- {ae_shell-0.3.2 → ae_shell-0.3.3}/pyproject.toml +0 -0
- {ae_shell-0.3.2 → ae_shell-0.3.3}/setup.cfg +0 -0
- {ae_shell-0.3.2 → ae_shell-0.3.3}/tests/test_shell.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ae_shell
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.3
|
|
4
4
|
Summary: ae namespace module portion shell: shell execution and environment helpers
|
|
5
5
|
Home-page: https://gitlab.com/ae-group/ae_shell
|
|
6
6
|
Author: AndiEcker
|
|
@@ -63,15 +63,15 @@ Dynamic: provides-extra
|
|
|
63
63
|
Dynamic: requires-python
|
|
64
64
|
Dynamic: summary
|
|
65
65
|
|
|
66
|
-
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.
|
|
67
|
-
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.
|
|
68
|
-
# shell 0.3.
|
|
66
|
+
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.97 -->
|
|
67
|
+
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.19 -->
|
|
68
|
+
# shell 0.3.3
|
|
69
69
|
|
|
70
70
|
[](
|
|
71
71
|
https://gitlab.com/ae-group/ae_shell)
|
|
72
72
|
[](
|
|
74
|
+
https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.3)
|
|
75
75
|
[](
|
|
76
76
|
https://pypi.org/project/ae-shell/#history)
|
|
77
77
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.
|
|
2
|
-
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.
|
|
3
|
-
# shell 0.3.
|
|
1
|
+
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.97 -->
|
|
2
|
+
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.19 -->
|
|
3
|
+
# shell 0.3.3
|
|
4
4
|
|
|
5
5
|
[](
|
|
6
6
|
https://gitlab.com/ae-group/ae_shell)
|
|
7
7
|
[](
|
|
9
|
+
https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.3)
|
|
10
10
|
[](
|
|
11
11
|
https://pypi.org/project/ae-shell/#history)
|
|
12
12
|
|
|
@@ -182,6 +182,7 @@ this section includes various other utility functions and classes.
|
|
|
182
182
|
- :data:`STDERR_BEG_MARKER`: marker used in the console output for the beginning of stderr output.
|
|
183
183
|
- :data:`STDERR_END_MARKER`: marker used in the console output for the end of stderr output.
|
|
184
184
|
"""
|
|
185
|
+
# pylint: disable=too-many-lines
|
|
185
186
|
import os
|
|
186
187
|
import pprint
|
|
187
188
|
import shlex
|
|
@@ -203,7 +204,7 @@ from ae.core import main_app_instance
|
|
|
203
204
|
from ae.console import MAIN_SECTION_NAME, ConsoleApp # type: ignore
|
|
204
205
|
|
|
205
206
|
|
|
206
|
-
__version__ = '0.3.
|
|
207
|
+
__version__ = '0.3.3'
|
|
207
208
|
|
|
208
209
|
|
|
209
210
|
COMMIT_MSG_FILE_NAME = '.commit_msg.txt' #: name of the file containing the commit message
|
|
@@ -1203,7 +1204,7 @@ def sh_exit_if_git_err(err_code: int, command_line: str,
|
|
|
1203
1204
|
main_app = get_main_app()
|
|
1204
1205
|
git_debug = main_app.verbose
|
|
1205
1206
|
git_trace_vars = ('GIT_TRACE', 'GIT_TRACE_PACK_ACCESS', 'GIT_TRACE_PACKET', 'GIT_TRACE_SETUP')
|
|
1206
|
-
env_vars = {}
|
|
1207
|
+
env_vars = {'GIT_TERMINAL_PROMPT': "0"}
|
|
1207
1208
|
if git_debug:
|
|
1208
1209
|
env_vars['GIT_CURL_VERBOSE'] = "1"
|
|
1209
1210
|
env_vars['GIT_MERGE_VERBOSITY'] = "5"
|
|
@@ -1212,7 +1213,7 @@ def sh_exit_if_git_err(err_code: int, command_line: str,
|
|
|
1212
1213
|
|
|
1213
1214
|
cl_err = sh_exit_if_exec_err(err_code, command_line,
|
|
1214
1215
|
extra_args=extra_args, lines_output=lines_output, exit_on_err=exit_on_err,
|
|
1215
|
-
env_vars={**os.environ
|
|
1216
|
+
env_vars={**os.environ, **env_vars})
|
|
1216
1217
|
|
|
1217
1218
|
if log_files := sh_logs(log_enable_dir=log_enable_dir, log_name_prefix='git'):
|
|
1218
1219
|
sh_log(command_line, extra_args=extra_args, cl_err=cl_err, lines_output=lines_output, log_file_paths=log_files)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ae_shell
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.3
|
|
4
4
|
Summary: ae namespace module portion shell: shell execution and environment helpers
|
|
5
5
|
Home-page: https://gitlab.com/ae-group/ae_shell
|
|
6
6
|
Author: AndiEcker
|
|
@@ -63,15 +63,15 @@ Dynamic: provides-extra
|
|
|
63
63
|
Dynamic: requires-python
|
|
64
64
|
Dynamic: summary
|
|
65
65
|
|
|
66
|
-
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.
|
|
67
|
-
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.
|
|
68
|
-
# shell 0.3.
|
|
66
|
+
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.97 -->
|
|
67
|
+
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.19 -->
|
|
68
|
+
# shell 0.3.3
|
|
69
69
|
|
|
70
70
|
[](
|
|
71
71
|
https://gitlab.com/ae-group/ae_shell)
|
|
72
72
|
[](
|
|
74
|
+
https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.3)
|
|
75
75
|
[](
|
|
76
76
|
https://pypi.org/project/ae-shell/#history)
|
|
77
77
|
|
|
@@ -23,15 +23,15 @@ setup_kwargs = {
|
|
|
23
23
|
'install_requires': [],
|
|
24
24
|
'keywords': ['configuration', 'development', 'environment', 'productivity'],
|
|
25
25
|
'license': 'GPL-3.0-or-later',
|
|
26
|
-
'long_description': ('<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.
|
|
27
|
-
'<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.
|
|
28
|
-
'# shell 0.3.
|
|
26
|
+
'long_description': ('<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.97 -->\n'
|
|
27
|
+
'<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.19 -->\n'
|
|
28
|
+
'# shell 0.3.3\n'
|
|
29
29
|
'\n'
|
|
30
30
|
'[](\n'
|
|
31
31
|
' https://gitlab.com/ae-group/ae_shell)\n'
|
|
32
32
|
'[](\n'
|
|
34
|
+
' https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.3)\n'
|
|
35
35
|
'[](\n'
|
|
36
36
|
' https://pypi.org/project/ae-shell/#history)\n'
|
|
37
37
|
'\n'
|
|
@@ -108,7 +108,7 @@ setup_kwargs = {
|
|
|
108
108
|
'Source': 'https://ae.readthedocs.io/en/latest/_modules/ae/shell.html'},
|
|
109
109
|
'python_requires': '>=3.9',
|
|
110
110
|
'url': 'https://gitlab.com/ae-group/ae_shell',
|
|
111
|
-
'version': '0.3.
|
|
111
|
+
'version': '0.3.3',
|
|
112
112
|
'zip_safe': True,
|
|
113
113
|
}
|
|
114
114
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|