From owner-svn-ports-all@FreeBSD.ORG Wed Feb 5 07:38:29 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63E0D99E; Wed, 5 Feb 2014 07:38:29 +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 4C3C718C6; Wed, 5 Feb 2014 07:38:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s157cTIm007322; Wed, 5 Feb 2014 07:38:29 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s157cTGe007320; Wed, 5 Feb 2014 07:38:29 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201402050738.s157cTGe007320@svn.freebsd.org> From: Martin Wilke Date: Wed, 5 Feb 2014 07:38:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r342642 - head/security/py-paramiko 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.17 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, 05 Feb 2014 07:38:29 -0000 Author: miwi Date: Wed Feb 5 07:38:28 2014 New Revision: 342642 URL: http://svnweb.freebsd.org/changeset/ports/342642 QAT: https://qat.redports.org/buildarchive/r342642/ Log: - Stage support - Convert to PYDISTUTILS_AUTOPLIST Deleted: head/security/py-paramiko/pkg-plist Modified: head/security/py-paramiko/Makefile Modified: head/security/py-paramiko/Makefile ============================================================================== --- head/security/py-paramiko/Makefile Wed Feb 5 07:37:34 2014 (r342641) +++ head/security/py-paramiko/Makefile Wed Feb 5 07:38:28 2014 (r342642) @@ -16,17 +16,15 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycr USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} -NO_STAGE= yes .include post-install: -.if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - @(cd ${WRKSRC}/demos && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}) -.endif + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + @(cd ${WRKSRC}/demos && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR}) regression-test: extract @(cd ${WRKSRC} && ${PYTHON_CMD} test.py)