From owner-svn-ports-head@freebsd.org Sun Dec 31 22:22:55 2017 Return-Path: Delivered-To: svn-ports-head@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 D3432EAA744; Sun, 31 Dec 2017 22:22:55 +0000 (UTC) (envelope-from sunpoet@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 A80D5660B0; Sun, 31 Dec 2017 22:22:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBVMMsVX076030; Sun, 31 Dec 2017 22:22:54 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBVMMsbY076026; Sun, 31 Dec 2017 22:22:54 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201712312222.vBVMMsbY076026@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 31 Dec 2017 22:22:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457729 - in head/textproc: . rubygem-liquid-tag-parser X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/textproc: . rubygem-liquid-tag-parser X-SVN-Commit-Revision: 457729 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.25 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, 31 Dec 2017 22:22:55 -0000 Author: sunpoet Date: Sun Dec 31 22:22:54 2017 New Revision: 457729 URL: https://svnweb.freebsd.org/changeset/ports/457729 Log: Add rubygem-liquid-tag-parser 1.8.0 Liquid Tag parser provides a robust interface to parsing your tag syntax in a way that makes sense, it uses Shellwords, along with escapes to allow users to do extremely robust arguments, giving you back a hash, that you get to play with. It also has the concept of argv1, deep hashes, and even defaults if you give them to us. WWW: https://github.com/envygeeks/liquid-tag-parser Added: head/textproc/rubygem-liquid-tag-parser/ head/textproc/rubygem-liquid-tag-parser/Makefile (contents, props changed) head/textproc/rubygem-liquid-tag-parser/distinfo (contents, props changed) head/textproc/rubygem-liquid-tag-parser/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sun Dec 31 22:20:04 2017 (r457728) +++ head/textproc/Makefile Sun Dec 31 22:22:54 2017 (r457729) @@ -1525,6 +1525,7 @@ SUBDIR += rubygem-libxml-ruby SUBDIR += rubygem-linguistics SUBDIR += rubygem-liquid + SUBDIR += rubygem-liquid-tag-parser SUBDIR += rubygem-loggability SUBDIR += rubygem-loofah SUBDIR += rubygem-ltsv Added: head/textproc/rubygem-liquid-tag-parser/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-liquid-tag-parser/Makefile Sun Dec 31 22:22:54 2017 (r457729) @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= liquid-tag-parser +PORTVERSION= 1.8.0 +CATEGORIES= textproc rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Parse liquid tags easily + +LICENSE= MIT + +BUILD_DEPENDS= rubygem-rdoc>=5.0.0:devel/rubygem-rdoc +RUN_DEPENDS= rubygem-extras>=0.3:devel/rubygem-extras \ + rubygem-liquid>=3.0:textproc/rubygem-liquid + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include Added: head/textproc/rubygem-liquid-tag-parser/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-liquid-tag-parser/distinfo Sun Dec 31 22:22:54 2017 (r457729) @@ -0,0 +1,3 @@ +TIMESTAMP = 1511439506 +SHA256 (rubygem/liquid-tag-parser-1.8.0.gem) = 835a3e313112c798c2961108c60705d7ec105fa03455fe356409de6dcbd57fe9 +SIZE (rubygem/liquid-tag-parser-1.8.0.gem) = 7168 Added: head/textproc/rubygem-liquid-tag-parser/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-liquid-tag-parser/pkg-descr Sun Dec 31 22:22:54 2017 (r457729) @@ -0,0 +1,7 @@ +Liquid Tag parser provides a robust interface to parsing your tag syntax in a +way that makes sense, it uses Shellwords, along with escapes to allow users to +do extremely robust arguments, giving you back a hash, that you get to play +with. It also has the concept of argv1, deep hashes, and even defaults if you +give them to us. + +WWW: https://github.com/envygeeks/liquid-tag-parser