pkg-exporter 0.2.8.dev132__tar.gz → 0.2.8.dev133__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/.copier-answers.yml +3 -3
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/.forgejo/workflows/commitlint.yaml +2 -2
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/.forgejo/workflows/lint.yaml +4 -4
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/.forgejo/workflows/publish.yaml +5 -5
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/.forgejo/workflows/test.yaml +2 -2
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/.pre-commit-config.yaml +1 -1
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/PKG-INFO +1 -1
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/pyproject.toml +22 -0
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/.commitlintrc.yaml +0 -0
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/.flake8 +0 -0
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/.gitignore +0 -0
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/LICENSE +0 -0
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/README.md +0 -0
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/cliff.toml +0 -0
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/docs/00-pve-exporter +0 -0
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/renovate.json +0 -0
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/src/pkg_exporter/__init__.py +0 -0
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/src/pkg_exporter/pkgmanager/__init__.py +0 -0
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/src/pkg_exporter/pkgmanager/apt.py +0 -0
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/src/pkg_exporter/reboot.py +0 -0
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/src/pkg_exporter/textfile.py +0 -0
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/tests/.gitkeep +0 -0
- {pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/uv.lock +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Changes here will be overwritten by Copier.
|
|
2
|
-
_commit: 0.
|
|
2
|
+
_commit: 0.9.17
|
|
3
3
|
_src_path: https://codeberg.org/margau/copier-python-uv.git
|
|
4
4
|
code_dir: src
|
|
5
5
|
container: false
|
|
@@ -7,8 +7,8 @@ forgejo_publish: true
|
|
|
7
7
|
forgejo_url: https://codeberg.org/margau/pkg-exporter
|
|
8
8
|
ignore_pylint: true
|
|
9
9
|
ignore_pytest: true
|
|
10
|
-
ignore_ruff:
|
|
11
|
-
ignore_ruff_format:
|
|
10
|
+
ignore_ruff: true
|
|
11
|
+
ignore_ruff_format: true
|
|
12
12
|
project_description: This project provides an textfile-based exporter for apt-repositories
|
|
13
13
|
project_name: pkg-exporter
|
|
14
14
|
pypi_publish: true
|
|
@@ -11,10 +11,10 @@ jobs:
|
|
|
11
11
|
commitlint-check:
|
|
12
12
|
runs-on: docker
|
|
13
13
|
container:
|
|
14
|
-
image: codeberg.org/margau/buildenv-commitlint:latest@sha256:
|
|
14
|
+
image: codeberg.org/margau/buildenv-commitlint:latest@sha256:05a8071e9a8239be1224ede0cb24b24810f7d2731ce1bd95dfcb9ae67db9adc9
|
|
15
15
|
|
|
16
16
|
steps:
|
|
17
|
-
- uses: https://code.forgejo.org/actions/checkout@
|
|
17
|
+
- uses: https://code.forgejo.org/actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
|
|
18
18
|
with:
|
|
19
19
|
fetch-depth: 0
|
|
20
20
|
- name: Validate current commit (last commit) with commitlint
|
|
@@ -13,10 +13,10 @@ jobs:
|
|
|
13
13
|
env:
|
|
14
14
|
UV_CACHE_DIR: /tmp/.uv-cache
|
|
15
15
|
container:
|
|
16
|
-
image: codeberg.org/margau/buildenv-uv:latest@sha256:
|
|
16
|
+
image: codeberg.org/margau/buildenv-uv:latest@sha256:a2559f0d865dbc7d13e82990f6147bd2124129b6e6f3b4d281579834f6ab0a64
|
|
17
17
|
|
|
18
18
|
steps:
|
|
19
|
-
- uses: https://code.forgejo.org/actions/checkout@
|
|
19
|
+
- uses: https://code.forgejo.org/actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
|
|
20
20
|
with:
|
|
21
21
|
fetch-depth: 0
|
|
22
22
|
- name: cache restore
|
|
@@ -30,9 +30,9 @@ jobs:
|
|
|
30
30
|
- name: Install the project
|
|
31
31
|
run: uv sync --locked --all-extras --dev
|
|
32
32
|
- name: check with ruff
|
|
33
|
-
run: uv run ruff check src tests
|
|
33
|
+
run: uv run ruff check src tests || exit 0
|
|
34
34
|
- name: format with ruff
|
|
35
|
-
run: uv run ruff format --check src tests
|
|
35
|
+
run: uv run ruff format --check src tests || exit 0
|
|
36
36
|
- name: check with pylint
|
|
37
37
|
run: uv run pylint src tests || exit 0 # TODO: Check if there is a need for special pytest-related pylint rules
|
|
38
38
|
- name: Minimize uv cache
|
|
@@ -16,10 +16,10 @@ jobs:
|
|
|
16
16
|
env:
|
|
17
17
|
UV_CACHE_DIR: /tmp/.uv-cache
|
|
18
18
|
container:
|
|
19
|
-
image: codeberg.org/margau/buildenv-uv:latest@sha256:
|
|
19
|
+
image: codeberg.org/margau/buildenv-uv:latest@sha256:a2559f0d865dbc7d13e82990f6147bd2124129b6e6f3b4d281579834f6ab0a64
|
|
20
20
|
|
|
21
21
|
steps:
|
|
22
|
-
- uses: https://code.forgejo.org/actions/checkout@
|
|
22
|
+
- uses: https://code.forgejo.org/actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
|
|
23
23
|
with:
|
|
24
24
|
fetch-depth: 0
|
|
25
25
|
- name: cache restore
|
|
@@ -49,7 +49,7 @@ jobs:
|
|
|
49
49
|
env:
|
|
50
50
|
GITEA_REPO: "${{ forgejo.repository }}"
|
|
51
51
|
- name: Upload release assets to Forgejo
|
|
52
|
-
uses: https://code.forgejo.org/actions/forgejo-release@
|
|
52
|
+
uses: https://code.forgejo.org/actions/forgejo-release@2ea0c8c6d9b13a0646caf2f8ea7d632584cf8b07 # v2.13.1
|
|
53
53
|
if: "${{ startsWith(github.ref, 'refs/tags') }}"
|
|
54
54
|
with:
|
|
55
55
|
direction: upload
|
|
@@ -67,10 +67,10 @@ jobs:
|
|
|
67
67
|
name: "Draft Release Notes"
|
|
68
68
|
runs-on: docker
|
|
69
69
|
container:
|
|
70
|
-
image: codeberg.org/margau/buildenv-uv:latest@sha256:
|
|
70
|
+
image: codeberg.org/margau/buildenv-uv:latest@sha256:a2559f0d865dbc7d13e82990f6147bd2124129b6e6f3b4d281579834f6ab0a64
|
|
71
71
|
|
|
72
72
|
steps:
|
|
73
|
-
- uses: https://code.forgejo.org/actions/checkout@
|
|
73
|
+
- uses: https://code.forgejo.org/actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
|
|
74
74
|
with:
|
|
75
75
|
fetch-depth: 0
|
|
76
76
|
- name: draft release notes
|
|
@@ -13,10 +13,10 @@ jobs:
|
|
|
13
13
|
env:
|
|
14
14
|
UV_CACHE_DIR: /tmp/.uv-cache
|
|
15
15
|
container:
|
|
16
|
-
image: codeberg.org/margau/buildenv-uv:latest@sha256:
|
|
16
|
+
image: codeberg.org/margau/buildenv-uv:latest@sha256:a2559f0d865dbc7d13e82990f6147bd2124129b6e6f3b4d281579834f6ab0a64
|
|
17
17
|
|
|
18
18
|
steps:
|
|
19
|
-
- uses: https://code.forgejo.org/actions/checkout@
|
|
19
|
+
- uses: https://code.forgejo.org/actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
|
|
20
20
|
with:
|
|
21
21
|
fetch-depth: 0
|
|
22
22
|
- name: cache restore
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pkg-exporter
|
|
3
|
-
Version: 0.2.8.
|
|
3
|
+
Version: 0.2.8.dev133
|
|
4
4
|
Summary: This project provides an textfile-based exporter for apt-repositories
|
|
5
5
|
Project-URL: Documentation, https://codeberg.org/margau/pkg-exporter/src/branch/main#readme
|
|
6
6
|
Project-URL: Issues, https://codeberg.org/margau/pkg-exporter/issues
|
|
@@ -44,4 +44,26 @@ cache-keys = [{ file = "pyproject.toml" }, { git = { commit = true, tags = true
|
|
|
44
44
|
[tool.coverage.run]
|
|
45
45
|
source = ["src", "tests"]
|
|
46
46
|
|
|
47
|
+
[tool.ruff.lint]
|
|
48
|
+
select = ["ALL"]
|
|
49
|
+
ignore = [
|
|
50
|
+
"D104",
|
|
51
|
+
"D107",
|
|
52
|
+
"D200",
|
|
53
|
+
"D203",
|
|
54
|
+
"D205",
|
|
55
|
+
"D213",
|
|
56
|
+
"D400",
|
|
57
|
+
"D401",
|
|
58
|
+
"D415", # TODO: Remove later
|
|
59
|
+
"FIX002", # TODO: Remove later
|
|
60
|
+
"TD002", # TODO: Remove later
|
|
61
|
+
"TD003", # TODO: Remove later
|
|
62
|
+
"ANN", # TODO: Remove later
|
|
63
|
+
"COM812",
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
[tool.ruff.lint.per-file-ignores]
|
|
67
|
+
"tests/**.py" = ["S101", "INP001", "PLR2004"]
|
|
68
|
+
|
|
47
69
|
# TODO: Dev/CI scripts for lint & co.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pkg_exporter-0.2.8.dev132 → pkg_exporter-0.2.8.dev133}/src/pkg_exporter/pkgmanager/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|