diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3faef0d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/beautifulsoup4-4.10.0.tar.gz diff --git a/.python-beautifulsoup4.metadata b/.python-beautifulsoup4.metadata new file mode 100644 index 0000000..22d9427 --- /dev/null +++ b/.python-beautifulsoup4.metadata @@ -0,0 +1 @@ +4fcafb012dd6dfad556dc144cffa64ee72ebe316 SOURCES/beautifulsoup4-4.10.0.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index fbdde9d..0000000 --- a/README.md +++ /dev/null @@ -1,2 +0,0 @@ -# python-beautifulsoup4 - diff --git a/SOURCES/nosieve.patch b/SOURCES/nosieve.patch new file mode 100644 index 0000000..ad2b8d2 --- /dev/null +++ b/SOURCES/nosieve.patch @@ -0,0 +1,11 @@ +diff -uNr beautifulsoup4-4.10.0.ORIG/setup.py beautifulsoup4-4.10.0/setup.py +--- beautifulsoup4-4.10.0.ORIG/setup.py 2022-02-14 15:37:56.703109224 +0000 ++++ beautifulsoup4-4.10.0/setup.py 2022-02-14 15:38:05.522210911 +0000 +@@ -19,7 +19,6 @@ + description="Screen-scraping library", + python_requires='>3.0.0', + install_requires=[ +- "soupsieve >1.2", + ], + long_description=long_description, + long_description_content_type="text/markdown", diff --git a/SPECS/python-beautifulsoup4.spec b/SPECS/python-beautifulsoup4.spec new file mode 100644 index 0000000..29519c8 --- /dev/null +++ b/SPECS/python-beautifulsoup4.spec @@ -0,0 +1,330 @@ +# Ciruclar dependency with soupsieve which must be disabled at times +%bcond_without soupsieve +%bcond_with tests + +%if 0%{?fedora} < 32 && 0%{?rhel} < 8 +%global py2 1 +%endif + +Name: python-beautifulsoup4 +Version: 4.10.0 +Release: 6%{?dist} +Summary: HTML/XML parser for quick-turnaround applications like screen-scraping +License: MIT +URL: http://www.crummy.com/software/BeautifulSoup/ +Source0: https://files.pythonhosted.org/packages/source/b/beautifulsoup4/beautifulsoup4-%{version}.tar.gz +Patch0: nosieve.patch +BuildArch: noarch +%if 0%{?py2} +BuildRequires: python2-devel >= 2.7 +# html5lib BR just for test coverage +%if %{with tests} +BuildRequires: python2-html5lib +%endif +BuildRequires: python2-setuptools +%if %{with soupsieve} +BuildRequires: python2-soupsieve +%endif +BuildRequires: python2-lxml +BuildRequires: /usr/bin/2to3 +BuildRequires: python2-tools +%endif +# html5lib BR just for test coverage +%if %{with tests} +BuildRequires: python3-html5lib +%endif +BuildRequires: python3-devel +BuildRequires: python3-setuptools +%if %{with soupsieve} +BuildRequires: python3-soupsieve +%endif +BuildRequires: python3-lxml + +%global _description %{expand: +Beautiful Soup is a Python HTML/XML parser designed for quick +turnaround projects like screen-scraping. Three features make it +powerful: + +Beautiful Soup won't choke if you give it bad markup. + +Beautiful Soup provides a few simple methods and Pythonic idioms for +navigating, searching, and modifying a parse tree. + +Beautiful Soup automatically converts incoming documents to Unicode +and outgoing documents to UTF-8. + +Beautiful Soup parses anything you give it. + +Valuable data that was once locked up in poorly-designed websites is +now within your reach. Projects that would have taken hours take only +minutes with Beautiful Soup.} + +%description %_description + +%if 0%{?py2} +%package -n python2-beautifulsoup4 +Summary: %summary +Requires: python2-lxml +%if %{with soupsieve} +Requires: python2-soupsieve +%endif +%{?python_provide:%python_provide python2-beautifulsoup4} + +%description -n python2-beautifulsoup4 %_description +%endif + +%package -n python3-beautifulsoup4 +Summary: %summary +Requires: python3-lxml +%if %{with soupsieve} +Requires: python3-soupsieve +%endif +Obsoletes: python3-BeautifulSoup < 1:3.2.1-2 +%{?python_provide:%python_provide python3-beautifulsoup4} + +%description -n python3-beautifulsoup4 %_description + +%prep +%setup -q -n beautifulsoup4-%{version} +%if %{without soupsieve} +%patch0 -p1 +%endif + +rm -rf %{py3dir} && cp -a . %{py3dir} + + +%build +%{?py2:%{py2_build}} +pushd %{py3dir} +2to3 --write --nobackups . +%{py3_build} + +%install +%{?py2:%{py2_install}} +pushd %{py3dir} +%{py3_install} + +%check +%py3_check_import bs4 + +%if %{with tests} +%{?py2:%{__python2} -m unittest discover -s bs4 || : } +pushd %{py3dir} +%{__python3} -m unittest discover -s bs4 || : +%endif + +%if 0%{?py2} +%files -n python2-beautifulsoup4 +%license COPYING.txt +%doc NEWS.txt TODO.txt +%{python2_sitelib}/beautifulsoup4-%{version}*.egg-info +%{python2_sitelib}/bs4 +%endif + +%files -n python3-beautifulsoup4 +%license COPYING.txt +%doc NEWS.txt TODO.txt +%{python3_sitelib}/beautifulsoup4-%{version}*.egg-info +%{python3_sitelib}/bs4 + +%changelog +* Fri Jun 30 2023 Arkady L. Shane - 4.10.0-6 +- Rebuilt for MSVSphere 9.2 + +* Mon Feb 14 2022 Steve Traylen - 4.10.0-6 +- Build with soupsieve dependency to close circular dependency + +* Mon Feb 14 2022 Steve Traylen - 4.10.0-5 +- Build without soupsieve dependency to break circular dependency + +* Sun Feb 13 2022 Terje Rosten - 4.10.0-4 +- Rebuild to get fc36/rawhide split + +* Tue Feb 08 2022 Steve Traylen - 4.10.0-3 +- New bcond flag to disable/enable soupsieve dependency +- New bcond flag to disable/enable testing +- Test module loading in check section + +* Fri Jan 21 2022 Fedora Release Engineering - 4.10.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Sep 09 2021 Terje Rosten - 4.10.0-1 +- 4.10.0 + +* Fri Jul 23 2021 Fedora Release Engineering - 4.9.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Thu Jun 03 2021 Python Maint - 4.9.3-3 +- Rebuilt for Python 3.10 + +* Wed Jan 27 2021 Fedora Release Engineering - 4.9.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sun Oct 11 2020 Terje Rosten - 4.9.3-1 +- 4.9.3 + +* Tue Jul 28 2020 Fedora Release Engineering - 4.9.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sun Jun 07 2020 Terje Rosten - 4.9.1-1 +- 4.9.1 + +* Sat May 23 2020 Miro Hrončok - 4.9.0-2 +- Rebuilt for Python 3.9 + +* Mon Apr 13 2020 Terje Rosten - 4.9.0-1 +- 4.9.0 + +* Thu Jan 30 2020 Fedora Release Engineering - 4.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Sun Jan 19 2020 Terje Rosten - 4.8.2-1 +- 4.8.2 + +* Mon Dec 02 2019 Terje Rosten - 4.8.1-1 +- 4.8.1 + +* Tue Sep 03 2019 Zbigniew Jędrzejewski-Szmek - 4.8.0-3 +- Subpackage python2-beautifulsoup4 has been removed (#1748299) + +* Mon Aug 19 2019 Zbigniew Jędrzejewski-Szmek - 4.8.0-2 +- Rebuilt for Python 3.8 (again) + +* Sun Aug 18 2019 Terje Rosten - 4.8.0-1 +- 4.8.0 + +* Sat Aug 17 2019 Miro Hrončok - 4.6.3-4 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 4.6.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sat Feb 02 2019 Fedora Release Engineering - 4.6.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Mon Aug 27 2018 Terje Rosten - 4.6.3-1 +- 4.6.3 + +* Mon Jul 30 2018 Terje Rosten - 4.6.1-1 +- 4.6.1 + +* Fri Jul 13 2018 Fedora Release Engineering - 4.6.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Sun Jun 17 2018 Miro Hrončok - 4.6.0-7 +- Rebuilt for Python 3.7 + +* Wed Feb 07 2018 Terje Rosten - 4.6.0-6 +- Clean up + +* Wed Feb 07 2018 Iryna Shcherbina - 4.6.0-5 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + +* Fri Sep 29 2017 Troy Dawson - 4.6.0-4 +- Cleanup spec file conditionals + +* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek - 4.6.0-3 +- Python 2 binary package renamed to python2-beautifulsoup4 + See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 + +* Thu Jul 27 2017 Fedora Release Engineering - 4.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon May 08 2017 Terje Rosten - 4.6.0-1 +- 4.6.0 + +* Sat Feb 11 2017 Fedora Release Engineering - 4.5.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Jan 04 2017 Terje Rosten - 4.5.3-1 +- 4.5.3 + +* Mon Dec 19 2016 Miro Hrončok - 4.5.1-3 +- Un-bootstrap for Python 3.6 + +* Mon Dec 19 2016 Miro Hrončok - 4.5.1-2 +- Rebuild for Python 3.6 + +* Tue Aug 09 2016 Terje Rosten - 4.5.1-1 +- 4.5.1 + +* Tue Jul 26 2016 Ville Skyttä - 4.5.0-1 +- Update to 4.5.0 +- Mark COPYING.txt as %%license +- Don't require html5lib +- Require lxml on EL too + +* Tue Jul 19 2016 Fedora Release Engineering - 4.4.1-4 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Thu Feb 04 2016 Fedora Release Engineering - 4.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Tue Nov 10 2015 Fedora Release Engineering - 4.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Sat Oct 03 2015 Terje Rosten - 4.4.1-1 +- 4.4.1 + +* Sat Jul 04 2015 Terje Rosten - 4.4.0-1 +- 4.4.0 + +* Thu Jun 18 2015 Fedora Release Engineering - 4.3.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 4.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Wed May 14 2014 Bohuslav Kabrda - 4.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 + +* Thu Oct 17 2013 Terje Rosten - 4.3.2-1 +- 4.3.2 + +* Mon Aug 19 2013 Terje Rosten - 4.3.1-1 +- 4.3.1 + +* Sun Aug 04 2013 Fedora Release Engineering - 4.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Sat Jun 29 2013 Terje Rosten - 4.2.1-1 +- 4.2.1 + +* Mon May 27 2013 Terje Rosten - 4.2.0-1 +- 4.2.0 + +* Tue Mar 19 2013 Ralph Bean - 4.1.3-3 +- Don't include python-lxml for el6. +- Conditionalize python3 support. + +* Thu Feb 14 2013 Fedora Release Engineering - 4.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Mon Dec 03 2012 Terje Rosten - 4.1.3-1 +- 4.1.3 + +* Sat Aug 04 2012 David Malcolm - 4.1.1-5 +- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3 + +* Sun Jul 22 2012 Terje Rosten - 4.1.1-4 +- Move python3 req to sub package + +* Sat Jul 21 2012 Fedora Release Engineering - 4.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Jul 10 2012 Terje Rosten - 4.1.1-2 +- License is MIT +- Remove old cruft +- Fix obsolete + +* Mon Jul 09 2012 Terje Rosten - 4.1.1-1 +- 4.1.1 +- Obsolete the old py3-bs4 from bs3 package + +* Mon May 28 2012 Terje Rosten - 4.0.5-1 +- 4.0.5 + +* Sat Mar 24 2012 Terje Rosten - 4.0.1-1 +- initial package based on python-BeautifulSoup. +