danj ec17b955a7 Import py-fasteners, tweaks/ok jca@
The fasteners module includes the following:

Locking decorator
    Helpful locked decorator (that acquires instance objects lock(s) and
    acquires on method entry and releases on method exit).

Reader-writer locks
    Multiple readers (at the same time).  Single writers (blocking any
    readers).  Helpful read_locked and write_locked decorators.

Inter-process locks
    Single writer using file based locking (these automatically release
    on process exit, even if __release__ or __exit__ is never called).
    Helpful interprocess_locked decorator.

Generic helpers
    A try_lock helper context manager that will attempt to acquire a
    given lock and provide back whether the attempt passed or failed (if
    it passes, then further code in the context manager will be ran with
    the lock acquired).
2017-07-17 00:22:09 +00:00

34 lines
2.9 KiB
Plaintext

@comment $OpenBSD: PLIST,v 1.1.1.1 2017/07/17 00:22:09 danj Exp $
lib/python${MODPY_VERSION}/site-packages/fasteners/
lib/python${MODPY_VERSION}/site-packages/fasteners-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/
lib/python${MODPY_VERSION}/site-packages/fasteners-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/PKG-INFO
lib/python${MODPY_VERSION}/site-packages/fasteners-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/SOURCES.txt
lib/python${MODPY_VERSION}/site-packages/fasteners-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/dependency_links.txt
lib/python${MODPY_VERSION}/site-packages/fasteners-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/requires.txt
lib/python${MODPY_VERSION}/site-packages/fasteners-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/top_level.txt
lib/python${MODPY_VERSION}/site-packages/fasteners/__init__.py
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/fasteners/${MODPY_PYCACHE}/
lib/python${MODPY_VERSION}/site-packages/fasteners/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/fasteners/${MODPY_PYCACHE}_utils.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/fasteners/${MODPY_PYCACHE}lock.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/fasteners/${MODPY_PYCACHE}process_lock.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/fasteners/${MODPY_PYCACHE}test.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/fasteners/${MODPY_PYCACHE}version.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/fasteners/_utils.py
lib/python${MODPY_VERSION}/site-packages/fasteners/lock.py
lib/python${MODPY_VERSION}/site-packages/fasteners/process_lock.py
lib/python${MODPY_VERSION}/site-packages/fasteners/test.py
lib/python${MODPY_VERSION}/site-packages/fasteners/tests/
lib/python${MODPY_VERSION}/site-packages/fasteners/tests/__init__.py
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/fasteners/tests/${MODPY_PYCACHE}/
lib/python${MODPY_VERSION}/site-packages/fasteners/tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/fasteners/tests/${MODPY_PYCACHE}test_decorators.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/fasteners/tests/${MODPY_PYCACHE}test_helpers.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/fasteners/tests/${MODPY_PYCACHE}test_lock.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/fasteners/tests/${MODPY_PYCACHE}test_process_lock.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/fasteners/tests/test_decorators.py
lib/python${MODPY_VERSION}/site-packages/fasteners/tests/test_helpers.py
lib/python${MODPY_VERSION}/site-packages/fasteners/tests/test_lock.py
lib/python${MODPY_VERSION}/site-packages/fasteners/tests/test_process_lock.py
lib/python${MODPY_VERSION}/site-packages/fasteners/version.py