From owner-svn-ports-head@freebsd.org Tue May 9 12:55:24 2017 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 6D821D6503E; Tue, 9 May 2017 12:55:24 +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 03812145; Tue, 9 May 2017 12:55:23 +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 v49CtMw7043860; Tue, 9 May 2017 12:55:22 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v49CtMvp043857; Tue, 9 May 2017 12:55:22 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201705091255.v49CtMvp043857@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 May 2017 12:55:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r440483 - in head/devel: . py-click-log py3-click-log 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: Tue, 09 May 2017 12:55:24 -0000 Author: sunpoet Date: Tue May 9 12:55:22 2017 New Revision: 440483 URL: https://svnweb.freebsd.org/changeset/ports/440483 Log: Add py3-click-log 0.1.8 - While I'm here: - Fix indent - Sort *_DEPENDS PR: 218990 Submitted by: Rudolf Siegel Approved by: Christian Geier (maintainer) Added: head/devel/py3-click-log/ head/devel/py3-click-log/Makefile (contents, props changed) Modified: head/devel/Makefile head/devel/py-click-log/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue May 9 12:22:02 2017 (r440482) +++ head/devel/Makefile Tue May 9 12:55:22 2017 (r440483) @@ -4922,6 +4922,7 @@ SUBDIR += py3-Jinja2 SUBDIR += py3-babel SUBDIR += py3-click + SUBDIR += py3-click-log SUBDIR += py3-colorama SUBDIR += py3-dbus SUBDIR += py3-defusedxml Modified: head/devel/py-click-log/Makefile ============================================================================== --- head/devel/py-click-log/Makefile Tue May 9 12:22:02 2017 (r440482) +++ head/devel/py-click-log/Makefile Tue May 9 12:55:22 2017 (r440483) @@ -12,11 +12,11 @@ COMMENT= Logging integration for Click LICENSE= MIT -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest \ - ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click +RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click +TEST_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click \ + ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest -USES= python +USES?= python USE_PYTHON= autoplist distutils NO_ARCH= yes Added: head/devel/py3-click-log/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py3-click-log/Makefile Tue May 9 12:55:22 2017 (r440483) @@ -0,0 +1,12 @@ +# Created by: rs.os +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-click-log + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py3-click +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py3-click \ + ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py3-pytest + +USES= python:3.3+ + +.include "${MASTERDIR}/Makefile"