dev-python/robotframework-selenium2library: version bump to 1.7.4

This commit is contained in:
Tim Harder
2016-08-21 14:54:55 -04:00
parent d5e73dc6a7
commit cdafefe7ee
2 changed files with 42 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST robotframework-selenium2library-1.6.0.tar.gz 220553 SHA256 9e72fba2410e575434d6b5c3614950ebb1e807cc3e10d31702f868b26ee64dab SHA512 bb35490a8b9630451dfed0dc4695df488b177eafe356084d77e636b28240bd26a3dd496a6520e54a0fa01c0c77102e9455f4f612cd8a7ef6327cb05b4d359aee WHIRLPOOL 5c02616d9e8e7ef5653111cb1a85f135655af7126624b0aa94a944c694663edecae515d3286d2109ca4f4081ccc25d7f2352808509899375f483bf947430fd34
DIST robotframework-selenium2library-1.7.2.tar.gz 234720 SHA256 a38df7767725883c9a7e8bb292ecc4688d997cc73aa6e1b2d4035bf49a9d0154 SHA512 9f6cdad1435b4b0b3df11d029822dbdcc38a7f6563410855529ef45a71083fdd4e057be8f14d10a21fb1f0fa84179f3c42b6299565c5d31592305326ef73028e WHIRLPOOL 756be2ee0415a97a32ba789599e6b4d529149a9fb06315c05c270a61988aecbcf572102bf4856dc5e5352f06af5eb67e394eb382c8fb1dcc55b9a38364e122ac
DIST robotframework-selenium2library-1.7.4.tar.gz 234681 SHA256 4332e3021c6e4ba4a04f4dd99c4fb970315d9fc0fe31bcb62aad2fe833ad9400 SHA512 f90abc2687e1dbbb522a8e6a928bb5fef3b957b7d96c8594117706acd09db5c8bcd6e8d89ca621db76d7bf49e0b274ca70e727737adc237e928f2cdfc83212ab WHIRLPOOL c06ca1684f5736945c1bc9a8b620678fe4a5dc8bd50ed8420363e4209aaaec4d4c93f583303b345e15832ba04dac454d4d02ba850a5081342724590f38e3960c

View File

@@ -0,0 +1,41 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Web testing library for Robot Framework"
HOMEPAGE="https://github.com/rtomac/robotframework-selenium2library/
https://pypi.python.org/pypi/robotframework-selenium2library/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples doc"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND=">=dev-python/selenium-2.32.0[${PYTHON_USEDEP}]
>=dev-python/decorator-3.3.2[${PYTHON_USEDEP}]
>=dev-python/robotframework-2.6.0[${PYTHON_USEDEP}]
>=dev-python/docutils-0.8.1[${PYTHON_USEDEP}]"
src_prepare() {
default
# don't use bundled setuptools
sed -e '/use_setuptools()/d' \
-e '/ez_setup/d' \
-i setup.py || die
}
python_install_all() {
local DOCS=( CHANGES.rst README.rst )
use doc && local HTML_DOCS=( doc/Selenium2Library.html )
use examples && dodoc -r demo
distutils-r1_python_install_all
}