Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Sep 2018 06:48:59 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r480350 - in head/textproc: . libdiff
Message-ID:  <201809220648.w8M6mx0O099196@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809220648.w8M6mx0O099196>