From owner-svn-ports-all@freebsd.org Thu Dec 24 19:32:08 2015 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 040A3A51D71; Thu, 24 Dec 2015 19:32:08 +0000 (UTC) (envelope-from miwi@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 B0BCF1D94; Thu, 24 Dec 2015 19:32:07 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBOJW6Qt077708; Thu, 24 Dec 2015 19:32:06 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBOJW6U4077704; Thu, 24 Dec 2015 19:32:06 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201512241932.tBOJW6U4077704@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Thu, 24 Dec 2015 19:32:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404387 - in head/net: . py-txrestapi X-SVN-Group: ports-head 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.20 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: Thu, 24 Dec 2015 19:32:08 -0000 Author: miwi Date: Thu Dec 24 19:32:06 2015 New Revision: 404387 URL: https://svnweb.freebsd.org/changeset/ports/404387 Log: txrestapi makes it easier to create Twisted REST API services. Normally, one would create Resource subclasses defining each segment of a path; this is cubersome to implement and results in output that isn't very readable. txrestapi provides an APIResource class allowing complex mapping of path to callback (a la Django) with a readable decorator. WWW: https://pypi.python.org/pypi/txrestapi/ PR: 205064 Submitted by: Yuri Victorovich Added: head/net/py-txrestapi/ head/net/py-txrestapi/Makefile (contents, props changed) head/net/py-txrestapi/distinfo (contents, props changed) head/net/py-txrestapi/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Dec 24 19:28:04 2015 (r404386) +++ head/net/Makefile Thu Dec 24 19:32:06 2015 (r404387) @@ -996,6 +996,7 @@ SUBDIR += py-twitter SUBDIR += py-twitter-tools SUBDIR += py-txamqp + SUBDIR += py-txrestapi SUBDIR += py-uritemplate SUBDIR += py-urllib3 SUBDIR += py-wolframalpha Added: head/net/py-txrestapi/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-txrestapi/Makefile Thu Dec 24 19:32:06 2015 (r404387) @@ -0,0 +1,19 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= txrestapi +PORTVERSION= 0.2 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Easing the creation of REST API services in Python + +LICENSE= MIT + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/net/py-txrestapi/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-txrestapi/distinfo Thu Dec 24 19:32:06 2015 (r404387) @@ -0,0 +1,2 @@ +SHA256 (txrestapi-0.2.tar.gz) = 3e432b88bc3788255a4d873e72c1ef6e9d0883306e95cd36c79542e792a08e31 +SIZE (txrestapi-0.2.tar.gz) = 5233 Added: head/net/py-txrestapi/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-txrestapi/pkg-descr Thu Dec 24 19:32:06 2015 (r404387) @@ -0,0 +1,8 @@ +txrestapi makes it easier to create Twisted REST API services. Normally, +one would create Resource subclasses defining each segment of a path; +this is cubersome to implement and results in output that isn't very +readable. txrestapi provides an APIResource class allowing complex +mapping of path to callback (a la Django) with a readable decorator. + + +WWW: https://pypi.python.org/pypi/txrestapi/