From owner-svn-ports-head@freebsd.org Sat May 6 06:08:05 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2320ED6084A; Sat, 6 May 2017 06:08:05 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F255E25D; Sat, 6 May 2017 06:08:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v46683lC083014; Sat, 6 May 2017 06:08:03 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v46683N9083010; Sat, 6 May 2017 06:08:03 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201705060608.v46683N9083010@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Sat, 6 May 2017 06:08:03 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 May 2017 06:08:05 -0000 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 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 +# $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 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