From owner-svn-ports-all@freebsd.org Sat Oct 29 12:05:17 2016 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 495D6C26472; Sat, 29 Oct 2016 12:05:17 +0000 (UTC) (envelope-from novel@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 07A19153; Sat, 29 Oct 2016 12:05:16 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9TC5GGi074601; Sat, 29 Oct 2016 12:05:16 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9TC5F4b074597; Sat, 29 Oct 2016 12:05:15 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201610291205.u9TC5F4b074597@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Sat, 29 Oct 2016 12:05:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424905 - in head/devel: . py-wsme 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.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: Sat, 29 Oct 2016 12:05:17 -0000 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 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 +# $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 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