From owner-svn-ports-head@FreeBSD.ORG Sun Nov 10 18:40:50 2013 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 ESMTP id 41372E37; Sun, 10 Nov 2013 18:40:50 +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 1459529D9; Sun, 10 Nov 2013 18:40:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAAIen0X088467; Sun, 10 Nov 2013 18:40:49 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAAIenM8088463; Sun, 10 Nov 2013 18:40:49 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201311101840.rAAIenM8088463@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Sun, 10 Nov 2013 18:40:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333423 - in head/www/py-w3lib: . 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 18:40:50 -0000 Author: rm Date: Sun Nov 10 18:40:48 2013 New Revision: 333423 URL: http://svnweb.freebsd.org/changeset/ports/333423 Log: - update to 1.5 - convert to setuptools (following upstream change) - update python version (works with 3.x via py-six) - add staging - use PYDISTUTILS_AUTOPLIST Added: head/www/py-w3lib/files/ head/www/py-w3lib/files/patch-setup.py (contents, props changed) Deleted: head/www/py-w3lib/pkg-plist Modified: head/www/py-w3lib/Makefile head/www/py-w3lib/distinfo (contents, props changed) head/www/py-w3lib/pkg-descr (contents, props changed) Modified: head/www/py-w3lib/Makefile ============================================================================== --- head/www/py-w3lib/Makefile Sun Nov 10 18:16:15 2013 (r333422) +++ head/www/py-w3lib/Makefile Sun Nov 10 18:40:48 2013 (r333423) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= w3lib -PORTVERSION= 1.3 +PORTVERSION= 1.5 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,8 +11,10 @@ COMMENT= Library of web-related function LICENSE= BSD -USE_PYTHON= -2.7 -USE_PYDISTUTILS=yes +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six + +USE_PYTHON= yes +USE_PYDISTUTILS=easy_install +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/www/py-w3lib/distinfo ============================================================================== --- head/www/py-w3lib/distinfo Sun Nov 10 18:16:15 2013 (r333422) +++ head/www/py-w3lib/distinfo Sun Nov 10 18:40:48 2013 (r333423) @@ -1,2 +1,2 @@ -SHA256 (w3lib-1.3.tar.gz) = d3a02099256646971dd52fbd0cb9c705e945373c69d5b5722b2d840db83aeeec -SIZE (w3lib-1.3.tar.gz) = 8535 +SHA256 (w3lib-1.5.tar.gz) = f611f0a21327aa93af09ef45c04fa87849b697e60157c1fc24bbb90796d290a6 +SIZE (w3lib-1.5.tar.gz) = 9416 Added: head/www/py-w3lib/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-w3lib/files/patch-setup.py Sun Nov 10 18:40:48 2013 (r333423) @@ -0,0 +1,8 @@ +--- ./setup.py.orig 2013-11-09 12:00:10.000000000 +0400 ++++ ./setup.py 2013-11-10 22:16:19.000000000 +0400 +@@ -24,4 +24,5 @@ + 'Topic :: Internet :: WWW/HTTP', + ], + install_requires=['six >= 1.4.1'], ++ zip_safe = False, + ) Modified: head/www/py-w3lib/pkg-descr ============================================================================== --- head/www/py-w3lib/pkg-descr Sun Nov 10 18:16:15 2013 (r333422) +++ head/www/py-w3lib/pkg-descr Sun Nov 10 18:40:48 2013 (r333423) @@ -11,4 +11,4 @@ This is a Python library of web-related - sanitize urls (like browsers do) - extract arguments from urls -WWW: http://github.com/scrapy/w3lib +WWW: http://github.com/scrapy/w3lib/