pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/chat/py-hangups py-hangups: Update chat/py-hangups to ...
details: https://anonhg.NetBSD.org/pkgsrc/rev/c7da2fe74d38
branches: trunk
changeset: 382864:c7da2fe74d38
user: leot <leot%pkgsrc.org@localhost>
date: Mon Jul 16 17:43:24 2018 +0000
description:
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:
chat/py-hangups/Makefile | 5 +++--
chat/py-hangups/distinfo | 12 ++++++------
chat/py-hangups/patches/patch-setup.py | 18 ++++++------------
3 files changed, 15 insertions(+), 20 deletions(-)
diffs (81 lines):
diff -r 39ba3c8bdc3b -r c7da2fe74d38 chat/py-hangups/Makefile
--- a/chat/py-hangups/Makefile Mon Jul 16 14:13:54 2018 +0000
+++ b/chat/py-hangups/Makefile Mon Jul 16 17:43:24 2018 +0000
@@ -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 @@
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 -r 39ba3c8bdc3b -r c7da2fe74d38 chat/py-hangups/distinfo
--- a/chat/py-hangups/distinfo Mon Jul 16 14:13:54 2018 +0000
+++ b/chat/py-hangups/distinfo Mon Jul 16 17:43:24 2018 +0000
@@ -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 -r 39ba3c8bdc3b -r c7da2fe74d38 chat/py-hangups/patches/patch-setup.py
--- a/chat/py-hangups/patches/patch-setup.py Mon Jul 16 14:13:54 2018 +0000
+++ b/chat/py-hangups/patches/patch-setup.py Mon Jul 16 17:43:24 2018 +0000
@@ -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 @@
- '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 @@
]
- 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