%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.aliyun.com/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 * Thu Jun 08 2023 Python_Bot - 0.1.1-1 - Package Spec generated