15
0
forked from pool/python-ftfy
Files
python-ftfy/python-ftfy.spec
Matej Cepl d9a64f980f Accepting request 1272228 from home:fstegmeier:branches:devel:languages:python
- update to 6.3.1
  * Fixed license metadata field in pyproject.toml.
  * Removed extraneous files from the hatchling sdist output.
- Version 6.3.0 (October 8, 2024)
  * Switched packaging from poetry to uv.
  * Uses modern Python packaging exclusively (no setup.py).
  * Added support for mojibake in Windows-1257 (Baltic).
  * Detects mojibake for "Ü" in an uppercase word, such as "ZURÜCK".
  * Expanded a heuristic that notices improbable punctuation.
  * Fixed a false positive involving two concatenated strings, one of
    which began with the § sign.
  * Rewrote chardata.py to be more human-readable and debuggable,
    instead of being full of keysmash-like character sets.
- Version 6.2.3 (August 5, 2024)
  * Updated PyPI metadata.
- Version 6.2.2 (August 5, 2024)
  * Updated Read the Docs config so that docs might build again.
- Version 6.2.1 (August 5, 2024)
  * Updated setup.py and tox.ini to indicate support for Python 3.8 
    through 3.13.
  * Replaced the text file used in CLI tests with a better one that
    tests the same issue.
  * Lints and auto-formatting using ruff.
  * Packaging and test fixes by Michał Górny.
- Version 6.2.0 (March 15, 2024)
  * Fixed a case where an en-dash and a space near other mojibake 
    would be interpreted (probably incorrectly) as MacRoman mojibake.
  * Added [project.urls] metadata to pyproject.toml.
  * README contains license clarifications for entitled jerks.
- Version 6.1.3 (November 21, 2023)

OBS-URL: https://build.opensuse.org/request/show/1272228
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ftfy?expand=0&rev=22
2025-04-23 17:50:39 +00:00

88 lines
2.5 KiB
RPMSpec

#
# spec file for package python-ftfy
#
# 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}
%define skip_python2 1
Name: python-ftfy
Version: 6.3.1
Release: 0
Summary: Python module for repairing mis-decoded Unicode text
License: MIT
URL: https://github.com/rspeer/python-ftfy
Source: https://github.com/rspeer/python-ftfy/archive/refs/tags/v%{version}.tar.gz
BuildRequires: %{python_module hatchling}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-wcwidth
Requires(post): update-alternatives
Requires(postun): update-alternatives
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module wcwidth}
# /SECTION
%python_subpackages
%description
Ftfy attempts to repair Unicode text that has been erroneously
put through an encode/decode cycle with different encodings.
%prep
%autosetup -p1 -n python-ftfy-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%python_clone -a %{buildroot}%{_bindir}/ftfy
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%{python_expand # provide u-a controlled cli command for tests
mkdir -p build/testbin
ln -s %{buildroot}%{_bindir}/ftfy-%{python_bin_suffix} build/testbin/ftfy
}
export PATH="build/testbin:$PATH"
# conditionally skip failing test for older SUSE releases
donttest=""
%if 0%{suse_version} < 1600
donttest+="ftfy.formatting.monospaced_width"
%endif
%pytest ${donttest:+-k "not (${donttest})"}
%post
%python_install_alternative ftfy
%postun
%python_uninstall_alternative ftfy
%files %{python_files}
%doc CHANGELOG.md README.md
%license LICENSE.txt
%python_alternative %{_bindir}/ftfy
%{python_sitelib}/ftfy
%{python_sitelib}/ftfy-%{version}*-info
%changelog