From owner-svn-ports-all@FreeBSD.ORG Wed Dec 26 09:40:28 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CC42281D; Wed, 26 Dec 2012 09:40:28 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 964B48FC12; Wed, 26 Dec 2012 09:40:28 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBQ9eSnu040015; Wed, 26 Dec 2012 09:40:28 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBQ9eSgV040014; Wed, 26 Dec 2012 09:40:28 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201212260940.qBQ9eSgV040014@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Wed, 26 Dec 2012 09:40:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309507 - head/www/trac-keywords 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.14 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: Wed, 26 Dec 2012 09:40:28 -0000 Author: rm Date: Wed Dec 26 09:40:28 2012 New Revision: 309507 URL: http://svnweb.freebsd.org/changeset/ports/309507 Log: - do not directly depend on setuptools, use USE_DISTUTILS instead - bump PORTREVISION because of dependency change - trim Makefile header - remove indefinite article in COMMENT - limit python version to 2.x only - remove permissions fixing part - setuptools will take care of it PR: 173173 Submitted by: rm (myself) Approved by: maintainer timeout (~2 months) Modified: head/www/trac-keywords/Makefile Modified: head/www/trac-keywords/Makefile ============================================================================== --- head/www/trac-keywords/Makefile Wed Dec 26 09:38:23 2012 (r309506) +++ head/www/trac-keywords/Makefile Wed Dec 26 09:40:28 2012 (r309507) @@ -1,40 +1,28 @@ -# New ports collection makefile for: trac-keywords -# Date created: December 17, 2009 -# Whom: Eygene Ryabinkin -# +# Created by: Eygene Ryabinkin # $FreeBSD$ -# PORTNAME= keywords PORTVERSION= 0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www python MASTER_SITES= http://dist.codelabs.ru/fbsd/ PKGNAMEPREFIX= trac- DISTNAME= trackeywordsplugin-r${REL} MAINTAINER= rea@FreeBSD.org -COMMENT= A plugin for using pre-configured keywords +COMMENT= Plugin for using pre-configured keywords -BUILD_DEPENDS+= easy_install:${PORTSDIR}/devel/py-setuptools RUN_DEPENDS+= trac>=0.11:${PORTSDIR}/www/trac -USE_PYTHON= 2.5+ +USE_PYTHON= -2.7 USE_ZIP= yes -NO_BUILD= yes -USE_PYDISTUTILS= yes +USE_PYDISTUTILS= easy_install PYDISTUTILS_PKGNAME= TracKeywordsPlugin -PYDISTUTILS_NOEGGINFO= yes -WRKSRC= ${WRKDIR}/trackeywordsplugin/0.11 -REL= 7273 -PLIST_FILES= ${PYTHON_SITELIBDIR:S;${LOCALBASE}/;;}/${PYDISTUTILS_PKGNAME}-${PORTVERSION}-py${PYTHON_VER}.egg +WRKSRC= ${WRKDIR}/trackeywordsplugin/0.11 +REL= 7273 +PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% post-extract: -# We must fix file permissions -- ZIP file have 0000 for every file. -# Directory permissions are fine (they aren't stored inside ZIP -# file), but we set them too -- just in case. - @${FIND} ${WRKSRC} -type f | ${XARGS} chmod 644 - @${FIND} ${WRKSRC} -type d | ${XARGS} chmod 755 # Fix misplaced Genshi template: https://trac-hacks.org/ticket/6104 @${MV} ${WRKDIR}/trackeywordsplugin/0.10/trackeywords/templates/keywords.html ${WRKSRC}/trackeywords/templates/ # Seems like web_ui.py was misplaced too.