Skip to content

Commit

Permalink
Updated version and documentation (#541)
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz authored Dec 19, 2022
1 parent cf895af commit 6ebda63
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 36 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install dependencies
run: |
dnf copr -y enable @gift/dev
dnf install -y @development-tools python3 python3-devel python3-mock python3-pbr python3-pyyaml python3-setuptools python3-six
dnf install -y @development-tools python3 python3-devel python3-pyyaml python3-setuptools
- name: Run tests
env:
LANG: C.utf8
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
run: |
add-apt-repository -y ppa:gift/dev
apt-get update -q
apt-get install -y build-essential python3 python3-dev python3-distutils python3-mock python3-pbr python3-setuptools python3-six python3-yaml
apt-get install -y build-essential python3 python3-dev python3-distutils python3-setuptools python3-yaml
- name: Run tests
env:
LANG: en_US.UTF-8
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
add-apt-repository -y ppa:deadsnakes/ppa
add-apt-repository -y ppa:gift/dev
apt-get update -q
apt-get install -y build-essential git libffi-dev python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-distutils python3-mock python3-pbr python3-pip python3-setuptools python3-six python3-yaml
apt-get install -y build-essential git libffi-dev python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-distutils python3-pip python3-setuptools python3-yaml
- name: Install tox
run: |
python3 -m pip install tox
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
add-apt-repository -y ppa:deadsnakes/ppa
add-apt-repository -y ppa:gift/dev
apt-get update -q
apt-get install -y build-essential git libffi-dev python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-distutils python3-mock python3-pbr python3-pip python3-setuptools python3-six python3-yaml
apt-get install -y build-essential git libffi-dev python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-distutils python3-pip python3-setuptools python3-yaml
- name: Install tox
run: |
python3 -m pip install tox
Expand Down
2 changes: 1 addition & 1 deletion artifacts/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
"""ForensicArtifacts.com Artifact Repository."""

__version__ = '20221216'
__version__ = '20221219'
2 changes: 1 addition & 1 deletion config/appveyor/install.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Script to set up tests on AppVeyor Windows.

$Dependencies = "PyYAML mock pbr six"
$Dependencies = "PyYAML"
$Dependencies = ${Dependencies} -split " "

$Output = Invoke-Expression -Command "git clone https://github.com/log2timeline/l2tdevtools.git ..\l2tdevtools 2>&1"
Expand Down
4 changes: 2 additions & 2 deletions config/dpkg/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
artifacts (20221216-1) unstable; urgency=low
artifacts (20221219-1) unstable; urgency=low

* Auto-generated

-- Forensic artifacts <[email protected]> Fri, 16 Dec 2022 21:01:08 +0100
-- Forensic artifacts <[email protected]> Mon, 19 Dec 2022 17:44:45 +0100
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

# We cannot install architecture dependent Python modules on readthedocs,
# therefore we mock most imports.
pip_installed_modules = set(['six'])
pip_installed_modules = set()

dependency_helper = utils.dependencies.DependencyHelper(
dependencies_file=os.path.join('..', 'dependencies.ini'),
Expand Down
16 changes: 8 additions & 8 deletions docs/sources/background/Stats.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ The artifact definitions can be found in the
[data directory](https://github.com/ForensicArtifacts/artifacts/tree/main/data) and the format is described in detail
in the [Style Guide](https://artifacts.readthedocs.io/en/latest/sources/Format-specification.html).

Status of the repository as of 2022-12-16
Status of the repository as of 2022-12-19

Description | Number
--- | ---
Number of artifact definitions: | 747
Number of file paths: | 1876
Number of artifact definitions: | 756
Number of file paths: | 1885
Number of Windows Registry key paths: | 677

### Artifact definition source types
Expand All @@ -18,8 +18,8 @@ Identifier | Number
--- | ---
ARTIFACT_GROUP | 47
COMMAND | 10
FILE | 467
PATH | 23
FILE | 471
PATH | 28
REGISTRY_KEY | 57
REGISTRY_VALUE | 116
WMI | 27
Expand All @@ -28,7 +28,7 @@ WMI | 27

Identifier | Number
--- | ---
Darwin | 70
Linux | 63
Windows | 56
Darwin | 72
Linux | 68
Windows | 58

16 changes: 0 additions & 16 deletions test_dependencies.ini
Original file line number Diff line number Diff line change
@@ -1,16 +0,0 @@
[mock]
dpkg_name: python-mock
minimum_version: 2.0.0
rpm_name: python2-mock
version_property: __version__

[pbr]
dpkg_name: python-pbr
minimum_version: 4.2.0
rpm_name: python2-pbr

[six]
dpkg_name: python-six
minimum_version: 1.1.0
rpm_name: python2-six
version_property: __version__
3 changes: 0 additions & 3 deletions test_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
mock >= 2.0.0
pbr >= 4.2.0
six >= 1.1.0

0 comments on commit 6ebda63

Please sign in to comment.