summaryrefslogtreecommitdiff
path: root/python-mojimoji.spec
diff options
context:
space:
mode:
Diffstat (limited to 'python-mojimoji.spec')
-rw-r--r--python-mojimoji.spec74
1 files changed, 74 insertions, 0 deletions
diff --git a/python-mojimoji.spec b/python-mojimoji.spec
new file mode 100644
index 0000000..9c46c33
--- /dev/null
+++ b/python-mojimoji.spec
@@ -0,0 +1,74 @@
+%global _empty_manifest_terminate_build 0
+Name: python-mojimoji
+Version: 0.0.12
+Release: 1
+Summary: A fast converter between Japanese hankaku and zenkaku characters
+License: Apache Software License
+URL: http://github.com/studio-ousia/mojimoji
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/c8/a1/debe1812f9d437f65cd58d7990a19815243dbb6b9b132123560b2b9e335a/mojimoji-0.0.12.tar.gz
+
+
+%description
+A fast converter between Japanese hankaku and zenkaku characters.
+
+%package -n python3-mojimoji
+Summary: A fast converter between Japanese hankaku and zenkaku characters
+Provides: python-mojimoji
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+BuildRequires: python3-cffi
+BuildRequires: gcc
+BuildRequires: gdb
+%description -n python3-mojimoji
+A fast converter between Japanese hankaku and zenkaku characters.
+
+%package help
+Summary: Development documents and examples for mojimoji
+Provides: python3-mojimoji-doc
+%description help
+A fast converter between Japanese hankaku and zenkaku characters.
+
+%prep
+%autosetup -n mojimoji-0.0.12
+
+%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-mojimoji -f filelist.lst
+%dir %{python3_sitearch}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.0.12-1
+- Package Spec generated