14
0

- Update to 2.0.1:

- Sorry, no changelog.
- Regenerate spec file with py2pack.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=4
This commit is contained in:
Alexandre Rogoski
2011-07-08 11:24:36 +00:00
committed by Git OBS Bridge
parent 3511c1f59c
commit 81f88d50bc
4 changed files with 44 additions and 26 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package
# spec file for package python-selenium
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2011 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
@@ -11,45 +11,56 @@
# 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: 1.0.3
Release: 1
Version: 2.0.1
Release: 0
Url: http://code.google.com/p/selenium/
Summary: Python bindings for Selenium
License: Apache 2.0
Summary: A Python language binding for Selenium RC
Url: http://www.openqa.org
Group: Development/Libraries/Python
Source: selenium-%{version}.tar.gz
BuildRequires: python-devel
BuildRequires: python-setuptools
Group: Development/Languages/Python
Source: selenium-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{py_requires}
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
BuildRequires: python-devel
BuildRequires: python-distribute
Requires: python-rdflib
%if 0%{?suse_version}
%py_requires
%if 0%{?suse_version} > 1110
BuildArch: noarch
%endif
%endif
%description
Selenium Python Client Driver is a Python language binding for Selenium Remote Control.
Selenium Python Client Driver is a Python language binding for Selenium Remote
Control (version 1.0 and 2.0).
Author:
--------
Maik Roeder <roeder@berg.net>
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
export CFLAGS="%{optflags}"
python setup.py build
%install
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%clean
rm -rf %{buildroot}
%files -f INSTALLED_FILES
%defattr(-,root,root)
%files
%defattr(-,root,root,-)
%{python_sitelib}/*
%changelog