pkgsrc-Changes archive

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

CVS commit: pkgsrc/chat/py-hangups



Module Name:    pkgsrc
Committed By:   leot
Date:           Tue Feb 26 18:31:47 UTC 2019

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

Log Message:
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


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/chat/py-hangups/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/chat/py-hangups/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/chat/py-hangups/patches/patch-setup.py

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

Modified files:

Index: pkgsrc/chat/py-hangups/Makefile
diff -u pkgsrc/chat/py-hangups/Makefile:1.5 pkgsrc/chat/py-hangups/Makefile:1.6
--- pkgsrc/chat/py-hangups/Makefile:1.5 Mon Oct 15 08:55:49 2018
+++ pkgsrc/chat/py-hangups/Makefile     Tue Feb 26 18:31:46 2019
@@ -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 c
 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

Index: pkgsrc/chat/py-hangups/distinfo
diff -u pkgsrc/chat/py-hangups/distinfo:1.4 pkgsrc/chat/py-hangups/distinfo:1.5
--- pkgsrc/chat/py-hangups/distinfo:1.4 Mon Oct 15 08:55:49 2018
+++ pkgsrc/chat/py-hangups/distinfo     Tue Feb 26 18:31:46 2019
@@ -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

Index: pkgsrc/chat/py-hangups/patches/patch-setup.py
diff -u pkgsrc/chat/py-hangups/patches/patch-setup.py:1.3 pkgsrc/chat/py-hangups/patches/patch-setup.py:1.4
--- pkgsrc/chat/py-hangups/patches/patch-setup.py:1.3   Mon Oct 15 08:55:49 2018
+++ pkgsrc/chat/py-hangups/patches/patch-setup.py       Tue Feb 26 18:31:47 2019
@@ -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',



Home | Main Index | Thread Index | Old Index