diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-04-10 13:42:03 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 13:42:03 +0000 |
| commit | 10007ea61c3e7795f1feb5d6b484ed86656bf64e (patch) | |
| tree | 777aa714af6a4c0999fbedfd2b5f17128cfeb9e3 /python-faiss-cpu.spec | |
| parent | 0c85bf20534d79265bd64b2f37709f5a24c46e0b (diff) | |
automatic import of python-faiss-cpu
Diffstat (limited to 'python-faiss-cpu.spec')
| -rw-r--r-- | python-faiss-cpu.spec | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/python-faiss-cpu.spec b/python-faiss-cpu.spec new file mode 100644 index 0000000..558a7ba --- /dev/null +++ b/python-faiss-cpu.spec @@ -0,0 +1,92 @@ +%global _empty_manifest_terminate_build 0 +Name: python-faiss-cpu +Version: 1.7.3 +Release: 1 +Summary: A library for efficient similarity search and clustering of dense vectors. +License: MIT +URL: https://github.com/kyamagu/faiss-wheels +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/28/26/e3324c9f4392231338d2967f6400accdd561c5b27e3d8d9891986e373839/faiss-cpu-1.7.3.tar.gz + + +%description + +Faiss is a library for efficient similarity search and clustering of dense +vectors. It contains algorithms that search in sets of vectors of any size, up +to ones that possibly do not fit in RAM. It also contains supporting code for +evaluation and parameter tuning. Faiss is written in C++ with complete wrappers +for Python/numpy. It is developed by Facebook AI Research. + + +%package -n python3-faiss-cpu +Summary: A library for efficient similarity search and clustering of dense vectors. +Provides: python-faiss-cpu +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +BuildRequires: python3-cffi +BuildRequires: gcc +BuildRequires: gdb +%description -n python3-faiss-cpu + +Faiss is a library for efficient similarity search and clustering of dense +vectors. It contains algorithms that search in sets of vectors of any size, up +to ones that possibly do not fit in RAM. It also contains supporting code for +evaluation and parameter tuning. Faiss is written in C++ with complete wrappers +for Python/numpy. It is developed by Facebook AI Research. + + +%package help +Summary: Development documents and examples for faiss-cpu +Provides: python3-faiss-cpu-doc +%description help + +Faiss is a library for efficient similarity search and clustering of dense +vectors. It contains algorithms that search in sets of vectors of any size, up +to ones that possibly do not fit in RAM. It also contains supporting code for +evaluation and parameter tuning. Faiss is written in C++ with complete wrappers +for Python/numpy. It is developed by Facebook AI Research. + + +%prep +%autosetup -n faiss-cpu-1.7.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-faiss-cpu -f filelist.lst +%dir %{python3_sitearch}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 1.7.3-1 +- Package Spec generated |
