Initial package (#1870571)
This commit is contained in:
parent
d2d5fc8c3a
commit
9286670d76
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/zstd-1.4.5.1.tar.gz
|
||||||
11
python-zstd-1.4.5.1-test-external.patch
Normal file
11
python-zstd-1.4.5.1-test-external.patch
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
--- zstd-1.3.8.1/setup.py.orig 2019-03-04 17:40:51.208528890 +0700
|
||||||
|
+++ zstd-1.3.8.1/setup.py 2019-03-04 17:58:37.644953996 +0700
|
||||||
|
@@ -97,6 +97,8 @@
|
||||||
|
class ZstdBuildExt( build_ext ):
|
||||||
|
|
||||||
|
def build_extensions(self):
|
||||||
|
+ if 'test' in sys.argv: return
|
||||||
|
+
|
||||||
|
c = self.compiler.compiler_type
|
||||||
|
if c in COPT:
|
||||||
|
for e in self.extensions:
|
||||||
10
python-zstd-1.4.5.1-test-once.patch
Normal file
10
python-zstd-1.4.5.1-test-once.patch
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
--- zstd-1.3.8.1/setup.py.orig 2019-03-04 17:40:51.208528890 +0700
|
||||||
|
+++ zstd-1.3.8.1/setup.py 2019-03-04 17:58:37.644953996 +0700
|
||||||
|
@@ -171,7 +173,6 @@
|
||||||
|
Extension('zstd', zstdFiles, libraries=ext_libraries)
|
||||||
|
],
|
||||||
|
cmdclass = {'build_ext': ZstdBuildExt },
|
||||||
|
- test_suite='setup.my_test_suite',
|
||||||
|
classifiers=[
|
||||||
|
'License :: OSI Approved :: BSD License',
|
||||||
|
'Intended Audience :: Developers',
|
||||||
63
python-zstd.spec
Normal file
63
python-zstd.spec
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
%global pypi_name zstd
|
||||||
|
%global zstd_version 1.4.5
|
||||||
|
|
||||||
|
Name: python-%{pypi_name}
|
||||||
|
Version: %{zstd_version}.1
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: Zstd Bindings for Python
|
||||||
|
|
||||||
|
License: BSD
|
||||||
|
URL: https://github.com/sergey-dryabzhinsky/python-zstd
|
||||||
|
Source0: %{pypi_source}
|
||||||
|
|
||||||
|
# Patches to fix test execution
|
||||||
|
Patch0: python-zstd-1.4.5.1-test-external.patch
|
||||||
|
Patch1: python-zstd-1.4.5.1-test-once.patch
|
||||||
|
|
||||||
|
BuildRequires: gcc
|
||||||
|
BuildRequires: python3-devel
|
||||||
|
BuildRequires: python3dist(setuptools)
|
||||||
|
BuildRequires: pkgconfig(libzstd) >= %{zstd_version}
|
||||||
|
|
||||||
|
%description
|
||||||
|
Simple Python bindings for the Zstd compression library.
|
||||||
|
|
||||||
|
%package -n python3-%{pypi_name}
|
||||||
|
Summary: %{summary}
|
||||||
|
%{?python_provide:%python_provide python3-%{pypi_name}}
|
||||||
|
# The library does not do symbol versioning to fully match automatically on
|
||||||
|
Requires: libzstd%{?_isa} >= %{zstd_version}
|
||||||
|
|
||||||
|
%description -n python3-%{pypi_name}
|
||||||
|
Simple Python bindings for the Zstd compression library.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -n %{pypi_name}-%{version}
|
||||||
|
# Remove bundled egg-info
|
||||||
|
rm -rf %{pypi_name}.egg-info
|
||||||
|
# Remove bundled zstd library
|
||||||
|
rm -rf zstd/
|
||||||
|
# do not test the version matching, we don't really need exact version of
|
||||||
|
# zstd here
|
||||||
|
rm tests/test_version.py
|
||||||
|
sed -i -e '/test_version/d' tests/__init__.py
|
||||||
|
|
||||||
|
%build
|
||||||
|
%py3_build -- --legacy --pyzstd-legacy --external
|
||||||
|
|
||||||
|
%install
|
||||||
|
%py3_install
|
||||||
|
|
||||||
|
%check
|
||||||
|
%python3 setup.py test
|
||||||
|
|
||||||
|
%files -n python3-%{pypi_name}
|
||||||
|
%license LICENSE
|
||||||
|
%doc README.rst
|
||||||
|
%{python3_sitearch}/%{pypi_name}-%{version}-py%{python3_version}.egg-info
|
||||||
|
%{python3_sitearch}/%{pypi_name}*.so
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Sun Aug 23 2020 Neal Gompa <ngompa13@gmail.com> - 1.4.5.1-1
|
||||||
|
- Initial package (#1870571)
|
||||||
Loading…
Reference in New Issue
Block a user