svn commit: r389077 - in head/archivers: . py-lz4
Jung-uk Kim
jkim at FreeBSD.org
Wed Jun 10 17:01:05 UTC 2015
Author: jkim
Date: Wed Jun 10 17:01:03 2015
New Revision: 389077
URL: https://svnweb.freebsd.org/changeset/ports/389077
Log:
Python binding for the lz4 compression library by Yann Collet.
WWW: https://github.com/steeve/python-lz4
Added:
head/archivers/py-lz4/
head/archivers/py-lz4/Makefile (contents, props changed)
head/archivers/py-lz4/distinfo (contents, props changed)
head/archivers/py-lz4/pkg-descr (contents, props changed)
Modified:
head/archivers/Makefile
Modified: head/archivers/Makefile
==============================================================================
--- head/archivers/Makefile Wed Jun 10 16:47:48 2015 (r389076)
+++ head/archivers/Makefile Wed Jun 10 17:01:03 2015 (r389077)
@@ -161,6 +161,7 @@
SUBDIR += pxz
SUBDIR += py-liblzma
SUBDIR += py-librtfcomp
+ SUBDIR += py-lz4
SUBDIR += py-lzma
SUBDIR += py-python-snappy
SUBDIR += qpress
Added: head/archivers/py-lz4/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/archivers/py-lz4/Makefile Wed Jun 10 17:01:03 2015 (r389077)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME= lz4
+PORTVERSION= 0.7.0
+CATEGORIES= archivers python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= ports at FreeBSD.org
+COMMENT= Python binding for the LZ4 compression library
+
+LICENSE= BSD3CLAUSE
+
+USE_PYTHON= autoplist distutils
+USES= python
+
+post-install:
+ ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/lz4.so
+
+.include <bsd.port.mk>
Added: head/archivers/py-lz4/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/archivers/py-lz4/distinfo Wed Jun 10 17:01:03 2015 (r389077)
@@ -0,0 +1,2 @@
+SHA256 (lz4-0.7.0.tar.gz) = cd225744298568fd217577fc14a326a24835412374dadb5060db48f1af43eb48
+SIZE (lz4-0.7.0.tar.gz) = 26786
Added: head/archivers/py-lz4/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/archivers/py-lz4/pkg-descr Wed Jun 10 17:01:03 2015 (r389077)
@@ -0,0 +1,3 @@
+Python binding for the lz4 compression library by Yann Collet.
+
+WWW: https://github.com/steeve/python-lz4
More information about the svn-ports-all
mailing list