Compare commits
10 Commits
31dab3ac6f
...
72389c5edf
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
72389c5edf | ||
|
|
0feadd6d1e | ||
|
|
5459b436c9 | ||
|
|
e2403b8a90 | ||
|
|
52380ec83c | ||
|
|
0152e1d953 | ||
|
|
4e0d431584 | ||
|
|
624ef4cd4a | ||
|
|
72b2fec00d | ||
|
|
0db4147e07 |
BIN
3.0.4.tar.gz
BIN
3.0.4.tar.gz
Binary file not shown.
BIN
chardet-5.0.0.tar.gz
Normal file
BIN
chardet-5.0.0.tar.gz
Normal file
Binary file not shown.
@ -1,56 +1,91 @@
|
|||||||
Name: python-chardet
|
%global _empty_manifest_terminate_build 0
|
||||||
Version: 3.0.4
|
Name: python-chardet
|
||||||
Release: 9
|
Version: 5.0.0
|
||||||
Summary: Python 2/3 compatible character encoding detector.
|
Release: 2
|
||||||
License: LGPL-2.1
|
Summary: Universal encoding detector for Python 2 and 3
|
||||||
URL: https://github.com/chardet/chardet
|
License: LGPL-2.1-only
|
||||||
Source0: https://github.com/chardet/chardet/archive/3.0.4.tar.gz
|
URL: https://github.com/chardet/chardet
|
||||||
BuildArch: noarch
|
Source0: https://files.pythonhosted.org/packages/source/c/chardet/chardet-%{version}.tar.gz
|
||||||
BuildRequires: python3-devel, python3-setuptools
|
BuildArch: noarch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This is a continuation of Mark Pilgrim's excellent chardet. Previously,
|
Universal encoding detector for Python 2 and 3
|
||||||
two versions needed to be maintained: one that supported python 2.x
|
|
||||||
and one that supported python 3.x. We've recently merged with
|
|
||||||
Ian Cordasco's charade fork, so now we have one coherent version that
|
|
||||||
works for Python 2.7+ and 3.4+.
|
|
||||||
|
|
||||||
%package -n python3-chardet
|
%package -n python3-chardet
|
||||||
Summary: Python 2/3 compatible character encoding detector.
|
Summary: Universal encoding detector for Python 2 and 3
|
||||||
|
Provides: python-chardet
|
||||||
|
# Base build requires
|
||||||
|
BuildRequires: python3-devel
|
||||||
|
BuildRequires: python3-setuptools
|
||||||
|
BuildRequires: python3-pbr
|
||||||
|
BuildRequires: python3-pip
|
||||||
|
BuildRequires: python3-wheel
|
||||||
|
BuildRequires: python3-pytest
|
||||||
%description -n python3-chardet
|
%description -n python3-chardet
|
||||||
Python 2/3 compatible character encoding detector,Python 3 version.
|
Universal encoding detector for Python 2 and 3
|
||||||
|
|
||||||
|
%package help
|
||||||
|
Summary: Universal encoding detector for Python 2 and 3
|
||||||
|
Provides: python3-chardet-doc
|
||||||
|
%description help
|
||||||
|
Universal encoding detector for Python 2 and 3
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n chardet-3.0.4
|
%autosetup -n chardet-%{version} -S git
|
||||||
sed -ie '1d' chardet/cli/chardetect.py
|
|
||||||
rm -rf %{py3dir}
|
|
||||||
cp -a . %{py3dir}
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
pushd %{py3dir}
|
%py3_build
|
||||||
%{__python3} setup.py build
|
|
||||||
popd
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
pushd %{py3dir}
|
%py3_install
|
||||||
%{__python3} setup.py install -O1 --skip-build --root %{buildroot}
|
|
||||||
mv %{buildroot}%{_bindir}/{,python3-}chardetect
|
|
||||||
popd
|
|
||||||
|
|
||||||
%files -n python3-chardet
|
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
||||||
%doc README.rst
|
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
||||||
%{!?_licensedir:%global license %%doc}
|
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
||||||
%license LICENSE
|
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
|
||||||
%{_bindir}/python3-chardetect
|
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
|
||||||
%{python3_sitelib}/*
|
pushd %{buildroot}
|
||||||
|
if [ -d usr/lib ]; then
|
||||||
|
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
|
||||||
|
fi
|
||||||
|
if [ -d usr/lib64 ]; then
|
||||||
|
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
|
||||||
|
fi
|
||||||
|
if [ -d usr/bin ]; then
|
||||||
|
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
|
||||||
|
fi
|
||||||
|
if [ -d usr/sbin ]; then
|
||||||
|
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
|
||||||
|
fi
|
||||||
|
touch doclist.lst
|
||||||
|
if [ -d usr/share/man ]; then
|
||||||
|
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
|
||||||
|
fi
|
||||||
|
popd
|
||||||
|
mv %{buildroot}/filelist.lst .
|
||||||
|
mv %{buildroot}/doclist.lst .
|
||||||
|
|
||||||
|
%check
|
||||||
|
%{__python3} -m pytest -v
|
||||||
|
|
||||||
|
%files -n python3-chardet -f filelist.lst
|
||||||
|
|
||||||
|
%dir %{python3_sitelib}/*
|
||||||
|
|
||||||
|
%files help -f doclist.lst
|
||||||
|
%{_docdir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Oct 30 2020 wuchaochao <wuchaochao4@huawei.com> - 3.0.4-9
|
* Wed Feb 08 2023 zhuofeng <zhuofeng2@huawei.com> - 5.0.0-2
|
||||||
- Type:bufix
|
- Type:bugfix
|
||||||
- CVE:NA
|
- CVE:NA
|
||||||
- SUG:NA
|
- SUG:NA
|
||||||
- DESC:remove python2
|
- DESC:make the test check
|
||||||
|
|
||||||
* Sat Sep 14 2019 openEuler Buildteam <buildteam@openeuler.org> - 3.0.4-8
|
* Sat Oct 29 2022 zhuofeng <zhuofeng2@huawei.com> - 5.0.0-1
|
||||||
- Package init
|
- update to 5.0.0
|
||||||
|
|
||||||
|
* Tue Oct 25 2022 zhangruifang <zhangruifang1@h-partners.com> - 4.0.0-2
|
||||||
|
- Rebuild for next release
|
||||||
|
|
||||||
|
* Wed Jul 14 2021 OpenStack_SIG <openstack@openeuler.org> - 4.0.0-1
|
||||||
|
- Package Spec generate
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user