From owner-svn-ports-head@freebsd.org Mon Jan 4 13:51:04 2016 Return-Path: Delivered-To: svn-ports-head@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 0149CA61C0F; Mon, 4 Jan 2016 13:51:04 +0000 (UTC) (envelope-from mi@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 CEBCC1DBD; Mon, 4 Jan 2016 13:51:03 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u04Dp2aI004773; Mon, 4 Jan 2016 13:51:02 GMT (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u04Dp2jq004769; Mon, 4 Jan 2016 13:51:02 GMT (envelope-from mi@FreeBSD.org) Message-Id: <201601041351.u04Dp2jq004769@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mi set sender to mi@FreeBSD.org using -f From: Mikhail Teterin Date: Mon, 4 Jan 2016 13:51:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405240 - in head/devel: . py-PyLD X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 13:51:04 -0000 Author: mi Date: Mon Jan 4 13:51:02 2016 New Revision: 405240 URL: https://svnweb.freebsd.org/changeset/ports/405240 Log: Add port of JSON Linked Data implementation for Python. Needed by MediaGoblin. Added: head/devel/py-PyLD/ head/devel/py-PyLD/Makefile (contents, props changed) head/devel/py-PyLD/distinfo (contents, props changed) head/devel/py-PyLD/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jan 4 13:49:17 2016 (r405239) +++ head/devel/Makefile Mon Jan 4 13:51:02 2016 (r405240) @@ -3893,6 +3893,7 @@ SUBDIR += py-Products.contentmigration SUBDIR += py-Products.statusmessages SUBDIR += py-Products.validation + SUBDIR += py-PyLD SUBDIR += py-RPyC SUBDIR += py-Record SUBDIR += py-SymbolType Added: head/devel/py-PyLD/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-PyLD/Makefile Mon Jan 4 13:51:02 2016 (r405240) @@ -0,0 +1,19 @@ +# Created by: Mikhail Teterin +# $FreeBSD$ + +PORTNAME= PyLD +PORTVERSION= 0.6.8 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= mi@aldan.algebra.com +COMMENT= Implementation of the JSON Linked Data specification in Python + +LICENSE= BSD3CLAUSE + +USES= python +USE_PYTHON= autoplist distutils concurrent +NO_ARCH= yes + +.include Added: head/devel/py-PyLD/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-PyLD/distinfo Mon Jan 4 13:51:02 2016 (r405240) @@ -0,0 +1,2 @@ +SHA256 (PyLD-0.6.8.tar.gz) = 4d61bf70b0bb86305c159165c8d3b797ff3bd6224f18847ec0c8ddaf9c0b084d +SIZE (PyLD-0.6.8.tar.gz) = 42713 Added: head/devel/py-PyLD/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-PyLD/pkg-descr Mon Jan 4 13:51:02 2016 (r405240) @@ -0,0 +1,23 @@ +This library is an implementation of the JSON-LD specification in Python. + +JSON-LD is designed as a light-weight syntax that can be used to +express Linked Data. It is primarily intended to be a way to express +Linked Data in JavaScript and other Web-based programming environments. +It is also useful when building interoperable Web Services and when +storing Linked Data in JSON-based document storage engines. It is +practical and designed to be as simple as possible, utilizing the +large number of JSON parsers and existing code that is in use today. +It is designed to be able to express key-value pairs, RDF data, +RDFa data, Microformats data, and Microdata. That is, it supports +every major Web-based structured data model in use today. + +The syntax does not require many applications to change their JSON, +but easily add meaning by adding context in a way that is either +in-band or out-of-band. The syntax is designed to not disturb already +deployed systems running on JSON, but provide a smooth migration +path from JSON to JSON with added semantics. Finally, the format +is intended to be fast to parse, fast to generate, stream-based and +document-based processing compatible, and require a very small +memory footprint in order to operate. + +WWW: http://github.com/digitalbazaar/pyld