1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-06 01:57:40 +00:00

New port: archivers/py-acefile

acefile is an implementation of the ACE archive format.  It is intended to be
used as a library, but also provides a stand-alone unace utility.  As mostly
pure-python implementation, it is significantly slower than native
implementations, but more robust against vulnerabilities.

This implementation supports up to version 2.0 of the ACE archive format,
including the EXE, DELTA, PIC and SOUND modes of ACE 2.0, password protected
archives and multi-volume archives.  It does not support writing to archives.
It is an implementation from scratch, based on the 1998 document titled
"Technical information of the archiver ACE v1.2" by Marcel Lemke, using unace
2.5 and WinAce 2.69 by Marcel Lemke as reference implementations.

WWW: https://www.roe.ch/acefile
This commit is contained in:
Antoine Brodin 2017-12-27 13:17:17 +00:00
parent f64dfdbc4c
commit 4208ec68ef
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=457366
4 changed files with 35 additions and 0 deletions

View File

@ -170,6 +170,7 @@
SUBDIR += ppmd-7z
SUBDIR += ppunpack
SUBDIR += pxz
SUBDIR += py-acefile
SUBDIR += py-attic
SUBDIR += py-backports.lzma
SUBDIR += py-borgbackup

View File

@ -0,0 +1,18 @@
# $FreeBSD$
PORTNAME= acefile
PORTVERSION= 0.6.7
CATEGORIES= archivers python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= antoine@FreeBSD.org
COMMENT= Read/test/extract ACE 1.0 and 2.0 archives in pure python
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE.md
USES= python:3.4+
USE_PYTHON= distutils autoplist
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1514244111
SHA256 (acefile-0.6.7.tar.gz) = 08ab5069a0a1fb50317a962b45b109d5a29dfbfeeea992434809be5cb4f85efa
SIZE (acefile-0.6.7.tar.gz) = 47628

View File

@ -0,0 +1,13 @@
acefile is an implementation of the ACE archive format. It is intended to be
used as a library, but also provides a stand-alone unace utility. As mostly
pure-python implementation, it is significantly slower than native
implementations, but more robust against vulnerabilities.
This implementation supports up to version 2.0 of the ACE archive format,
including the EXE, DELTA, PIC and SOUND modes of ACE 2.0, password protected
archives and multi-volume archives. It does not support writing to archives.
It is an implementation from scratch, based on the 1998 document titled
"Technical information of the archiver ACE v1.2" by Marcel Lemke, using unace
2.5 and WinAce 2.69 by Marcel Lemke as reference implementations.
WWW: https://www.roe.ch/acefile