diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-12 05:16:45 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-12 05:16:45 +0000 |
commit | 1391b190ed47059ebcfb78153e1d48e03222c034 (patch) | |
tree | 0a3f273c94f6948b2fbe17701246582943606de4 | |
parent | f1efb3cd66ac5f888c4b0e929892dd38ad0da5ae (diff) |
automatic import of python-mmh3cffi
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-mmh3cffi.spec | 72 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 74 insertions, 0 deletions
@@ -0,0 +1 @@ +/mmh3cffi-0.2.1.tar.gz diff --git a/python-mmh3cffi.spec b/python-mmh3cffi.spec new file mode 100644 index 0000000..e0fc9a0 --- /dev/null +++ b/python-mmh3cffi.spec @@ -0,0 +1,72 @@ +%global _empty_manifest_terminate_build 0 +Name: python-mmh3cffi +Version: 0.2.1 +Release: 1 +Summary: CFFI interface to murmurhash3/32 from aappleby/smhasher +License: Apache 2.0 +URL: https://github.com/splitio/mmh3cffi +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/f1/c8/d19ab56f16afbbc052567a036b049e7464a14724499bca4536535bbca01d/mmh3cffi-0.2.1.tar.gz +BuildArch: noarch + + +%description + + +%package -n python3-mmh3cffi +Summary: CFFI interface to murmurhash3/32 from aappleby/smhasher +Provides: python-mmh3cffi +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-mmh3cffi + + +%package help +Summary: Development documents and examples for mmh3cffi +Provides: python3-mmh3cffi-doc +%description help + + +%prep +%autosetup -n mmh3cffi-0.2.1 + +%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-mmh3cffi -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed Apr 12 2023 Python_Bot <Python_Bot@openeuler.org> - 0.2.1-1 +- Package Spec generated @@ -0,0 +1 @@ +e1bc7e7b997290756ae5d20b63c5455b mmh3cffi-0.2.1.tar.gz |