From owner-svn-ports-head@freebsd.org Wed Jan 8 14:50:36 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 8E0901F1275; Wed, 8 Jan 2020 14:50:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47tBxm32jMz4cZS; Wed, 8 Jan 2020 14:50:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 637DC19926; Wed, 8 Jan 2020 14:50:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 008EoaD9074554; Wed, 8 Jan 2020 14:50:36 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 008EoZcV074551; Wed, 8 Jan 2020 14:50:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202001081450.008EoZcV074551@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 8 Jan 2020 14:50:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r522401 - head/devel/py-tenacity X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-tenacity X-SVN-Commit-Revision: 522401 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Jan 2020 14:50:36 -0000 Author: sunpoet Date: Wed Jan 8 14:50:35 2020 New Revision: 522401 URL: https://svnweb.freebsd.org/changeset/ports/522401 Log: Update to 6.0.0 - Add LICENSE_FILE - Update pkg-descr - Update WWW - Take maintainership Changes: https://github.com/jd/tenacity/releases https://github.com/jd/tenacity/commits/master Modified: head/devel/py-tenacity/Makefile head/devel/py-tenacity/distinfo (contents, props changed) head/devel/py-tenacity/pkg-descr (contents, props changed) Modified: head/devel/py-tenacity/Makefile ============================================================================== --- head/devel/py-tenacity/Makefile Wed Jan 8 14:50:29 2020 (r522400) +++ head/devel/py-tenacity/Makefile Wed Jan 8 14:50:35 2020 (r522401) @@ -2,22 +2,30 @@ # $FreeBSD$ PORTNAME= tenacity -PORTVERSION= 3.4.0 +PORTVERSION= 6.0.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org -COMMENT= Task retrying for python library +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Retry code until it succeeds LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.6:devel/py-pbr@${PY_FLAVOR} -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py-setuptools_scm@${PY_FLAVOR} +RUN_DEPENDS= ${PY_FUTURES} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR} +USES= python +USE_PYTHON= autoplist concurrent distutils + NO_ARCH= yes -USES= python -USE_PYTHON= autoplist distutils +.include -.include +.if ${PYTHON_REL} < 3000 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}monotonic>=0.6:devel/py-monotonic@${PY_FLAVOR} +.endif + +.include Modified: head/devel/py-tenacity/distinfo ============================================================================== --- head/devel/py-tenacity/distinfo Wed Jan 8 14:50:29 2020 (r522400) +++ head/devel/py-tenacity/distinfo Wed Jan 8 14:50:35 2020 (r522401) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481138391 -SHA256 (tenacity-3.4.0.tar.gz) = 72918085efeaaebcfd241ea04256151935826e428b81d1e18f3e924cb7a1f4c4 -SIZE (tenacity-3.4.0.tar.gz) = 21074 +TIMESTAMP = 1578401164 +SHA256 (tenacity-6.0.0.tar.gz) = 72f397c2bb1887e048726603f3f629ea16f88cb3e61e4ed3c57e98582b8e3571 +SIZE (tenacity-6.0.0.tar.gz) = 33589 Modified: head/devel/py-tenacity/pkg-descr ============================================================================== --- head/devel/py-tenacity/pkg-descr Wed Jan 8 14:50:29 2020 (r522400) +++ head/devel/py-tenacity/pkg-descr Wed Jan 8 14:50:35 2020 (r522401) @@ -1,5 +1,7 @@ -Tenacity is an Apache 2.0 licensed general-purpose retrying library, written -in Python, to simplify the task of adding retry behavior to just about -anything. It originates from a fork of Retrying. +Tenacity is an Apache 2.0 licensed general-purpose retrying library, written in +Python, to simplify the task of adding retry behavior to just about anything. It +originates from a fork of retrying which is sadly no longer maintained. Tenacity +isn't api compatible with retrying but adds significant new functionality and +fixes a number of longstanding bugs. -WWW: https://pypi.org/project/tenacity/ +WWW: https://github.com/jd/tenacity