From owner-svn-ports-all@freebsd.org Thu Mar 9 14:25:13 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CBB35D03F2F; Thu, 9 Mar 2017 14:25:13 +0000 (UTC) (envelope-from tz@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 mx1.freebsd.org (Postfix) with ESMTPS id 8E164F15; Thu, 9 Mar 2017 14:25:13 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v29EPC0Z087434; Thu, 9 Mar 2017 14:25:12 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v29EPCUt087429; Thu, 9 Mar 2017 14:25:12 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201703091425.v29EPCUt087429@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Thu, 9 Mar 2017 14:25:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435757 - in head/textproc: . rubygem-html2text 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.23 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: Thu, 09 Mar 2017 14:25:13 -0000 Author: tz Date: Thu Mar 9 14:25:12 2017 New Revision: 435757 URL: https://svnweb.freebsd.org/changeset/ports/435757 Log: New port: textproc/rubygem-html2text html2text is a very simple script that uses Ruby's DOM methods to load HTML from a string, and then iterates over the resulting DOM to correctly output plain text. WWW: https://github.com/soundasleep/html2text_ruby Added: head/textproc/rubygem-html2text/ head/textproc/rubygem-html2text/Makefile (contents, props changed) head/textproc/rubygem-html2text/distinfo (contents, props changed) head/textproc/rubygem-html2text/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Thu Mar 9 14:23:49 2017 (r435756) +++ head/textproc/Makefile Thu Mar 9 14:25:12 2017 (r435757) @@ -1474,6 +1474,7 @@ SUBDIR += rubygem-html-pipeline SUBDIR += rubygem-html-pipeline-gitlab SUBDIR += rubygem-html-pipeline1 + SUBDIR += rubygem-html2text SUBDIR += rubygem-htmlentities SUBDIR += rubygem-ini SUBDIR += rubygem-itextomml Added: head/textproc/rubygem-html2text/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-html2text/Makefile Thu Mar 9 14:25:12 2017 (r435757) @@ -0,0 +1,21 @@ +# Created by: Torsten Zuehlsdorff +# $FreeBSD$ + +PORTNAME= html2text +PORTVERSION= 0.2.0 +CATEGORIES= textproc rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Convert HTML into a plain text format + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +RUN_DEPENDS= rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include Added: head/textproc/rubygem-html2text/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-html2text/distinfo Thu Mar 9 14:25:12 2017 (r435757) @@ -0,0 +1,3 @@ +TIMESTAMP = 1489069258 +SHA256 (rubygem/html2text-0.2.0.gem) = 31c2f0be9ab7aa4fc780b07d5f84882ebc22a9024c29a45f4f5adfe42e92ad4f +SIZE (rubygem/html2text-0.2.0.gem) = 11776 Added: head/textproc/rubygem-html2text/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-html2text/pkg-descr Thu Mar 9 14:25:12 2017 (r435757) @@ -0,0 +1,5 @@ +html2text is a very simple script that uses Ruby's DOM +methods to load HTML from a string, and then iterates +over the resulting DOM to correctly output plain text. + +WWW: https://github.com/soundasleep/html2text_ruby