summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-10 14:19:21 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-10 14:19:21 +0000
commite9107cada057e3298522efea8893484de1a90e70 (patch)
treef55eaaadcf643b4208c0c394d926ced032752351
parent0182544739f85cb3ee49f6ea903815c90c72c96a (diff)
automatic import of python-pyzstd
-rw-r--r--.gitignore1
-rw-r--r--python-pyzstd.spec89
-rw-r--r--sources1
3 files changed, 91 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..950bc3f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/pyzstd-0.15.6.tar.gz
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 <http://www.zstd.net>`_ (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 <https://pyzstd.readthedocs.io/en/latest/#build-pyzstd>`_.
+* 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 <http://www.zstd.net>`_ (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 <https://pyzstd.readthedocs.io/en/latest/#build-pyzstd>`_.
+* 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 <http://www.zstd.net>`_ (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 <https://pyzstd.readthedocs.io/en/latest/#build-pyzstd>`_.
+* 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 <Python_Bot@openeuler.org> - 0.15.6-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..ce07c6f
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+66635c87f8a0f5e2fd5a035983a55d1a pyzstd-0.15.6.tar.gz