Implementation of the patiencediff algorithm, as first described by Bram Cohen: https://bramcohen.livejournal.com/73318.html Like Python's difflib, this module provides both a convenience unified_diff function for the generation of unified diffs of text files as well as a SequenceMatcher that can be used on arbitrary lists. Patiencediff provides a good balance of performance, nice output for humans, and implementation simplicity. The code in this package was extracted from the Bazaar code base.
18 lines
561 B
Makefile
18 lines
561 B
Makefile
# $NetBSD: Makefile,v 1.1 2021/07/12 18:43:05 rhialto Exp $
|
|
|
|
DISTNAME= patiencediff-0.2.2
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:source/=90/ca/13cdabb3c491a0ccd7d580419b96abce3d227d4a6ba674364e6b19d4d67e/}
|
|
|
|
MAINTAINER= rhialto@NetBSD.org
|
|
HOMEPAGE= https://www.breezy-vcs.org/
|
|
COMMENT= Python implementation of the patiencediff algorithm
|
|
LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 # or later
|
|
|
|
USE_LANGUAGES+= c
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|