openbsd-ports/sysutils/py-lockfile/Makefile
sthen a70bc110a2 import ports/sysutils/py-lockfile, ok jasper@
The lockfile package exports a LockFile class which provides a simple API for
locking files.  Unlike the Windows msvcrt.locking function, the fcntl.lockf
and flock functions, and the deprecated posixfile module, the API is
identical across both Unix (including Linux and Mac) and Windows platforms.
The lock mechanism relies on the atomic nature of the link (on Unix) and
mkdir (on Windows) system calls.  An implementation based on SQLite is also
provided, more as a demonstration of the possibilities it provides than as
production-quality code.
2010-10-12 14:51:56 +00:00

33 lines
769 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2010/10/12 14:51:56 sthen Exp $
COMMENT= platform-independent file locking for Python
MODPY_EGG_VERSION= 0.9.1
DISTNAME= lockfile-${MODPY_EGG_VERSION}
PKGNAME= py-${DISTNAME}
CATEGORIES= sysutils
HOMEPAGE= http://code.google.com/p/pylockfile/
# MIT
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= http://pylockfile.googlecode.com/files/
MODULES= lang/python
REGRESS_DEPENDS= ::${FULLPKGPATH}
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-lockfile/; \
cd ${WRKSRC}; ${INSTALL_DATA} doc/lockfile.rst README LICENSE \
${PREFIX}/share/doc/py-lockfile/
do-regress:
cd ${WRKSRC}/test; ${MODPY_BIN} test_lockfile.py
.include <bsd.port.mk>