From e9107cada057e3298522efea8893484de1a90e70 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Mon, 10 Apr 2023 14:19:21 +0000 Subject: automatic import of python-pyzstd --- python-pyzstd.spec | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 python-pyzstd.spec (limited to 'python-pyzstd.spec') diff --git a/python-pyzstd.spec b/python-pyzstd.spec new file mode 100644 index 0000000..a2232d8 --- /dev/null +++ b/python-pyzstd.spec @@ -0,0 +1,89 @@ +%global _empty_manifest_terminate_build 0 +Name: python-pyzstd +Version: 0.15.6 +Release: 1 +Summary: Python bindings to Zstandard (zstd) compression library, the API style is similar to Python's bz2/lzma/zlib modules. +License: The 3-Clause BSD License +URL: https://github.com/animalize/pyzstd +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/2a/bb/2966bfe2021600b3dfcb5762ea5df1cfbb174c3c5328cc3bdc1f40ad828b/pyzstd-0.15.6.tar.gz + + +%description +Pyzstd module provides classes and functions for compressing and decompressing data, using Facebook's `Zstandard `_ (or zstd as short name) algorithm. +The API style is similar to Python's bz2/lzma/zlib modules. +* Includes zstd v1.5.5 source code +* Can also dynamically link to zstd library provided by system, see `this note `_. +* Has a CFFI implementation that can work with PyPy +* Has a command line interface: ``python -m pyzstd --help`` + +%package -n python3-pyzstd +Summary: Python bindings to Zstandard (zstd) compression library, the API style is similar to Python's bz2/lzma/zlib modules. +Provides: python-pyzstd +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +BuildRequires: python3-cffi +BuildRequires: gcc +BuildRequires: gdb +%description -n python3-pyzstd +Pyzstd module provides classes and functions for compressing and decompressing data, using Facebook's `Zstandard `_ (or zstd as short name) algorithm. +The API style is similar to Python's bz2/lzma/zlib modules. +* Includes zstd v1.5.5 source code +* Can also dynamically link to zstd library provided by system, see `this note `_. +* Has a CFFI implementation that can work with PyPy +* Has a command line interface: ``python -m pyzstd --help`` + +%package help +Summary: Development documents and examples for pyzstd +Provides: python3-pyzstd-doc +%description help +Pyzstd module provides classes and functions for compressing and decompressing data, using Facebook's `Zstandard `_ (or zstd as short name) algorithm. +The API style is similar to Python's bz2/lzma/zlib modules. +* Includes zstd v1.5.5 source code +* Can also dynamically link to zstd library provided by system, see `this note `_. +* Has a CFFI implementation that can work with PyPy +* Has a command line interface: ``python -m pyzstd --help`` + +%prep +%autosetup -n pyzstd-0.15.6 + +%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-pyzstd -f filelist.lst +%dir %{python3_sitearch}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot - 0.15.6-1 +- Package Spec generated -- cgit v1.2.3