Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Sep 2020 19:45:48 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r548552 - head/devel/py-wsme
Message-ID:  <202009131945.08DJjmSg089530@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sun Sep 13 19:45:48 2020
New Revision: 548552
URL: https://svnweb.freebsd.org/changeset/ports/548552

Log:
  Update to 0.10.0
  
  - Add LICENSE
  - Update version requirement of BUILD_DEPENDS
  - Update pkg-descr
  - Take maintainership
  
  Changes:	https://opendev.org/x/wsme/commits/branch/master

Modified:
  head/devel/py-wsme/Makefile
  head/devel/py-wsme/distinfo
  head/devel/py-wsme/pkg-descr   (contents, props changed)

Modified: head/devel/py-wsme/Makefile
==============================================================================
--- head/devel/py-wsme/Makefile	Sun Sep 13 19:45:43 2020	(r548551)
+++ head/devel/py-wsme/Makefile	Sun Sep 13 19:45:48 2020	(r548552)
@@ -2,24 +2,27 @@
 # $FreeBSD$
 
 PORTNAME=	wsme
-PORTVERSION=	0.9.3
+PORTVERSION=	0.10.0
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 DISTNAME=	WSME-${PORTVERSION}
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	sunpoet@FreeBSD.org
 COMMENT=	Simplify the writing of REST APIs
 
-BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pbr>=1.6:devel/py-pbr@${PY_FLAVOR}
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pbr>=0:devel/py-pbr@${PY_FLAVOR}
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}netaddr>=0.7.12:net/py-netaddr@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}simplegeneric>=0:devel/py-simplegeneric@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}webob>=1.2.3:www/py-webob@${PY_FLAVOR}
+		${PYTHON_PKGNAMEPREFIX}webob>=1.8.0:www/py-webob@${PY_FLAVOR}
 
 USES=		python
-USE_PYTHON=	autoplist distutils
+USE_PYTHON=	autoplist concurrent distutils
 
 NO_ARCH=	yes
 

Modified: head/devel/py-wsme/distinfo
==============================================================================
--- head/devel/py-wsme/distinfo	Sun Sep 13 19:45:43 2020	(r548551)
+++ head/devel/py-wsme/distinfo	Sun Sep 13 19:45:48 2020	(r548552)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1560101212
-SHA256 (WSME-0.9.3.tar.gz) = e24fcff24392a0b176e560ffc6591b1f658342bbc992f84e0e8a3c53fd92580a
-SIZE (WSME-0.9.3.tar.gz) = 124775
+TIMESTAMP = 1599946191
+SHA256 (WSME-0.10.0.tar.gz) = 965b9ce48161e5c50d84aedcf50dca698f05bf07e9d489201bccaec3141cd304
+SIZE (WSME-0.10.0.tar.gz) = 89701

Modified: head/devel/py-wsme/pkg-descr
==============================================================================
--- head/devel/py-wsme/pkg-descr	Sun Sep 13 19:45:43 2020	(r548551)
+++ head/devel/py-wsme/pkg-descr	Sun Sep 13 19:45:48 2020	(r548552)
@@ -1,8 +1,14 @@
 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.
+the request and the response objects.
 
-WWW: https://pypi.org/project/WSME/
+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 like:
+- Alternate protocols, including those supporting batch-calls
+- Easy documentation through a Sphinx extension
+
+WSME is originally a rewrite of TGWebServices with a focus on extensibility,
+framework-independence and better type handling.
+
+WWW: https://opendev.org/x/wsme



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009131945.08DJjmSg089530>