summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authorleot <leot@pkgsrc.org>2019-02-26 18:31:46 +0000
committerleot <leot@pkgsrc.org>2019-02-26 18:31:46 +0000
commit1d1eb2a46642e8007ee6aa2f8600674398f63a21 (patch)
treefd437b8c4d574285b2d2d1f2febdf9caa6ae4624 /chat
parent20aa883f467a38c50c6ce009acf510f83ee844dd (diff)
downloadpkgsrc-1d1eb2a46642e8007ee6aa2f8600674398f63a21.tar.gz
py-hangups: Update to 0.4.9
Changes: 0.4.9 ----- - fix loading events by event id with Conversation.get_events 0.4.8 ----- - set device name to "hangups" when authenticating - fix snap package build 0.4.7 ----- - add manual login option - publish tests in package - add participant watermarks to conversation objects and UI - improve hyperlink detection - fix issue with loading conversion history - bump aiohttp requirement to >=3.3
Diffstat (limited to 'chat')
-rw-r--r--chat/py-hangups/Makefile6
-rw-r--r--chat/py-hangups/distinfo12
-rw-r--r--chat/py-hangups/patches/patch-setup.py8
3 files changed, 13 insertions, 13 deletions
diff --git a/chat/py-hangups/Makefile b/chat/py-hangups/Makefile
index 78db4a68263..9949694e50b 100644
--- a/chat/py-hangups/Makefile
+++ b/chat/py-hangups/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2018/10/15 08:55:49 leot Exp $
+# $NetBSD: Makefile,v 1.6 2019/02/26 18:31:46 leot Exp $
-DISTNAME= hangups-0.4.6
+DISTNAME= hangups-0.4.9
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= chat python
MASTER_SITES= ${MASTER_SITE_PYPI:=h/hangups/}
@@ -11,7 +11,7 @@ COMMENT= Third-party instant messaging client for Google Hangouts
LICENSE= mit
DEPENDS+= ${PYPKGPREFIX}-MechanicalSoup>=0.6.0:../../www/py-MechanicalSoup
-DEPENDS+= ${PYPKGPREFIX}-aiohttp>=1.3:../../www/py-aiohttp
+DEPENDS+= ${PYPKGPREFIX}-aiohttp>=3.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
diff --git a/chat/py-hangups/distinfo b/chat/py-hangups/distinfo
index 84e27ceb0b8..9ff69cd7b95 100644
--- a/chat/py-hangups/distinfo
+++ b/chat/py-hangups/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.4 2018/10/15 08:55:49 leot Exp $
+$NetBSD: distinfo,v 1.5 2019/02/26 18:31:46 leot Exp $
-SHA1 (hangups-0.4.6.tar.gz) = 4d74c09b4ddb0f1e12da65078a17bd2646f56c7c
-RMD160 (hangups-0.4.6.tar.gz) = fc740390c3b4a5ed9796b1df29e47469adecf7fa
-SHA512 (hangups-0.4.6.tar.gz) = 643f9a5073a06a4dc85c582e9dac7503d4da74a6b87f09357623ad298c8b097071cb59f89ed32d54e1235c14605d36768b5abbd069d879b19b405c281d033bc8
-Size (hangups-0.4.6.tar.gz) = 85954 bytes
-SHA1 (patch-setup.py) = 20f9615b715bdd481723ed01137159f9aa1a17ef
+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
diff --git a/chat/py-hangups/patches/patch-setup.py b/chat/py-hangups/patches/patch-setup.py
index 6bdd4d4b204..64bbd2e21bf 100644
--- a/chat/py-hangups/patches/patch-setup.py
+++ b/chat/py-hangups/patches/patch-setup.py
@@ -1,15 +1,15 @@
-$NetBSD: patch-setup.py,v 1.3 2018/10/15 08:55:49 leot Exp $
+$NetBSD: patch-setup.py,v 1.4 2019/02/26 18:31:47 leot Exp $
Avoid too strict version requirements.
---- setup.py.orig 2018-10-14 20:15:25.000000000 +0000
+--- setup.py.orig 2019-01-30 04:55:18.000000000 +0000
+++ setup.py
@@ -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,<4',
+- 'aiohttp>=3.3,<4',
- 'async-timeout>=2,<4',
- 'appdirs>=1.4,<1.5',
- 'readlike==0.1.2',
@@ -19,7 +19,7 @@ Avoid too strict version requirements.
- 'urwid==1.3.1',
- 'MechanicalSoup==0.6.0',
+ 'ConfigArgParse>=0.11.0',
-+ 'aiohttp>=1.3',
++ 'aiohttp>=3.3',
+ 'async-timeout>=2',
+ 'appdirs>=1.4',
+ 'readlike>=0.1.2',