Date: Sat, 29 Oct 2016 12:05:15 +0000 (UTC) From: Roman Bogorodskiy <novel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424905 - in head/devel: . py-wsme Message-ID: <201610291205.u9TC5F4b074597@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: novel Date: Sat Oct 29 12:05:15 2016 New Revision: 424905 URL: https://svnweb.freebsd.org/changeset/ports/424905 Log: Add py-wsme 0.8.0, simplify the writing of REST APIs. PR: 213769 Submitted by: Alexander Nusov <alexander.nusov@nfvexpress.com> Added: head/devel/py-wsme/ head/devel/py-wsme/Makefile (contents, props changed) head/devel/py-wsme/distinfo (contents, props changed) head/devel/py-wsme/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Oct 29 12:04:36 2016 (r424904) +++ head/devel/Makefile Sat Oct 29 12:05:15 2016 (r424905) @@ -4629,6 +4629,7 @@ SUBDIR += py-wsgi_xmlrpc SUBDIR += py-wsgitools SUBDIR += py-wsgiutils + SUBDIR += py-wsme SUBDIR += py-xattr SUBDIR += py-xcaplib SUBDIR += py-xdg Added: head/devel/py-wsme/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-wsme/Makefile Sat Oct 29 12:05:15 2016 (r424905) @@ -0,0 +1,26 @@ +# Created by: Alexander Nusov <alexander.nusov@nfvexpress.com> +# $FreeBSD$ + +PORTNAME= wsme +PORTVERSION= 0.8.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= WSME-${PORTVERSION} + +MAINTAINER= alexander.nusov@nfvexpress.com +COMMENT= Simplify the writing of REST APIs + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.6:devel/py-pbr +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}webob>=1.2.3:www/py-webob \ + ${PYTHON_PKGNAMEPREFIX}simplegeneric>=0:devel/py-simplegeneric \ + ${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz \ + ${PYTHON_PKGNAMEPREFIX}netaddr>=0.7.12:net/py-netaddr + +NO_ARCH= yes + +USES= python +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/devel/py-wsme/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-wsme/distinfo Sat Oct 29 12:05:15 2016 (r424905) @@ -0,0 +1,3 @@ +TIMESTAMP = 1476655326 +SHA256 (WSME-0.8.0.tar.gz) = 00241e4e4e40d6183f6354a8f5659b601753d49e28b6e5aca332bdf2e31188db +SIZE (WSME-0.8.0.tar.gz) = 121619 Added: head/devel/py-wsme/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-wsme/pkg-descr Sat Oct 29 12:05:15 2016 (r424905) @@ -0,0 +1,8 @@ +Web Services Made Easy (WSME) simplifies the writing of REST web services by +providing simple yet powerful typing, removing the need to directly manipulate +the request and the response objects. WSME can work standalone or on top of +your favorite Python web (micro)framework, so you can use both your preferred +way of routing your REST requests and most of the features of WSME that rely +on the typing system. + +WWW: https://pypi.python.org/pypi/WSME
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610291205.u9TC5F4b074597>