From aedf7ae372bcfe87a99882095e9b200a4c977318 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Wed, 10 May 2023 09:01:47 +0000 Subject: automatic import of python-ms-cv --- python-ms-cv.spec | 201 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 201 insertions(+) create mode 100644 python-ms-cv.spec (limited to 'python-ms-cv.spec') diff --git a/python-ms-cv.spec b/python-ms-cv.spec new file mode 100644 index 0000000..8fb181e --- /dev/null +++ b/python-ms-cv.spec @@ -0,0 +1,201 @@ +%global _empty_manifest_terminate_build 0 +Name: python-ms-cv +Version: 0.1.1 +Release: 1 +Summary: A correlation vector implementation in python +License: MIT +URL: https://github.com/OpenXbox/ms_cv +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/1c/e0/581b746c4b26aa0fac038fc300c6ec8b70c2a2837860bb08c4307cba9673/ms_cv-0.1.1.tar.gz +BuildArch: noarch + + +%description +# ms_cv - Correlation Vector + +[![GitHub Workflow - Build](https://img.shields.io/github/workflow/status/OpenXbox/ms_cv/build?label=build)](https://github.com/OpenXbox/ms_cv/actions?query=workflow%3Abuild) +[![PyPi](https://img.shields.io/pypi/v/ms_cv.svg)](https://pypi.python.org/pypi/ms_cv) + +A correlation vector implementation in python, based on Microsoft's implementation. + +## Usage + +```py +import ms_cv + +cll_vec = ms_cv.CorrelationVector() +print('Initial cll vector: {}'.format(cll_vec.get_value())) +print('Next iteration: {}'.format(cll_vec.increment())) +``` + +## Installation + +```sh +pip install ms_cv +``` + +## Requirements + +* None + +## Compatibility + +* Python 3 + +## License + +MIT LICENSE + +## Authors + +`ms_cv` was written by `OpenXbox `. + +Based on the implementation by Microsoft: + + + + + +%package -n python3-ms-cv +Summary: A correlation vector implementation in python +Provides: python-ms-cv +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-ms-cv +# ms_cv - Correlation Vector + +[![GitHub Workflow - Build](https://img.shields.io/github/workflow/status/OpenXbox/ms_cv/build?label=build)](https://github.com/OpenXbox/ms_cv/actions?query=workflow%3Abuild) +[![PyPi](https://img.shields.io/pypi/v/ms_cv.svg)](https://pypi.python.org/pypi/ms_cv) + +A correlation vector implementation in python, based on Microsoft's implementation. + +## Usage + +```py +import ms_cv + +cll_vec = ms_cv.CorrelationVector() +print('Initial cll vector: {}'.format(cll_vec.get_value())) +print('Next iteration: {}'.format(cll_vec.increment())) +``` + +## Installation + +```sh +pip install ms_cv +``` + +## Requirements + +* None + +## Compatibility + +* Python 3 + +## License + +MIT LICENSE + +## Authors + +`ms_cv` was written by `OpenXbox `. + +Based on the implementation by Microsoft: + + + + + +%package help +Summary: Development documents and examples for ms-cv +Provides: python3-ms-cv-doc +%description help +# ms_cv - Correlation Vector + +[![GitHub Workflow - Build](https://img.shields.io/github/workflow/status/OpenXbox/ms_cv/build?label=build)](https://github.com/OpenXbox/ms_cv/actions?query=workflow%3Abuild) +[![PyPi](https://img.shields.io/pypi/v/ms_cv.svg)](https://pypi.python.org/pypi/ms_cv) + +A correlation vector implementation in python, based on Microsoft's implementation. + +## Usage + +```py +import ms_cv + +cll_vec = ms_cv.CorrelationVector() +print('Initial cll vector: {}'.format(cll_vec.get_value())) +print('Next iteration: {}'.format(cll_vec.increment())) +``` + +## Installation + +```sh +pip install ms_cv +``` + +## Requirements + +* None + +## Compatibility + +* Python 3 + +## License + +MIT LICENSE + +## Authors + +`ms_cv` was written by `OpenXbox `. + +Based on the implementation by Microsoft: + + + + + +%prep +%autosetup -n ms-cv-0.1.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-ms-cv -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 10 2023 Python_Bot - 0.1.1-1 +- Package Spec generated -- cgit v1.2.3