svn commit: r558488 - in head/devel: . rubygem-rbs
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Sat Dec 19 20:05:27 UTC 2020
Author: sunpoet
Date: Sat Dec 19 20:05:18 2020
New Revision: 558488
URL: https://svnweb.freebsd.org/changeset/ports/558488
Log:
Add rubygem-rbs 0.20.1
RBS is a language to describe the structure of Ruby programs. You can write down
the definition of a class or module: methods defined in the class, instance
variables and their types, and inheritance/mix-in relations. It also allows
declaring constants and global variables.
WWW: https://github.com/ruby/rbs
Added:
head/devel/rubygem-rbs/
head/devel/rubygem-rbs/Makefile (contents, props changed)
head/devel/rubygem-rbs/distinfo (contents, props changed)
head/devel/rubygem-rbs/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sat Dec 19 20:05:12 2020 (r558487)
+++ head/devel/Makefile Sat Dec 19 20:05:18 2020 (r558488)
@@ -6389,6 +6389,7 @@
SUBDIR += rubygem-rb-inotify
SUBDIR += rubygem-rb-kqueue
SUBDIR += rubygem-rblineprof
+ SUBDIR += rubygem-rbs
SUBDIR += rubygem-rbtrace
SUBDIR += rubygem-rdoc
SUBDIR += rubygem-re2
Added: head/devel/rubygem-rbs/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-rbs/Makefile Sat Dec 19 20:05:18 2020 (r558488)
@@ -0,0 +1,24 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= rbs
+PORTVERSION= 0.20.1
+CATEGORIES= devel rubygems
+MASTER_SITES= RG
+
+MAINTAINER= sunpoet at FreeBSD.org
+COMMENT= Language for type signatures for Ruby and standard library definitions
+
+LICENSE= BSD2CLAUSE RUBY
+LICENSE_COMB= dual
+LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL
+LICENSE_FILE_RUBY= ${WRKSRC}/COPYING
+
+USES= gem
+USE_RUBY= yes
+
+NO_ARCH= yes
+
+PLIST_FILES= bin/rbs
+
+.include <bsd.port.mk>
Added: head/devel/rubygem-rbs/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-rbs/distinfo Sat Dec 19 20:05:18 2020 (r558488)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1608366098
+SHA256 (rubygem/rbs-0.20.1.gem) = bc6503fb561140955d69631d1d5f8e7a5beef4791067e721a3b87eed7761ca83
+SIZE (rubygem/rbs-0.20.1.gem) = 397824
Added: head/devel/rubygem-rbs/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-rbs/pkg-descr Sat Dec 19 20:05:18 2020 (r558488)
@@ -0,0 +1,6 @@
+RBS is a language to describe the structure of Ruby programs. You can write down
+the definition of a class or module: methods defined in the class, instance
+variables and their types, and inheritance/mix-in relations. It also allows
+declaring constants and global variables.
+
+WWW: https://github.com/ruby/rbs
More information about the svn-ports-all
mailing list