commit: c6f9c1a31758e3b8e710207ec93cc0429b38219c
Author: David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Mon Sep 1 09:20:44 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Sep 1 09:20:44 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c6f9c1a3
sys-fs/jefferson: remove unused patches
Signed-off-by: David Roman <davidroman96 <AT> gmail.com>
.../jefferson/files/jefferson-use-python-lzo.patch | 22 ----------------------
1 file changed, 22 deletions(-)
diff --git a/sys-fs/jefferson/files/jefferson-use-python-lzo.patch
b/sys-fs/jefferson/files/jefferson-use-python-lzo.patch
deleted file mode 100644
index 9905333101..0000000000
--- a/sys-fs/jefferson/files/jefferson-use-python-lzo.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/jefferson/jffs2.py b/jefferson/jffs2.py
-index ab1ac8f..1607bdc 100644
---- a/jefferson/jffs2.py
-+++ b/jefferson/jffs2.py
-@@ -9,7 +9,7 @@ import zlib
- from pathlib import Path
-
- import cstruct
--from lzallright import LZOCompressor as lzo
-+import lzo
-
- import jefferson.compression.jffs2_lzma as jffs2_lzma
- import jefferson.compression.rtime as rtime
-@@ -180,7 +180,7 @@ class Jffs2_raw_inode(cstruct.CStruct):
- elif self.compr == JFFS2_COMPR_LZMA:
- self.data = jffs2_lzma.decompress(node_data, self.dsize)
- elif self.compr == JFFS2_COMPR_LZO:
-- self.data = lzo.decompress(node_data)
-+ self.data = lzo.decompress(node_data, False, self.dsize)
- else:
- print("compression not implemented", self)
- print(node_data.hex()[:20])