File: 0001-Use-system-zstd-by-default.patch

package info (click to toggle)
python-zstandard 0.24.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,912 kB
  • sloc: ansic: 42,099; python: 8,683; makefile: 22; sh: 14
file content (22 lines) | stat: -rw-r--r-- 505 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Boyuan Yang <byang@debian.org>
Date: Mon, 18 Aug 2025 11:22:22 -0400
Subject: Use system zstd by default

Forwarded: not-needed
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index f868a92..c277a76 100755
--- a/setup.py
+++ b/setup.py
@@ -76,7 +76,7 @@ sys.path.insert(0, ".")
 import setup_zstd  # noqa: E402
 
 SUPPORT_LEGACY = False
-SYSTEM_ZSTD = False
+SYSTEM_ZSTD = True
 WARNINGS_AS_ERRORS = False
 C_BACKEND = True
 CFFI_BACKEND = True