Date: Fri, 29 Apr 2016 22:28:18 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414302 - in head/devel: . rubygem-pathutil Message-ID: <201604292228.u3TMSIR2047930@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <sunpoet@FreeBSD.org> +# $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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604292228.u3TMSIR2047930>