From owner-svn-ports-head@FreeBSD.ORG Mon Jun 10 01:48:21 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 10D1DB2E; Mon, 10 Jun 2013 01:48:21 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id DBFF71352; Mon, 10 Jun 2013 01:48:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5A1mKMQ062098; Mon, 10 Jun 2013 01:48:20 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5A1mK0t062094; Mon, 10 Jun 2013 01:48:20 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201306100148.r5A1mK0t062094@svn.freebsd.org> From: Kubilay Kocak Date: Mon, 10 Jun 2013 01:48:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r320430 - in head/www/py-bleach: . 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: Mon, 10 Jun 2013 01:48:21 -0000 Author: koobs Date: Mon Jun 10 01:48:19 2013 New Revision: 320430 URL: http://svnweb.freebsd.org/changeset/ports/320430 Log: www/py-bleach: Update to 1.2.2 - Update to 1.2.2 - Pin html5lib version in RUN_DEPENDS - Make regression-test target use test command - Patch setup.py: Add test_suite integration (and report upstream) Changes: - Pin html5lib to version 0.95 for now due to major API break. Added: head/www/py-bleach/files/ head/www/py-bleach/files/patch-setup.py (contents, props changed) Modified: head/www/py-bleach/Makefile head/www/py-bleach/distinfo Modified: head/www/py-bleach/Makefile ============================================================================== --- head/www/py-bleach/Makefile Mon Jun 10 01:44:30 2013 (r320429) +++ head/www/py-bleach/Makefile Mon Jun 10 01:48:19 2013 (r320430) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bleach -PORTVERSION= 1.2.1 +PORTVERSION= 1.2.2 CATEGORIES= www python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,7 +11,7 @@ COMMENT= An easy whitelist-based HTML-sa LICENSE= BSD -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}html5lib>=0.95:${PORTSDIR}/www/py-html5lib +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}html5lib==0.95:${PORTSDIR}/www/py-html5lib USE_GITHUB= yes USE_PYTHON= yes @@ -19,12 +19,12 @@ USE_PYDISTUTILS= easy_install GH_ACCOUNT= jsocol GH_TAGNAME= v${PORTVERSION} -GH_COMMIT= ab7c8b3 +GH_COMMIT= baf1eac TEST_DEPENDS:= ${RUN_DEPENDS} \ nosetests:${PORTSDIR}/devel/py-nose \ regression-test: build - cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} nosetests - + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test + .include Modified: head/www/py-bleach/distinfo ============================================================================== --- head/www/py-bleach/distinfo Mon Jun 10 01:44:30 2013 (r320429) +++ head/www/py-bleach/distinfo Mon Jun 10 01:48:19 2013 (r320430) @@ -1,2 +1,2 @@ -SHA256 (bleach-1.2.1.tar.gz) = 5b61fb6369cea2e4aaf6cc34ec4de9bf658f69c16693fad2dfe8da6890ccb72a -SIZE (bleach-1.2.1.tar.gz) = 27318 +SHA256 (bleach-1.2.2.tar.gz) = 2e7a29881eff2b7f2aa9a24e052edcd296d12c1c206957cd8be9f9e140f266b0 +SIZE (bleach-1.2.2.tar.gz) = 27607 Added: head/www/py-bleach/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-bleach/files/patch-setup.py Mon Jun 10 01:48:19 2013 (r320430) @@ -0,0 +1,10 @@ +--- ./setup.py.orig 2013-06-10 11:19:04.719234114 +1000 ++++ ./setup.py 2013-06-10 11:19:34.305595246 +1000 +@@ -23,5 +23,6 @@ + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Software Development :: Libraries :: Python Modules', +- ] ++ ], ++ test_suite='nose.collector' + )