Update to 2.13.15
- Add LICENSE_FILE Changes: https://github.com/arskom/spyne/blob/master/CHANGELOG.rst
This commit is contained in:
parent
d110e31017
commit
fbfdba2179
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=555348
4 changed files with 5 additions and 32 deletions
|
@ -2,8 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= spyne
|
||||
PORTVERSION= 2.12.16
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 2.13.15
|
||||
CATEGORIES= www devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
@ -12,6 +11,7 @@ MAINTAINER= sunpoet@FreeBSD.org
|
|||
COMMENT= Transport and architecture agnostic RPC library
|
||||
|
||||
LICENSE= LGPL21
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz@${PY_FLAVOR}
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1547904086
|
||||
SHA256 (spyne-2.12.16.tar.gz) = 4793b1b22cc90b4896f14560f5bd587fe9ba2a04479f24d055ad5a43c09dc97b
|
||||
SIZE (spyne-2.12.16.tar.gz) = 439039
|
||||
TIMESTAMP = 1605426497
|
||||
SHA256 (spyne-2.13.15.tar.gz) = 379f569fa1a756307cd39dd72f31a6d6093b6ca23d174be5cc17d4f3db98793f
|
||||
SIZE (spyne-2.13.15.tar.gz) = 511313
|
||||
|
|
|
@ -1,26 +0,0 @@
|
|||
--- spyne/test/transport/test_msgpack.py.orig 2016-10-28 11:15:20 UTC
|
||||
+++ spyne/test/transport/test_msgpack.py
|
||||
@@ -54,9 +54,9 @@ class TestMessagePackServer(unittest.Tes
|
||||
request = msgpack.packb({'yay': [v]})
|
||||
prot.dataReceived(msgpack.packb([1, request]))
|
||||
val = prot.transport.value()
|
||||
- print repr(val)
|
||||
+ print(repr(val))
|
||||
val = msgpack.unpackb(val)
|
||||
- print repr(val)
|
||||
+ print(repr(val))
|
||||
|
||||
self.assertEquals(val, [0, msgpack.packb(v)])
|
||||
|
||||
@@ -82,9 +82,9 @@ class TestMessagePackServer(unittest.Tes
|
||||
request = msgpack.packb({'yay': [v]})
|
||||
def _ccb(_):
|
||||
val = prot.transport.value()
|
||||
- print repr(val)
|
||||
+ print(repr(val))
|
||||
val = msgpack.unpackb(val)
|
||||
- print repr(val)
|
||||
+ print(repr(val))
|
||||
|
||||
self.assertEquals(val, [0, msgpack.packb(v)])
|
||||
|
|
@ -4,5 +4,4 @@ have a well-defined API using multiple protocols and transports.
|
|||
It integrates with popular Python web frameworks as well as libraries like
|
||||
SQLAlchemy to keep your code as DRY (Don't Repeat Yourself) as possible.
|
||||
|
||||
WWW: https://pypi.org/project/spyne/
|
||||
WWW: http://spyne.io/
|
||||
|
|
Loading…
Reference in a new issue