1021f0f09f
rarfile v3.3 Fixes: Add the .sfx test files to MANIFEST.in for inclusion in pypi tarball. Add all files in git to tarball. rarfile v3.2 New features: Support unar as decompression backend. It has much better support for RAR features than bsdtar. Support SFX archives - archive header is searched in first 2MB of the file. Add HACK_TMP_DIR option, to force temp files into specific directory. Fixes: Always use "/" for path separator in command-line, gives better results on Windows. Cleanups: Drop module-level options from docs, they create confusion. Drop support for Python 2 and 3.5 and earlier. Python 2 is dead and requiring Python 3.6 gives blake2s, stdlib that supports pathlib, and ordered dict without compat hacks. Replace PyCrypto with PyCryptodome in tests. Use Github Actions for CI.
18 lines
464 B
Makefile
18 lines
464 B
Makefile
# $NetBSD: Makefile,v 1.3 2020/07/29 12:10:46 adam Exp $
|
|
|
|
DISTNAME= rarfile-3.3
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= archivers python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=r/rarfile/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/markokr/rarfile
|
|
COMMENT= RAR archive reader for Python
|
|
LICENSE= isc
|
|
|
|
DEPENDS+= bsdtar-[0-9]*:../../archivers/bsdtar
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|