diff --git a/.python-selenium.metadata b/.python-selenium.metadata new file mode 100644 index 0000000..ce4a3aa --- /dev/null +++ b/.python-selenium.metadata @@ -0,0 +1 @@ +383f2c8d7b05a1083c65fec58580a5f2081d4482 SOURCES/selenium-3.141.0.tar.gz diff --git a/SOURCES/selenium-use-without-bundled-libs.patch b/SOURCES/selenium-use-without-bundled-libs.patch new file mode 100644 index 0000000..9ebef7e --- /dev/null +++ b/SOURCES/selenium-use-without-bundled-libs.patch @@ -0,0 +1,22 @@ +diff --git a/py/selenium/webdriver/firefox/firefox_binary.py b/py/selenium/webdriver/firefox/firefox_binary.py +index fdd1fd3..0025e2f 100644 +--- a/py/selenium/webdriver/firefox/firefox_binary.py ++++ b/py/selenium/webdriver/firefox/firefox_binary.py +@@ -192,11 +192,12 @@ class FirefoxBinary(object): + if not os.path.exists(library_path): + os.makedirs(library_path) + import shutil +- shutil.copy(os.path.join( +- os.path.dirname(__file__), +- path, +- self.NO_FOCUS_LIBRARY_NAME), +- library_path) ++ try: ++ shutil.copy(os.path.join(os.path.dirname(__file__), path, ++ self.NO_FOCUS_LIBRARY_NAME), ++ library_path) ++ except: ++ pass # A Man's Gotta Do ... + built_path += library_path + ":" + + return built_path diff --git a/SPECS/python-selenium.spec b/SPECS/python-selenium.spec new file mode 100644 index 0000000..04cec9d --- /dev/null +++ b/SPECS/python-selenium.spec @@ -0,0 +1,213 @@ +## START: Set by rpmautospec +## (rpmautospec version 0.3.0) +%define autorelease(e:s:pb:n) %{?-p:0.}%{lua: + release_number = 1; + base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}")); + print(release_number + base_release_number - 1); +}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}} +## END: Set by rpmautospec + +%global srcname selenium + +Name: python-%{srcname} +Version: 3.141.0 +Release: %autorelease +Summary: Python bindings for Selenium +License: ASL 2.0 +URL: http://docs.seleniumhq.org/ +Source: %pypi_source + +BuildArch: noarch + +Patch1: selenium-use-without-bundled-libs.patch + +%description +The selenium package is used automate web browser interaction from Python. + +Several browsers/drivers are supported (Firefox, Chrome, Internet Explorer, +PhantomJS), as well as the Remote protocol. + + +%package -n python3-%{srcname} +Summary: Python bindings for Selenium + +BuildRequires: pyproject-rpm-macros +BuildRequires: python3-devel +Requires: python3-rdflib +BuildArch: noarch + +%description -n python3-%{srcname} +The selenium package is used automate web browser interaction from Python. + +Several browsers/drivers are supported (Firefox, Chrome, Internet Explorer, +PhantomJS), as well as the Remote protocol. + +%prep +%autosetup -p2 -n %{srcname}-%{version} +find . -type f -name "*.py" -exec sed -i '1{/^#!/d;}' {} \; + +%generate_buildrequires +%pyproject_buildrequires + + +%build +%pyproject_wheel + + +%install +%pyproject_install +%pyproject_save_files %{srcname} +sed -ie '/x_ignore_nofocus.so$/d' %pyproject_files +rm -f %{buildroot}%{python3_sitelib}/selenium/webdriver/firefox/amd64/x_ignore_nofocus.so +rm -f %{buildroot}%{python3_sitelib}/selenium/webdriver/firefox/x86/x_ignore_nofocus.so + + +%files -n python3-%{srcname} -f %pyproject_files +%license LICENSE +%doc CHANGES README.rst + + +%changelog +* Sun Oct 02 2022 Michel Alexandre Salim 3.141.0-1 +- Update to 3.141.0 + +* Sun Oct 2 2022 Charalampos Stratakis - 3.14.0-11 +- Convert to pyproject macros + +* Fri Jul 22 2022 Fedora Release Engineering - 3.14.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Mon Jun 13 2022 Python Maint - 3.14.0-9 +- Rebuilt for Python 3.11 + +* Fri Jan 21 2022 Fedora Release Engineering - 3.14.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Jul 23 2021 Fedora Release Engineering - 3.14.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Thu Jun 03 2021 Python Maint - 3.14.0-6 +- Rebuilt for Python 3.10 + +* Wed Jan 27 2021 Fedora Release Engineering - 3.14.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Wed Jul 29 2020 Fedora Release Engineering - 3.14.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sat May 23 2020 Miro Hrončok - 3.14.0-3 +- Rebuilt for Python 3.9 + +* Thu Jan 30 2020 Fedora Release Engineering - 3.14.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Tue Jan 07 2020 Matthias Runge - 3.14.0-1 +- update to 3.14 (rhbz#1595006) + +* Thu Oct 03 2019 Miro Hrončok - 3.12.0-8 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Fri Aug 16 2019 Miro Hrončok - 3.12.0-7 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 3.12.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sat Feb 02 2019 Fedora Release Engineering - 3.12.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Jan 04 2019 Miro Hrončok - 3.12.0-4 +- Remove python2 subpackage + +* Sat Jul 14 2018 Fedora Release Engineering - 3.12.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Sat Jun 16 2018 Miro Hrončok - 3.12.0-2 +- Rebuilt for Python 3.7 + +* Wed May 09 2018 Matthias Runge - 3.12.0-1 +- update to 3.12.0 (rhbz#1431116) + +* Wed Feb 28 2018 Iryna Shcherbina - 3.7.0-4 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + +* Fri Feb 09 2018 Fedora Release Engineering - 3.7.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Tue Jan 16 2018 Troy Dawson - 3.7.0-2 +- Update conditionals + +* Mon Nov 27 2017 Lumír Balhar - 3.7.0-1 +- New upstream version + +* Thu Jul 27 2017 Fedora Release Engineering - 2.53.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 2.53.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Dec 12 2016 Charalampos Stratakis - 2.53.6-3 +- Rebuild for Python 3.6 + +* Tue Jul 19 2016 Fedora Release Engineering - 2.53.6-2 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Mon Jul 04 2016 Matthias Runge - 2.53.6-1 +- upstream version 2.53.6 + +* Wed Jun 15 2016 Matthias Runge - 2.53.5-1 +- upstream version 2.53.5 + +* Fri Jun 10 2016 Matthias Runge - 2.53.4-1 +- upstream version 2.53.4 + +* Wed May 18 2016 Matthias Runge - 2.53.2-1 +- update to 2.53.2 + +* Fri Feb 12 2016 Matthias Runge - 2.52.0-1 +- update to 2.52.0 + +* Thu Feb 04 2016 Fedora Release Engineering - 2.49.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Mon Jan 18 2016 Matthias Runge - 2.49.0-1 +- update to 2.49.0 (rhbz#1298407) +- spec cleanup, add py2 subpackage + +* Wed Nov 04 2015 Robert Kuska - 2.48.0-2 +- Rebuilt for Python3.5 rebuild + +* Wed Oct 14 2015 Dhiru Kholia - 2.48.0-1 +- update to 2.48.0 + +* Thu Jun 18 2015 Fedora Release Engineering - 2.45.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Mar 02 2015 Matthias Runge - 2.45.0-1 +- update to 2.45.0 to fix compat issues with Firefox 36 (rhbz#1196922) + +* Mon Feb 23 2015 Matthias Runge - 2.44.0-1 +- update to 2.44.0 + +* Mon Oct 20 2014 Matthias Runge - 2.43.0-1 +- update to 2.43.0 +- correct deps for py3 version (rhbz#1116470) + +* Sat Jun 07 2014 Fedora Release Engineering - 2.42.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Fri May 30 2014 Matthias Runge - 2.42.1-1 +- rebuilt for python3.4 feature +- update to 2.42.1 +- minor specs cleanup + +* Fri Apr 04 2014 Dhiru Kholia - 2.41.0-1 +- update to new upstream version + +* Thu Feb 27 2014 Dhiru Kholia - 2.40.0-2 +- fixed shebangs (BZ #1070125) + +* Wed Feb 26 2014 Dhiru Kholia - 2.40.0-1 +- initial version +