From owner-svn-ports-head@freebsd.org Mon Oct 17 18:15:50 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37B33C15FBC; Mon, 17 Oct 2016 18:15:50 +0000 (UTC) (envelope-from novel@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 mx1.freebsd.org (Postfix) with ESMTPS id DE492107E; Mon, 17 Oct 2016 18:15:49 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9HIFndS061962; Mon, 17 Oct 2016 18:15:49 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9HIFmLI061958; Mon, 17 Oct 2016 18:15:48 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201610171815.u9HIFmLI061958@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Mon, 17 Oct 2016 18:15:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424139 - in head/devel: . py-retrying X-SVN-Group: ports-head 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.23 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: Mon, 17 Oct 2016 18:15:50 -0000 Author: novel Date: Mon Oct 17 18:15:48 2016 New Revision: 424139 URL: https://svnweb.freebsd.org/changeset/ports/424139 Log: Add py-retrying 1.3.3, general-purpose retrying library, written in Python. PR: 213542 Submitted by: Alexander Nusov Added: head/devel/py-retrying/ head/devel/py-retrying/Makefile (contents, props changed) head/devel/py-retrying/distinfo (contents, props changed) head/devel/py-retrying/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Oct 17 18:12:52 2016 (r424138) +++ head/devel/Makefile Mon Oct 17 18:15:48 2016 (r424139) @@ -4466,6 +4466,7 @@ SUBDIR += py-resolver SUBDIR += py-resourcepackage SUBDIR += py-responses + SUBDIR += py-retrying SUBDIR += py-riak_pb SUBDIR += py-rlcompleter2 SUBDIR += py-robotframework Added: head/devel/py-retrying/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-retrying/Makefile Mon Oct 17 18:15:48 2016 (r424139) @@ -0,0 +1,20 @@ +# Created by: Alexander Nusov +# $FreeBSD$ + +PORTNAME= retrying +PORTVERSION= 1.3.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= alexander.nusov@nfvexpress.com +COMMENT= General-purpose retrying library, written in Python + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.7.0:devel/py-six + +NO_ARCH= yes + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-retrying/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-retrying/distinfo Mon Oct 17 18:15:48 2016 (r424139) @@ -0,0 +1,3 @@ +TIMESTAMP = 1476297300 +SHA256 (retrying-1.3.3.tar.gz) = 08c039560a6da2fe4f2c426d0766e284d3b736e355f8dd24b37367b0bb41973b +SIZE (retrying-1.3.3.tar.gz) = 10890 Added: head/devel/py-retrying/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-retrying/pkg-descr Mon Oct 17 18:15:48 2016 (r424139) @@ -0,0 +1,5 @@ +Retrying 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. + +WWW: https://github.com/rholder/retrying