From owner-svn-ports-all@FreeBSD.ORG Wed Oct 31 08:43:34 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 19989441; Wed, 31 Oct 2012 08:43:34 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 00E5B8FC0A; Wed, 31 Oct 2012 08:43:34 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9V8hXcG094243; Wed, 31 Oct 2012 08:43:33 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9V8hXq6094241; Wed, 31 Oct 2012 08:43:33 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210310843.q9V8hXq6094241@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Wed, 31 Oct 2012 08:43:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306738 - head/www/trac-fivestarvote 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, 31 Oct 2012 08:43:34 -0000 Author: rm Date: Wed Oct 31 08:43:33 2012 New Revision: 306738 URL: http://svn.freebsd.org/changeset/ports/306738 Log: - do not directly depend on setuptools - no PORTREVISION bump is needed, because it already had run/build dependency - trim Makefile header - limit python version to 2.x only - move pkg-plist contents into Makefile:PLIST_FILES Approved by: brooks (maintainer, implicit) Feature safe: yes Deleted: head/www/trac-fivestarvote/pkg-plist Modified: head/www/trac-fivestarvote/Makefile Modified: head/www/trac-fivestarvote/Makefile ============================================================================== --- head/www/trac-fivestarvote/Makefile Wed Oct 31 08:11:25 2012 (r306737) +++ head/www/trac-fivestarvote/Makefile Wed Oct 31 08:43:33 2012 (r306738) @@ -1,9 +1,5 @@ -# New ports collection makefile for: trac-fivestarvote -# Date created: Dec 31, 2009 -# Whom: Brooks Davis -# +# Created by: Brooks Davis # $FreeBSD$ -# PORTNAME= ${PYDISTUTILS_PKGNAME:S;^Trac;;S;Plugin$;;:L} PORTVERSION= 0.1 @@ -14,14 +10,14 @@ MASTER_SITE_SUBDIR= brooks PKGNAMEPREFIX= trac- MAINTAINER= brooks@FreeBSD.org -COMMENT= A 5 star plugin for voting on Trac resources +COMMENT= Five star plugin for voting on Trac resources RUN_DEPENDS+= tracd:${PORTSDIR}/www/trac -BUILD_DEPENDS+= easy_install:${PORTSDIR}/devel/py-setuptools -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install +USE_PYTHON= -2.7 +USE_PYDISTUTILS= easy_install PYDISTUTILS_PKGNAME= FiveStarVote +PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% # Maintainter targets below this point