svn commit: r560090 - in head/shells: . rubygem-shellwords

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Jan 3 20:04:43 UTC 2021


Author: sunpoet
Date: Sun Jan  3 20:04:38 2021
New Revision: 560090
URL: https://svnweb.freebsd.org/changeset/ports/560090

Log:
  Add rubygem-shellwords 0.1.0
  
  Shellwords manipulates strings according to the word parsing rules of the UNIX
  Bourne shell.
  
  The shellwords() function was originally a port of shellwords.pl, but modified
  to conform to the Shell & Utilities volume of the IEEE Std 1003.1-2008, 2016
  Edition.
  
  WWW: https://github.com/ruby/shellwords

Added:
  head/shells/rubygem-shellwords/
  head/shells/rubygem-shellwords/Makefile   (contents, props changed)
  head/shells/rubygem-shellwords/distinfo   (contents, props changed)
  head/shells/rubygem-shellwords/pkg-descr   (contents, props changed)
Modified:
  head/shells/Makefile

Modified: head/shells/Makefile
==============================================================================
--- head/shells/Makefile	Sun Jan  3 20:04:33 2021	(r560089)
+++ head/shells/Makefile	Sun Jan  3 20:04:38 2021	(r560090)
@@ -41,6 +41,7 @@
     SUBDIR += pear-PHP_Shell
     SUBDIR += psh
     SUBDIR += rc
+    SUBDIR += rubygem-shellwords
     SUBDIR += rush
     SUBDIR += sash
     SUBDIR += scponly

Added: head/shells/rubygem-shellwords/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/shells/rubygem-shellwords/Makefile	Sun Jan  3 20:04:38 2021	(r560090)
@@ -0,0 +1,21 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	shellwords
+PORTVERSION=	0.1.0
+CATEGORIES=	shells rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Manipulate strings with word parsing rules of UNIX Bourne shell
+
+LICENSE=	BSD2CLAUSE RUBY
+LICENSE_COMB=	dual
+LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt
+
+USES=		gem
+USE_RUBY=	yes
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/shells/rubygem-shellwords/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/shells/rubygem-shellwords/distinfo	Sun Jan  3 20:04:38 2021	(r560090)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1609598831
+SHA256 (rubygem/shellwords-0.1.0.gem) = e922b0b8fe8a469d19b35e11cddbc940b2ff72e8af1c32db1944a3fece00742e
+SIZE (rubygem/shellwords-0.1.0.gem) = 9728

Added: head/shells/rubygem-shellwords/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/shells/rubygem-shellwords/pkg-descr	Sun Jan  3 20:04:38 2021	(r560090)
@@ -0,0 +1,8 @@
+Shellwords manipulates strings according to the word parsing rules of the UNIX
+Bourne shell.
+
+The shellwords() function was originally a port of shellwords.pl, but modified
+to conform to the Shell & Utilities volume of the IEEE Std 1003.1-2008, 2016
+Edition.
+
+WWW: https://github.com/ruby/shellwords


More information about the svn-ports-all mailing list