svn commit: r480350 - in head/textproc: . libdiff

Baptiste Daroussin bapt at FreeBSD.org
Sat Sep 22 06:49:00 UTC 2018


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 at 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


More information about the svn-ports-head mailing list