14
0

Accepting request 989245 from home:bnavigator:branches:devel:languages:python

- Update to version 2.2.2
  * CLI 'suggest' results output now displays more information
    about the total number of objects in the inventory, the search
    score threshold, and the number of results falling at/above
    that threshold.
  * UnicodeDecodeErrors are ignored within the vendored fuzzywuzzy
    package during suggest operations, using the errors=replace
    mode within bytes.decode().
  * This misbehavior emerged after vendoring fuzzywuzzy, suggesting
    that it was a bug fixed later on in that project's development,
    after the point from which it was vendored.
  * This change may alter suggest behavior for those inventory
    objects with pathological characters. But, given their rarity,
    user experience is not expected to be noticeably affected.
- Release 2.2
  * Acceleration of the suggest functionality via use of
    python-Levenshtein is no longer possible due to the vendoring
    of an early, MIT-licensed version of fuzzywuzzy, as noted
    below. The speedup install extra is now obsolete, and has been
    removed.
  * The fuzzywuzzy string matcher was vendored into the project
    from a point in its development history before the
    python-Levenshtein dependency, and its corresponding GPL
    encumbrance, was introduced.
  * Active support for Python 3.11 added.
- Release 2.1
  * Python 3.10 support was officially added.
  * The User-Agent header sent by Inventory when making an HTTP(S)
    request now identifies sphobjinv and its version (anticipate no
    API or behavior change).

OBS-URL: https://build.opensuse.org/request/show/989245
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sphobjinv?expand=0&rev=5
This commit is contained in:
2022-07-15 07:23:47 +00:00
committed by Git OBS Bridge
parent e98be1798a
commit e946c722ad
4 changed files with 90 additions and 17 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-sphobjinv
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,33 +16,35 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%{?!python_module:%define python_module() python3-%{**}}
%define skip_python2 1
Name: python-sphobjinv
Version: 2.0.1
Version: 2.2.2
Release: 0
Summary: Sphinx objectsinv Inspection/Manipulation Tool
License: MIT
Group: Development/Languages/Python
URL: https://github.com/bskinn/sphobjinv
Source: https://files.pythonhosted.org/packages/source/s/sphobjinv/sphobjinv-%{version}.tar.gz
BuildRequires: %{python_module pathlib}
Source: https://github.com/bskinn/sphobjinv/archive/refs/tags/v%{version}.tar.gz#/sphobjinv-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-attrs >= 17.4
Requires: python-attrs >= 19.2
Requires: python-certifi
Requires: python-fuzzywuzzy >= 0.3
Requires: python-jsonschema >= 2.0
Requires: python-setuptools
Requires: python-jsonschema >= 3.0
Requires(post): update-alternatives
Requires(postun): update-alternatives
Requires(postun):update-alternatives
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module attrs >= 17.4}
BuildRequires: %{python_module Sphinx}
BuildRequires: %{python_module attrs >= 19.4}
BuildRequires: %{python_module certifi}
BuildRequires: %{python_module fuzzywuzzy >= 0.3}
BuildRequires: %{python_module jsonschema >= 2.0}
BuildRequires: %{python_module dictdiffer}
BuildRequires: %{python_module jsonschema >= 3.0}
BuildRequires: %{python_module pytest-check}
BuildRequires: %{python_module pytest-timeout}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module sphinx_rtd_theme}
# /SECTION
%python_subpackages
@@ -51,6 +53,7 @@ Sphinx objects.inv Inspection/Manipulation Tool
%prep
%setup -q -n sphobjinv-%{version}
sed -i '1{/^#!/d}' src/sphobjinv/_vendored/fuzzywuzzy/*.py
%build
%python_build
@@ -60,6 +63,13 @@ Sphinx objects.inv Inspection/Manipulation Tool
%python_clone -a %{buildroot}%{_bindir}/sphobjinv
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
# we don't have stdio-mgr
ignoretests="--ignore tests/test_cli.py --ignore tests/test_cli_nonlocal.py"
# Errors with invalid inventory source type: we didn't build the docs and don't have the inventory there
sed -i 's/--doctest-glob="README.rst"//' tox.ini
%pytest $ignoretests
%post
%python_install_alternative sphobjinv
@@ -70,6 +80,7 @@ Sphinx objects.inv Inspection/Manipulation Tool
%doc CHANGELOG.md README.rst
%license LICENSE.txt
%python_alternative %{_bindir}/sphobjinv
%{python_sitelib}/*
%{python_sitelib}/sphobjinv
%{python_sitelib}/sphobjinv-%{version}*-info
%changelog