From owner-svn-ports-head@freebsd.org Tue Nov 7 19:08:24 2017 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 732DAE6262B; Tue, 7 Nov 2017 19:08:24 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [96.47.72.37]) (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 364491938; Tue, 7 Nov 2017 19:08:24 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vA7J78DO027492; Tue, 7 Nov 2017 19:07:08 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vA7J78h3027488; Tue, 7 Nov 2017 19:07:08 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201711071907.vA7J78h3027488@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Tue, 7 Nov 2017 19:07:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453671 - in head/devel: . py-jsonrpclib-pelix X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: in head/devel: . py-jsonrpclib-pelix X-SVN-Commit-Revision: 453671 X-SVN-Commit-Repository: ports 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.23 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: Tue, 07 Nov 2017 19:08:24 -0000 Author: ehaupt Date: Tue Nov 7 19:07:07 2017 New Revision: 453671 URL: https://svnweb.freebsd.org/changeset/ports/453671 Log: This project is an implementation of the JSON-RPC v2.0 specification (backwards-compatible) as a client library. This version is a fork of jsonrpclib by Josh Marshall, usable with Pelix remote services. WWW: https://pypi.python.org/pypi/jsonrpclib-pelix/ Added: head/devel/py-jsonrpclib-pelix/ head/devel/py-jsonrpclib-pelix/Makefile (contents, props changed) head/devel/py-jsonrpclib-pelix/distinfo (contents, props changed) head/devel/py-jsonrpclib-pelix/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Nov 7 18:42:10 2017 (r453670) +++ head/devel/Makefile Tue Nov 7 19:07:07 2017 (r453671) @@ -4507,6 +4507,7 @@ SUBDIR += py-jsonpointer SUBDIR += py-jsonref SUBDIR += py-jsonrpclib + SUBDIR += py-jsonrpclib-pelix SUBDIR += py-jsonschema SUBDIR += py-jupyter_client SUBDIR += py-jupyter_console Added: head/devel/py-jsonrpclib-pelix/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jsonrpclib-pelix/Makefile Tue Nov 7 19:07:07 2017 (r453671) @@ -0,0 +1,18 @@ +# Created by: Emanuel Haupt +# $FreeBSD$ + +PORTNAME= jsonrpclib-pelix +PORTVERSION= 0.3.1 +CATEGORIES= devel +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ehaupt@FreeBSD.org +COMMENT= JSON-RPC over HTTP that mirrors xmlrpclib syntax + +LICENSE= APACHE20 + +USES= python:3 +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-jsonrpclib-pelix/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jsonrpclib-pelix/distinfo Tue Nov 7 19:07:07 2017 (r453671) @@ -0,0 +1,3 @@ +TIMESTAMP = 1510069220 +SHA256 (jsonrpclib-pelix-0.3.1.tar.gz) = 5417b1508d5a50ec64f6e5b88907f111155d52607b218ff3ba9a777afb2e49e3 +SIZE (jsonrpclib-pelix-0.3.1.tar.gz) = 29997 Added: head/devel/py-jsonrpclib-pelix/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jsonrpclib-pelix/pkg-descr Tue Nov 7 19:07:07 2017 (r453671) @@ -0,0 +1,5 @@ +This project is an implementation of the JSON-RPC v2.0 specification +(backwards-compatible) as a client library. This version is a fork of jsonrpclib +by Josh Marshall, usable with Pelix remote services. + +WWW: https://pypi.python.org/pypi/jsonrpclib-pelix/