1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

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>
This commit is contained in:
Martin Wilke 2016-01-16 19:24:31 +00:00
parent 31762b1067
commit 87e98d1e8c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=406269
4 changed files with 28 additions and 0 deletions

View File

@ -169,6 +169,7 @@
SUBDIR += py-lzma
SUBDIR += py-pyliblzma
SUBDIR += py-python-snappy
SUBDIR += py-rarfile
SUBDIR += qpress
SUBDIR += quazip
SUBDIR += quazip-qt5

View File

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

View File

@ -0,0 +1,2 @@
SHA256 (rarfile-2.7.tar.gz) = 47148088ddb6c020774f4c38927fec9625ca33651bdc551bdaeafc78690b1635
SIZE (rarfile-2.7.tar.gz) = 37515

View File

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