From owner-svn-ports-head@FreeBSD.ORG Wed Dec 18 19:56:37 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 ESMTPS id DC44B874; Wed, 18 Dec 2013 19:56:37 +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 AE3E01EA3; Wed, 18 Dec 2013 19:56:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBIJub8c046976; Wed, 18 Dec 2013 19:56:37 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBIJuaSn046972; Wed, 18 Dec 2013 19:56:36 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201312181956.rBIJuaSn046972@svn.freebsd.org> From: William Grzybowski Date: Wed, 18 Dec 2013 19:56:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336858 - in head/www: . py-splinter 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.17 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: Wed, 18 Dec 2013 19:56:37 -0000 Author: wg Date: Wed Dec 18 19:56:36 2013 New Revision: 336858 URL: http://svnweb.freebsd.org/changeset/ports/336858 Log: devel/py-splinter: Browser abstraction for web acceptance testing Splinter is an open source tool for testing web applications using Python. It lets you automate browser actions, such as visiting URLs and interacting with their items. WWW: http://splinter.cobrateam.info/ Added: head/www/py-splinter/ head/www/py-splinter/Makefile (contents, props changed) head/www/py-splinter/distinfo (contents, props changed) head/www/py-splinter/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Dec 18 18:58:09 2013 (r336857) +++ head/www/Makefile Wed Dec 18 19:56:36 2013 (r336858) @@ -1671,6 +1671,7 @@ SUBDIR += py-selenium SUBDIR += py-slimmer SUBDIR += py-slumber + SUBDIR += py-splinter SUBDIR += py-surl SUBDIR += py-textile SUBDIR += py-tgwebservices Added: head/www/py-splinter/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-splinter/Makefile Wed Dec 18 19:56:36 2013 (r336858) @@ -0,0 +1,24 @@ +# Created by: William Grzybowski +# $FreeBSD$ + +PORTNAME= splinter +PORTVERSION= 0.5.4 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Browser abstraction for web acceptance testing + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}selenium>=2.33:${PORTSDIR}/www/py-selenium \ + ${PYTHON_PKGNAMEPREFIX}zope.testbrowser>=4.0.2:${PORTSDIR}/devel/py-zope.testbrowser \ + ${PYTHON_PKGNAMEPREFIX}lxml>0:${PORTSDIR}/devel/py-lxml \ + ${PYTHON_PKGNAMEPREFIX}cssselect>0:${PORTSDIR}/www/py-cssselect + +USE_PYTHON= yes +USE_PYDISTUTILS=yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/www/py-splinter/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-splinter/distinfo Wed Dec 18 19:56:36 2013 (r336858) @@ -0,0 +1,2 @@ +SHA256 (splinter-0.5.4.tar.gz) = cd45b67f8ae1c98a69ac840c0c896cff914f65ddf05ea8d048087ce892bb9b03 +SIZE (splinter-0.5.4.tar.gz) = 14390 Added: head/www/py-splinter/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-splinter/pkg-descr Wed Dec 18 19:56:36 2013 (r336858) @@ -0,0 +1,5 @@ +Splinter is an open source tool for testing web applications using Python. +It lets you automate browser actions, such as visiting URLs and interacting +with their items. + +WWW: http://splinter.cobrateam.info/