diff options
author | 2015-08-24 10:51:13 +0300 | |
---|---|---|
committer | 2015-08-24 10:51:13 +0300 | |
commit | d3f26ece7d4383df0b22fe9c3cb3e695381ec737 (patch) | |
tree | ba42ddb547d363e92b1846df8a8712433981ddac /scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info | |
parent | 651a7d779551e193bd9dbadbe8b2a02bdab231b4 (diff) |
Initial push to external_lib migration
Diffstat (limited to 'scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info')
7 files changed, 0 insertions, 80 deletions
diff --git a/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/PKG-INFO b/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/PKG-INFO deleted file mode 100755 index fd81f509..00000000 --- a/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/PKG-INFO +++ /dev/null @@ -1,38 +0,0 @@ -Metadata-Version: 1.1 -Name: python-daemon -Version: 2.0.5 -Summary: Library to implement a well-behaved Unix daemon process. -Home-page: https://alioth.debian.org/projects/python-daemon/ -Author: Ben Finney -Author-email: ben+python@benfinney.id.au -License: Apache-2 -Description: This library implements the well-behaved daemon specification of - :pep:`3143`, “Standard daemon process library”. - - A well-behaved Unix daemon process is tricky to get right, but the - required steps are much the same for every daemon program. A - `DaemonContext` instance holds the behaviour and configured - process environment for the program; use the instance as a context - manager to enter a daemon state. - - Simple example of usage:: - - import daemon - - from spam import do_main_program - - with daemon.DaemonContext(): - do_main_program() - - Customisation of the steps to become a daemon is available by - setting options on the `DaemonContext` instance; see the - documentation for that class for each option. -Keywords: daemon,fork,unix -Platform: UNKNOWN -Classifier: Development Status :: 4 - Beta -Classifier: License :: OSI Approved :: Apache Software License -Classifier: Operating System :: POSIX -Classifier: Programming Language :: Python :: 2.7 -Classifier: Programming Language :: Python :: 3 -Classifier: Intended Audience :: Developers -Classifier: Topic :: Software Development :: Libraries :: Python Modules diff --git a/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/SOURCES.txt b/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/SOURCES.txt deleted file mode 100755 index 6e176719..00000000 --- a/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/SOURCES.txt +++ /dev/null @@ -1,30 +0,0 @@ -ChangeLog -LICENSE.ASF-2 -LICENSE.GPL-3 -MANIFEST.in -setup.cfg -setup.py -test_version.py -version.py -daemon/__init__.py -daemon/_metadata.py -daemon/daemon.py -daemon/pidfile.py -daemon/runner.py -doc/CREDITS -doc/FAQ -doc/TODO -doc/hacking.txt -python_daemon.egg-info/PKG-INFO -python_daemon.egg-info/SOURCES.txt -python_daemon.egg-info/dependency_links.txt -python_daemon.egg-info/not-zip-safe -python_daemon.egg-info/requires.txt -python_daemon.egg-info/top_level.txt -python_daemon.egg-info/version_info.json -test/__init__.py -test/scaffold.py -test/test_daemon.py -test/test_metadata.py -test/test_pidfile.py -test/test_runner.py
\ No newline at end of file diff --git a/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/dependency_links.txt b/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/dependency_links.txt deleted file mode 100755 index 8b137891..00000000 --- a/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/dependency_links.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/not-zip-safe b/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/not-zip-safe deleted file mode 100755 index 8b137891..00000000 --- a/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/not-zip-safe +++ /dev/null @@ -1 +0,0 @@ - diff --git a/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/requires.txt b/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/requires.txt deleted file mode 100755 index d1496b02..00000000 --- a/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/requires.txt +++ /dev/null @@ -1,3 +0,0 @@ -setuptools -docutils -lockfile >=0.10 diff --git a/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/top_level.txt b/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/top_level.txt deleted file mode 100755 index 28e3ee0c..00000000 --- a/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/top_level.txt +++ /dev/null @@ -1 +0,0 @@ -daemon diff --git a/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/version_info.json b/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/version_info.json deleted file mode 100755 index bac1b84f..00000000 --- a/scripts/automation/trex_control_plane/python_lib/python-daemon-2.0.5/python_daemon.egg-info/version_info.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "release_date": "2015-02-02", - "version": "2.0.5", - "maintainer": "Ben Finney <ben+python@benfinney.id.au>", - "body": "* Refine compatibility of exceptions for file operations.\n* Specify the text encoding when opening the changelog file.\n" -}
\ No newline at end of file |