openbsd-ports/sysutils/diffoscope/Makefile
bcallah f9a01b59d6 Import sysutils/diffoscope, a utility for in-depth comparison of files,
archives, and directories
ok sthen@

diffoscope will try to get to the bottom of what makes files or
directories different. It will recursively unpack archives of many kinds
and transform various binary formats into more human readable form to
compare them. It can compare two tarballs, ISO images, or PDF just as
easily.

It can be scripted through error codes, and a report can be produced
with the detected differences. The report can be text or HTML. When no
type of report has been selected, diffoscope defaults to write a text
report on the standard output.

diffoscope was initially started by the "reproducible builds" Debian
project and now being developed as part of the wider "Reproducible
Builds" initiative. It is meant to be able to quickly understand why two
builds of the same package produce different outputs. diffoscope was
previously named debbindiff.
2018-11-27 20:35:18 +00:00

27 lines
667 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2018/11/27 20:35:18 bcallah Exp $
MODPY_EGG_VERSION = 106
COMMENT = in-depth comparison of files, archives, and directories
DISTNAME = diffoscope-${MODPY_EGG_VERSION}
CATEGORIES = sysutils devel
HOMEPAGE = https://diffoscope.org/
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
# GPLv3+
PERMIT_PACKAGE_CDROM = Yes
MODULES = lang/python
MODPY_VERSION = ${MODPY_DEFAULT_VERSION_3}
MODPY_PI = Yes
MODPY_SETUPTOOLS = Yes
RUN_DEPENDS = archivers/py-libarchive-c${MODPY_FLAVOR} \
devel/py-magic${MODPY_FLAVOR}
TEST_DEPENDS = ${RUN_DEPENDS} \
devel/py-pluggy${MODPY_FLAVOR} \
devel/py-test${MODPY_FLAVOR}
.include <bsd.port.mk>