From owner-svn-ports-head@freebsd.org Sat Sep 22 06:49:00 2018 Return-Path: Delivered-To: svn-ports-head@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 7919810B375E; Sat, 22 Sep 2018 06:49:00 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1F59C850C4; Sat, 22 Sep 2018 06:49:00 +0000 (UTC) (envelope-from bapt@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 146E41863F; Sat, 22 Sep 2018 06:49:00 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8M6mxpj099202; Sat, 22 Sep 2018 06:48:59 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8M6mx0O099196; Sat, 22 Sep 2018 06:48:59 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201809220648.w8M6mx0O099196@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 22 Sep 2018 06:48:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480350 - in head/textproc: . libdiff X-SVN-Group: ports-head X-SVN-Commit-Author: bapt X-SVN-Commit-Paths: in head/textproc: . libdiff X-SVN-Commit-Revision: 480350 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Sep 2018 06:49:00 -0000 Author: bapt Date: Sat Sep 22 06:48:58 2018 New Revision: 480350 URL: https://svnweb.freebsd.org/changeset/ports/480350 Log: libdiff is a C library generating the shortest edit script, longest common subsequence, and edit distance between arbitrary sequences of bytes. It derives from Tatsuhiko Kubo's onp and dtl. WWW: https://github.com/kristapsdz/libdiff Added: head/textproc/libdiff/ head/textproc/libdiff/Makefile (contents, props changed) head/textproc/libdiff/distinfo (contents, props changed) head/textproc/libdiff/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sat Sep 22 06:46:22 2018 (r480349) +++ head/textproc/Makefile Sat Sep 22 06:48:58 2018 (r480350) @@ -407,6 +407,7 @@ SUBDIR += libcss SUBDIR += libcsv SUBDIR += libcue + SUBDIR += libdiff SUBDIR += libe-book SUBDIR += libebml SUBDIR += libepubgen Added: head/textproc/libdiff/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/libdiff/Makefile Sat Sep 22 06:48:58 2018 (r480350) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= libdiff +PORTVERSION= 0.1.0 +CATEGORIES= textproc +MASTER_SITES= http://kristaps.bsd.lv/libdiff/snapshots/ + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Library to generate arbitrary sequence diffs + +LICENSE= ISCL + +PLIST_FILES= lib/libdiff.a \ + include/diff.h \ + man/man3/diff.3.gz +HAS_CONFIGURE= yes + +.include Added: head/textproc/libdiff/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/libdiff/distinfo Sat Sep 22 06:48:58 2018 (r480350) @@ -0,0 +1,3 @@ +TIMESTAMP = 1537598498 +SHA256 (libdiff-0.1.0.tar.gz) = 2012d2eae9ecaf9717c77ecefd9bdff4e38f485d8b9ad8f916cff1fdf1151512 +SIZE (libdiff-0.1.0.tar.gz) = 19316 Added: head/textproc/libdiff/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/libdiff/pkg-descr Sat Sep 22 06:48:58 2018 (r480350) @@ -0,0 +1,5 @@ +libdiff is a C library generating the shortest edit script, longest common +subsequence, and edit distance between arbitrary sequences of bytes. It derives +from Tatsuhiko Kubo's onp and dtl. + +WWW: https://github.com/kristapsdz/libdiff