summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authorleot <leot@pkgsrc.org>2018-07-16 17:43:24 +0000
committerleot <leot@pkgsrc.org>2018-07-16 17:43:24 +0000
commit4f205cd23a518eeaeb360d5e122b16b1864a13ea (patch)
treecc3191f8fe700bf4516af3f86966646cd9dec25b /chat
parent9b0e22a58e5ed3f6fcba1f6eff43b91e45a00315 (diff)
downloadpkgsrc-4f205cd23a518eeaeb360d5e122b16b1864a13ea.tar.gz
py-hangups: Update chat/py-hangups to 0.4.5
Changes: 0.4.5 ----- * raise minimum Python version to 3.5.3 * add support for Python 3.7 * improve markup parsing * fix crash on event for unloaded conversion * add compatibility with aiohttp 3
Diffstat (limited to 'chat')
-rw-r--r--chat/py-hangups/Makefile5
-rw-r--r--chat/py-hangups/distinfo12
-rw-r--r--chat/py-hangups/patches/patch-setup.py18
3 files changed, 15 insertions, 20 deletions
diff --git a/chat/py-hangups/Makefile b/chat/py-hangups/Makefile
index bda36c3b49f..24f7e932a2d 100644
--- a/chat/py-hangups/Makefile
+++ b/chat/py-hangups/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2018/02/15 07:45:42 adam Exp $
+# $NetBSD: Makefile,v 1.4 2018/07/16 17:43:24 leot Exp $
-DISTNAME= hangups-0.4.4
+DISTNAME= hangups-0.4.5
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= chat python
MASTER_SITES= ${MASTER_SITE_PYPI:=h/hangups/}
@@ -13,6 +13,7 @@ LICENSE= mit
DEPENDS+= ${PYPKGPREFIX}-MechanicalSoup>=0.6.0:../../www/py-MechanicalSoup
DEPENDS+= ${PYPKGPREFIX}-aiohttp>=1.3:../../www/py-aiohttp
DEPENDS+= ${PYPKGPREFIX}-appdirs>=1.4.0:../../devel/py-appdirs
+DEPENDS+= ${PYPKGPREFIX}-async-timeout>=2:../../devel/py-async-timeout
DEPENDS+= ${PYPKGPREFIX}-configargparse>=0.11.0:../../devel/py-configargparse
DEPENDS+= ${PYPKGPREFIX}-protobuf>=3.1.0:../../devel/py-protobuf
DEPENDS+= ${PYPKGPREFIX}-readlike>=0.1.2:../../devel/py-readlike
diff --git a/chat/py-hangups/distinfo b/chat/py-hangups/distinfo
index d52b45d7d72..e0163766182 100644
--- a/chat/py-hangups/distinfo
+++ b/chat/py-hangups/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.2 2018/01/14 16:00:35 leot Exp $
+$NetBSD: distinfo,v 1.3 2018/07/16 17:43:24 leot Exp $
-SHA1 (hangups-0.4.4.tar.gz) = 36f7ac2da43f19be46826bfa84d8fcc2c3570d19
-RMD160 (hangups-0.4.4.tar.gz) = e929fe7b22c9e2f3094a23556ab91c723f6cee06
-SHA512 (hangups-0.4.4.tar.gz) = d89050e9c7374785be07e88013b98c893cd091ccf93f72c0da787f6390378bccf88058622f683a8a73ae611bc828119c6267cf947963ed8f0277165879823f69
-Size (hangups-0.4.4.tar.gz) = 84881 bytes
-SHA1 (patch-setup.py) = b553978ca42696d620ef674b2bac2c81b44cb4e6
+SHA1 (hangups-0.4.5.tar.gz) = 0aade831325946d8dbb70469a8e0da6426a24364
+RMD160 (hangups-0.4.5.tar.gz) = 3f40fc3e322a6b4599470a9a9c9b0b888c9d6d9b
+SHA512 (hangups-0.4.5.tar.gz) = e074f6b4243268b56e840f094083a3ed79c91509f28d372b21f19b28052b14e3ab0858fed17d36996752ae09c23903fdd029e7fad80024313a9e223e3f13a06f
+Size (hangups-0.4.5.tar.gz) = 85809 bytes
+SHA1 (patch-setup.py) = edbd86241944254612e64c08b1407e6818c0063f
diff --git a/chat/py-hangups/patches/patch-setup.py b/chat/py-hangups/patches/patch-setup.py
index 1dabf8003dd..3c8f8e8a12c 100644
--- a/chat/py-hangups/patches/patch-setup.py
+++ b/chat/py-hangups/patches/patch-setup.py
@@ -1,15 +1,16 @@
-$NetBSD: patch-setup.py,v 1.1 2017/09/04 13:58:24 leot Exp $
+$NetBSD: patch-setup.py,v 1.2 2018/07/16 17:43:25 leot Exp $
Avoid too strict version requirements.
---- setup.py.orig 2017-07-30 23:31:42.000000000 +0000
+--- setup.py.orig 2018-07-15 22:09:11.000000000 +0000
+++ setup.py
-@@ -23,22 +23,22 @@ with open('README.rst') as f:
+@@ -25,16 +25,16 @@ 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.3,<3',
+- 'aiohttp>=1.3,<4',
+- 'async-timeout>=2,<4',
- 'appdirs>=1.4,<1.5',
- 'readlike==0.1.2',
- 'requests>=2.6.0,<3', # uses semantic versioning (after 2.6)
@@ -19,6 +20,7 @@ Avoid too strict version requirements.
- 'MechanicalSoup==0.6.0',
+ 'ConfigArgParse>=0.11.0',
+ 'aiohttp>=1.3',
++ 'async-timeout>=2',
+ 'appdirs>=1.4',
+ 'readlike>=0.1.2',
+ 'requests>=2.6.0', # uses semantic versioning (after 2.6)
@@ -29,11 +31,3 @@ 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(