From owner-svn-ports-head@FreeBSD.ORG Sun May 10 23:38:54 2015 Return-Path: Delivered-To: svn-ports-head@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 C63D3B8F; Sun, 10 May 2015 23:38:54 +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 A7EF91A59; Sun, 10 May 2015 23:38:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4ANcs0L042188; Sun, 10 May 2015 23:38:54 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4ANcrec042181; Sun, 10 May 2015 23:38:53 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201505102338.t4ANcrec042181@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Sun, 10 May 2015 23:38:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386035 - in head/textproc: . rubygem-html-pipeline 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.20 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: Sun, 10 May 2015 23:38:55 -0000 Author: mmoll Date: Sun May 10 23:38:53 2015 New Revision: 386035 URL: https://svnweb.freebsd.org/changeset/ports/386035 Log: new port: textproc/rubygem-html-pipeline GitHub HTML processing filters and utilities WWW: https://github.com/jch/html-pipeline PR: 199820 Differential Revision: https://reviews.freebsd.org/D2508 Submitted by: Torsten Zuehlsdorff Approved by: swills (mentor) Added: head/textproc/rubygem-html-pipeline/ head/textproc/rubygem-html-pipeline/Makefile (contents, props changed) head/textproc/rubygem-html-pipeline/distinfo (contents, props changed) head/textproc/rubygem-html-pipeline/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sun May 10 23:31:29 2015 (r386034) +++ head/textproc/Makefile Sun May 10 23:38:53 2015 (r386035) @@ -1349,6 +1349,7 @@ SUBDIR += rubygem-gitlab-linguist SUBDIR += rubygem-heredoc_unindent SUBDIR += rubygem-hikidoc + SUBDIR += rubygem-html-pipeline SUBDIR += rubygem-htmlentities SUBDIR += rubygem-ini SUBDIR += rubygem-itextomml Added: head/textproc/rubygem-html-pipeline/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-html-pipeline/Makefile Sun May 10 23:38:53 2015 (r386035) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= html-pipeline +PORTVERSION= 1.11.0 +CATEGORIES= textproc rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= GitHub HTML processing filters and utilities + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= rubygem-activesupport>=2:${PORTSDIR}/devel/rubygem-activesupport \ + rubygem-nokogiri>=1.4:${PORTSDIR}/textproc/rubygem-nokogiri + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/textproc/rubygem-html-pipeline/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-html-pipeline/distinfo Sun May 10 23:38:53 2015 (r386035) @@ -0,0 +1,2 @@ +SHA256 (rubygem/html-pipeline-1.11.0.gem) = 3461d1f709ef4812f11cc9789bdebb801813ba726e5544df3aad6c62336d93f9 +SIZE (rubygem/html-pipeline-1.11.0.gem) = 33792 Added: head/textproc/rubygem-html-pipeline/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-html-pipeline/pkg-descr Sun May 10 23:38:53 2015 (r386035) @@ -0,0 +1,6 @@ +This library provides a handful of chainable HTML filters to +transform user content into markup. A filter takes an HTML +string or Nokogiri::HTML::DocumentFragment, optionally +manipulates it, and then outputs the result. + +WWW: https://github.com/jch/html-pipeline