15
0
forked from pool/python-ftfy
Files
python-ftfy/python-ftfy.spec

88 lines
2.6 KiB
RPMSpec
Raw Normal View History

#
# spec file for package python-ftfy
#
# Copyright (c) 2024 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.0.3
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
# PATCH-FIX-UPSTREAM update-wcwidth.patch gh#rspeer/python-ftfy@5d975c6bb183
Patch1: update-wcwidth.patch
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
Accepting request 886362 from home:bnavigator:branches:devel:languages:python - Update to 6.0.1 * The remove_terminal_escapes step was accidentally not being used. This version restores it. * Specified in setup.py that ftfy 6 requires Python 3.6 or later. * Use a lighter link color when the docs are viewed in dark mode. - Version 6.0 * New function: ftfy.fix_and_explain() can describe all the transformations that happen when fixing a string. This is similar to what ftfy.fixes.fix_encoding_and_explain() did in previous versions, but it can fix more than the encoding. * fix_and_explain() and fix_encoding_and_explain() are now in the top-level ftfy module. * Changed the heuristic entirely. ftfy no longer needs to categorize every Unicode character, but only characters that are expected to appear in mojibake. * Because of the new heuristic, ftfy will no longer have to release a new version for every new version of Unicode. It should also run faster and use less RAM when imported. * The heuristic ftfy.badness.is_bad(text) can be used to determine whether there appears to be mojibake in a string. Some users were already using the old function sequence_weirdness() for that, but this one is actually designed for that purpose. * Instead of a pile of named keyword arguments, ftfy functions now take in a TextFixerConfig object. The keyword arguments still work, and become settings that override the defaults in TextFixerConfig. * Added support for UTF-8 mixups with Windows-1253 and Windows-1254. * Overhauled the documentation: https://ftfy.readthedocs.org OBS-URL: https://build.opensuse.org/request/show/886362 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ftfy?expand=0&rev=15
2021-04-19 06:29:13 +00:00
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
Accepting request 886362 from home:bnavigator:branches:devel:languages:python - Update to 6.0.1 * The remove_terminal_escapes step was accidentally not being used. This version restores it. * Specified in setup.py that ftfy 6 requires Python 3.6 or later. * Use a lighter link color when the docs are viewed in dark mode. - Version 6.0 * New function: ftfy.fix_and_explain() can describe all the transformations that happen when fixing a string. This is similar to what ftfy.fixes.fix_encoding_and_explain() did in previous versions, but it can fix more than the encoding. * fix_and_explain() and fix_encoding_and_explain() are now in the top-level ftfy module. * Changed the heuristic entirely. ftfy no longer needs to categorize every Unicode character, but only characters that are expected to appear in mojibake. * Because of the new heuristic, ftfy will no longer have to release a new version for every new version of Unicode. It should also run faster and use less RAM when imported. * The heuristic ftfy.badness.is_bad(text) can be used to determine whether there appears to be mojibake in a string. Some users were already using the old function sequence_weirdness() for that, but this one is actually designed for that purpose. * Instead of a pile of named keyword arguments, ftfy functions now take in a TextFixerConfig object. The keyword arguments still work, and become settings that override the defaults in TextFixerConfig. * Added support for UTF-8 mixups with Windows-1253 and Windows-1254. * Overhauled the documentation: https://ftfy.readthedocs.org OBS-URL: https://build.opensuse.org/request/show/886362 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ftfy?expand=0&rev=15
2021-04-19 06:29:13 +00:00
%{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