From owner-svn-ports-all@FreeBSD.ORG Tue Mar 5 22:48:13 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E26E1949; Tue, 5 Mar 2013 22:48:13 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id BB1AC1BC; Tue, 5 Mar 2013 22:48:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r25MmDYZ059392; Tue, 5 Mar 2013 22:48:13 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r25MmCHw059388; Tue, 5 Mar 2013 22:48:12 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201303052248.r25MmCHw059388@svn.freebsd.org> From: Pawel Pekala Date: Tue, 5 Mar 2013 22:48:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313482 - in head/textproc: . xml2 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.14 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: Tue, 05 Mar 2013 22:48:14 -0000 Author: pawel Date: Tue Mar 5 22:48:12 2013 New Revision: 313482 URL: http://svnweb.freebsd.org/changeset/ports/313482 Log: These tools are used to convert XML and HTML to and from a line-oriented format more amenable to processing by classic Unix pipeline processing tools, like grep, sed, awk, cut, shell scripts, and so forth. The line-oriented format used by these tools looks very much like, but is not quite precisely the same as XPath. WWW: http://www.ofb.net/~egnor/xml2/ PR: ports/176670 Submitted by: Paul Chvostek Added: head/textproc/xml2/ head/textproc/xml2/Makefile (contents, props changed) head/textproc/xml2/distinfo (contents, props changed) head/textproc/xml2/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Mar 5 22:00:14 2013 (r313481) +++ head/textproc/Makefile Tue Mar 5 22:48:12 2013 (r313482) @@ -1501,6 +1501,7 @@ SUBDIR += xml-i18n-tools SUBDIR += xml-lite.el SUBDIR += xml-parse.el + SUBDIR += xml2 SUBDIR += xml2rfc SUBDIR += xmlada SUBDIR += xmlcatmgr Added: head/textproc/xml2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/xml2/Makefile Tue Mar 5 22:48:12 2013 (r313482) @@ -0,0 +1,26 @@ +# Created by: Paul Chvostek +# $FreeBSD$ + +PORTNAME= xml2 +PORTVERSION= 0.5 +CATEGORIES= textproc +MASTER_SITES= http://download.ofb.net/gale/ \ + http://www.it.ca/~paul/src/ + +MAINTAINER= paul+ports@it.ca +COMMENT= Convert between XML and a line-oriented format similar to XPath + +LICENSE= GPLv2 + +GNU_CONFIGURE= yes +USE_PKGCONFIG= build +USE_GNOME= libxml2 + +PLIST_FILES= bin/xml2 \ + bin/2xml \ + bin/csv2 \ + bin/2csv \ + bin/html2 \ + bin/2html + +.include Added: head/textproc/xml2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/xml2/distinfo Tue Mar 5 22:48:12 2013 (r313482) @@ -0,0 +1,2 @@ +SHA256 (xml2-0.5.tar.gz) = e3203a5d3e5d4c634374e229acdbbe03fea41e8ccdef6a594a3ea50a50d29705 +SIZE (xml2-0.5.tar.gz) = 86318 Added: head/textproc/xml2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/xml2/pkg-descr Tue Mar 5 22:48:12 2013 (r313482) @@ -0,0 +1,8 @@ +These tools are used to convert XML and HTML to and from a line-oriented +format more amenable to processing by classic Unix pipeline processing +tools, like grep, sed, awk, cut, shell scripts, and so forth. + +The line-oriented format used by these tools looks very much like, but +is not quite precisely the same as XPath. + +WWW: http://www.ofb.net/~egnor/xml2/