From owner-svn-ports-head@FreeBSD.ORG Sun Nov 10 19:16:25 2013 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 ESMTP id 6F6B5783; Sun, 10 Nov 2013 19:16:25 +0000 (UTC) (envelope-from rm@FreeBSD.org) 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 430112B80; Sun, 10 Nov 2013 19:16:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAAJGPxT099944; Sun, 10 Nov 2013 19:16:25 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAAJGO0B099938; Sun, 10 Nov 2013 19:16:24 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201311101916.rAAJGO0B099938@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Sun, 10 Nov 2013 19:16:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333426 - in head/devel/py-boto: . files 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.14 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, 10 Nov 2013 19:16:25 -0000 Author: rm Date: Sun Nov 10 19:16:24 2013 New Revision: 333426 URL: http://svnweb.freebsd.org/changeset/ports/333426 Log: - update to 2.16.0 - staging support - autoplist changelog: http://docs.pythonboto.org/en/latest/releasenotes/v2.16.0.html Added: head/devel/py-boto/files/ head/devel/py-boto/files/patch-setup.py (contents, props changed) Deleted: head/devel/py-boto/pkg-plist Modified: head/devel/py-boto/Makefile (contents, props changed) head/devel/py-boto/distinfo (contents, props changed) Modified: head/devel/py-boto/Makefile ============================================================================== --- head/devel/py-boto/Makefile Sun Nov 10 18:59:47 2013 (r333425) +++ head/devel/py-boto/Makefile Sun Nov 10 19:16:24 2013 (r333426) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= boto -PORTVERSION= 2.14.0 +PORTVERSION= 2.16.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,8 +14,8 @@ LICENSE= MIT USE_PYTHON= 2 USE_PYDISTUTILS=easy_install +PYDISTUTILS_AUTOPLIST=yes CONFLICTS= p5-Net-Amazon-Route53-[0-9]* -NO_STAGE= yes .include Modified: head/devel/py-boto/distinfo ============================================================================== --- head/devel/py-boto/distinfo Sun Nov 10 18:59:47 2013 (r333425) +++ head/devel/py-boto/distinfo Sun Nov 10 19:16:24 2013 (r333426) @@ -1,2 +1,2 @@ -SHA256 (boto-2.14.0.tar.gz) = 6e26cb54229085bec996ce2330e883f8ac696f11d6d9a398fa127788d4454428 -SIZE (boto-2.14.0.tar.gz) = 1073405 +SHA256 (boto-2.16.0.tar.gz) = 345b9766e924995d70799af2beecd5bb5937e15c9201f5ed9f0b1ee5edf09e6d +SIZE (boto-2.16.0.tar.gz) = 5700070 Added: head/devel/py-boto/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-boto/files/patch-setup.py Sun Nov 10 19:16:24 2013 (r333426) @@ -0,0 +1,11 @@ +--- ./setup.py.orig 2013-07-23 04:02:25.000000000 +0400 ++++ ./setup.py 2013-11-10 22:58:50.000000000 +0400 +@@ -27,7 +27,7 @@ + + try: + from setuptools import setup +- extra = dict(test_suite="tests.test.suite", include_package_data=True) ++ extra = dict(test_suite="tests.test.suite", include_package_data=True, zip_safe=False) + except ImportError: + from distutils.core import setup + extra = {}