From owner-svn-ports-head@freebsd.org Mon May 28 07:52:28 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9E2DAF704A8; Mon, 28 May 2018 07:52:28 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5364D8178C; Mon, 28 May 2018 07:52:28 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 362E8262B; Mon, 28 May 2018 07:52:28 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4S7qSX7036732; Mon, 28 May 2018 07:52:28 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4S7qR0o036725; Mon, 28 May 2018 07:52:27 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201805280752.w4S7qR0o036725@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Mon, 28 May 2018 07:52:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471026 - in head/www: . p5-HTML5-DOM X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: in head/www: . p5-HTML5-DOM X-SVN-Commit-Revision: 471026 X-SVN-Commit-Repository: ports 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.26 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: Mon, 28 May 2018 07:52:28 -0000 Author: wen Date: Mon May 28 07:52:26 2018 New Revision: 471026 URL: https://svnweb.freebsd.org/changeset/ports/471026 Log: HTML5::DOM is a fast HTML5 parser and DOM manipulatin library with CSS4 selectors, fully conformant with the HTML5 specification. It based on https://github.com/lexborisov/Modest as selector engine and https://github.com/lexborisov/myhtml as HTML5 parser. WWW: https://metacpan.org/release/HTML5-DOM Added: head/www/p5-HTML5-DOM/ head/www/p5-HTML5-DOM/Makefile (contents, props changed) head/www/p5-HTML5-DOM/distinfo (contents, props changed) head/www/p5-HTML5-DOM/pkg-descr (contents, props changed) head/www/p5-HTML5-DOM/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon May 28 07:37:24 2018 (r471025) +++ head/www/Makefile Mon May 28 07:52:26 2018 (r471026) @@ -972,6 +972,7 @@ SUBDIR += p5-HTML-WikiConverter-UseMod SUBDIR += p5-HTML-WikiConverter-WakkaWiki SUBDIR += p5-HTML-WikiConverter-WikkaWiki + SUBDIR += p5-HTML5-DOM SUBDIR += p5-HTTP-Async SUBDIR += p5-HTTP-Body SUBDIR += p5-HTTP-BrowserDetect Added: head/www/p5-HTML5-DOM/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-HTML5-DOM/Makefile Mon May 28 07:52:26 2018 (r471026) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= HTML5-DOM +PORTVERSION= 1.07 +CATEGORIES= www perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:ZHUMARIN +PKGNAMEPREFIX= p5- + +MAINTAINER= wen@FreeBSD.org +COMMENT= Super fast html5 DOM library with css selectors + +LICENSE= MIT + +USES= perl5 +USE_PERL5= configure + +.include Added: head/www/p5-HTML5-DOM/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-HTML5-DOM/distinfo Mon May 28 07:52:26 2018 (r471026) @@ -0,0 +1,3 @@ +TIMESTAMP = 1527521877 +SHA256 (HTML5-DOM-1.07.tar.gz) = a254289ef90ccf5bb1c581e622fd2d4ad70a15e7801c974adc9688c59b303624 +SIZE (HTML5-DOM-1.07.tar.gz) = 1514320 Added: head/www/p5-HTML5-DOM/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-HTML5-DOM/pkg-descr Mon May 28 07:52:26 2018 (r471026) @@ -0,0 +1,7 @@ +HTML5::DOM is a fast HTML5 parser and DOM manipulatin library with CSS4 +selectors, fully conformant with the HTML5 specification. + +It based on https://github.com/lexborisov/Modest as selector engine and +https://github.com/lexborisov/myhtml as HTML5 parser. + +WWW: https://metacpan.org/release/HTML5-DOM Added: head/www/p5-HTML5-DOM/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-HTML5-DOM/pkg-plist Mon May 28 07:52:26 2018 (r471026) @@ -0,0 +1,20 @@ +%%SITE_ARCH%%/HTML5/DOM.pm +%%SITE_ARCH%%/HTML5/DOM.pod +%%SITE_ARCH%%/HTML5/DOM/CSS.pm +%%SITE_ARCH%%/HTML5/DOM/CSS/Selector.pm +%%SITE_ARCH%%/HTML5/DOM/CSS/Selector/Entry.pm +%%SITE_ARCH%%/HTML5/DOM/Collection.pm +%%SITE_ARCH%%/HTML5/DOM/Comment.pm +%%SITE_ARCH%%/HTML5/DOM/DocType.pm +%%SITE_ARCH%%/HTML5/DOM/Document.pm +%%SITE_ARCH%%/HTML5/DOM/Element.pm +%%SITE_ARCH%%/HTML5/DOM/Encoding.pm +%%SITE_ARCH%%/HTML5/DOM/Fragment.pm +%%SITE_ARCH%%/HTML5/DOM/Node.pm +%%SITE_ARCH%%/HTML5/DOM/Text.pm +%%SITE_ARCH%%/HTML5/DOM/TokenList.pm +%%SITE_ARCH%%/HTML5/DOM/Tree.pm +%%SITE_ARCH%%/HTML5/README.pod +%%SITE_ARCH%%/HTML5/leaks.pl +%%SITE_ARCH%%/auto/HTML5/DOM/DOM.so +%%PERL5_MAN3%%/HTML5::DOM.3.gz