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
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ jobs:
run: |
sudo add-apt-repository universe &&
sudo add-apt-repository -y ppa:deadsnakes/ppa &&
sudo add-apt-repository -y ppa:gift/dev &&
sudo apt-get update &&
sudo apt-get install -y autoconf automake autopoint autotools-dev build-essential git libtool pkg-config python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-distutils python3-pip python3-setuptools
- name: Install tox
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ exclude .git .gitignore .gitmodules
exclude .travis.yml
exclude API-CHANGES.txt config.log ruleset.xml setupDevRepos.py travis_build.sh
recursive-include dpkg *
recursive-include patches *.patch
recursive-include patches *
recursive-include sleuthkit *
recursive-exclude sleuthkit/autom4te.cache *
recursive-exclude sleuthkit/bindings *
Expand Down
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 = "20240407"
VERSION = "20250312"

# 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 (20240407-1) unstable; urgency=low
pytsk3 (20250312-1) unstable; urgency=low

* Auto-generated

-- Joachim Metz <joachim.metz@gmail.com> Sun, 07 Apr 2024 10:22:07 -0100
-- Joachim Metz <joachim.metz@gmail.com> Wed, 12 Mar 2025 06:32:21 -0100
37 changes: 0 additions & 37 deletions patches/sleuthkit-4.12.1-configure.ac

This file was deleted.

18 changes: 0 additions & 18 deletions patches/sleuthkit-4.12.1-fatfs_utils.c

This file was deleted.

13 changes: 13 additions & 0 deletions patches/sleuthkit-4.13.0-configure.ac
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/sleuthkit/configure.ac b/sleuthkit/configure.ac
index 91163fc67..e64f4f99a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,7 @@ AM_MAINTAINER_MODE

dnl Checks for programs.
AC_PROG_CXX
-AX_CXX_COMPILE_STDCXX([17], [noext], [mandatory])
+AX_CXX_COMPILE_STDCXX([14], [noext], [mandatory])
AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL
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 = 20241215
version = 20250312
description = Python bindings for the SleuthKit
long_description = Python bindings for the SleuthKit
author = Michael Cohen
Expand Down
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ def configure_source(self, compiler):
# binding.
command = [
"sh", "configure", "--disable-java", "--disable-multithreading",
"--without-afflib", "--without-libbfio", "--without-libewf",
"--without-libvhdi", "--without-libvmdk", "--without-libvslvm",
"--without-zlib"]
"--without-afflib", "--without-libbfio", "--without-libcrypto",
"--without-libewf", "--without-libvhdi", "--without-libvmdk",
"--without-libvslvm", "--without-zlib"]

output = subprocess.check_output(command, cwd="sleuthkit")
print_line = False
Expand Down Expand Up @@ -241,7 +241,7 @@ class UpdateCommand(Command):

This is normally only run by packagers to make a new release.
"""
_SLEUTHKIT_GIT_TAG = "4.12.1"
_SLEUTHKIT_GIT_TAG = "4.13.0"

version = time.strftime("%Y%m%d")

Expand Down Expand Up @@ -296,8 +296,7 @@ def patch_sleuthkit(self):
fd.write(data)

patch_files = [
"sleuthkit-{0:s}-configure.ac".format(self._SLEUTHKIT_GIT_TAG),
"sleuthkit-{0:s}-fatfs_utils.c".format(self._SLEUTHKIT_GIT_TAG)]
"sleuthkit-{0:s}-configure.ac".format(self._SLEUTHKIT_GIT_TAG)]

for patch_file in patch_files:
patch_file = os.path.join("patches", patch_file)
Expand Down
2 changes: 1 addition & 1 deletion sleuthkit
Submodule sleuthkit updated 616 files
Loading