mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
re-applied changes to app-forensics/libnk2
This commit is contained in:
parent
99e2331873
commit
50c762daa3
6 changed files with 416 additions and 0 deletions
2
app-forensics/libnk2/Manifest
Normal file
2
app-forensics/libnk2/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
DIST libnk2-alpha-20161118.tar.gz 1571777 BLAKE2B 829c51bc5e2c6bac7bd485311f38432a833e34aff65755c16a8411f95561d5bdb0ddd619f22b3d13561eeda3ab3919f5f7a37efc85d3203501cc99a2b81ffeab SHA512 450f63c4f1744e76eb3c370e2ca0193ca1734f3ca954e4467402fa0371a269339004bad2e57fe91098335e001a1ee31069bb78771c9eda2ccd38451ee1338f01
|
||||||
|
DIST libnk2-alpha-20170127.tar.gz 1551662 BLAKE2B d5f5c72baa98ed450a0069b0dd84c672c08a006aecb43587617bc125e4fbc1538e80e1a86e241ba6d1a5db42dead6bde2627017fcaea93bc15d18eae81356922 SHA512 1103aa0a5938bc27f24579b2a0b8c9828ed54571902d6094a480450f751d6646114f31ee9518bda33e265505c01374bf814612cd41307090d2820af4139a2554
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
--- a/libnk2/libnk2_record_entry.c.orig 2022-11-20 15:51:22.073666328 +0100
|
||||||
|
+++ b/libnk2/libnk2_record_entry.c 2022-11-20 15:51:58.486999667 +0100
|
||||||
|
@@ -23,6 +23,7 @@
|
||||||
|
#include <memory.h>
|
||||||
|
#include <types.h>
|
||||||
|
|
||||||
|
+#include "libnk2_definitions.h"
|
||||||
|
#include "libnk2_libbfio.h"
|
||||||
|
#include "libnk2_libcerror.h"
|
||||||
|
#include "libnk2_libcnotify.h"
|
||||||
|
|
||||||
249
app-forensics/libnk2/files/2022-11-pynk2_test_file.py
Normal file
249
app-forensics/libnk2/files/2022-11-pynk2_test_file.py
Normal file
|
|
@ -0,0 +1,249 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
#
|
||||||
|
# Python-bindings file type test script
|
||||||
|
#
|
||||||
|
# Copyright (C) 2009-2022, Joachim Metz <joachim.metz@gmail.com>
|
||||||
|
#
|
||||||
|
# Refer to AUTHORS for acknowledgements.
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU Lesser General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
import pynk2
|
||||||
|
|
||||||
|
|
||||||
|
class FileTypeTests(unittest.TestCase):
|
||||||
|
"""Tests the file type."""
|
||||||
|
|
||||||
|
def test_signal_abort(self):
|
||||||
|
"""Tests the signal_abort function."""
|
||||||
|
nk2_file = pynk2.file()
|
||||||
|
|
||||||
|
nk2_file.signal_abort()
|
||||||
|
|
||||||
|
def test_open(self):
|
||||||
|
"""Tests the open function."""
|
||||||
|
test_source = unittest.source
|
||||||
|
if not test_source:
|
||||||
|
raise unittest.SkipTest("missing source")
|
||||||
|
|
||||||
|
nk2_file = pynk2.file()
|
||||||
|
|
||||||
|
nk2_file.open(test_source)
|
||||||
|
|
||||||
|
with self.assertRaises(IOError):
|
||||||
|
nk2_file.open(test_source)
|
||||||
|
|
||||||
|
nk2_file.close()
|
||||||
|
|
||||||
|
with self.assertRaises(TypeError):
|
||||||
|
nk2_file.open(None)
|
||||||
|
|
||||||
|
with self.assertRaises(ValueError):
|
||||||
|
nk2_file.open(test_source, mode="w")
|
||||||
|
|
||||||
|
def test_open_file_object(self):
|
||||||
|
"""Tests the open_file_object function."""
|
||||||
|
test_source = unittest.source
|
||||||
|
if not test_source:
|
||||||
|
raise unittest.SkipTest("missing source")
|
||||||
|
|
||||||
|
if not os.path.isfile(test_source):
|
||||||
|
raise unittest.SkipTest("source not a regular file")
|
||||||
|
|
||||||
|
nk2_file = pynk2.file()
|
||||||
|
|
||||||
|
with open(test_source, "rb") as file_object:
|
||||||
|
|
||||||
|
nk2_file.open_file_object(file_object)
|
||||||
|
|
||||||
|
with self.assertRaises(IOError):
|
||||||
|
nk2_file.open_file_object(file_object)
|
||||||
|
|
||||||
|
nk2_file.close()
|
||||||
|
|
||||||
|
with self.assertRaises(TypeError):
|
||||||
|
nk2_file.open_file_object(None)
|
||||||
|
|
||||||
|
with self.assertRaises(ValueError):
|
||||||
|
nk2_file.open_file_object(file_object, mode="w")
|
||||||
|
|
||||||
|
def test_close(self):
|
||||||
|
"""Tests the close function."""
|
||||||
|
test_source = unittest.source
|
||||||
|
if not test_source:
|
||||||
|
raise unittest.SkipTest("missing source")
|
||||||
|
|
||||||
|
nk2_file = pynk2.file()
|
||||||
|
|
||||||
|
with self.assertRaises(IOError):
|
||||||
|
nk2_file.close()
|
||||||
|
|
||||||
|
def test_open_close(self):
|
||||||
|
"""Tests the open and close functions."""
|
||||||
|
test_source = unittest.source
|
||||||
|
if not test_source:
|
||||||
|
return
|
||||||
|
|
||||||
|
nk2_file = pynk2.file()
|
||||||
|
|
||||||
|
# Test open and close.
|
||||||
|
nk2_file.open(test_source)
|
||||||
|
nk2_file.close()
|
||||||
|
|
||||||
|
# Test open and close a second time to validate clean up on close.
|
||||||
|
nk2_file.open(test_source)
|
||||||
|
nk2_file.close()
|
||||||
|
|
||||||
|
if os.path.isfile(test_source):
|
||||||
|
with open(test_source, "rb") as file_object:
|
||||||
|
|
||||||
|
# Test open_file_object and close.
|
||||||
|
nk2_file.open_file_object(file_object)
|
||||||
|
nk2_file.close()
|
||||||
|
|
||||||
|
# Test open_file_object and close a second time to validate clean up on close.
|
||||||
|
nk2_file.open_file_object(file_object)
|
||||||
|
nk2_file.close()
|
||||||
|
|
||||||
|
# Test open_file_object and close and dereferencing file_object.
|
||||||
|
nk2_file.open_file_object(file_object)
|
||||||
|
del file_object
|
||||||
|
nk2_file.close()
|
||||||
|
|
||||||
|
def test_set_ascii_codepage(self):
|
||||||
|
"""Tests the set_ascii_codepage function."""
|
||||||
|
supported_codepages = (
|
||||||
|
"ascii", "cp874", "cp932", "cp936", "cp949", "cp950", "cp1250",
|
||||||
|
"cp1251", "cp1252", "cp1253", "cp1254", "cp1255", "cp1256", "cp1257",
|
||||||
|
"cp1258")
|
||||||
|
|
||||||
|
nk2_file = pynk2.file()
|
||||||
|
|
||||||
|
for codepage in supported_codepages:
|
||||||
|
nk2_file.set_ascii_codepage(codepage)
|
||||||
|
|
||||||
|
unsupported_codepages = (
|
||||||
|
"iso-8859-1", "iso-8859-2", "iso-8859-3", "iso-8859-4", "iso-8859-5",
|
||||||
|
"iso-8859-6", "iso-8859-7", "iso-8859-8", "iso-8859-9", "iso-8859-10",
|
||||||
|
"iso-8859-11", "iso-8859-13", "iso-8859-14", "iso-8859-15",
|
||||||
|
"iso-8859-16", "koi8_r", "koi8_u")
|
||||||
|
|
||||||
|
for codepage in unsupported_codepages:
|
||||||
|
with self.assertRaises(RuntimeError):
|
||||||
|
nk2_file.set_ascii_codepage(codepage)
|
||||||
|
|
||||||
|
def test_get_ascii_codepage(self):
|
||||||
|
"""Tests the get_ascii_codepage function and ascii_codepage property."""
|
||||||
|
test_source = unittest.source
|
||||||
|
if not test_source:
|
||||||
|
raise unittest.SkipTest("missing source")
|
||||||
|
|
||||||
|
nk2_file = pynk2.file()
|
||||||
|
|
||||||
|
nk2_file.open(test_source)
|
||||||
|
|
||||||
|
ascii_codepage = nk2_file.get_ascii_codepage()
|
||||||
|
self.assertIsNotNone(ascii_codepage)
|
||||||
|
|
||||||
|
self.assertIsNotNone(nk2_file.ascii_codepage)
|
||||||
|
|
||||||
|
nk2_file.close()
|
||||||
|
|
||||||
|
def test_get_modification_time(self):
|
||||||
|
"""Tests the get_modification_time function and modification_time property."""
|
||||||
|
test_source = unittest.source
|
||||||
|
if not test_source:
|
||||||
|
raise unittest.SkipTest("missing source")
|
||||||
|
|
||||||
|
nk2_file = pynk2.file()
|
||||||
|
|
||||||
|
nk2_file.open(test_source)
|
||||||
|
|
||||||
|
modification_time = nk2_file.get_modification_time()
|
||||||
|
self.assertIsNotNone(modification_time)
|
||||||
|
|
||||||
|
self.assertIsNotNone(nk2_file.modification_time)
|
||||||
|
|
||||||
|
nk2_file.close()
|
||||||
|
|
||||||
|
def test_get_number_of_items(self):
|
||||||
|
"""Tests the get_number_of_items function and number_of_items property."""
|
||||||
|
test_source = unittest.source
|
||||||
|
if not test_source:
|
||||||
|
raise unittest.SkipTest("missing source")
|
||||||
|
|
||||||
|
nk2_file = pynk2.file()
|
||||||
|
|
||||||
|
nk2_file.open(test_source)
|
||||||
|
|
||||||
|
number_of_items = nk2_file.get_number_of_items()
|
||||||
|
self.assertIsNotNone(number_of_items)
|
||||||
|
|
||||||
|
self.assertIsNotNone(nk2_file.number_of_items)
|
||||||
|
|
||||||
|
nk2_file.close()
|
||||||
|
|
||||||
|
def test_get_item(self):
|
||||||
|
"""Tests the get_item function."""
|
||||||
|
test_source = unittest.source
|
||||||
|
if not test_source:
|
||||||
|
raise unittest.SkipTest("missing source")
|
||||||
|
|
||||||
|
nk2_file = pynk2.file()
|
||||||
|
|
||||||
|
nk2_file.open(test_source)
|
||||||
|
|
||||||
|
if nk2_file.number_of_items > 0:
|
||||||
|
item = nk2_file.get_item(0)
|
||||||
|
self.assertIsNotNone(item)
|
||||||
|
|
||||||
|
nk2_file.close()
|
||||||
|
|
||||||
|
def test_items(self):
|
||||||
|
"""Tests the items property."""
|
||||||
|
test_source = unittest.source
|
||||||
|
if not test_source:
|
||||||
|
raise unittest.SkipTest("missing source")
|
||||||
|
|
||||||
|
nk2_file = pynk2.file()
|
||||||
|
|
||||||
|
nk2_file.open(test_source)
|
||||||
|
|
||||||
|
if nk2_file.number_of_items > 0:
|
||||||
|
items = nk2_file.items
|
||||||
|
self.assertIsNotNone(items)
|
||||||
|
|
||||||
|
self.assertNotEqual(list(items), [])
|
||||||
|
|
||||||
|
nk2_file.close()
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
argument_parser = argparse.ArgumentParser()
|
||||||
|
|
||||||
|
argument_parser.add_argument(
|
||||||
|
"source", nargs="?", action="store", metavar="PATH",
|
||||||
|
default=None, help="path of the source file.")
|
||||||
|
|
||||||
|
options, unknown_options = argument_parser.parse_known_args()
|
||||||
|
unknown_options.insert(0, sys.argv[0])
|
||||||
|
|
||||||
|
setattr(unittest, "source", options.source)
|
||||||
|
|
||||||
|
unittest.main(argv=unknown_options, verbosity=2)
|
||||||
73
app-forensics/libnk2/libnk2-20161118.ebuild
Normal file
73
app-forensics/libnk2/libnk2-20161118.ebuild
Normal file
|
|
@ -0,0 +1,73 @@
|
||||||
|
# Copyright 1999-2019 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{10..11} )
|
||||||
|
inherit autotools python-single-r1
|
||||||
|
|
||||||
|
DESCRIPTION="Library and tools to access the Microsoft Outlook Nickfile (NK2) format"
|
||||||
|
HOMEPAGE="https://github.com/libyal/libnk2"
|
||||||
|
SRC_URI="https://github.com/libyal/libnk2/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="LGPL-3"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="amd64 ~arm64 x86"
|
||||||
|
IUSE="nls unicode python +threads debug"
|
||||||
|
|
||||||
|
REQUIRED_USE="
|
||||||
|
python? ( ${PYTHON_REQUIRED_USE} )
|
||||||
|
"
|
||||||
|
|
||||||
|
DEPEND="
|
||||||
|
nls? (
|
||||||
|
virtual/libiconv
|
||||||
|
virtual/libintl
|
||||||
|
)
|
||||||
|
python? ( dev-lang/python:* )
|
||||||
|
app-forensics/libbfio[nls=,unicode=,threads=]
|
||||||
|
dev-libs/libcdata[nls=]
|
||||||
|
dev-libs/libcerror[nls=]
|
||||||
|
dev-libs/libcfile[nls=,unicode=]
|
||||||
|
dev-libs/libclocale[nls=,unicode=]
|
||||||
|
dev-libs/libcnotify[nls=]
|
||||||
|
dev-libs/libcpath[nls=,unicode=]
|
||||||
|
dev-libs/libcsplit[nls=,unicode=]
|
||||||
|
dev-libs/libcthreads[nls=]
|
||||||
|
dev-libs/libfdatetime[nls=]
|
||||||
|
dev-libs/libfguid[nls=]
|
||||||
|
dev-libs/libfmapi[nls=,threads=]
|
||||||
|
dev-libs/libfvalue[nls=]
|
||||||
|
dev-libs/libfwnt[nls=,threads=,python=]
|
||||||
|
dev-libs/libuna[nls=,unicode=]
|
||||||
|
"
|
||||||
|
RDEPEND="
|
||||||
|
${DEPEND}
|
||||||
|
python? ( ${PYTHON_DEPS} )
|
||||||
|
"
|
||||||
|
|
||||||
|
src_prepare() {
|
||||||
|
# workaround to fix https://github.com/libyal/libnk2/issues/3
|
||||||
|
eapply "${FILESDIR}/2022-11-libnk2_record_entry_include_definitions.patch"
|
||||||
|
|
||||||
|
# workaround for missing files in distribution package, see https://github.com/libyal/libnk2/issues/4
|
||||||
|
# should not be required any more in releases after 20170127
|
||||||
|
cp "${FILESDIR}/2022-11-pynk2_test_file.py" "${WORKDIR}/${P}/tests/pynk2_test_file.py"
|
||||||
|
|
||||||
|
eautoreconf
|
||||||
|
eapply_user
|
||||||
|
}
|
||||||
|
|
||||||
|
src_configure() {
|
||||||
|
econf \
|
||||||
|
$(use_enable nls) \
|
||||||
|
$(use_with nls libiconv-prefix) \
|
||||||
|
$(use_with nls libintl-prefix) \
|
||||||
|
$(use_enable unicode wide-character-type) \
|
||||||
|
$(use_enable debug verbose-output ) \
|
||||||
|
$(use_enable debug debug-output ) \
|
||||||
|
$(use_enable threads multi-threading-support) \
|
||||||
|
$(use_enable python) \
|
||||||
|
$(use_enable python python3) \
|
||||||
|
|
||||||
|
}
|
||||||
73
app-forensics/libnk2/libnk2-20170127.ebuild
Normal file
73
app-forensics/libnk2/libnk2-20170127.ebuild
Normal file
|
|
@ -0,0 +1,73 @@
|
||||||
|
# Copyright 1999-2019 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{10..11} )
|
||||||
|
inherit autotools python-single-r1
|
||||||
|
|
||||||
|
DESCRIPTION="Library and tools to access the Microsoft Outlook Nickfile (NK2) format"
|
||||||
|
HOMEPAGE="https://github.com/libyal/libnk2"
|
||||||
|
SRC_URI="https://github.com/libyal/libnk2/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="LGPL-3"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="amd64 ~arm64 x86"
|
||||||
|
IUSE="nls unicode python +threads debug"
|
||||||
|
|
||||||
|
REQUIRED_USE="
|
||||||
|
python? ( ${PYTHON_REQUIRED_USE} )
|
||||||
|
"
|
||||||
|
|
||||||
|
DEPEND="
|
||||||
|
nls? (
|
||||||
|
virtual/libiconv
|
||||||
|
virtual/libintl
|
||||||
|
)
|
||||||
|
python? ( dev-lang/python:* )
|
||||||
|
app-forensics/libbfio[nls=,unicode=,threads=]
|
||||||
|
dev-libs/libcdata[nls=]
|
||||||
|
dev-libs/libcerror[nls=]
|
||||||
|
dev-libs/libcfile[nls=,unicode=]
|
||||||
|
dev-libs/libclocale[nls=,unicode=]
|
||||||
|
dev-libs/libcnotify[nls=]
|
||||||
|
dev-libs/libcpath[nls=,unicode=]
|
||||||
|
dev-libs/libcsplit[nls=,unicode=]
|
||||||
|
dev-libs/libcthreads[nls=]
|
||||||
|
dev-libs/libfdatetime[nls=]
|
||||||
|
dev-libs/libfguid[nls=]
|
||||||
|
dev-libs/libfmapi[nls=,threads=]
|
||||||
|
dev-libs/libfvalue[nls=]
|
||||||
|
dev-libs/libfwnt[nls=,threads=,python=]
|
||||||
|
dev-libs/libuna[nls=,unicode=]
|
||||||
|
"
|
||||||
|
RDEPEND="
|
||||||
|
${DEPEND}
|
||||||
|
python? ( ${PYTHON_DEPS} )
|
||||||
|
"
|
||||||
|
|
||||||
|
src_prepare() {
|
||||||
|
# workaround to fix https://github.com/libyal/libnk2/issues/3
|
||||||
|
eapply "${FILESDIR}/2022-11-libnk2_record_entry_include_definitions.patch"
|
||||||
|
|
||||||
|
# workaround for missing files in distribution package, see https://github.com/libyal/libnk2/issues/4
|
||||||
|
# should not be required any more in releases after 20170127
|
||||||
|
cp "${FILESDIR}/2022-11-pynk2_test_file.py" "${WORKDIR}/${P}/tests/pynk2_test_file.py"
|
||||||
|
|
||||||
|
eautoreconf
|
||||||
|
eapply_user
|
||||||
|
}
|
||||||
|
|
||||||
|
src_configure() {
|
||||||
|
econf \
|
||||||
|
$(use_enable nls) \
|
||||||
|
$(use_with nls libiconv-prefix) \
|
||||||
|
$(use_with nls libintl-prefix) \
|
||||||
|
$(use_enable unicode wide-character-type) \
|
||||||
|
$(use_enable debug verbose-output ) \
|
||||||
|
$(use_enable debug debug-output ) \
|
||||||
|
$(use_enable threads multi-threading-support) \
|
||||||
|
$(use_enable python) \
|
||||||
|
$(use_enable python python3) \
|
||||||
|
|
||||||
|
}
|
||||||
8
app-forensics/libnk2/metadata.xml
Normal file
8
app-forensics/libnk2/metadata.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>unknown@pentoo.ch</email>
|
||||||
|
<name>Author Unknown</name>
|
||||||
|
</maintainer>
|
||||||
|
</pkgmetadata>
|
||||||
Loading…
Reference in a new issue