svn commit: r418309 - in head/www: . rubygem-rdf

TAKATSU Tomonari tota at FreeBSD.org
Sun Jul 10 10:04:53 UTC 2016


Author: tota
Date: Sun Jul 10 10:04:51 2016
New Revision: 418309
URL: https://svnweb.freebsd.org/changeset/ports/418309

Log:
  - Add new port: www/rubygem-rdf
  
    RDF.rb is a pure-Ruby library for working with Resource Description
    Framework (RDF) data.
  
    Features:
    * 100% pure Ruby with minimal dependencies and no bloat.
    * Fully compatible with RDF 1.1 specifications.
    * 100% free and unencumbered public domain software.
    * Provides a clean, well-designed RDF object model and related APIs.
    * Supports parsing and serializing N-Triples and N-Quads out of the box, with
      more serialization format support available through add-on extensions.
    * Includes in-memory graph and repository implementations, with more storage
      adapter support available through add-on extensions.
    * Implements basic graph pattern (BGP) query evaluation.
    * Plays nice with others: entirely contained in the RDF module, and does not
      modify any of Ruby's core classes or standard library.
    * Based entirely on Ruby's autoloading, meaning that you can generally make use
      of any one part of the library without needing to load up the rest.
    * Compatible with Ruby Ruby 2.x, Rubinius and JRuby 1.7+ (in Ruby 2.0 mode).
    * Performs auto-detection of input to select appropriate Reader class if one can
      not be determined from file characteristics.
  
    WWW: http://rubygems.org/gems/rdf

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

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Sun Jul 10 09:04:07 2016	(r418308)
+++ head/www/Makefile	Sun Jul 10 10:04:51 2016	(r418309)
@@ -1985,6 +1985,7 @@
     SUBDIR += rubygem-raindrops
     SUBDIR += rubygem-ramaze
     SUBDIR += rubygem-raphael-rails
+    SUBDIR += rubygem-rdf
     SUBDIR += rubygem-redcloth
     SUBDIR += rubygem-redis-rack
     SUBDIR += rubygem-redis-rails

Added: head/www/rubygem-rdf/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/rubygem-rdf/Makefile	Sun Jul 10 10:04:51 2016	(r418309)
@@ -0,0 +1,21 @@
+# Created by: TAKATSU Tomonari <tota at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	rdf
+PORTVERSION=	2.0.2
+CATEGORIES=	www rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby at FreeBSD.org
+COMMENT=	Pure-Ruby library for working with RDF data
+
+LICENSE=	PD
+LICENSE_FILE=	${WRKSRC}/UNLICENSE
+
+RUN_DEPENDS=	rubygem-hamster>=3.0:devel/rubygem-hamster \
+		rubygem-link_header>=0.0.8:www/rubygem-link_header
+
+USE_RUBY=	yes
+USES=		gem
+
+.include <bsd.port.mk>

Added: head/www/rubygem-rdf/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/rubygem-rdf/distinfo	Sun Jul 10 10:04:51 2016	(r418309)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1468023489
+SHA256 (rubygem/rdf-2.0.2.gem) = d91d1a48a8983ba4772e86447fa1df9111236a19b876a1260a5a3010f1b56242
+SIZE (rubygem/rdf-2.0.2.gem) = 126464

Added: head/www/rubygem-rdf/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/rubygem-rdf/pkg-descr	Sun Jul 10 10:04:51 2016	(r418309)
@@ -0,0 +1,22 @@
+RDF.rb is a pure-Ruby library for working with Resource Description
+Framework (RDF) data.
+
+Features:
+* 100% pure Ruby with minimal dependencies and no bloat.
+* Fully compatible with RDF 1.1 specifications.
+* 100% free and unencumbered public domain software.
+* Provides a clean, well-designed RDF object model and related APIs.
+* Supports parsing and serializing N-Triples and N-Quads out of the box, with
+  more serialization format support available through add-on extensions.
+* Includes in-memory graph and repository implementations, with more storage
+  adapter support available through add-on extensions.
+* Implements basic graph pattern (BGP) query evaluation.
+* Plays nice with others: entirely contained in the RDF module, and does not
+  modify any of Ruby's core classes or standard library.
+* Based entirely on Ruby's autoloading, meaning that you can generally make use
+  of any one part of the library without needing to load up the rest.
+* Compatible with Ruby Ruby 2.x, Rubinius and JRuby 1.7+ (in Ruby 2.0 mode).
+* Performs auto-detection of input to select appropriate Reader class if one can
+  not be determined from file characteristics.
+
+WWW: http://rubygems.org/gems/rdf


More information about the svn-ports-head mailing list