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>
This commit is contained in:
Martin Wilke
2017-05-06 06:08:03 +00:00
parent 177c8291a7
commit f43449f990
4 changed files with 36 additions and 0 deletions

View File

@@ -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

View File

@@ -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>

View File

@@ -0,0 +1,3 @@
TIMESTAMP = 1492589752
SHA256 (python-lzo-1.11.tar.gz) = 38a0ea4ceb27cdd8e3526509fe1b7a936e5dfa57c64608fd32085c129e8be386
SIZE (python-lzo-1.11.tar.gz) = 13823

View File

@@ -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