diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-12 05:28:13 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-12 05:28:13 +0000 |
commit | 9a3a868cfe540d1d85a51aa9d80ce8e8f87964f5 (patch) | |
tree | 0ce743e3f5020379dbda1943423e856404bef8b8 | |
parent | 820b613ad8e294eb8e4a220dfb3c49867b9471ce (diff) |
automatic import of python-kiwipiepy
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-kiwipiepy.spec | 77 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 79 insertions, 0 deletions
@@ -0,0 +1 @@ +/kiwipiepy-0.15.0.tar.gz diff --git a/python-kiwipiepy.spec b/python-kiwipiepy.spec new file mode 100644 index 0000000..84b79b7 --- /dev/null +++ b/python-kiwipiepy.spec @@ -0,0 +1,77 @@ +%global _empty_manifest_terminate_build 0 +Name: python-kiwipiepy +Version: 0.15.0 +Release: 1 +Summary: Kiwi, the Korean Tokenizer for Python +License: LGPL v3 License +URL: https://github.com/bab2min/kiwipiepy +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/7d/90/aef0102abb6798ca838edcb3e99f7f9795277a69e686885937d9bb6ab8e8/kiwipiepy-0.15.0.tar.gz + + +%description +kiwipiepy is a python version package of Kiwi(Korean Intelligent Word Identifier) which is a morphological analyzer for Korean. +https://github.com/bab2min/kiwipiepy + +%package -n python3-kiwipiepy +Summary: Kiwi, the Korean Tokenizer for Python +Provides: python-kiwipiepy +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +BuildRequires: python3-cffi +BuildRequires: gcc +BuildRequires: gdb +%description -n python3-kiwipiepy +kiwipiepy is a python version package of Kiwi(Korean Intelligent Word Identifier) which is a morphological analyzer for Korean. +https://github.com/bab2min/kiwipiepy + +%package help +Summary: Development documents and examples for kiwipiepy +Provides: python3-kiwipiepy-doc +%description help +kiwipiepy is a python version package of Kiwi(Korean Intelligent Word Identifier) which is a morphological analyzer for Korean. +https://github.com/bab2min/kiwipiepy + +%prep +%autosetup -n kiwipiepy-0.15.0 + +%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-kiwipiepy -f filelist.lst +%dir %{python3_sitearch}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed Apr 12 2023 Python_Bot <Python_Bot@openeuler.org> - 0.15.0-1 +- Package Spec generated @@ -0,0 +1 @@ +93dd9a9132814f225061f1b8dba851b7 kiwipiepy-0.15.0.tar.gz |