pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

py-hangups: Update wip/py-hangups to 0.4.3



Module Name:	pkgsrc-wip
Committed By:	Leonardo Taccari <leot%NetBSD.org@localhost>
Pushed By:	leot
Date:		Wed Aug 2 12:37:29 2017 +0200
Changeset:	b64152dbe3456a0c472f7b18839563acd0eee027

Modified Files:
	py-hangups/Makefile
	py-hangups/distinfo
	py-hangups/patches/patch-setup.py

Log Message:
py-hangups: Update wip/py-hangups to 0.4.3

Changes:
0.4.3
-----
 * fix presence notifications
 * add max_retries and retry_backoff_base params to Client constructor
 * add return_uploaded_image parameter to Client.upload_image
 * upgrade aiohttp requirement
 * improve handling of missing/unknown conversations
 * add protos for sending map locations
 * fix timeout for long polling request
 * improve connection resource handling

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=b64152dbe3456a0c472f7b18839563acd0eee027

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 py-hangups/Makefile               |  2 +-
 py-hangups/distinfo               | 10 +++++-----
 py-hangups/patches/patch-setup.py | 20 ++++++++++++++------
 3 files changed, 20 insertions(+), 12 deletions(-)

diffs:
diff --git a/py-hangups/Makefile b/py-hangups/Makefile
index c64a86f180..72f2e1e780 100644
--- a/py-hangups/Makefile
+++ b/py-hangups/Makefile
@@ -1,6 +1,6 @@
 # $NetBSD: Makefile,v 1.1 2017/04/14 12:10:26 leot Exp $
 
-DISTNAME=	hangups-0.4.2
+DISTNAME=	hangups-0.4.3
 PKGNAME=	${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=	chat python
 MASTER_SITES=	${MASTER_SITE_PYPI:=h/hangups/}
diff --git a/py-hangups/distinfo b/py-hangups/distinfo
index 21dc2c1e5f..6fdac4d109 100644
--- a/py-hangups/distinfo
+++ b/py-hangups/distinfo
@@ -1,7 +1,7 @@
 $NetBSD$
 
-SHA1 (hangups-0.4.2.tar.gz) = ab6ca381f075c6cb412d975110d13afd9ced8a04
-RMD160 (hangups-0.4.2.tar.gz) = fdf70d04cdfb62ccd07360c933b120ab3ea4b756
-SHA512 (hangups-0.4.2.tar.gz) = c07eaf4ab7ff5c4c78424b9f2bb97b53f42ab4634e66c3c019136008f8db2b749bd2de963029b65d3a30245efc17e4c241f53e5997ba3349e184b96b8765a48c
-Size (hangups-0.4.2.tar.gz) = 81653 bytes
-SHA1 (patch-setup.py) = c554e4a9239defca5c4b30a8e21c7a80ec9e187c
+SHA1 (hangups-0.4.3.tar.gz) = 9d8b94893a684158602e2f1b61f824cd41ae5e6f
+RMD160 (hangups-0.4.3.tar.gz) = c75b0dd872d58653f14cac2187546a8f9159042c
+SHA512 (hangups-0.4.3.tar.gz) = 5fe9c3bb36eeee3bd0cc6b1e27c9ab2185974c45e5fc40b4e7b0aaecd014588830716622687139ec21e24466cf709b3598f8a1954e768d02466dc70e8e48eb79
+Size (hangups-0.4.3.tar.gz) = 83330 bytes
+SHA1 (patch-setup.py) = b553978ca42696d620ef674b2bac2c81b44cb4e6
diff --git a/py-hangups/patches/patch-setup.py b/py-hangups/patches/patch-setup.py
index 5133d53f2c..c9db6f8459 100644
--- a/py-hangups/patches/patch-setup.py
+++ b/py-hangups/patches/patch-setup.py
@@ -2,15 +2,15 @@ $NetBSD$
 
 Avoid too strict version requirements.
 
---- setup.py.orig	2016-12-28 23:16:09.000000000 +0000
+--- setup.py.orig	2017-07-30 23:31:42.000000000 +0000
 +++ setup.py
-@@ -65,15 +65,15 @@ with open('README.rst') as f:
+@@ -23,22 +23,22 @@ with open('README.rst') as f:
  # hangups from breaking when new versions of dependencies are released,
  # especially for end-users (non-developers) who use pip to install hangups.
  install_requires = [
 -    'ConfigArgParse==0.11.0',
--    'aiohttp>=1.2,<1.3',
--    'appdirs==1.4.0',
+-    'aiohttp>=1.3,<3',
+-    'appdirs>=1.4,<1.5',
 -    'readlike==0.1.2',
 -    'requests>=2.6.0,<3',  # uses semantic versioning (after 2.6)
 -    'ReParser==1.4.3',
@@ -18,8 +18,8 @@ Avoid too strict version requirements.
 -    'urwid==1.3.1',
 -    'MechanicalSoup==0.6.0',
 +    'ConfigArgParse>=0.11.0',
-+    'aiohttp>=1.2',
-+    'appdirs>=1.4.0',
++    'aiohttp>=1.3',
++    'appdirs>=1.4',
 +    'readlike>=0.1.2',
 +    'requests>=2.6.0',  # uses semantic versioning (after 2.6)
 +    'ReParser>=1.4.3',
@@ -29,3 +29,11 @@ Avoid too strict version requirements.
  ]
  
  
+ if sys.version_info < (3, 4, 3):
+     # For Python earlier than 3.4.3, use a backported asyncio that fixes an
+     # issue with an exception being logged on exit.
+-    install_requires.append('asyncio==3.4.3')
++    install_requires.append('asyncio>=3.4.3')
+ 
+ 
+ setup(


Home | Main Index | Thread Index | Old Index