32 lines
1,005 B
Bash
32 lines
1,005 B
Bash
|
# Copyright 1999-2013 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/robotframework-selenium2library/robotframework-selenium2library-1.4.0.ebuild,v 1.1 2013/09/07 20:31:10 radhermit Exp $
|
||
|
|
||
|
EAPI=5
|
||
|
PYTHON_COMPAT=( python{2_6,2_7} )
|
||
|
|
||
|
inherit distutils-r1
|
||
|
|
||
|
DESCRIPTION="Web testing library for Robot Framework"
|
||
|
HOMEPAGE="https://github.com/rtomac/robotframework-selenium2library/
|
||
|
http://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"
|
||
|
|
||
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
||
|
RDEPEND=">=dev-python/selenium-2.12.0[${PYTHON_USEDEP}]
|
||
|
>=dev-python/decorator-3.3.2[${PYTHON_USEDEP}]
|
||
|
>=dev-python/robotframework-2.6.0[${PYTHON_USEDEP}]"
|
||
|
|
||
|
DOCS=( BUILD.rst CHANGES.rst README.rst )
|
||
|
|
||
|
src_prepare() {
|
||
|
# don't use bundled setuptools
|
||
|
sed -e '/use_setuptools()/d' \
|
||
|
-e '/ez_setup/d' \
|
||
|
-i setup.py || die
|
||
|
}
|