diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-ms-cv.spec | 201 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 203 insertions, 0 deletions
@@ -0,0 +1 @@ +/ms_cv-0.1.1.tar.gz 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 + +[](https://github.com/OpenXbox/ms_cv/actions?query=workflow%3Abuild) +[](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 <noreply@openxbox.org>`. + +Based on the implementation by Microsoft: + +<https://github.com/search?q=org%3Amicrosoft+correlationVector> + +<https://github.com/Microsoft/Telemetry-Client-for-Android/blob/master/AndroidCll/src/main/java/com/microsoft/cll/android/CorrelationVector.java> + +%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 + +[](https://github.com/OpenXbox/ms_cv/actions?query=workflow%3Abuild) +[](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 <noreply@openxbox.org>`. + +Based on the implementation by Microsoft: + +<https://github.com/search?q=org%3Amicrosoft+correlationVector> + +<https://github.com/Microsoft/Telemetry-Client-for-Android/blob/master/AndroidCll/src/main/java/com/microsoft/cll/android/CorrelationVector.java> + +%package help +Summary: Development documents and examples for ms-cv +Provides: python3-ms-cv-doc +%description help +# ms_cv - Correlation Vector + +[](https://github.com/OpenXbox/ms_cv/actions?query=workflow%3Abuild) +[](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 <noreply@openxbox.org>`. + +Based on the implementation by Microsoft: + +<https://github.com/search?q=org%3Amicrosoft+correlationVector> + +<https://github.com/Microsoft/Telemetry-Client-for-Android/blob/master/AndroidCll/src/main/java/com/microsoft/cll/android/CorrelationVector.java> + +%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 <Python_Bot@openeuler.org> - 0.1.1-1 +- Package Spec generated @@ -0,0 +1 @@ +038414709d3efaa096e7405d4da1b3d5 ms_cv-0.1.1.tar.gz |
