svn commit: r487538 - in head/devel: . rubygem-json-schema
Adam Weinberger
adamw at FreeBSD.org
Sat Dec 15 17:45:21 UTC 2018
Author: adamw
Date: Sat Dec 15 17:45:19 2018
New Revision: 487538
URL: https://svnweb.freebsd.org/changeset/ports/487538
Log:
Add devel/rubygem-json-schema
This library is intended to provide Ruby with an interface for validating JSON
objects against a JSON schema conforming to JSON Schema Draft 4. Legacy support
for JSON Schema Draft 3, JSON Schema Draft 2, and JSON Schema Draft 1 is also
included.
WWW: https://github.com/ruby-json-schema/json-schema
Added:
head/devel/rubygem-json-schema/
head/devel/rubygem-json-schema/Makefile (contents, props changed)
head/devel/rubygem-json-schema/distinfo (contents, props changed)
head/devel/rubygem-json-schema/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sat Dec 15 17:36:34 2018 (r487537)
+++ head/devel/Makefile Sat Dec 15 17:45:19 2018 (r487538)
@@ -5787,6 +5787,7 @@
SUBDIR += rubygem-json1
SUBDIR += rubygem-json_pure
SUBDIR += rubygem-json_pure1
+ SUBDIR += rubygem-json-schema
SUBDIR += rubygem-jsonapi-renderer
SUBDIR += rubygem-kafo
SUBDIR += rubygem-kafo_parsers
Added: head/devel/rubygem-json-schema/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-json-schema/Makefile Sat Dec 15 17:45:19 2018 (r487538)
@@ -0,0 +1,22 @@
+# Created by: Adam Weinberger <adamw at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= json-schema
+PORTVERSION= 2.8.1
+CATEGORIES= devel rubygems
+MASTER_SITES= RG
+
+MAINTAINER= adamw at FreeBSD.org
+COMMENT= Ruby JSON schema validator
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE.md
+
+RUN_DEPENDS= rubygem-addressable>=2.4:www/rubygem-addressable
+
+USES= gem
+USE_RUBY= yes
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/devel/rubygem-json-schema/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-json-schema/distinfo Sat Dec 15 17:45:19 2018 (r487538)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1544895614
+SHA256 (rubygem/json-schema-2.8.1.gem) = 65cd19f5f5afef91e90493230c1078c325744bc31d25e21409ed5b91aba365fb
+SIZE (rubygem/json-schema-2.8.1.gem) = 31744
Added: head/devel/rubygem-json-schema/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-json-schema/pkg-descr Sat Dec 15 17:45:19 2018 (r487538)
@@ -0,0 +1,6 @@
+This library is intended to provide Ruby with an interface for validating JSON
+objects against a JSON schema conforming to JSON Schema Draft 4. Legacy support
+for JSON Schema Draft 3, JSON Schema Draft 2, and JSON Schema Draft 1 is also
+included.
+
+WWW: https://github.com/ruby-json-schema/json-schema
More information about the svn-ports-head
mailing list