15
0
Files
python-beautifulsoup4/python-beautifulsoup4.spec
Markéta Machová 4f2796afa6 Accepting request 1292520 from home:bnavigator:branches:devel:languages:python:numeric
- Update to 4.13.4
  * If you pass a function as the first argument to a find* method,
    the function will only ever be called once per tag, with the
    Tag object as the argument. Starting in 4.13.0, there were
    cases where the function would be called with a Tag object and
    then called again with the name of the tag. [bug=2106435]
  * Added a passthrough implementation for
    NavigableString.__getitem__ which gives a more helpful
    exception if the user tries to treat it as a Tag and access its
    HTML attributes.
  * Fixed a bug that caused an exception when unpickling the result
    of parsing certain invalid markup with lxml as the tree
    builder. [bug=2103126]
  * Converted the AUTHORS file to UTF-8 for PEP8 compliance.
    [bug=2107405]
- Release 4.13.3 (20250204)
  * Modified the 4.13.2 change slightly to restore backwards
    compatibility. Specifically, calling a find_* method with no
    arguments should return the first Tag out of the iterator, not
    the first PageElement. [bug=2097333]
- Release 4.13.2 (20250204)
  * Gave ElementFilter the ability to explicitly say that it
    excludes every item in the parse tree. This is used internally
    in situations where the provided filters are logically
    inconsistent or match a value against the null set.
  
    Without this, it's not always possible to distinguish between a
    SoupStrainer that excludes everything and one that excludes
    nothing.

OBS-URL: https://build.opensuse.org/request/show/1292520
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-beautifulsoup4?expand=0&rev=100
2025-07-14 09:20:38 +00:00

116 lines
4.2 KiB
RPMSpec

#
# spec file for package python-beautifulsoup4
#
# Copyright (c) 2025 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
Name: python-beautifulsoup4
Version: 4.13.4
Release: 0
Summary: HTML/XML Parser for Quick-Turnaround Applications Like Screen-Scraping
License: MIT
URL: https://www.crummy.com/software/BeautifulSoup/
Source: https://files.pythonhosted.org/packages/source/b/beautifulsoup4/beautifulsoup4-%{version}.tar.gz
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module hatchling}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module soupsieve >= 1.2}
BuildRequires: %{python_module typing-extensions >= 4.0.0}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildRequires: python3-Sphinx
Requires: python-soupsieve >= 1.2
Requires: python-typing-extensions >= 4.0.0
Recommends: python-cchardet
Suggests: python-html5lib
Suggests: python-lxml
Provides: python-bs4 = %{version}-%{release}
# SECTION test requirements
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module cchardet}
BuildRequires: %{python_module html5lib}
BuildRequires: %{python_module lxml}
# /SECTION
BuildArch: noarch
%python_subpackages
%description
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. It yields a parse tree
that makes approximately as much sense as your original document. This is
usually good enough to collect the data you need and run away
* Beautiful Soup provides a few simple methods and Pythonic idioms for
navigating, searching, and modifying a parse tree: a toolkit for dissecting a
document and extracting what you need. You don't have to create a custom
parser for each application
* Beautiful Soup automatically converts incoming documents to Unicode and
outgoing documents to UTF-8. You don't have to think about encodings, unless
the document doesn't specify an encoding and Beautiful Soup can't autodetect
one. Then you just have to specify the original encoding
Beautiful Soup parses anything you give it, and does the tree traversal stuff
for you. You can tell it "Find all the links", or "Find all the links of class
externalLink", or "Find all the links whose urls match "foo.com", or "Find the
table heading that's got bold text, then give me that text."
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.
%if 0%{?suse_version} > 1500
%package -n python-beautifulsoup4-doc
Summary: Documentation for %{name}
Recommends: %{name} = %{version}
Provides: %{python_module beautifulsoup4-doc = %{version}-%{release}}
Provides: python3-beautifulsoup4-doc = %{version}-%{release}
Obsoletes: python3-beautifulsoup4-doc < %{version}-%{release}
%description -n python-beautifulsoup4-doc
Documentation and help files for %{name}
%endif
%prep
%autosetup -p1 -n beautifulsoup4-%{version}
%build
%pyproject_wheel
pushd doc && make html && rm _build/html/.buildinfo _build/html/objects.inv && popd
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
export LANG=en_US.UTF-8
donttest="test_rejected_input or test_rejected_markup"
%pytest -k "not ($donttest)" -rsfE
%files %{python_files}
%license LICENSE
%{python_sitelib}/bs4/
%{python_sitelib}/beautifulsoup4-%{version}.dist-info
%if 0%{?suse_version} > 1500
%files -n python-beautifulsoup4-doc
%endif
%doc CHANGELOG README.md doc/_build/html
%changelog