From owner-svn-ports-head@freebsd.org Mon Apr 4 05:43:15 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 A616BB01CD4; Mon, 4 Apr 2016 05:43:15 +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 5CCFD1042; Mon, 4 Apr 2016 05:43:15 +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 u345hEF9033275; Mon, 4 Apr 2016 05:43:14 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u345hE8b033271; Mon, 4 Apr 2016 05:43:14 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201604040543.u345hE8b033271@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 4 Apr 2016 05:43:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412499 - in head/devel: . py-click-threading 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.21 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, 04 Apr 2016 05:43:15 -0000 Author: pi Date: Mon Apr 4 05:43:14 2016 New Revision: 412499 URL: https://svnweb.freebsd.org/changeset/ports/412499 Log: New port: devel/py-click-threading Utilities for multithreading in click. WWW: https://github.com/click-contrib/click-threading PR: 208427 Submitted by: Christian Geier Added: head/devel/py-click-threading/ head/devel/py-click-threading/Makefile (contents, props changed) head/devel/py-click-threading/distinfo (contents, props changed) head/devel/py-click-threading/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Apr 4 05:37:50 2016 (r412498) +++ head/devel/Makefile Mon Apr 4 05:43:14 2016 (r412499) @@ -3994,6 +3994,7 @@ SUBDIR += py-cld SUBDIR += py-click SUBDIR += py-click-log + SUBDIR += py-click-threading SUBDIR += py-clint SUBDIR += py-clonedigger SUBDIR += py-cloudpickle Added: head/devel/py-click-threading/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-click-threading/Makefile Mon Apr 4 05:43:14 2016 (r412499) @@ -0,0 +1,18 @@ +# Created by: Christian Geier +# $FreeBSD$ + +PORTNAME= click-threading +PORTVERSION= 0.1.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= geier@lostpackets.de +COMMENT= Multithreaded Click apps made easy + +LICENSE= MIT + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-click-threading/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-click-threading/distinfo Mon Apr 4 05:43:14 2016 (r412499) @@ -0,0 +1,2 @@ +SHA256 (click-threading-0.1.2.tar.gz) = 85045457e02f16fba3110dc6b16e980bf3e65433808da2b550dd513206d9b94a +SIZE (click-threading-0.1.2.tar.gz) = 3232 Added: head/devel/py-click-threading/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-click-threading/pkg-descr Mon Apr 4 05:43:14 2016 (r412499) @@ -0,0 +1,3 @@ +Utilities for multithreading in click. + +WWW: https://github.com/click-contrib/click-threading