From owner-svn-ports-all@FreeBSD.ORG Tue Jun 23 18:12:47 2015 Return-Path: Delivered-To: svn-ports-all@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9CCDCA3D; Tue, 23 Jun 2015 18:12:47 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8AE731EB; Tue, 23 Jun 2015 18:12:47 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NIClaO075670; Tue, 23 Jun 2015 18:12:47 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5NICk53075664; Tue, 23 Jun 2015 18:12:46 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201506231812.t5NICk53075664@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Tue, 23 Jun 2015 18:12:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390439 - in head/www/py-funkload: . 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-all@freebsd.org X-Mailman-Version: 2.1.20 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: Tue, 23 Jun 2015 18:12:47 -0000 Author: rm Date: Tue Jun 23 18:12:46 2015 New Revision: 390439 URL: https://svnweb.freebsd.org/changeset/ports/390439 Log: www/py-funkload: update to 1.17.1 - update to 1.17.1 - remove bogus py-xml dependency - shorten COMMENT - limit python version to 2.x - update patch to setup.py to make it build (there is upstream issue [1]) [1] https://github.com/nuxeo/FunkLoad/issues/145 Approved by: lwhsu (maintainer, by email) Modified: head/www/py-funkload/Makefile head/www/py-funkload/distinfo head/www/py-funkload/files/patch-setup.py Modified: head/www/py-funkload/Makefile ============================================================================== --- head/www/py-funkload/Makefile Tue Jun 23 18:08:06 2015 (r390438) +++ head/www/py-funkload/Makefile Tue Jun 23 18:12:46 2015 (r390439) @@ -2,24 +2,22 @@ # $FreeBSD$ PORTNAME= funkload -PORTVERSION= 1.16.1 -PORTREVISION= 1 +PORTVERSION= 1.17.1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= lwhsu@FreeBSD.org -COMMENT= FunkLoad is a functional and load web tester +COMMENT= Functional and load web tester LICENSE= GPLv2 -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/docutils/__init__.py:${PORTSDIR}/textproc/py-docutils \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docutils>0:${PORTSDIR}/textproc/py-docutils \ ${LOCALBASE}/bin/gnuplot:${PORTSDIR}/math/gnuplot \ ${PYTHON_PKGNAMEPREFIX}webunit>=1.3.8:${PORTSDIR}/www/py-webunit \ - ${PYXML} \ tcpwatch.py:${PORTSDIR}/net/tcpwatch -USES= python -USE_PYTHON= distutils autoplist +USES= python:2 +USE_PYTHON= autoplist distutils .include Modified: head/www/py-funkload/distinfo ============================================================================== --- head/www/py-funkload/distinfo Tue Jun 23 18:08:06 2015 (r390438) +++ head/www/py-funkload/distinfo Tue Jun 23 18:12:46 2015 (r390439) @@ -1,2 +1,2 @@ -SHA256 (funkload-1.16.1.tar.gz) = e268a6209e3c225b1af7474031c10c3f92cd28ea8a1226facb5987cde026fb58 -SIZE (funkload-1.16.1.tar.gz) = 186031 +SHA256 (funkload-1.17.1.tar.gz) = f0518e9a306443cd03e573f80532bf4cbb014720c925403b6010a804783594da +SIZE (funkload-1.17.1.tar.gz) = 107796 Modified: head/www/py-funkload/files/patch-setup.py ============================================================================== --- head/www/py-funkload/files/patch-setup.py Tue Jun 23 18:08:06 2015 (r390438) +++ head/www/py-funkload/files/patch-setup.py Tue Jun 23 18:12:46 2015 (r390439) @@ -1,12 +1,20 @@ ---- setup.py.orig 2010-01-30 02:16:39.051847143 +0800 -+++ setup.py 2010-01-30 02:16:50.065356904 +0800 -@@ -149,9 +149,6 @@ - 'Topic :: System :: Monitoring', - ], - # setuptools specific keywords -- install_requires = ['webunit >= 1.3.8', -- 'docutils >= 0.3.7', -- 'setuptools'], - zip_safe=True, - package_data={'funkload': ['data/*', - 'demo/simple/*', 'demo/zope/*', +--- setup.py.orig 2015-05-06 10:37:24 UTC ++++ setup.py +@@ -21,8 +21,6 @@ + """FunkLoad package setup + + """ +-import ez_setup +-ez_setup.use_setuptools() + from setuptools import setup, find_packages + __version__ = '1.17.1' + +@@ -30,7 +28,7 @@ setup( + name="funkload", + version=__version__, + description="Functional and load web tester.", +- long_description=''.join(open('README.txt').readlines()), ++ long_description='', + author="Benoit Delbosc", + author_email="bdelbosc@nuxeo.com", + url="http://funkload.nuxeo.org/",