From owner-svn-ports-all@freebsd.org Mon Jun 17 04:55:13 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E2A1B15D338A; Mon, 17 Jun 2019 04:55:12 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 83AE176AF0; Mon, 17 Jun 2019 04:55:12 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 59DDB20D78; Mon, 17 Jun 2019 04:55:12 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H4tCQV064466; Mon, 17 Jun 2019 04:55:12 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H4tBQd064462; Mon, 17 Jun 2019 04:55:11 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906170455.x5H4tBQd064462@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Mon, 17 Jun 2019 04:55:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504385 - in head/textproc: . py-patiencediff X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head/textproc: . py-patiencediff X-SVN-Commit-Revision: 504385 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 83AE176AF0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 04:55:13 -0000 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 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/