Blame SPECS/python-charset-normalizer.spec

5cc66c
Name:           python-charset-normalizer
5cc66c
Version:        2.0.4
5cc66c
Release:        2%{?dist}
5cc66c
Summary:        The Real First Universal Charset Detector
5cc66c
5cc66c
License:        MIT
5cc66c
URL:            https://github.com/ousret/charset_normalizer
5cc66c
Source0:        %{url}/archive/refs/tags/%{version}.tar.gz
5cc66c
BuildArch:      noarch
5cc66c
5cc66c
BuildRequires:  python3-devel
5cc66c
BuildRequires:  pyproject-rpm-macros
5cc66c
BuildRequires:  python3dist(pytest)
5cc66c
5cc66c
5cc66c
%description
5cc66c
A library that helps you read text from an unknown charset encoding.
5cc66c
Motivated by chardet, trying to resolve the issue by taking
5cc66c
a new approach. All IANA character set names for which the Python core
5cc66c
library provides codecs are supported.
5cc66c
5cc66c
%package -n     python3-charset-normalizer
5cc66c
Summary:        %{summary}
5cc66c
5cc66c
%description -n python3-charset-normalizer
5cc66c
A library that helps you read text from an unknown charset encoding.
5cc66c
Motivated by chardet, trying to resolve the issue by taking
5cc66c
a new approach. All IANA character set names for which the Python core
5cc66c
library provides codecs are supported.
5cc66c
5cc66c
%prep
5cc66c
%autosetup -n charset_normalizer-%{version}
5cc66c
# Remove pytest-cov settings from setup.cfg
5cc66c
sed -i "/addopts = --cov/d" setup.cfg
5cc66c
5cc66c
%generate_buildrequires
5cc66c
%pyproject_buildrequires -r
5cc66c
5cc66c
%build
5cc66c
%pyproject_wheel
5cc66c
5cc66c
%install
5cc66c
%pyproject_install
5cc66c
%pyproject_save_files charset_normalizer
5cc66c
5cc66c
%check
5cc66c
%pytest
5cc66c
5cc66c
%files -n python3-charset-normalizer -f %{pyproject_files}
5cc66c
%license LICENSE
5cc66c
%doc README.md
5cc66c
%{_bindir}/normalizer
5cc66c
5cc66c
%changelog
5cc66c
* Thu Sep 16 2021 Kaleb S. KEITHLEY <kkeithle [at] redhat.com> - 2.0.4-2
5cc66c
- rebuild with git+lookaside
5cc66c
5cc66c
* Mon Aug 02 2021 Lumír Balhar <lbalhar@redhat.com> - 2.0.4-1
5cc66c
- Update to 2.0.4
5cc66c
Resolves: rhbz#1988575
5cc66c
5cc66c
* Wed Jul 21 2021 Lumír Balhar <lbalhar@redhat.com> - 2.0.3-1
5cc66c
- Initial package