14
0
Files
python-selenium/python-selenium.spec
Alexandre Rogoski 48a68bbc38 - Update to 2.21.1:
* focusmanager.testmode messes with native events, removing it.
- Aditional changes from 2.21:
  * Local File upload capabilities for non-remote browser 
  * Adding maximize_window api call
  * Updating default firefox profile to set focusmanager.testmode to
    true see https://bugzilla.mozilla.org/show_bug.cgi?id=704583
  * bugs fixed: 3506, 3528, 3607

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=27
2012-04-12 01:52:02 +00:00

63 lines
2.2 KiB
RPMSpec

#
# spec file for package python-selenium
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
Name: python-selenium
Version: 2.21.1
Release: 0
Url: http://code.google.com/p/selenium/
Summary: Python bindings for Selenium
License: Apache-2.0
Group: Development/Languages/Python
Source: selenium-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: python-devel
BuildRequires: python-distribute
Requires: python-rdflib
%if 0%{?suse_version}
%py_requires
ExclusiveArch: %ix86 x86_64
%endif
%description
Selenium Python Client Driver is a Python language binding for Selenium Remote
Control (version 1.0 and 2.0).
Currently the remote protocol, Firefox and Chrome for Selenium 2.0 are
supported, as well as the Selenium 1.0 bindings. As work will progresses we'll
add more "native" drivers.
%prep
%setup -q -n selenium-%{version}
%build
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
rm -r %{buildroot}%{python_sitelib}/selenium/webdriver/ie/{win32,x64}/IEDriver.dll # Remove unused Windows DLLs
rm -r %{buildroot}%{python_sitelib}/selenium/webdriver/firefox/{amd64,x86}/x_ignore_nofocus.so # Don't install binary Firefox extension
%files
%defattr(-,root,root,-)
%doc COPYING README.md
%{python_sitelib}/*
%changelog