Source-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/py-zope.hookable py-zope.hookable: updated to 5.0.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9dbe0ff97325
branches:  trunk
changeset: 433886:9dbe0ff97325
user:      adam <adam%pkgsrc.org@localhost>
date:      Mon Jun 08 13:09:07 2020 +0000

description:
py-zope.hookable: updated to 5.0.1

5.0.1:
- Stop using the setuptools ``Feature`` class, allowing this
  project to be built from source with newer versions of setuptools
  that remove that functionality.

5.0.0:
- Add support for Python 3.7 and 3.8.
- Drop support for Python 3.4.

diffstat:

 devel/py-zope.hookable/Makefile               |   4 +-
 devel/py-zope.hookable/distinfo               |  12 ++++-----
 devel/py-zope.hookable/patches/patch-setup.py |  32 ---------------------------
 devel/py-zope.hookable/patches/patch-tox.ini  |  14 -----------
 4 files changed, 7 insertions(+), 55 deletions(-)

diffs (83 lines):

diff -r 8c124c290afa -r 9dbe0ff97325 devel/py-zope.hookable/Makefile
--- a/devel/py-zope.hookable/Makefile   Mon Jun 08 13:03:52 2020 +0000
+++ b/devel/py-zope.hookable/Makefile   Mon Jun 08 13:09:07 2020 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2019/07/03 07:19:04 nia Exp $
+# $NetBSD: Makefile,v 1.3 2020/06/08 13:09:07 adam Exp $
 
-DISTNAME=      zope.hookable-4.2.0
+DISTNAME=      zope.hookable-5.0.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=z/zope.hookable/}
diff -r 8c124c290afa -r 9dbe0ff97325 devel/py-zope.hookable/distinfo
--- a/devel/py-zope.hookable/distinfo   Mon Jun 08 13:03:52 2020 +0000
+++ b/devel/py-zope.hookable/distinfo   Mon Jun 08 13:09:07 2020 +0000
@@ -1,8 +1,6 @@
-$NetBSD: distinfo,v 1.1 2018/10/28 15:17:47 taca Exp $
+$NetBSD: distinfo,v 1.2 2020/06/08 13:09:07 adam Exp $
 
-SHA1 (zope.hookable-4.2.0.tar.gz) = 7aed58847bf92b330deda16d34b3e17607af8692
-RMD160 (zope.hookable-4.2.0.tar.gz) = 8d9428d044f17670fbf55ddcc68f822a8f340e96
-SHA512 (zope.hookable-4.2.0.tar.gz) = 89360637339ccc4131d4a6b5fda27a8721a03f0110cf5a63dfe14202c38cacc304fcd7e12d0f5d2779647d0e1e0fc7d04b7c6514ee88d167498fb62db3147a11
-Size (zope.hookable-4.2.0.tar.gz) = 22011 bytes
-SHA1 (patch-setup.py) = 530806b5c0764a8846d3e74df6c759ccee758c57
-SHA1 (patch-tox.ini) = c06bbfd3717aa4f97b80d675a5f75c4e2ef134e7
+SHA1 (zope.hookable-5.0.1.tar.gz) = 85b1cd885450dc1cdf49d3c89788349c5f8ccb11
+RMD160 (zope.hookable-5.0.1.tar.gz) = 869282b14b2c79c85e2ebebf704d6fd8975e0370
+SHA512 (zope.hookable-5.0.1.tar.gz) = 5edc09e2e33cec31e42915f85059050584ad74034c10c91b70a9cf5d27d7330c0ebf2dc1a932b41e8780e1466530f7dfe57b50c76832a259af594e281747a698
+Size (zope.hookable-5.0.1.tar.gz) = 24401 bytes
diff -r 8c124c290afa -r 9dbe0ff97325 devel/py-zope.hookable/patches/patch-setup.py
--- a/devel/py-zope.hookable/patches/patch-setup.py     Mon Jun 08 13:03:52 2020 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-$NetBSD: patch-setup.py,v 1.1 2018/10/28 15:17:47 taca Exp $
-
-Python 3.7 support from 0db68de5a45475b9af37b8c3dade560c2d5317cd.
-
---- setup.py.orig      2017-11-07 17:46:36.000000000 +0000
-+++ setup.py
-@@ -108,6 +108,7 @@ setup(name='zope.hookable',
-           "Programming Language :: Python :: 3.4",
-           "Programming Language :: Python :: 3.5",
-           "Programming Language :: Python :: 3.6",
-+          "Programming Language :: Python :: 3.7",
-           "Programming Language :: Python :: Implementation :: CPython",
-           "Programming Language :: Python :: Implementation :: PyPy",
-           "Framework :: Zope3",
-@@ -119,7 +120,7 @@ setup(name='zope.hookable',
-       },
-       packages=find_packages('src'),
-       package_dir={'': 'src'},
--      namespace_packages=['zope',],
-+      namespace_packages=['zope'],
-       install_requires=[
-           'setuptools',
-       ],
-@@ -128,7 +129,7 @@ setup(name='zope.hookable',
-       test_suite='zope.hookable.tests.test_hookable.test_suite',
-       extras_require={
-           'docs': ['Sphinx'],
--          'testing': TESTS_REQUIRE + ['coverage',],
-+          'testing': TESTS_REQUIRE + ['coverage'],
-           'test': TESTS_REQUIRE,
-       },
-       python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
diff -r 8c124c290afa -r 9dbe0ff97325 devel/py-zope.hookable/patches/patch-tox.ini
--- a/devel/py-zope.hookable/patches/patch-tox.ini      Mon Jun 08 13:03:52 2020 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-$NetBSD: patch-tox.ini,v 1.1 2018/10/28 15:17:47 taca Exp $
-
-Python 3.7 support from 0db68de5a45475b9af37b8c3dade560c2d5317cd.
-
---- tox.ini.orig       2017-11-07 17:46:36.000000000 +0000
-+++ tox.ini
-@@ -1,6 +1,6 @@
- [tox]
- envlist =
--    py27,py27-pure,py34,py35,py36,pypy,pypy3,coverage,docs
-+    py27,py27-pure,py34,py35,py36,py37,pypy,pypy3,coverage,docs
- 
- [testenv]
- commands =



Home | Main Index | Thread Index | Old Index