Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 May 2017 06:08:03 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r440233 - in head/archivers: . py-python-lzo
Message-ID:  <201705060608.v46683N9083010@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Sat May  6 06:08:03 2017
New Revision: 440233
URL: https://svnweb.freebsd.org/changeset/ports/440233

Log:
  This module provides Python bindings for the LZO data compression library.
  
  LZO is a portable lossless data compression library written in ANSI C.
  It offers pretty fast compression and very fast decompression. Decompression
  requires no memory.
  
  In addition there are slower compression levels achieving a quite competitive
  compression ratio while still decompressing at this very high speed.
  
  WWW: https://pypi.python.org/pypi/python-lzo
  
  PR:		218746
  Submitted by:	Yuri Victorovich <yuri@rawbw.com>

Added:
  head/archivers/py-python-lzo/
  head/archivers/py-python-lzo/Makefile   (contents, props changed)
  head/archivers/py-python-lzo/distinfo   (contents, props changed)
  head/archivers/py-python-lzo/pkg-descr   (contents, props changed)
Modified:
  head/archivers/Makefile

Modified: head/archivers/Makefile
==============================================================================
--- head/archivers/Makefile	Sat May  6 06:07:03 2017	(r440232)
+++ head/archivers/Makefile	Sat May  6 06:08:03 2017	(r440233)
@@ -173,6 +173,7 @@
     SUBDIR += py-lzma
     SUBDIR += py-pyliblzma
     SUBDIR += py-python-lhafile
+    SUBDIR += py-python-lzo
     SUBDIR += py-python-snappy
     SUBDIR += py-rarfile
     SUBDIR += py-rcssmin

Added: head/archivers/py-python-lzo/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/py-python-lzo/Makefile	Sat May  6 06:08:03 2017	(r440233)
@@ -0,0 +1,22 @@
+# Created by: Yuri Victorovich <yuri@rawbw.com>
+# $FreeBSD$
+
+PORTNAME=	python-lzo
+PORTVERSION=	1.11
+CATEGORIES=	archivers python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@rawbw.com
+COMMENT=	Python bindings for the LZO data compression library
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+LIB_DEPENDS=	liblzo2.so:archivers/lzo2
+
+USES=		python:2
+USE_PYTHON=	autoplist distutils
+CFLAGS+=	-I${LOCALBASE}/include -I${LOCALBASE}/include/lzo
+
+.include <bsd.port.mk>

Added: head/archivers/py-python-lzo/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/py-python-lzo/distinfo	Sat May  6 06:08:03 2017	(r440233)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1492589752
+SHA256 (python-lzo-1.11.tar.gz) = 38a0ea4ceb27cdd8e3526509fe1b7a936e5dfa57c64608fd32085c129e8be386
+SIZE (python-lzo-1.11.tar.gz) = 13823

Added: head/archivers/py-python-lzo/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/py-python-lzo/pkg-descr	Sat May  6 06:08:03 2017	(r440233)
@@ -0,0 +1,10 @@
+This module provides Python bindings for the LZO data compression library.
+
+LZO is a portable lossless data compression library written in ANSI C.
+It offers pretty fast compression and very fast decompression. Decompression
+requires no memory.
+
+In addition there are slower compression levels achieving a quite competitive
+compression ratio while still decompressing at this very high speed.
+
+WWW: https://pypi.python.org/pypi/python-lzo



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