Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Oct 2012 18:49:29 +0000 (UTC)
From:      Ruslan Mahmatkhanov <rm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r306453 - head/www/trac-xmlrpc
Message-ID:  <201210261849.q9QInTJd067739@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rm
Date: Fri Oct 26 18:49:29 2012
New Revision: 306453
URL: http://svn.freebsd.org/changeset/ports/306453

Log:
  - do not directly depend on setuptools, use USE_DISTUTILS instead
  - bump PORTREVISION because of dependency change
  - trim Makefile header
  - add license (BSD)
  - limit python version to 2.x only
  - move pkg-plist contents into Makefile:PLIST_FILES
  
  PR:		173024
  Submitted by:	rm (myself)
  Approved by:	glarkin (maintainer, by mail)
  Feature safe:	yes

Deleted:
  head/www/trac-xmlrpc/pkg-plist
Modified:
  head/www/trac-xmlrpc/Makefile

Modified: head/www/trac-xmlrpc/Makefile
==============================================================================
--- head/www/trac-xmlrpc/Makefile	Fri Oct 26 18:48:09 2012	(r306452)
+++ head/www/trac-xmlrpc/Makefile	Fri Oct 26 18:49:29 2012	(r306453)
@@ -1,13 +1,9 @@
-# New ports collection makefile for: trac-xmlrpc
-# Date created:                      May 18 2007
-# Whom:                              Gerrit Beine <gerrit.beine@gmx.de>
-#
+# Created by: Gerrit Beine <gerrit.beine@gmx.de>
 # $FreeBSD$
-#
 
 PORTNAME=	xmlrpc
 PORTVERSION=	1.0.6
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	www devel python
 MASTER_SITES=	http://shuqun.com/files/ \
 		LOCAL/glarkin
@@ -17,14 +13,14 @@ DISTNAME=	${PORTNAME}plugin-${PORTVERSIO
 MAINTAINER=	glarkin@FreeBSD.org
 COMMENT=	Provides an xml rpc interface to Trac
 
-BUILD_DEPENDS+=	easy_install:${PORTSDIR}/devel/py-setuptools
+LICENSE=	BSD
+
 RUN_DEPENDS+=	tracd:${PORTSDIR}/www/trac
 
 WRKSRC=		${WRKDIR}/${PORTNAME}plugin
-NO_BUILD=	yes
-USE_PYTHON=	yes
-USE_PYDISTUTILS=yes
-PLIST_SUB+=	PORTVERSION=${PORTVERSION} PYTHONVERSION=${_PYTHON_VERSION}
-PYDISTUTILS_NOEGGINFO=	yes
+USE_PYTHON=	-2.7
+USE_PYDISTUTILS=	easy_install
+PYDISTUTILS_PKGNAME=	TracXMLRPC
+PLIST_FILES=		%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210261849.q9QInTJd067739>