From 14c585542c3917f8819e867a8bbb8bdaee67b008 Mon Sep 17 00:00:00 2001 From: Joachim Metz Date: Tue, 29 Jul 2025 07:18:22 +0200 Subject: [PATCH 1/2] Changes for release --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 103a00e..4caabc4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = pytsk3 -version = 20250312 +version = 20250729 description = Python bindings for the SleuthKit long_description = Python bindings for the SleuthKit author = Michael Cohen From faaaee6822440519015d43e380fc4e9b6a4074b2 Mon Sep 17 00:00:00 2001 From: Joachim Metz Date: Tue, 29 Jul 2025 07:33:38 +0200 Subject: [PATCH 2/2] Changes for release --- make_dist.sh | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100755 make_dist.sh diff --git a/make_dist.sh b/make_dist.sh deleted file mode 100755 index 5359337..0000000 --- a/make_dist.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh -# Script to package pytsk - -VERSION=`grep -e "^VERSION = " class_parser.py | sed 's/^.*"\([0-9]*\)"$/\1/'`; - -rm -f pytsk-*.tgz - -PYTSK_SOURCE_FILES="\ - ../pytsk/aff4_errors.h \ - ../pytsk/class.c \ - ../pytsk/class.h \ - ../pytsk/error.c \ - ../pytsk/misc.h \ - ../pytsk/pytsk3.h \ - ../pytsk/tsk3.c \ - ../pytsk/tsk3.h" - -TALLOC_SOURCE_FILES="\ - ../pytsk/talloc/LICENSE \ - ../pytsk/talloc/README \ - ../pytsk/talloc/replace.h \ - ../pytsk/talloc/talloc.c \ - ../pytsk/talloc/talloc.h" - -SCRIPTS="\ - ../pytsk/class_parser.py \ - ../pytsk/generate_bindings.py \ - ../pytsk/lexer.py \ - ../pytsk/make_dist.sh \ - ../pytsk/run_tests.py \ - ../pytsk/setup.py \ - ../pytsk/tests/*.py" - -DATA_FILES="\ - ../pytsk/LICENSE \ - ../pytsk/MANIFEST.in \ - ../pytsk/README \ - ../pytsk/dpkg \ - ../pytsk/msvscpp \ - ../pytsk/samples \ - ../pytsk/test_data" - -FILES="\ - ${PYTSK_SOURCE_FILES} \ - ${TALLOC_SOURCE_FILES} \ - ${SCRIPTS} \ - ${DATA_FILES}" - -echo "Creating: pytsk-${VERSION}.tgz" -tar zcf pytsk-${VERSION}.tgz --exclude __pycache__ ${FILES} 2>/dev/null -