Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Jun 2015 17:01:04 +0000 (UTC)
From:      Jung-uk Kim <jkim@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r389077 - in head/archivers: . py-lz4
Message-ID:  <201506101701.t5AH14qL034964@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506101701.t5AH14qL034964>