From owner-svn-ports-all@FreeBSD.ORG Mon Feb 10 19:04:10 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 F179FB9; Mon, 10 Feb 2014 19:04:09 +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 DB27D1CAB; Mon, 10 Feb 2014 19:04:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1AJ49P6067915; Mon, 10 Feb 2014 19:04:09 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1AJ490c067914; Mon, 10 Feb 2014 19:04:09 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201402101904.s1AJ490c067914@svn.freebsd.org> From: Antoine Brodin Date: Mon, 10 Feb 2014 19:04:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343673 - head/devel/py-dateutil 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: Mon, 10 Feb 2014 19:04:10 -0000 Author: antoine Date: Mon Feb 10 19:04:09 2014 New Revision: 343673 URL: http://svnweb.freebsd.org/changeset/ports/343673 QAT: https://qat.redports.org/buildarchive/r343673/ Log: - Add LICENSE - Switch from easy_install to install - Allow packaging as a regular user - Use PYDISTUTILS_AUTOPLIST - Stage support PR: ports/186088 PR: ports/186092 Submitted by: John Hein and Johannes Jost Meixner Approved by: maintainer timout (2 weeks) Deleted: head/devel/py-dateutil/pkg-plist Modified: head/devel/py-dateutil/Makefile Modified: head/devel/py-dateutil/Makefile ============================================================================== --- head/devel/py-dateutil/Makefile Mon Feb 10 18:44:40 2014 (r343672) +++ head/devel/py-dateutil/Makefile Mon Feb 10 19:04:09 2014 (r343673) @@ -3,7 +3,7 @@ PORTNAME= dateutil PORTVERSION= 2.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,19 +12,18 @@ DISTNAME= python-dateutil-${PORTVERSION} MAINTAINER= nivit@FreeBSD.org COMMENT= Provides powerful extensions to the standard datetime module -LICENSE= BSD +LICENSE= BSD3CLAUSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six RUN_DEPENDS+= ${BUILD_DEPENDS} USE_PYTHON= yes -USE_PYDISTUTILS= easy_install -PYDISTUTILS_PKGNAME= python-dateutil +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes # Fix incorrect permissions -NO_STAGE= yes post-patch: - @${FIND} ${WRKSRC} -type f -exec ${CHMOD} ${SHAREMODE} {} ";" + @${FIND} ${WRKSRC} -type f -exec ${CHMOD} 644 {} ";" @${REINPLACE_CMD} -e 's|import winreg|from six.moves import winreg|' ${WRKSRC}/dateutil/tzwin.py regression-test: build