From owner-svn-ports-all@FreeBSD.ORG Thu Jul 24 13:58:59 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3AB57ECC; Thu, 24 Jul 2014 13:58:59 +0000 (UTC) Received: from smtprelay06.ispgateway.de (smtprelay06.ispgateway.de [80.67.31.102]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EC7D622B4; Thu, 24 Jul 2014 13:58:58 +0000 (UTC) Received: from [80.67.16.121] (helo=webmailfront01.ispgateway.de) by smtprelay06.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1XAJW9-0006yD-7M; Thu, 24 Jul 2014 15:57:09 +0200 Received: from a89-182-45-183.net-htp.de (a89-182-45-183.net-htp.de [89.182.45.183]) by webmail.df.eu (Horde Framework) with HTTP; Thu, 24 Jul 2014 15:57:05 +0200 Date: Thu, 24 Jul 2014 15:57:05 +0200 Message-ID: <20140724155705.Horde.R0ccepheGn08mElrGTLytQ1@webmail.df.eu> From: Marcus von Appen To: Alexey Dokuchaev Subject: Re: svn commit: r362772 - in head/devel: . py-colorlog References: <201407240932.s6O9WjEe028990@svn.freebsd.org> In-Reply-To: <201407240932.s6O9WjEe028990@svn.freebsd.org> Reply-to: mva@freebsd.org User-Agent: Internet Messaging Program (IMP) H5 (6.0.4) Content-Type: text/plain; charset=UTF-8; format=flowed; DelSp=Yes MIME-Version: 1.0 Content-Disposition: inline X-Df-Sender: ZnJlZWJzZEBzeXNmYXVsdC5vcmc= Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 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: Thu, 24 Jul 2014 13:58:59 -0000 Alexey Dokuchaev : > Author: danfe > Date: Thu Jul 24 09:32:44 2014 > New Revision: 362772 > URL: http://svnweb.freebsd.org/changeset/ports/362772 > QAT: https://qat.redports.org/buildarchive/r362772/ > > Log: > - Add py-colorlog, Python module for log formatting with colors > - Fix some misplaced entries in devel/Makefile while I am at it > > Added: > head/devel/py-colorlog/ > head/devel/py-colorlog/Makefile (contents, props changed) > head/devel/py-colorlog/distinfo (contents, props changed) > head/devel/py-colorlog/pkg-descr (contents, props changed) > Modified: > head/devel/Makefile > [...] > > Added: head/devel/py-colorlog/Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/py-colorlog/Makefile Thu Jul 24 09:32:44 2014 (r362772) > @@ -0,0 +1,26 @@ > +# Created by: Alexey Dokuchaev > +# $FreeBSD$ > + > +PORTNAME= colorlog > +PORTVERSION= 2.3.1 > +CATEGORIES= devel python > +MASTER_SITES= CHEESESHOP > +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} > + > +MAINTAINER= python@FreeBSD.org > +COMMENT= Python module for log formatting with colors > + > +LICENSE= MIT > + > +USE_PYTHON= yes > +USE_PYDISTUTILS= yes > +PYDISTUTILS_AUTOPLIST= yes > + > +DOCSDIR= ${PREFIX}/share/doc/${PYTHON_PKGNAMEPREFIX}${PORTNAME} You want PYTHON_CONCURRENT_INSTALL=yes here, instead of the DOCSDIR reassignment. Cheers Marcus