From owner-svn-ports-head@FreeBSD.ORG Sat Feb 8 15:38:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E5C515C2; Sat, 8 Feb 2014 15:38:18 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D17FF1551; Sat, 8 Feb 2014 15:38:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s18FcICe048393; Sat, 8 Feb 2014 15:38:18 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s18FcIg0048392; Sat, 8 Feb 2014 15:38:18 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201402081538.s18FcIg0048392@svn.freebsd.org> From: Martin Wilke Date: Sat, 8 Feb 2014 15:38:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343352 - head/textproc/py-genshi 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.17 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: Sat, 08 Feb 2014 15:38:19 -0000 Author: miwi Date: Sat Feb 8 15:38:18 2014 New Revision: 343352 URL: http://svnweb.freebsd.org/changeset/ports/343352 QAT: https://qat.redports.org/buildarchive/r343352/ Log: - Stage support - Convert to PYDISTUTILS_AUTOPLIST - Bump PORTREVISION Deleted: head/textproc/py-genshi/pkg-plist Modified: head/textproc/py-genshi/Makefile Modified: head/textproc/py-genshi/Makefile ============================================================================== --- head/textproc/py-genshi/Makefile Sat Feb 8 15:35:55 2014 (r343351) +++ head/textproc/py-genshi/Makefile Sat Feb 8 15:38:18 2014 (r343352) @@ -3,7 +3,7 @@ PORTNAME= Genshi PORTVERSION= 0.7 -PORTREVISION= 0 +PORTREVISION= 1 #PORTEPOCH= 0 CATEGORIES= textproc www python MASTER_SITES= http://ftp.edgewall.com/pub/${PORTNAME:L}/ @@ -18,30 +18,14 @@ OPTIONS_DEFINE= BABEL OPTIONSFILE?= ${PORT_DBDIR}/py-${PORTNAME}/options BABEL_DESC= I18n support through the Babel plugin -PYEASYINSTALL_ARCHDEP= yes - USE_PYTHON= yes -USE_PYDISTUTILS= easy_install - -DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} -EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME} +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include .if ${PORT_OPTIONS:MBABEL} RUN_DEPENDS+= ${PKGNAMEPREFIX}Babel>=0.9.6:${PORTSDIR}/devel/py-babel .endif -post-install: -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} - cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} . ${DOCSDIR} -.endif - -.if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${EXAMPLESDIR} - cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${EXAMPLESDIR} -.endif - .include