67dab4a68a
[ Brett Smith ] * comparators.json: + Catch bad JSON errors on Python pre-3.5. Closes: #855233 . [ Chris Lamb ] * tests: + Move normalize_zeros to more generic `utils.data` module. + Fix tests that call xxd fail on jessie due to output change. Closes: #855239 . [ Ed Maste ] * comparators.directory: + Assume BSD-style stat(1) on FreeBSD. Closes: #855169 PR: 217392 Approved by: koobs Sponsored by: The FreeBSD Foundation
31 lines
829 B
Makefile
31 lines
829 B
Makefile
# Created by: Kubilay Kocak <koobs@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= diffoscope
|
|
PORTVERSION= 78
|
|
CATEGORIES= sysutils python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= koobs@FreeBSD.org
|
|
COMMENT= In-depth comparison of files, archives, and directories
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libarchive-c>=0:archivers/py3-libarchive-c \
|
|
${PYTHON_PKGNAMEPREFIX}python-magic>=0:devel/py3-python-magic
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest \
|
|
zipinfo:archivers/unzip \
|
|
isoinfo:sysutils/cdrkit \
|
|
rpm2cpio:archivers/rpm2cpio
|
|
|
|
USES= python:3.4+
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
do-test:
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test --pytest-args="-rsx -l -vv"
|
|
|
|
.include <bsd.port.mk>
|