Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 16 Jan 2016 19:24:31 +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: r406269 - in head/archivers: . py-rarfile
Message-ID:  <201601161924.u0GJOVaJ082364@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Sat Jan 16 19:24:31 2016
New Revision: 406269
URL: https://svnweb.freebsd.org/changeset/ports/406269

Log:
  This is Python module for RAR archive reading. The interface is made
  as zipfile like as possible.
  
  WWW: https://github.com/markokr/rarfile
  
  PR:		206306
  Submitted by:	Kevin Golding <ports@caomhin.org>

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

Modified: head/archivers/Makefile
==============================================================================
--- head/archivers/Makefile	Sat Jan 16 19:17:15 2016	(r406268)
+++ head/archivers/Makefile	Sat Jan 16 19:24:31 2016	(r406269)
@@ -169,6 +169,7 @@
     SUBDIR += py-lzma
     SUBDIR += py-pyliblzma
     SUBDIR += py-python-snappy
+    SUBDIR += py-rarfile
     SUBDIR += qpress
     SUBDIR += quazip
     SUBDIR += quazip-qt5

Added: head/archivers/py-rarfile/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/py-rarfile/Makefile	Sat Jan 16 19:24:31 2016	(r406269)
@@ -0,0 +1,21 @@
+# Created by: Kevin Golding <ports@caomhin.org>
+# $FreeBSD$
+
+PORTNAME=	rarfile
+PORTVERSION=	2.7
+CATEGORIES=	archivers python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	ports@caomhin.org
+COMMENT=	Python module for RAR archive reading
+
+LICENSE=	ISCL
+
+RUN_DEPENDS=	unrar:${PORTSDIR}/archivers/unrar
+
+NO_ARCH=	yes
+USES=		python:2.7+
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/archivers/py-rarfile/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/py-rarfile/distinfo	Sat Jan 16 19:24:31 2016	(r406269)
@@ -0,0 +1,2 @@
+SHA256 (rarfile-2.7.tar.gz) = 47148088ddb6c020774f4c38927fec9625ca33651bdc551bdaeafc78690b1635
+SIZE (rarfile-2.7.tar.gz) = 37515

Added: head/archivers/py-rarfile/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/py-rarfile/pkg-descr	Sat Jan 16 19:24:31 2016	(r406269)
@@ -0,0 +1,4 @@
+This is Python module for RAR archive reading. The interface is made
+as zipfile like as possible.
+
+WWW: https://github.com/markokr/rarfile



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