From owner-svn-ports-head@FreeBSD.ORG Thu Aug 21 19:07:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E3F4EDBC; Thu, 21 Aug 2014 19:07:49 +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 C380C3AD2; Thu, 21 Aug 2014 19:07:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7LJ7nDf030770; Thu, 21 Aug 2014 19:07:49 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7LJ7mWg030766; Thu, 21 Aug 2014 19:07:48 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201408211907.s7LJ7mWg030766@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Thu, 21 Aug 2014 19:07:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r365584 - in head/textproc: . pugixml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Aug 2014 19:07:50 -0000 Author: adamw Date: Thu Aug 21 19:07:48 2014 New Revision: 365584 URL: http://svnweb.freebsd.org/changeset/ports/365584 QAT: https://qat.redports.org/buildarchive/r365584/ Log: Add textproc/pugixml. pugixml is a light-weight C++ XML processing library. It features: * DOM-like interface with rich traversal/modification capabilities * Extremely fast non-validating XML parser which constructs the DOM tree from an XML file/buffer * XPath 1.0 implementation for complex data-driven tree queries * Full Unicode support with Unicode interface variants and automatic encoding conversions WWW: http://pugixml.com/ PR: 192634 Submitted by: ybungalobill@gmail.com Added: head/textproc/pugixml/ head/textproc/pugixml/Makefile (contents, props changed) head/textproc/pugixml/distinfo (contents, props changed) head/textproc/pugixml/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Thu Aug 21 19:04:32 2014 (r365583) +++ head/textproc/Makefile Thu Aug 21 19:07:48 2014 (r365584) @@ -1134,6 +1134,7 @@ SUBDIR += print-n-times SUBDIR += prosper SUBDIR += publican + SUBDIR += pugixml SUBDIR += pure-csv SUBDIR += pure-xml SUBDIR += py-4suite-xml Added: head/textproc/pugixml/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/pugixml/Makefile Thu Aug 21 19:07:48 2014 (r365584) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= pugixml +PORTVERSION= 1.4 +CATEGORIES= textproc +MASTER_SITES= http://github.com/zeux/pugixml/releases/download/v${PORTVERSION}/ + +MAINTAINER= ybungalobill@gmail.com +COMMENT= Light-weight, simple and fast XML parser for C++ with XPath support + +LICENSE= MIT + +USES= cmake +CMAKE_SOURCE_PATH= ${WRKSRC}/scripts + +PLIST_FILES= include/pugiconfig.hpp include/pugixml.hpp lib/libpugixml.a + +.include Added: head/textproc/pugixml/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/pugixml/distinfo Thu Aug 21 19:07:48 2014 (r365584) @@ -0,0 +1,2 @@ +SHA256 (pugixml-1.4.tar.gz) = 9c8802269cee1a48ab269d4055b910216bdf878cccde286dcae9c25813e6fa87 +SIZE (pugixml-1.4.tar.gz) = 369290 Added: head/textproc/pugixml/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/pugixml/pkg-descr Thu Aug 21 19:07:48 2014 (r365584) @@ -0,0 +1,10 @@ +pugixml is a light-weight C++ XML processing library. It features: + +* DOM-like interface with rich traversal/modification capabilities +* Extremely fast non-validating XML parser which constructs the DOM tree from an + XML file/buffer +* XPath 1.0 implementation for complex data-driven tree queries +* Full Unicode support with Unicode interface variants and automatic encoding + conversions + +WWW: http://pugixml.com/