From owner-svn-ports-all@freebsd.org Tue Sep 6 17:53:32 2016 Return-Path: Delivered-To: svn-ports-all@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 A25B7BC7DE3; Tue, 6 Sep 2016 17:53:32 +0000 (UTC) (envelope-from amdmi3@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 587D19B4; Tue, 6 Sep 2016 17:53:32 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u86HrVGQ053008; Tue, 6 Sep 2016 17:53:31 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u86HrVbj053004; Tue, 6 Sep 2016 17:53:31 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609061753.u86HrVbj053004@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 6 Sep 2016 17:53:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421451 - in head/archivers: . py-python-lhafile X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Sep 2016 17:53:32 -0000 Author: amdmi3 Date: Tue Sep 6 17:53:30 2016 New Revision: 421451 URL: https://svnweb.freebsd.org/changeset/ports/421451 Log: - Add archives/py-python-lhafile The interface is like zipfile extension included in regular python distribution. WWW: http://fengestad.no/python-lhafile/ PR: 211279 Submitted by: cs@innolan.dk Added: head/archivers/py-python-lhafile/ head/archivers/py-python-lhafile/Makefile (contents, props changed) head/archivers/py-python-lhafile/distinfo (contents, props changed) head/archivers/py-python-lhafile/pkg-descr (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Tue Sep 6 17:40:00 2016 (r421450) +++ head/archivers/Makefile Tue Sep 6 17:53:30 2016 (r421451) @@ -171,6 +171,7 @@ SUBDIR += py-lz4 SUBDIR += py-lzma SUBDIR += py-pyliblzma + SUBDIR += py-python-lhafile SUBDIR += py-python-snappy SUBDIR += py-rarfile SUBDIR += py-rcssmin Added: head/archivers/py-python-lhafile/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-python-lhafile/Makefile Tue Sep 6 17:53:30 2016 (r421451) @@ -0,0 +1,22 @@ +# Created by: Carsten Larsen +# $FreeBSD$ + +PORTNAME= python-lhafile +PORTVERSION= 0.2.1 +CATEGORIES= archivers python +MASTER_SITES= http://fengestad.no/python-lhafile/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= cs@innolan.dk +COMMENT= LHA(.lzh) file extract interface + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING.txt + +USES= python +USE_PYTHON= distutils autoplist + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/lzhlib.so + +.include Added: head/archivers/py-python-lhafile/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-python-lhafile/distinfo Tue Sep 6 17:53:30 2016 (r421451) @@ -0,0 +1,3 @@ +TIMESTAMP = 1469201699 +SHA256 (python-lhafile-0.2.1.tar.gz) = ccddfa7312d08a48159fa702c5e92efcc0e341d580e4dfb2c5a1bbdc2704e35e +SIZE (python-lhafile-0.2.1.tar.gz) = 265756 Added: head/archivers/py-python-lhafile/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-python-lhafile/pkg-descr Tue Sep 6 17:53:30 2016 (r421451) @@ -0,0 +1,4 @@ +The interface is like zipfile extension included in regular +python distribution. + +WWW: http://fengestad.no/python-lhafile/