From owner-svn-ports-head@FreeBSD.ORG Sun Mar 2 22:53:23 2014 Return-Path: Delivered-To: svn-ports-head@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 028D18DA; Sun, 2 Mar 2014 22:53:23 +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 C970412A7; Sun, 2 Mar 2014 22:53:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s22MrMcP016324; Sun, 2 Mar 2014 22:53:22 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s22MrMI8016322; Sun, 2 Mar 2014 22:53:22 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201403022253.s22MrMI8016322@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Sun, 2 Mar 2014 22:53:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346831 - head/www/py-werkzeug 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.17 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: Sun, 02 Mar 2014 22:53:23 -0000 Author: rm Date: Sun Mar 2 22:53:22 2014 New Revision: 346831 URL: http://svnweb.freebsd.org/changeset/ports/346831 QAT: https://qat.redports.org/buildarchive/r346831/ Log: www/py-werkzeug: support staging and general clean-up - clarify license (BSD3C) - do not use easy_install for installation and convert to auto-generated packing list - add staging support - install examples into staging area uncoditionally and remove EXAMPLES option - remove inclusion of devel/py-virtualenv/files/py3k-fix-pkg-plist.inc - it's implemented in bsd.python.mk Approved by: portmgr (blanket) Deleted: head/www/py-werkzeug/pkg-plist Modified: head/www/py-werkzeug/Makefile head/www/py-werkzeug/pkg-descr Modified: head/www/py-werkzeug/Makefile ============================================================================== --- head/www/py-werkzeug/Makefile Sun Mar 2 22:52:07 2014 (r346830) +++ head/www/py-werkzeug/Makefile Sun Mar 2 22:53:22 2014 (r346831) @@ -3,6 +3,7 @@ PORTNAME= werkzeug PORTVERSION= 0.9.4 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,32 +12,17 @@ DISTNAME= Werkzeug-${DISTVERSION} MAINTAINER= moggie@elasticmind.net COMMENT= Python utilities collection for building WSGI applications -LICENSE= BSD +LICENSE= BSD3CLAUSE -USE_PYTHON= yes -USE_PYDISTUTILS= easy_install -PYDISTUTILS_PKGNAME= Werkzeug -PYDISTUTILS_PKGVERSION= ${DISTVERSION} -PYDISTUTILS_NOEGGINFO= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes EXAMPLESDIR= ${PREFIX}/share/examples/${PYTHON_PKGNAMEPREFIX}${PORTNAME} - -NO_STAGE= yes - -OPTIONS_DEFINE= EXAMPLES - -.include - -.include +PORTEXAMPLES= * post-install: -.if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${EXAMPLESDIR} - @cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${EXAMPLESDIR} -.endif - -.if ${PYTHON_REL} >= 320 -.include "${PORTSDIR}/devel/py-virtualenv/files/py3k-fix-pkg-plist.inc" -.endif + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + (cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) -.include +.include Modified: head/www/py-werkzeug/pkg-descr ============================================================================== --- head/www/py-werkzeug/pkg-descr Sun Mar 2 22:52:07 2014 (r346830) +++ head/www/py-werkzeug/pkg-descr Sun Mar 2 22:53:22 2014 (r346831) @@ -7,6 +7,6 @@ It has since become one of the most adva It includes a powerful debugger, fully featured request and response objects, HTTP utilities to handle entity tags, cache control headers, HTTP dates, cookie handling, file uploads, a powerful URL routing -system and a bunch of community contributed add-on modules. +system and a bunch of community contributed add-on modules. WWW: http://werkzeug.pocoo.org/