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:           Mon Jul 16 17:43:25 UTC 2018

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

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


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/chat/py-hangups/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/chat/py-hangups/distinfo
cvs rdiff -u -r1.1 -r1.2 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.3 pkgsrc/chat/py-hangups/Makefile:1.4
--- pkgsrc/chat/py-hangups/Makefile:1.3 Thu Feb 15 07:45:42 2018
+++ pkgsrc/chat/py-hangups/Makefile     Mon Jul 16 17:43:24 2018
@@ -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

Index: pkgsrc/chat/py-hangups/distinfo
diff -u pkgsrc/chat/py-hangups/distinfo:1.2 pkgsrc/chat/py-hangups/distinfo:1.3
--- pkgsrc/chat/py-hangups/distinfo:1.2 Sun Jan 14 16:00:35 2018
+++ pkgsrc/chat/py-hangups/distinfo     Mon Jul 16 17:43:24 2018
@@ -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

Index: pkgsrc/chat/py-hangups/patches/patch-setup.py
diff -u pkgsrc/chat/py-hangups/patches/patch-setup.py:1.1 pkgsrc/chat/py-hangups/patches/patch-setup.py:1.2
--- pkgsrc/chat/py-hangups/patches/patch-setup.py:1.1   Mon Sep  4 13:58:24 2017
+++ pkgsrc/chat/py-hangups/patches/patch-setup.py       Mon Jul 16 17:43:25 2018
@@ -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(



Home | Main Index | Thread Index | Old Index