diff options
Diffstat (limited to 'python-zhconv.spec')
-rw-r--r-- | python-zhconv.spec | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/python-zhconv.spec b/python-zhconv.spec new file mode 100644 index 0000000..196252b --- /dev/null +++ b/python-zhconv.spec @@ -0,0 +1,90 @@ +%global _empty_manifest_terminate_build 0 +Name: python-zhconv +Version: 1.4.3 +Release: 1 +Summary: A simple implementation of Simplified-Traditional Chinese conversion. +License: GPLv2+ +URL: https://github.com/gumblex/zhconv +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/25/47/c8ae2d5d4025e253211ff3d8c163f457db1da94976cb582337a5ab76cb87/zhconv-1.4.3.tar.gz +BuildArch: noarch + + +%description +**zhconv** 提供基于 MediaWiki 词汇表的最大正向匹配简繁转换。Python 2, 3 通用。支持以下地区词转换: +* ``zh-cn`` 大陆简体 +* ``zh-tw`` 台灣正體 +* ``zh-hk`` 香港繁體 +* ``zh-sg`` 马新简体(无词汇表,需要手工指定) +* ``zh-hans`` 简体 +* ``zh-hant`` 繁體 + +%package -n python3-zhconv +Summary: A simple implementation of Simplified-Traditional Chinese conversion. +Provides: python-zhconv +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-zhconv +**zhconv** 提供基于 MediaWiki 词汇表的最大正向匹配简繁转换。Python 2, 3 通用。支持以下地区词转换: +* ``zh-cn`` 大陆简体 +* ``zh-tw`` 台灣正體 +* ``zh-hk`` 香港繁體 +* ``zh-sg`` 马新简体(无词汇表,需要手工指定) +* ``zh-hans`` 简体 +* ``zh-hant`` 繁體 + +%package help +Summary: Development documents and examples for zhconv +Provides: python3-zhconv-doc +%description help +**zhconv** 提供基于 MediaWiki 词汇表的最大正向匹配简繁转换。Python 2, 3 通用。支持以下地区词转换: +* ``zh-cn`` 大陆简体 +* ``zh-tw`` 台灣正體 +* ``zh-hk`` 香港繁體 +* ``zh-sg`` 马新简体(无词汇表,需要手工指定) +* ``zh-hans`` 简体 +* ``zh-hant`` 繁體 + +%prep +%autosetup -n zhconv-1.4.3 + +%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-zhconv -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 1.4.3-1 +- Package Spec generated |