From owner-svn-ports-all@FreeBSD.ORG Sat May 16 13:34:48 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 429FB412; Sat, 16 May 2015 13:34:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 315281762; Sat, 16 May 2015 13:34:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4GDYmkJ074541; Sat, 16 May 2015 13:34:48 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4GDYlp2074537; Sat, 16 May 2015 13:34:47 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201505161334.t4GDYlp2074537@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 16 May 2015 13:34:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386531 - in head/textproc: . rubygem-nokogiri-diff X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 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: Sat, 16 May 2015 13:34:48 -0000 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 +# $FreeBSD$ + +PORTNAME= nokogiri-diff +PORTVERSION= 0.2.0 +CATEGORIES= textproc rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@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 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