Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion class_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@
DEBUG = 0

# The pytsk3 version.
VERSION = "20260416"
VERSION = "20260418"

# These functions are used to manage library memory.
FREE = "aff4_free"
Expand Down
4 changes: 2 additions & 2 deletions dpkg/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pytsk3 (20260416-1) unstable; urgency=low
pytsk3 (20260418-1) unstable; urgency=low

* Auto-generated

-- Joachim Metz <joachim.metz@gmail.com> Thu, 16 Apr 2026 04:47:37 -0100
-- Joachim Metz <joachim.metz@gmail.com> Sat, 18 Apr 2026 06:52:05 -0100
24 changes: 0 additions & 24 deletions patches/sleuthkit-4.15.0-crc.h

This file was deleted.

2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pytsk3
version = 20260416
version = 20260418
description = Python bindings for the SleuthKit
long_description = Python bindings for the SleuthKit
author = Michael Cohen
Expand Down
12 changes: 12 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ def patch_sleuthkit(self):
continue

patch_file = os.path.join("..", patch_file)
print("Applying patch file: {0:s}".format(patch_file))
subprocess.check_call(["git", "apply", patch_file], cwd="sleuthkit")

def run(self):
Expand All @@ -328,6 +329,17 @@ def run(self):

self.patch_sleuthkit()

files = [
os.path.join('sleuthkit', 'win32', 'PostgreSQL_CRT', 'win32',
'msvcr120.dll'),
os.path.join('sleuthkit', 'win32', 'PostgreSQL_CRT', 'win64',
'msvcr120.dll'),
]

for file in files:
print("Removing: {0:s}".format(file))
os.remove(file)

compiler_type = distutils.ccompiler.get_default_compiler()
if compiler_type != "msvc":
subprocess.check_call(["./bootstrap"], cwd="sleuthkit")
Expand Down
Loading