From owner-svn-ports-all@freebsd.org Mon May 15 18:33:50 2017 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 51237D6EBE8; Mon, 15 May 2017 18:33:50 +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 mx1.freebsd.org (Postfix) with ESMTPS id 060D4BB5; Mon, 15 May 2017 18:33:49 +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 v4FIXnLQ064629; Mon, 15 May 2017 18:33:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4FIXmNg064624; Mon, 15 May 2017 18:33:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201705151833.v4FIXmNg064624@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 15 May 2017 18:33:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r440962 - in head/devel: . py-click-threading py3-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-all@freebsd.org X-Mailman-Version: 2.1.23 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: Mon, 15 May 2017 18:33:50 -0000 Author: sunpoet Date: Mon May 15 18:33:48 2017 New Revision: 440962 URL: https://svnweb.freebsd.org/changeset/ports/440962 Log: Add py3-click-threading 0.4.2 - While I'm here, fix indent PR: 219233 Submitted by: Rudolf Siegel Approved by: Christian Geier (maintainer) Added: head/devel/py3-click-threading/ head/devel/py3-click-threading/Makefile (contents, props changed) Modified: head/devel/Makefile head/devel/py-click-threading/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon May 15 18:22:51 2017 (r440961) +++ head/devel/Makefile Mon May 15 18:33:48 2017 (r440962) @@ -4926,6 +4926,7 @@ SUBDIR += py3-babel SUBDIR += py3-click SUBDIR += py3-click-log + SUBDIR += py3-click-threading SUBDIR += py3-colorama SUBDIR += py3-dbus SUBDIR += py3-defusedxml Modified: head/devel/py-click-threading/Makefile ============================================================================== --- head/devel/py-click-threading/Makefile Mon May 15 18:22:51 2017 (r440961) +++ head/devel/py-click-threading/Makefile Mon May 15 18:33:48 2017 (r440962) @@ -12,11 +12,11 @@ COMMENT= Multithreaded Click apps made e LICENSE= MIT -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest \ +RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click +TEST_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest \ ${RUN_DEPENDS} -USES= python +USES?= python USE_PYTHON= autoplist distutils NO_ARCH= yes Added: head/devel/py3-click-threading/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py3-click-threading/Makefile Mon May 15 18:33:48 2017 (r440962) @@ -0,0 +1,12 @@ +# Created by: rs.os +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-click-threading + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py3-click +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py3-pytest \ + ${RUN_DEPENDS} + +USES= python:3.3+ + +.include "${MASTERDIR}/Makefile"