From 0a57f14ac02776d8d276d618b61a6c67422927d1 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Tue, 11 Apr 2023 16:37:33 +0000 Subject: automatic import of python-cpufeature --- .gitignore | 1 + python-cpufeature.spec | 92 ++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 94 insertions(+) create mode 100644 python-cpufeature.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..59c2e35 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/cpufeature-0.2.1.tar.gz diff --git a/python-cpufeature.spec b/python-cpufeature.spec new file mode 100644 index 0000000..f37aef9 --- /dev/null +++ b/python-cpufeature.spec @@ -0,0 +1,92 @@ +%global _empty_manifest_terminate_build 0 +Name: python-cpufeature +Version: 0.2.1 +Release: 1 +Summary: Python CPU Feature Detection +License: https://creativecommons.org/publicdomain/zero/1.0/legalcode +URL: http://github.com/robbmcleod/cpufeature +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/87/cb/006cbc9c06de9fafdd8182e1a38d793d89ee89b48eab052053b3e5cb2ddf/cpufeature-0.2.1.tar.gz + + +%description +CPUFeature is a tool for detecting CPU features on x86/AMD64 processors. In particular it is engineered to have very low overhead on import (~ 1 ms) and to detect features that are often important in high-performance computing where hybrid combinations of multi-threading and multi-processing are used. Detects CPU features such as: +* SIMD instruction support +* Number of cores (both virtual and physical) +* Number of CPUs on the motherboard. +* Cache sizes +It is written in C99. It supports Windows with MSVC and Linux with GCC/LLVM compilers. MacOSX should also work with GCC/LLVM. CPUFeature is licensed under Creative Commons Zero, so it may be freely incorporated as a submodule into your own projects. +CPUFeature is considered to be in an alpha state because while it is tested via GitHub Actions on a variety of platforms, we expect edge cases to appear. + +%package -n python3-cpufeature +Summary: Python CPU Feature Detection +Provides: python-cpufeature +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +BuildRequires: python3-cffi +BuildRequires: gcc +BuildRequires: gdb +%description -n python3-cpufeature +CPUFeature is a tool for detecting CPU features on x86/AMD64 processors. In particular it is engineered to have very low overhead on import (~ 1 ms) and to detect features that are often important in high-performance computing where hybrid combinations of multi-threading and multi-processing are used. Detects CPU features such as: +* SIMD instruction support +* Number of cores (both virtual and physical) +* Number of CPUs on the motherboard. +* Cache sizes +It is written in C99. It supports Windows with MSVC and Linux with GCC/LLVM compilers. MacOSX should also work with GCC/LLVM. CPUFeature is licensed under Creative Commons Zero, so it may be freely incorporated as a submodule into your own projects. +CPUFeature is considered to be in an alpha state because while it is tested via GitHub Actions on a variety of platforms, we expect edge cases to appear. + +%package help +Summary: Development documents and examples for cpufeature +Provides: python3-cpufeature-doc +%description help +CPUFeature is a tool for detecting CPU features on x86/AMD64 processors. In particular it is engineered to have very low overhead on import (~ 1 ms) and to detect features that are often important in high-performance computing where hybrid combinations of multi-threading and multi-processing are used. Detects CPU features such as: +* SIMD instruction support +* Number of cores (both virtual and physical) +* Number of CPUs on the motherboard. +* Cache sizes +It is written in C99. It supports Windows with MSVC and Linux with GCC/LLVM compilers. MacOSX should also work with GCC/LLVM. CPUFeature is licensed under Creative Commons Zero, so it may be freely incorporated as a submodule into your own projects. +CPUFeature is considered to be in an alpha state because while it is tested via GitHub Actions on a variety of platforms, we expect edge cases to appear. + +%prep +%autosetup -n cpufeature-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-cpufeature -f filelist.lst +%dir %{python3_sitearch}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot - 0.2.1-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..234b1a1 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +a226ed100468e932283f37c2065c77bb cpufeature-0.2.1.tar.gz -- cgit v1.2.3