diff options
author | leot <leot@pkgsrc.org> | 2019-11-17 21:41:13 +0000 |
---|---|---|
committer | leot <leot@pkgsrc.org> | 2019-11-17 21:41:13 +0000 |
commit | bb8ecbbd84f63d7364501c406ca43fd9782c6828 (patch) | |
tree | b82ea4dd68e3dd690841291b76ee413b6471bf3d /chat | |
parent | f2bcbf5b340867a585a932640d88ab45ad807216 (diff) | |
download | pkgsrc-bb8ecbbd84f63d7364501c406ca43fd9782c6828.tar.gz |
py-hangups: Update to 0.4.10
Changes:
0.4.10
------
- fix "Response payload is not completed" errors
- bump maximum supported protobuf version
- fix Conversation.get_events returning events newer than the provided
event ID rather than older
- extend default user detection
Diffstat (limited to 'chat')
-rw-r--r-- | chat/py-hangups/Makefile | 4 | ||||
-rw-r--r-- | chat/py-hangups/distinfo | 12 | ||||
-rw-r--r-- | chat/py-hangups/patches/patch-setup.py | 6 |
3 files changed, 11 insertions, 11 deletions
diff --git a/chat/py-hangups/Makefile b/chat/py-hangups/Makefile index a5ea0a81ea2..b001e993d19 100644 --- a/chat/py-hangups/Makefile +++ b/chat/py-hangups/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.7 2019/04/26 13:13:44 maya Exp $ +# $NetBSD: Makefile,v 1.8 2019/11/17 21:41:13 leot Exp $ -DISTNAME= hangups-0.4.9 +DISTNAME= hangups-0.4.10 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= chat python MASTER_SITES= ${MASTER_SITE_PYPI:=h/hangups/} diff --git a/chat/py-hangups/distinfo b/chat/py-hangups/distinfo index 9ff69cd7b95..396bf7bc4fe 100644 --- a/chat/py-hangups/distinfo +++ b/chat/py-hangups/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.5 2019/02/26 18:31:46 leot Exp $ +$NetBSD: distinfo,v 1.6 2019/11/17 21:41:13 leot Exp $ -SHA1 (hangups-0.4.9.tar.gz) = 2d0585ccd68acb0efb6adf8d20d6c74670b2d363 -RMD160 (hangups-0.4.9.tar.gz) = 3e1f8d97e1bd1af5db60954373dbfd1bc72a4c5d -SHA512 (hangups-0.4.9.tar.gz) = 6a72b77e412cab79b6821f31b50cce6f5546d7e2a4bce66988207b148d09081b8b5d3fed8684d95722ddc2788fd5e24c0cf362a9ff7bf3f30dbc4066fe2f3624 -Size (hangups-0.4.9.tar.gz) = 94847 bytes -SHA1 (patch-setup.py) = 794cec27671208d5db71f580bbcad4b93ea8c5b0 +SHA1 (hangups-0.4.10.tar.gz) = 9f2f1614a883aa06fc7264546702cc7b5c568902 +RMD160 (hangups-0.4.10.tar.gz) = c263e24baa29aee43c9541576977f2bfe02fb01a +SHA512 (hangups-0.4.10.tar.gz) = 0fc9470e16130d5247673a8d434f64da73320f1b69a6f5d93f93c3031f76c5f9b8bbc71d7171b1660273b3b153e435a9ab13962354facb404d40fd8f85741d2a +Size (hangups-0.4.10.tar.gz) = 95401 bytes +SHA1 (patch-setup.py) = b2d64d587949f20fd91d813efb713e948e714de0 diff --git a/chat/py-hangups/patches/patch-setup.py b/chat/py-hangups/patches/patch-setup.py index 64bbd2e21bf..ae2d4d5a855 100644 --- a/chat/py-hangups/patches/patch-setup.py +++ b/chat/py-hangups/patches/patch-setup.py @@ -1,8 +1,8 @@ -$NetBSD: patch-setup.py,v 1.4 2019/02/26 18:31:47 leot Exp $ +$NetBSD: patch-setup.py,v 1.5 2019/11/17 21:41:13 leot Exp $ Avoid too strict version requirements. ---- setup.py.orig 2019-01-30 04:55:18.000000000 +0000 +--- setup.py.orig 2019-11-02 18:14:07.000000000 +0000 +++ setup.py @@ -25,16 +25,16 @@ with open('README.rst') as f: # hangups from breaking when new versions of dependencies are released, @@ -15,7 +15,7 @@ Avoid too strict version requirements. - 'readlike==0.1.2', - 'requests>=2.6.0,<3', # uses semantic versioning (after 2.6) - 'ReParser==1.4.3', -- 'protobuf>=3.1.0,<=3.6.1', +- 'protobuf>=3.1.0,<=3.10.0', - 'urwid==1.3.1', - 'MechanicalSoup==0.6.0', + 'ConfigArgParse>=0.11.0', |