Atomic file writes for Python: * Race-free assertion that the target file doesn't yet exist. * Simple high-level API that wraps a very flexible class-based API. * Consistent error handling across platforms.
25 lines
427 B
Makefile
25 lines
427 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2017/03/08 02:39:44 danj Exp $
|
|
|
|
COMMENT = atomic file writes
|
|
|
|
MODPY_EGG_VERSION = 1.1.5
|
|
DISTNAME = atomicwrites-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://github.com/untitaker/python-atomicwrites
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
FLAVORS = python3
|
|
FLAVOR ?=
|
|
|
|
.include <bsd.port.mk>
|