From owner-svn-ports-head@FreeBSD.ORG Sat Jun 14 11:18:25 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 B43BC4A6; Sat, 14 Jun 2014 11:18:25 +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 A116326DC; Sat, 14 Jun 2014 11:18:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5EBIPWK018270; Sat, 14 Jun 2014 11:18:25 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5EBIP3B018269; Sat, 14 Jun 2014 11:18:25 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201406141118.s5EBIP3B018269@svn.freebsd.org> From: Marcus von Appen Date: Sat, 14 Jun 2014 11:18:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357769 - head/net/pyrad 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.18 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, 14 Jun 2014 11:18:25 -0000 Author: mva Date: Sat Jun 14 11:18:25 2014 New Revision: 357769 URL: http://svnweb.freebsd.org/changeset/ports/357769 QAT: https://qat.redports.org/buildarchive/r357769/ Log: - Enable stagedir support - 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) Deleted: head/net/pyrad/pkg-plist Modified: head/net/pyrad/Makefile Modified: head/net/pyrad/Makefile ============================================================================== --- head/net/pyrad/Makefile Sat Jun 14 11:13:34 2014 (r357768) +++ head/net/pyrad/Makefile Sat Jun 14 11:18:25 2014 (r357769) @@ -3,6 +3,7 @@ PORTNAME= pyrad PORTVERSION= 2.0 +PORTREVISION= 1 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -10,15 +11,14 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= steve@energistic.com COMMENT= Python implementation of RADIUS client -USE_PYTHON= yes -USE_PYDISTUTILS= easy_install -PYDISTUTILS_PKGNAME= pyrad +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes PORTEXAMPLES= * OPTIONS_DEFINE= EXAMPLES -NO_STAGE= yes .include post-patch: @@ -27,8 +27,8 @@ post-patch: .if ${PORT_OPTIONS:MEXAMPLES} post-install: - @${MKDIR} ${EXAMPLESDIR} - (cd ${WRKSRC}/example && ${COPYTREE_SHARE} . ${EXAMPLESDIR}) + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + (cd ${WRKSRC}/example && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) .endif .include