svn commit: r386531 - in head/textproc: . rubygem-nokogiri-diff
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Sat May 16 13:34:48 UTC 2015
Author: sunpoet
Date: Sat May 16 13:34:46 2015
New Revision: 386531
URL: https://svnweb.freebsd.org/changeset/ports/386531
Log:
- Add rubygem-nokogiri-diff 0.2.0
nokogiri-diff adds the ability to calculate the differences (added or removed
nodes) between two XML/HTML documents.
Features:
- Performs a breadth-first comparison between children nodes.
- Compares XML/HTML Elements, Attributes, Text nodes and DTD nodes.
- Allows calculating differences between documents, or just enumerating the
added or removed nodes.
WWW: https://github.com/postmodern/nokogiri-diff
RG: https://rubygems.org/gems/nokogiri-diff
Added:
head/textproc/rubygem-nokogiri-diff/
head/textproc/rubygem-nokogiri-diff/Makefile (contents, props changed)
head/textproc/rubygem-nokogiri-diff/distinfo (contents, props changed)
head/textproc/rubygem-nokogiri-diff/pkg-descr (contents, props changed)
Modified:
head/textproc/Makefile
Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile Sat May 16 13:31:18 2015 (r386530)
+++ head/textproc/Makefile Sat May 16 13:34:46 2015 (r386531)
@@ -1370,6 +1370,7 @@
SUBDIR += rubygem-markaby
SUBDIR += rubygem-multi_xml
SUBDIR += rubygem-nokogiri
+ SUBDIR += rubygem-nokogiri-diff
SUBDIR += rubygem-nokogiri14
SUBDIR += rubygem-nokogumbo
SUBDIR += rubygem-opml
Added: head/textproc/rubygem-nokogiri-diff/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/rubygem-nokogiri-diff/Makefile Sat May 16 13:34:46 2015 (r386531)
@@ -0,0 +1,21 @@
+# Created by: Sunpoet Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= nokogiri-diff
+PORTVERSION= 0.2.0
+CATEGORIES= textproc rubygems
+MASTER_SITES= RG
+
+MAINTAINER= sunpoet at FreeBSD.org
+COMMENT= Calculate the differences between two XML/HTML documents
+
+LICENSE= MIT
+
+RUN_DEPENDS= rubygem-nokogiri>=1.5:${PORTSDIR}/textproc/rubygem-nokogiri \
+ rubygem-tdiff>=0.3.2:${PORTSDIR}/devel/rubygem-tdiff
+
+USE_RUBY= yes
+USE_RUBYGEMS= yes
+RUBYGEM_AUTOPLIST= yes
+
+.include <bsd.port.mk>
Added: head/textproc/rubygem-nokogiri-diff/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/rubygem-nokogiri-diff/distinfo Sat May 16 13:34:46 2015 (r386531)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/nokogiri-diff-0.2.0.gem) = 81d150ac59ac613c194fe9e4cf9122872632b7d457acae825c202b2e880e595a
+SIZE (rubygem/nokogiri-diff-0.2.0.gem) = 8704
Added: head/textproc/rubygem-nokogiri-diff/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/rubygem-nokogiri-diff/pkg-descr Sat May 16 13:34:46 2015 (r386531)
@@ -0,0 +1,11 @@
+nokogiri-diff adds the ability to calculate the differences (added or removed
+nodes) between two XML/HTML documents.
+
+Features:
+- Performs a breadth-first comparison between children nodes.
+- Compares XML/HTML Elements, Attributes, Text nodes and DTD nodes.
+- Allows calculating differences between documents, or just enumerating the
+ added or removed nodes.
+
+WWW: https://github.com/postmodern/nokogiri-diff
+RG: https://rubygems.org/gems/nokogiri-diff
More information about the svn-ports-all
mailing list