From owner-svn-ports-all@freebsd.org Fri Sep 15 17:36:02 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC4F6E2478A; Fri, 15 Sep 2017 17:36:02 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C6A80709A3; Fri, 15 Sep 2017 17:36:02 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v8FHa1L2082602; Fri, 15 Sep 2017 17:36:01 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8FHa18b082598; Fri, 15 Sep 2017 17:36:01 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201709151736.v8FHa18b082598@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Fri, 15 Sep 2017 17:36:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449911 - in head/www: . rubygem-rdf-normalize X-SVN-Group: ports-head X-SVN-Commit-Author: jrm X-SVN-Commit-Paths: in head/www: . rubygem-rdf-normalize X-SVN-Commit-Revision: 449911 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Sep 2017 17:36:03 -0000 Author: jrm Date: Fri Sep 15 17:36:01 2017 New Revision: 449911 URL: https://svnweb.freebsd.org/changeset/ports/449911 Log: New port, www/rubygem-rdf-normalize: RDF Graph normalizer for Ruby. Adding this because it is a new net-im/mastodon dependency. WWW: http://github.com/gkellogg/rdf-normalize Added: head/www/rubygem-rdf-normalize/ head/www/rubygem-rdf-normalize/Makefile (contents, props changed) head/www/rubygem-rdf-normalize/distinfo (contents, props changed) head/www/rubygem-rdf-normalize/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Sep 15 17:32:31 2017 (r449910) +++ head/www/Makefile Fri Sep 15 17:36:01 2017 (r449911) @@ -2106,6 +2106,7 @@ SUBDIR += rubygem-ramaze SUBDIR += rubygem-raphael-rails SUBDIR += rubygem-rdf + SUBDIR += rubygem-rdf-normalize SUBDIR += rubygem-redcloth SUBDIR += rubygem-redis-rack SUBDIR += rubygem-redis-rack1 Added: head/www/rubygem-rdf-normalize/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rdf-normalize/Makefile Fri Sep 15 17:36:01 2017 (r449911) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= rdf-normalize +DISTVERSION= 0.3.2 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= RDF Graph normalizer for Ruby + +LICENSE= UNLICENSE + +RUN_DEPENDS= rubygem-rdf>=2.0:www/rubygem-rdf + +USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +.include Added: head/www/rubygem-rdf-normalize/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rdf-normalize/distinfo Fri Sep 15 17:36:01 2017 (r449911) @@ -0,0 +1,3 @@ +TIMESTAMP = 1504483408 +SHA256 (rubygem/rdf-normalize-0.3.2.gem) = f35d8ae13531fe8e582725fd95a3b44ca66a8bfb33995591659f90a5cbb3c688 +SIZE (rubygem/rdf-normalize-0.3.2.gem) = 12800 Added: head/www/rubygem-rdf-normalize/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rdf-normalize/pkg-descr Fri Sep 15 17:36:01 2017 (r449911) @@ -0,0 +1,6 @@ +This is a Ruby implementation of a RDF Normalize for RDF.rb. It is a Graph +normalizer for the RDF.rb library suite. It generates normalized output for an +RDF Dataset using the algorithm defined in RDF Normalize. It also implements an +RDF Writer interface, which can be used to serialize normalized statements. + +WWW: http://github.com/gkellogg/rdf-normalize