Date: Mon, 17 Jun 2019 04:55:11 +0000 (UTC) From: Kai Knoblich <kai@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504385 - in head/textproc: . py-patiencediff Message-ID: <201906170455.x5H4tBQd064462@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kai Date: Mon Jun 17 04:55:11 2019 New Revision: 504385 URL: https://svnweb.freebsd.org/changeset/ports/504385 Log: New port: textproc/py-patiencediff This package contains the Python implementation of the "Patience Diff" algorithm, as first described by Bram Cohen. "Patience Diff" 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. WWW: https://pypi.org/project/patiencediff/ PR: 238299 Submitted by: fullermd@over-yonder.net Tested by: pkubaj (PowerPC64) Added: head/textproc/py-patiencediff/ head/textproc/py-patiencediff/Makefile (contents, props changed) head/textproc/py-patiencediff/distinfo (contents, props changed) head/textproc/py-patiencediff/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Jun 17 04:48:11 2019 (r504384) +++ head/textproc/Makefile Mon Jun 17 04:55:11 2019 (r504385) @@ -1313,6 +1313,7 @@ SUBDIR += py-parsel SUBDIR += py-parsimonious SUBDIR += py-parso + SUBDIR += py-patiencediff SUBDIR += py-pdfminer SUBDIR += py-pdfminer.six SUBDIR += py-pdfminer3k Added: head/textproc/py-patiencediff/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-patiencediff/Makefile Mon Jun 17 04:55:11 2019 (r504385) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= patiencediff +PORTVERSION= 0.1.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= fullermd@over-yonder.net +COMMENT= Implementation of the "Patience Diff" algorithm + +LICENSE= GPLv2+ + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/patiencediff/_patiencediff_c.so + +do-test: + cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v build/ + +.include <bsd.port.mk> Added: head/textproc/py-patiencediff/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-patiencediff/distinfo Mon Jun 17 04:55:11 2019 (r504385) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560686203 +SHA256 (patiencediff-0.1.0.tar.gz) = 7cd316f57f7b4086923cc0db80273886416134d82945dddd0aa24f0e95c7d302 +SIZE (patiencediff-0.1.0.tar.gz) = 19965 Added: head/textproc/py-patiencediff/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-patiencediff/pkg-descr Mon Jun 17 04:55:11 2019 (r504385) @@ -0,0 +1,9 @@ +This package contains the Python implementation of the "Patience Diff" +algorithm, as first described by Bram Cohen. + +"Patience Diff" 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. + +WWW: https://pypi.org/project/patiencediff/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906170455.x5H4tBQd064462>