From owner-svn-ports-all@freebsd.org Wed Jul 13 16:34:48 2016 Return-Path: Delivered-To: svn-ports-all@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 E34D6B98FBD; Wed, 13 Jul 2016 16:34:48 +0000 (UTC) (envelope-from pi@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 9ACF815ED; Wed, 13 Jul 2016 16:34:48 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6DGYlNL051622; Wed, 13 Jul 2016 16:34:47 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6DGYlQs051617; Wed, 13 Jul 2016 16:34:47 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607131634.u6DGYlQs051617@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Wed, 13 Jul 2016 16:34:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418490 - in head/devel: . py-stopit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jul 2016 16:34:49 -0000 Author: pi Date: Wed Jul 13 16:34:47 2016 New Revision: 418490 URL: https://svnweb.freebsd.org/changeset/ports/418490 Log: New port: devel/py-stopit Raise asynchronous exceptions in other threads, control the timeout of blocks or callables with two context managers and two decorators. WWW: https://pypi.python.org/pypi/stopit PR: 211050 Submitted by: Danilo G. Baio Added: head/devel/py-stopit/ head/devel/py-stopit/Makefile (contents, props changed) head/devel/py-stopit/distinfo (contents, props changed) head/devel/py-stopit/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jul 13 16:24:33 2016 (r418489) +++ head/devel/Makefile Wed Jul 13 16:34:47 2016 (r418490) @@ -4445,6 +4445,7 @@ SUBDIR += py-statsd SUBDIR += py-stdnum SUBDIR += py-stevedore + SUBDIR += py-stopit SUBDIR += py-structlog SUBDIR += py-stsci.distutils SUBDIR += py-subversion Added: head/devel/py-stopit/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-stopit/Makefile Wed Jul 13 16:34:47 2016 (r418490) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= stopit +PORTVERSION= 1.1.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@bsd.com.br +COMMENT= Timeout control decorator and context managers in Python + +LICENSE= GPLv3 + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-stopit/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-stopit/distinfo Wed Jul 13 16:34:47 2016 (r418490) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467936276 +SHA256 (stopit-1.1.1.tar.gz) = d879a892e6c0d524763b8bf20831a78311d86ea59ec199ec551abf3f494b0708 +SIZE (stopit-1.1.1.tar.gz) = 18009 Added: head/devel/py-stopit/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-stopit/pkg-descr Wed Jul 13 16:34:47 2016 (r418490) @@ -0,0 +1,4 @@ +Raise asynchronous exceptions in other threads, control the timeout +of blocks or callables with two context managers and two decorators. + +WWW: https://pypi.python.org/pypi/stopit