diff --git a/cchardet-2.1.6.tar.gz b/cchardet-2.1.6.tar.gz new file mode 100644 index 0000000..1e769a9 Binary files /dev/null and b/cchardet-2.1.6.tar.gz differ diff --git a/python-cchardet.spec b/python-cchardet.spec new file mode 100644 index 0000000..c74881d --- /dev/null +++ b/python-cchardet.spec @@ -0,0 +1,73 @@ +%global _empty_manifest_terminate_build 0 +Name: python-cchardet +Version: 2.1.6 +Release: 1 +Summary: cChardet is high speed universal character encoding detector. +License: Mozilla Public License +URL: https://github.com/PyYoshi/cChardet +Source0: https://files.pythonhosted.org/packages/41/e6/2e2184a3bc887bfb6e6b97aef5e94af9b8de43806ce14b023ddbbcb0b30d/cchardet-2.1.6.tar.gz + + +%description +cChardet is high speed universal character encoding detector. + +%package -n python3-cchardet +Summary: cChardet is high speed universal character encoding detector. +Provides: python-cchardet +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-cffi +BuildRequires: gcc +BuildRequires: gdb +%description -n python3-cchardet +cChardet is high speed universal character encoding detector. + +%package help +Summary: Development documents and examples for cchardet +Provides: python3-cchardet-doc +%description help +cChardet is high speed universal character encoding detector. + +%prep +%autosetup -n cchardet-2.1.6 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +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 . + +%files -n python3-cchardet -f filelist.lst +%dir %{python3_sitearch}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed Jul 29 2020 Python_Bot +- Package Spec generated