diff --git a/README.md b/README.md index 93fa2ef..bd094db 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-charset-normalizer +The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet. + diff --git a/python-charset-normalizer.spec b/python-charset-normalizer.spec new file mode 100644 index 0000000..204aa7a --- /dev/null +++ b/python-charset-normalizer.spec @@ -0,0 +1,55 @@ +%define pkgname %(echo %name | cut -d- -f2-) +Name: python-charset-normalizer +Version: 2.0.4 +Release: 1mamba +Summary: The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/ousret/charset_normalizer +Source: https://pypi.debian.net/charset-normalizer/charset-normalizer-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython3-devel +BuildRequires: python3.7dist(setuptools) +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n charset-normalizer-%{version} + +%build +CFLAGS="%{optflags}" %{__python} setup.py build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} setup.py install \ + -O1 --skip-build \ + --root="%{buildroot}" \ + --install-headers=%{python_inc} \ + --install-lib=%{python_sitearch} \ + --record=%{name}.filelist + +sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist + +%if "%{?with_pyver}" != "3" +mv %{buildroot}%{_bindir}/normalizer{,%{with_pyver}} +sed -i "s|%{_bindir}/normalizer|%{_bindir}/normalizer%{with_pyver}|" %{name}.filelist +%endif + +%files %{?pyappend} -f %{name}.filelist +%defattr(-,root,root) +%dir %{python_sitearch}/charset_normalizer-%{version}-py*.egg-info +%{python_sitearch}/charset_normalizer-%{version}-py*.egg-info/* +%doc LICENSE + +%changelog +* Mon Aug 30 2021 Silvan Calarco 2.0.4-1mamba +- package created using the webbuild interface