15
0
forked from pool/python-evtx

Accepting request 1195674 from home:pgajdos:python

- 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

OBS-URL: https://build.opensuse.org/request/show/1195674
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-evtx?expand=0&rev=25
This commit is contained in:
2024-08-29 12:42:33 +00:00
committed by Git OBS Bridge
parent 1a89dd1456
commit e0503cc6fa
4 changed files with 20 additions and 19 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ecf3c1736ec9e080ddd1c64b6dad23c756e20d54bd30acc21245b9706258fdd9
size 446141

3
python-evtx-0.8.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f69fae1597d3a0b2cf738fd2fbe42d69ebd8ca1c2d0aa4569cce7884f524231d
size 447348

View File

@@ -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 <dmueller@suse.com>

View File

@@ -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 }'