svn commit: r380494 - in head/devel: . py-atomicwrites
Bartek Rutkowski
robak at FreeBSD.org
Thu Mar 5 13:50:17 UTC 2015
Author: robak
Date: Thu Mar 5 13:50:15 2015
New Revision: 380494
URL: https://svnweb.freebsd.org/changeset/ports/380494
QAT: https://qat.redports.org/buildarchive/r380494/
Log:
New port: devel/py-atomicwrites
Atomic file writes library for Python, featuring race-free
assertions, Windows support (although untested) and simple
high level API.
WWW: https://github.com/untitaker/python-atomicwrites
PR: 198275
Submitted by: Maxim Filimonov <che at bein.link>
Added:
head/devel/py-atomicwrites/
head/devel/py-atomicwrites/Makefile (contents, props changed)
head/devel/py-atomicwrites/distinfo (contents, props changed)
head/devel/py-atomicwrites/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Thu Mar 5 13:49:48 2015 (r380493)
+++ head/devel/Makefile Thu Mar 5 13:50:15 2015 (r380494)
@@ -3700,6 +3700,7 @@
SUBDIR += py-astroid
SUBDIR += py-async
SUBDIR += py-asyncio
+ SUBDIR += py-atomicwrites
SUBDIR += py-avro
SUBDIR += py-babel
SUBDIR += py-babelfish
Added: head/devel/py-atomicwrites/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-atomicwrites/Makefile Thu Mar 5 13:50:15 2015 (r380494)
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+PORTNAME= atomicwrites
+PORTVERSION= 0.1.4
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= che at bein.link
+COMMENT= Atomic file writes library
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+USES= python
+USE_PYTHON= autoplist distutils
+
+.include <bsd.port.mk>
Added: head/devel/py-atomicwrites/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-atomicwrites/distinfo Thu Mar 5 13:50:15 2015 (r380494)
@@ -0,0 +1,2 @@
+SHA256 (atomicwrites-0.1.4.tar.gz) = 6fc694e318b46eec816c937c081a9ba05960967d77b81758d62352f4e6f108cc
+SIZE (atomicwrites-0.1.4.tar.gz) = 13650
Added: head/devel/py-atomicwrites/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-atomicwrites/pkg-descr Thu Mar 5 13:50:15 2015 (r380494)
@@ -0,0 +1,5 @@
+Atomic file writes library for Python, featuring race-free
+assertions, Windows support (although untested) and simple
+high level API.
+
+WWW: https://github.com/untitaker/python-atomicwrites
More information about the svn-ports-all
mailing list