SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
17
sysutils/py-command_runner/pkg/DESCR
Normal file
17
sysutils/py-command_runner/pkg/DESCR
Normal file
|
@ -0,0 +1,17 @@
|
|||
command_runner's purpose is to run external commands from Python, just
|
||||
like "subprocess" on which it relies, while solving various problems a
|
||||
developer may face, including:
|
||||
|
||||
- Handling of all possible subprocess.popen / subprocess.check_output
|
||||
scenarios / python versions in one handy function without encoding /
|
||||
timeout hassle.
|
||||
|
||||
- Allow stdout/stderr stream output to be redirected to callback
|
||||
functions / output queues / files so you get to handle output in your
|
||||
application while commands are running.
|
||||
|
||||
- Callback to optional stop check so we can stop execution from outside
|
||||
command_runner.
|
||||
|
||||
- Callback with optional process information so we get to control the
|
||||
process from outside command_runner.
|
14
sysutils/py-command_runner/pkg/PLIST
Normal file
14
sysutils/py-command_runner/pkg/PLIST
Normal file
|
@ -0,0 +1,14 @@
|
|||
lib/python${MODPY_VERSION}/site-packages/command_runner/
|
||||
lib/python${MODPY_VERSION}/site-packages/command_runner-${MODPY_EGG_VERSION}.dist-info/
|
||||
lib/python${MODPY_VERSION}/site-packages/command_runner-${MODPY_EGG_VERSION}.dist-info/LICENSE
|
||||
lib/python${MODPY_VERSION}/site-packages/command_runner-${MODPY_EGG_VERSION}.dist-info/METADATA
|
||||
lib/python${MODPY_VERSION}/site-packages/command_runner-${MODPY_EGG_VERSION}.dist-info/RECORD
|
||||
lib/python${MODPY_VERSION}/site-packages/command_runner-${MODPY_EGG_VERSION}.dist-info/WHEEL
|
||||
lib/python${MODPY_VERSION}/site-packages/command_runner-${MODPY_EGG_VERSION}.dist-info/top_level.txt
|
||||
lib/python${MODPY_VERSION}/site-packages/command_runner/__init__.py
|
||||
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/command_runner/${MODPY_PYCACHE}/
|
||||
lib/python${MODPY_VERSION}/site-packages/command_runner/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/command_runner/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/command_runner/${MODPY_PYCACHE}elevate.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/command_runner/${MODPY_PYCACHE}elevate.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/command_runner/elevate.py
|
Loading…
Add table
Add a link
Reference in a new issue