From owner-svn-ports-all@freebsd.org Fri Apr 29 22:28:20 2016 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 4A2C8B215F1; Fri, 29 Apr 2016 22:28:20 +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 248621EB6; Fri, 29 Apr 2016 22:28:20 +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 u3TMSJeg047934; Fri, 29 Apr 2016 22:28:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3TMSIR2047930; Fri, 29 Apr 2016 22:28:18 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201604292228.u3TMSIR2047930@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 29 Apr 2016 22:28:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414302 - in head/devel: . rubygem-pathutil 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.21 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: Fri, 29 Apr 2016 22:28:20 -0000 Author: sunpoet Date: Fri Apr 29 22:28:18 2016 New Revision: 414302 URL: https://svnweb.freebsd.org/changeset/ports/414302 Log: - Add rubygem-pathutil 0.9.0 Pathutil tries to be a faster pure Ruby impelementation of Pathname. It arose out of a need to fix basic problems with Pathname, such as suscepetibility to join overrides, need for automatic encoding, and normalization (for stuff like Jekyll) and the ability to do other safe-style operations in an encapsulated format, like copying files and folders with symlinks but only if they originate from the given root. WWW: https://github.com/envygeeks/pathutil Added: head/devel/rubygem-pathutil/ head/devel/rubygem-pathutil/Makefile (contents, props changed) head/devel/rubygem-pathutil/distinfo (contents, props changed) head/devel/rubygem-pathutil/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Apr 29 22:27:40 2016 (r414301) +++ head/devel/Makefile Fri Apr 29 22:28:18 2016 (r414302) @@ -5040,6 +5040,7 @@ SUBDIR += rubygem-paint SUBDIR += rubygem-paperclip SUBDIR += rubygem-parser + SUBDIR += rubygem-pathutil SUBDIR += rubygem-piston SUBDIR += rubygem-pkg-config SUBDIR += rubygem-platform Added: head/devel/rubygem-pathutil/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-pathutil/Makefile Fri Apr 29 22:28:18 2016 (r414302) @@ -0,0 +1,21 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= pathutil +PORTVERSION= 0.9.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Like Pathname but a little less insane + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= rubygem-forwardable-extended>=2.6:devel/rubygem-forwardable-extended + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include Added: head/devel/rubygem-pathutil/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-pathutil/distinfo Fri Apr 29 22:28:18 2016 (r414302) @@ -0,0 +1,2 @@ +SHA256 (rubygem/pathutil-0.9.0.gem) = 66482f6a627461299d796d02e5eb11a147987e01ab866bd8f31076e31e12596c +SIZE (rubygem/pathutil-0.9.0.gem) = 11264 Added: head/devel/rubygem-pathutil/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-pathutil/pkg-descr Fri Apr 29 22:28:18 2016 (r414302) @@ -0,0 +1,8 @@ +Pathutil tries to be a faster pure Ruby impelementation of Pathname. It arose +out of a need to fix basic problems with Pathname, such as suscepetibility to +join overrides, need for automatic encoding, and normalization (for stuff like +Jekyll) and the ability to do other safe-style operations in an encapsulated +format, like copying files and folders with symlinks but only if they originate +from the given root. + +WWW: https://github.com/envygeeks/pathutil