diff --git a/python-evtx-0.7.4.tar.gz b/python-evtx-0.7.4.tar.gz deleted file mode 100644 index 1f62b37..0000000 --- a/python-evtx-0.7.4.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ecf3c1736ec9e080ddd1c64b6dad23c756e20d54bd30acc21245b9706258fdd9 -size 446141 diff --git a/python-evtx-0.8.0.tar.gz b/python-evtx-0.8.0.tar.gz new file mode 100644 index 0000000..5153a57 --- /dev/null +++ b/python-evtx-0.8.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f69fae1597d3a0b2cf738fd2fbe42d69ebd8ca1c2d0aa4569cce7884f524231d +size 447348 diff --git a/python-evtx.changes b/python-evtx.changes index 9c44b65..af7ffe4 100644 --- a/python-evtx.changes +++ b/python-evtx.changes @@ -1,3 +1,15 @@ +------------------------------------------------------------------- +Fri Aug 23 07:56:38 UTC 2024 - pgajdos@suse.com + +- version update to 0.8.0 + * Remove support for Python 2.7 and specify minimum supported version is 3.8. + Use black/isort/ruff to ensure the consistency of the code. + * Fixed issue w/ Python 3 by @forensenellanebbia in #75 + * Fix file names in README.md by @maehw in #79 + * Add JSON dump functionality by @ajread4 in #82 + * add missing comma to array by @snipcodeit in #83 + * weaken the dependency rules for use with python3+Fedora by @xambroz in #84 + ------------------------------------------------------------------- Mon Nov 8 11:04:39 UTC 2021 - Dirk Müller diff --git a/python-evtx.spec b/python-evtx.spec index e9e48f1..67c57ae 100644 --- a/python-evtx.spec +++ b/python-evtx.spec @@ -1,7 +1,7 @@ # # spec file for package python-evtx # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -22,11 +22,9 @@ %bcond_with libalternatives %endif -%{?!python_module:%define python_module() python-%{**} python3-%{**}} -%define commands dump dump_chunk_slack eid_record_numbers extract_record filter_records info record_structure structure templates -%bcond_without python2 +%define commands dump dump_json dump_chunk_slack eid_record_numbers extract_record filter_records info record_structure structure templates Name: python-evtx -Version: 0.7.4 +Version: 0.8.0 Release: 0 Summary: Windows Event Log files parser License: Apache-2.0 @@ -36,25 +34,17 @@ BuildRequires: %{python_module hexdump} BuildRequires: %{python_module lxml} BuildRequires: %{python_module pytest} BuildRequires: %{python_module setuptools} -BuildRequires: %{python_module six} -%if %{with python2} -BuildRequires: python2-xml -%endif BuildRequires: dos2unix BuildRequires: fdupes BuildRequires: python-rpm-macros >= 20210929 Requires: python-hexdump Requires: python-lxml -Requires: python-six -%ifpython2 -Requires: python-xml -%endif %if %{with libalternatives} BuildRequires: alts Requires: alts %else Requires(post): update-alternatives -Requires(postun):update-alternatives +Requires(postun): update-alternatives %endif BuildArch: noarch %python_subpackages @@ -69,8 +59,7 @@ inspired by the work of Andreas Schuster and his Perl implementation "Parse-Evtx". %prep -%setup -q -%autopatch -p1 +%autosetup -p1 find Evtx -name "*.py" | xargs sed -i '1 { /^#!/ d }'