From owner-svn-ports-all@FreeBSD.ORG Tue Jun 17 19:19:54 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 46E729A; Tue, 17 Jun 2014 19:19:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 1A1BB2376; Tue, 17 Jun 2014 19:19:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5HJJrIL048038; Tue, 17 Jun 2014 19:19:53 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5HJJrS5048036; Tue, 17 Jun 2014 19:19:53 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201406171919.s5HJJrS5048036@svn.freebsd.org> From: Marcus von Appen Date: Tue, 17 Jun 2014 19:19:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358160 - in head/www: trac trac-wikitopdf 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.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: Tue, 17 Jun 2014 19:19:54 -0000 Author: mva Date: Tue Jun 17 19:19:53 2014 New Revision: 358160 URL: http://svnweb.freebsd.org/changeset/ports/358160 QAT: https://qat.redports.org/buildarchive/r358160/ Log: - Add a trac/plugin.mk to allow plugins to use the same build and installation environment in order to avoid polluting non-stage directories on build and installation www/trac-wikitopdf: - Remove easy_install dependency Convert to PYDISTUTILS_AUTOPLIST - Bump PORTREVISION to enforce a cleanup for the easy_install references With hat: python@ Approved by: portmgr (implicit) Thanks to: bdrewery@ Added: head/www/trac/plugin.mk (contents, props changed) Modified: head/www/trac-wikitopdf/Makefile Modified: head/www/trac-wikitopdf/Makefile ============================================================================== --- head/www/trac-wikitopdf/Makefile Tue Jun 17 18:44:04 2014 (r358159) +++ head/www/trac-wikitopdf/Makefile Tue Jun 17 19:19:53 2014 (r358160) @@ -1,8 +1,8 @@ # $FreeBSD$ -PORTNAME= ${PYDISTUTILS_PKGNAME:S;^Trac;;S;Plugin$;;:tl} +PORTNAME= wikitopdf PORTVERSION= 2.2.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= www devel python MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= brooks @@ -15,10 +15,10 @@ COMMENT= Plugin to generate PDF document RUN_DEPENDS+= htmldoc:${PORTSDIR}/textproc/htmldoc \ tracd:${PORTSDIR}/www/trac -USE_PYTHON= 2 -USE_PYDISTUTILS= easy_install -PYDISTUTILS_PKGNAME= TracWikiToPdfPlugin -PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes WRKSRC= ${WRKDIR}/${PORTNAME}plugin +.include "${.CURDIR}/../../www/trac/plugin.mk" .include Added: head/www/trac/plugin.mk ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/trac/plugin.mk Tue Jun 17 19:19:53 2014 (r358160) @@ -0,0 +1,6 @@ +# needed to avoid polluting /root with .subversion/ leftovers, +# which will cause package builders to complain on staging. +# +# www/trac issues some svn command on installing certain plugins, +# if it was built with the SVN option enabled +MAKE_ENV+= HOME=/dev/null