pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel py-tenacity: added version 7.0.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f509cd2a4477
branches:  trunk
changeset: 453200:f509cd2a4477
user:      adam <adam%pkgsrc.org@localhost>
date:      Tue May 25 10:15:41 2021 +0000

description:
py-tenacity: added version 7.0.0

Tenacity is a retrying library to simplify the task of adding retry behavior to
just about anything.

diffstat:

 devel/Makefile             |   3 ++-
 devel/py-tenacity/DESCR    |   2 ++
 devel/py-tenacity/Makefile |  21 +++++++++++++++++++++
 devel/py-tenacity/PLIST    |  43 +++++++++++++++++++++++++++++++++++++++++++
 devel/py-tenacity/distinfo |   6 ++++++
 5 files changed, 74 insertions(+), 1 deletions(-)

diffs (105 lines):

diff -r 7e100d6bdf62 -r f509cd2a4477 devel/Makefile
--- a/devel/Makefile    Tue May 25 10:13:22 2021 +0000
+++ b/devel/Makefile    Tue May 25 10:15:41 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3394 2021/05/25 10:08:12 adam Exp $
+# $NetBSD: Makefile,v 1.3395 2021/05/25 10:15:41 adam Exp $
 #
 
 COMMENT=       Development utilities
@@ -2652,6 +2652,7 @@
 SUBDIR+=       py-subvertpy
 SUBDIR+=       py-sure
 SUBDIR+=       py-sysctl
+SUBDIR+=       py-tenacity
 SUBDIR+=       py-termcolor
 SUBDIR+=       py-test
 SUBDIR+=       py-test-assume
diff -r 7e100d6bdf62 -r f509cd2a4477 devel/py-tenacity/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-tenacity/DESCR   Tue May 25 10:15:41 2021 +0000
@@ -0,0 +1,2 @@
+Tenacity is a retrying library to simplify the task of adding retry behavior to
+just about anything.
diff -r 7e100d6bdf62 -r f509cd2a4477 devel/py-tenacity/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-tenacity/Makefile        Tue May 25 10:15:41 2021 +0000
@@ -0,0 +1,21 @@
+# $NetBSD: Makefile,v 1.1 2021/05/25 10:15:41 adam Exp $
+
+DISTNAME=      tenacity-7.0.0
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES=    devel python
+MASTER_SITES=  ${MASTER_SITE_PYPI:=t/tenacity/}
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/jd/tenacity
+COMMENT=       Retry code until it succeeds
+LICENSE=       apache-2.0
+
+BUILD_DEPENDS+=        ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm
+DEPENDS+=      ${PYPKGPREFIX}-six>=1.9.0:../../lang/py-six
+
+USE_LANGUAGES= # none
+
+PYTHON_VERSIONS_INCOMPATIBLE=  27
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 7e100d6bdf62 -r f509cd2a4477 devel/py-tenacity/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-tenacity/PLIST   Tue May 25 10:15:41 2021 +0000
@@ -0,0 +1,43 @@
+@comment $NetBSD: PLIST,v 1.1 2021/05/25 10:15:41 adam Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/tenacity/__init__.py
+${PYSITELIB}/tenacity/__init__.pyc
+${PYSITELIB}/tenacity/__init__.pyo
+${PYSITELIB}/tenacity/_asyncio.py
+${PYSITELIB}/tenacity/_asyncio.pyc
+${PYSITELIB}/tenacity/_asyncio.pyo
+${PYSITELIB}/tenacity/_utils.py
+${PYSITELIB}/tenacity/_utils.pyc
+${PYSITELIB}/tenacity/_utils.pyo
+${PYSITELIB}/tenacity/after.py
+${PYSITELIB}/tenacity/after.pyc
+${PYSITELIB}/tenacity/after.pyo
+${PYSITELIB}/tenacity/before.py
+${PYSITELIB}/tenacity/before.pyc
+${PYSITELIB}/tenacity/before.pyo
+${PYSITELIB}/tenacity/before_sleep.py
+${PYSITELIB}/tenacity/before_sleep.pyc
+${PYSITELIB}/tenacity/before_sleep.pyo
+${PYSITELIB}/tenacity/compat.py
+${PYSITELIB}/tenacity/compat.pyc
+${PYSITELIB}/tenacity/compat.pyo
+${PYSITELIB}/tenacity/nap.py
+${PYSITELIB}/tenacity/nap.pyc
+${PYSITELIB}/tenacity/nap.pyo
+${PYSITELIB}/tenacity/py.typed
+${PYSITELIB}/tenacity/retry.py
+${PYSITELIB}/tenacity/retry.pyc
+${PYSITELIB}/tenacity/retry.pyo
+${PYSITELIB}/tenacity/stop.py
+${PYSITELIB}/tenacity/stop.pyc
+${PYSITELIB}/tenacity/stop.pyo
+${PYSITELIB}/tenacity/tornadoweb.py
+${PYSITELIB}/tenacity/tornadoweb.pyc
+${PYSITELIB}/tenacity/tornadoweb.pyo
+${PYSITELIB}/tenacity/wait.py
+${PYSITELIB}/tenacity/wait.pyc
+${PYSITELIB}/tenacity/wait.pyo
diff -r 7e100d6bdf62 -r f509cd2a4477 devel/py-tenacity/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-tenacity/distinfo        Tue May 25 10:15:41 2021 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2021/05/25 10:15:41 adam Exp $
+
+SHA1 (tenacity-7.0.0.tar.gz) = de0c917d072479ec2f356b4e237082cddbcb158d
+RMD160 (tenacity-7.0.0.tar.gz) = 796c7761686f9a06eb9128d3f9d7c14bc7f9b4ac
+SHA512 (tenacity-7.0.0.tar.gz) = a627112df19b9f6d1c53294daad7fe1b0aeaed15e6ec07054228575fbc76ca5c22f560ddd6fc176c5c22141669423547ba17f1e33c7d0e7e92d0188acad065c4
+Size (tenacity-7.0.0.tar.gz) = 33874 bytes



Home | Main Index | Thread Index | Old Index