svn commit: r560066 - in head/devel: . rubygem-optparse
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Sun Jan 3 20:01:00 UTC 2021
Author: sunpoet
Date: Sun Jan 3 20:00:58 2021
New Revision: 560066
URL: https://svnweb.freebsd.org/changeset/ports/560066
Log:
Add rubygem-optparse 0.1.0
OptionParser is a class for command-line option analysis. It is much more
advanced, yet also easier to use, than GetoptLong, and is a more Ruby-oriented
solution.
WWW: https://github.com/ruby/optparse
Added:
head/devel/rubygem-optparse/
head/devel/rubygem-optparse/Makefile (contents, props changed)
head/devel/rubygem-optparse/distinfo (contents, props changed)
head/devel/rubygem-optparse/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sun Jan 3 20:00:52 2021 (r560065)
+++ head/devel/Makefile Sun Jan 3 20:00:58 2021 (r560066)
@@ -6306,6 +6306,7 @@
SUBDIR += rubygem-opentracing04
SUBDIR += rubygem-opt_parse_validator
SUBDIR += rubygem-optimist
+ SUBDIR += rubygem-optparse
SUBDIR += rubygem-orm_adapter
SUBDIR += rubygem-os
SUBDIR += rubygem-p4ruby
Added: head/devel/rubygem-optparse/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-optparse/Makefile Sun Jan 3 20:00:58 2021 (r560066)
@@ -0,0 +1,21 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= optparse
+PORTVERSION= 0.1.0
+CATEGORIES= devel rubygems
+MASTER_SITES= RG
+
+MAINTAINER= sunpoet at FreeBSD.org
+COMMENT= Class for command-line option analysis
+
+LICENSE= BSD2CLAUSE RUBY
+LICENSE_COMB= dual
+LICENSE_FILE_RUBY= ${WRKSRC}/COPYING
+
+USES= gem
+USE_RUBY= yes
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/devel/rubygem-optparse/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-optparse/distinfo Sun Jan 3 20:00:58 2021 (r560066)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1609598785
+SHA256 (rubygem/optparse-0.1.0.gem) = 1692809e17da0ed63208b98d3f2c6452e1ae1e17aa3d02cbf1bd8f829315e3e8
+SIZE (rubygem/optparse-0.1.0.gem) = 26112
Added: head/devel/rubygem-optparse/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-optparse/pkg-descr Sun Jan 3 20:00:58 2021 (r560066)
@@ -0,0 +1,5 @@
+OptionParser is a class for command-line option analysis. It is much more
+advanced, yet also easier to use, than GetoptLong, and is a more Ruby-oriented
+solution.
+
+WWW: https://github.com/ruby/optparse
More information about the svn-ports-head
mailing list