pkg-exporter 0.2.8.dev76__tar.gz → 0.2.8.dev80__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.dev76 → pkg_exporter-0.2.8.dev80}/.copier-answers.yml +2 -1
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/.forgejo/workflows/lint.yaml +1 -1
- pkg_exporter-0.2.8.dev80/.forgejo/workflows/publish.yaml +62 -0
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/.pre-commit-config.yaml +1 -1
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/PKG-INFO +1 -1
- pkg_exporter-0.2.8.dev80/cliff.toml +76 -0
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/renovate.json +4 -2
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/uv.lock +25 -25
- pkg_exporter-0.2.8.dev76/.forgejo/workflows/publish.yaml +0 -34
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/.commitlintrc.yaml +0 -0
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/.flake8 +0 -0
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/.forgejo/workflows/commitlint.yaml +0 -0
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/.gitignore +0 -0
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/LICENSE +0 -0
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/README.md +0 -0
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/docs/00-pve-exporter +0 -0
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/pyproject.toml +0 -0
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/src/pkg_exporter/__init__.py +0 -0
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/src/pkg_exporter/pkgmanager/__init__.py +0 -0
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/src/pkg_exporter/pkgmanager/apt.py +0 -0
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/src/pkg_exporter/reboot.py +0 -0
- {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/src/pkg_exporter/textfile.py +0 -0
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# Changes here will be overwritten by Copier.
|
|
2
|
-
_commit: 0.0.
|
|
2
|
+
_commit: 0.0.202
|
|
3
3
|
_src_path: https://codeberg.org/margau/copier-python-uv.git
|
|
4
4
|
code_dir: src
|
|
5
5
|
container: false
|
|
6
|
+
forgejo_publish: true
|
|
6
7
|
forgejo_url: https://codeberg.org/margau/pkg-exporter
|
|
7
8
|
ignore_pylint: true
|
|
8
9
|
ignore_ruff: false
|
|
@@ -11,7 +11,7 @@ jobs:
|
|
|
11
11
|
lint-check:
|
|
12
12
|
runs-on: docker
|
|
13
13
|
container:
|
|
14
|
-
image: codeberg.org/margau/buildenv-uv:latest@sha256:
|
|
14
|
+
image: codeberg.org/margau/buildenv-uv:latest@sha256:73f9e4d942f6e30c243f3faad7cf302c4e56dfb5a3b2d115bc1e58ab851aa87d
|
|
15
15
|
|
|
16
16
|
steps:
|
|
17
17
|
- uses: https://code.forgejo.org/actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
name: publish
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
tags:
|
|
8
|
+
- 'v*'
|
|
9
|
+
# non-main branches are handled by pull_request
|
|
10
|
+
pull_request:
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
build_publish:
|
|
14
|
+
name: "Build (and Publish)"
|
|
15
|
+
runs-on: docker
|
|
16
|
+
container:
|
|
17
|
+
image: codeberg.org/margau/buildenv-uv:latest@sha256:73f9e4d942f6e30c243f3faad7cf302c4e56dfb5a3b2d115bc1e58ab851aa87d
|
|
18
|
+
|
|
19
|
+
steps:
|
|
20
|
+
- uses: https://code.forgejo.org/actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
21
|
+
with:
|
|
22
|
+
fetch-depth: 0
|
|
23
|
+
- name: Build the project
|
|
24
|
+
run: uv build
|
|
25
|
+
- name: Publish release to pypi
|
|
26
|
+
run: uv publish
|
|
27
|
+
if: "${{ startsWith(github.ref, 'refs/tags') }}"
|
|
28
|
+
env:
|
|
29
|
+
UV_PUBLISH_TOKEN: "${{ secrets.UV_PUBLISH_TOKEN }}"
|
|
30
|
+
- name: Publish dev version to pypi
|
|
31
|
+
run: uv publish
|
|
32
|
+
if: "${{ github.ref == 'refs/heads/main' }}"
|
|
33
|
+
env:
|
|
34
|
+
UV_PUBLISH_TOKEN: "${{ secrets.UV_PUBLISH_TOKEN }}"
|
|
35
|
+
- name: release notes
|
|
36
|
+
if: "${{ startsWith(github.ref, 'refs/tags') }}"
|
|
37
|
+
run: |
|
|
38
|
+
git-cliff --current -o notes.md
|
|
39
|
+
env:
|
|
40
|
+
GITEA_REPO: "${{ forgejo.repository }}"
|
|
41
|
+
- name: Upload release assets to Forgejo
|
|
42
|
+
uses: https://code.forgejo.org/actions/forgejo-release@6c747b97f9452ba9203be1d1b326432185d9a03f # v2.10.0
|
|
43
|
+
if: "${{ startsWith(github.ref, 'refs/tags') }}"
|
|
44
|
+
with:
|
|
45
|
+
direction: upload
|
|
46
|
+
release-dir: dist
|
|
47
|
+
release-notes-file: notes.md
|
|
48
|
+
releasenotes-draft:
|
|
49
|
+
name: "Draft Release Notes"
|
|
50
|
+
runs-on: docker
|
|
51
|
+
container:
|
|
52
|
+
image: codeberg.org/margau/buildenv-uv:latest@sha256:73f9e4d942f6e30c243f3faad7cf302c4e56dfb5a3b2d115bc1e58ab851aa87d
|
|
53
|
+
|
|
54
|
+
steps:
|
|
55
|
+
- uses: https://code.forgejo.org/actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
56
|
+
with:
|
|
57
|
+
fetch-depth: 0
|
|
58
|
+
- name: draft release notes
|
|
59
|
+
run: |
|
|
60
|
+
git-cliff --unreleased
|
|
61
|
+
env:
|
|
62
|
+
GITEA_REPO: "${{ forgejo.repository }}"
|
|
@@ -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.dev80
|
|
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
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# git-cliff ~ configuration file
|
|
2
|
+
# https://git-cliff.org/docs/configuration
|
|
3
|
+
|
|
4
|
+
[changelog]
|
|
5
|
+
# A Tera template to be rendered for each release in the changelog.
|
|
6
|
+
# See https://keats.github.io/tera/docs/#introduction
|
|
7
|
+
body = """
|
|
8
|
+
{% if version %}\
|
|
9
|
+
# [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
|
|
10
|
+
{% else %}\
|
|
11
|
+
# [unreleased]
|
|
12
|
+
{% endif %}\
|
|
13
|
+
{%- for group, commits in commits | group_by(attribute="group") %}
|
|
14
|
+
## {{ group | striptags | trim | upper_first }}
|
|
15
|
+
{%- for commit in commits %}
|
|
16
|
+
* {{ commit.message | split(pat="\n") | first | trim }}\
|
|
17
|
+
{% if commit.remote.username %} by @{{ commit.remote.username }}{%- else %} by {{ commit.author.name }} {%- endif -%}
|
|
18
|
+
{% if commit.remote.pr_number %} in \
|
|
19
|
+
[#{{ commit.remote.pr_number }}]({{ self::remote_url() }}/pulls/{{ commit.remote.pr_number }}) \
|
|
20
|
+
{%- endif %}
|
|
21
|
+
{%- endfor %}
|
|
22
|
+
{%- endfor %}
|
|
23
|
+
|
|
24
|
+
{%- if gitea -%}
|
|
25
|
+
{% if gitea.contributors | filter(attribute="is_first_time", value=true) | length != 0 %}
|
|
26
|
+
{% raw %}\n{% endraw -%}
|
|
27
|
+
## New Contributors
|
|
28
|
+
{%- endif %}\
|
|
29
|
+
{% for contributor in gitea.contributors | filter(attribute="is_first_time", value=true) %}
|
|
30
|
+
* @{{ contributor.username }} made their first contribution
|
|
31
|
+
{%- if contributor.pr_number %} in \
|
|
32
|
+
[#{{ contributor.pr_number }}]({{ self::remote_url() }}/pulls/{{ contributor.pr_number }}) \
|
|
33
|
+
{%- endif %}
|
|
34
|
+
{%- endfor -%}
|
|
35
|
+
{%- endif -%}
|
|
36
|
+
|
|
37
|
+
{% if version %}
|
|
38
|
+
{% if previous.version %}
|
|
39
|
+
**Full Changelog**: {{ self::remote_url() }}/compare/{{ previous.version }}...{{ version }}
|
|
40
|
+
{% endif %}
|
|
41
|
+
{% else -%}
|
|
42
|
+
{% raw %}\n{% endraw %}
|
|
43
|
+
{% endif %}
|
|
44
|
+
|
|
45
|
+
{%- macro remote_url() -%}
|
|
46
|
+
https://codeberg.org/entropia/paperless-asn-qr-codes
|
|
47
|
+
{%- endmacro -%}
|
|
48
|
+
"""
|
|
49
|
+
# Remove leading and trailing whitespaces from the changelog's body.
|
|
50
|
+
trim = true
|
|
51
|
+
# A Tera template to be rendered as the changelog's footer.
|
|
52
|
+
# See https://keats.github.io/tera/docs/#introduction
|
|
53
|
+
footer = """
|
|
54
|
+
<!-- generated by git-cliff -->
|
|
55
|
+
"""
|
|
56
|
+
# An array of regex based postprocessors to modify the changelog.
|
|
57
|
+
# Replace the placeholder `<REPO>` with a URL.
|
|
58
|
+
postprocessors = []
|
|
59
|
+
|
|
60
|
+
[git]
|
|
61
|
+
# Parse commits according to the conventional commits specification.
|
|
62
|
+
# See https://www.conventionalcommits.org
|
|
63
|
+
conventional_commits = false
|
|
64
|
+
# Exclude commits that do not match the conventional commits specification.
|
|
65
|
+
filter_unconventional = true
|
|
66
|
+
# Split commits on newlines, treating each line as an individual commit.
|
|
67
|
+
split_commits = false
|
|
68
|
+
# An array of regex based parsers to modify commit messages prior to further processing.
|
|
69
|
+
commit_preprocessors = [{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "" }]
|
|
70
|
+
# Exclude commits that are not matched by any commit parser.
|
|
71
|
+
filter_commits = false
|
|
72
|
+
# Order releases topologically instead of chronologically.
|
|
73
|
+
topo_order = false
|
|
74
|
+
# Order of commits in each group/release within the changelog.
|
|
75
|
+
# Allowed values: newest, oldest
|
|
76
|
+
sort_commits = "newest"
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
".forgejo/workflows/commitlint.yaml",
|
|
10
10
|
".forgejo/workflows/lint.yaml",
|
|
11
11
|
".forgejo/workflows/publish.yaml",
|
|
12
|
-
".forgejo/workflows/container.yaml"
|
|
12
|
+
".forgejo/workflows/container.yaml",
|
|
13
|
+
"Containerfile"
|
|
13
14
|
],
|
|
14
15
|
"enabled": false
|
|
15
16
|
},
|
|
@@ -18,7 +19,8 @@
|
|
|
18
19
|
".forgejo/workflows/commitlint.yaml",
|
|
19
20
|
".forgejo/workflows/lint.yaml",
|
|
20
21
|
".forgejo/workflows/publish.yaml",
|
|
21
|
-
".forgejo/workflows/container.yaml"
|
|
22
|
+
".forgejo/workflows/container.yaml",
|
|
23
|
+
"Containerfile"
|
|
22
24
|
],
|
|
23
25
|
"matchManagers": [
|
|
24
26
|
"copier"
|
|
@@ -9,14 +9,14 @@ resolution-markers = [
|
|
|
9
9
|
|
|
10
10
|
[[package]]
|
|
11
11
|
name = "astroid"
|
|
12
|
-
version = "4.0.
|
|
12
|
+
version = "4.0.4"
|
|
13
13
|
source = { registry = "https://pypi.org/simple" }
|
|
14
14
|
dependencies = [
|
|
15
15
|
{ name = "typing-extensions", marker = "python_full_version < '3.11'" },
|
|
16
16
|
]
|
|
17
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
17
|
+
sdist = { url = "https://files.pythonhosted.org/packages/07/63/0adf26577da5eff6eb7a177876c1cfa213856be9926a000f65c4add9692b/astroid-4.0.4.tar.gz", hash = "sha256:986fed8bcf79fb82c78b18a53352a0b287a73817d6dbcfba3162da36667c49a0", size = 406358, upload-time = "2026-02-07T23:35:07.509Z" }
|
|
18
18
|
wheels = [
|
|
19
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
19
|
+
{ url = "https://files.pythonhosted.org/packages/b0/cf/1c5f42b110e57bc5502eb80dbc3b03d256926062519224835ef08134f1f9/astroid-4.0.4-py3-none-any.whl", hash = "sha256:52f39653876c7dec3e3afd4c2696920e05c83832b9737afc21928f2d2eb7a753", size = 276445, upload-time = "2026-02-07T23:35:05.344Z" },
|
|
20
20
|
]
|
|
21
21
|
|
|
22
22
|
[[package]]
|
|
@@ -79,11 +79,11 @@ dev = [
|
|
|
79
79
|
|
|
80
80
|
[[package]]
|
|
81
81
|
name = "platformdirs"
|
|
82
|
-
version = "4.
|
|
82
|
+
version = "4.9.1"
|
|
83
83
|
source = { registry = "https://pypi.org/simple" }
|
|
84
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
84
|
+
sdist = { url = "https://files.pythonhosted.org/packages/6c/d5/763666321efaded11112de8b7a7f2273dd8d1e205168e73c334e54b0ab9a/platformdirs-4.9.1.tar.gz", hash = "sha256:f310f16e89c4e29117805d8328f7c10876eeff36c94eac879532812110f7d39f", size = 28392, upload-time = "2026-02-14T21:02:44.973Z" }
|
|
85
85
|
wheels = [
|
|
86
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
86
|
+
{ url = "https://files.pythonhosted.org/packages/70/77/e8c95e95f1d4cdd88c90a96e31980df7e709e51059fac150046ad67fac63/platformdirs-4.9.1-py3-none-any.whl", hash = "sha256:61d8b967d34791c162d30d60737369cbbd77debad5b981c4bfda1842e71e0d66", size = 21307, upload-time = "2026-02-14T21:02:43.492Z" },
|
|
87
87
|
]
|
|
88
88
|
|
|
89
89
|
[[package]]
|
|
@@ -116,27 +116,27 @@ wheels = [
|
|
|
116
116
|
|
|
117
117
|
[[package]]
|
|
118
118
|
name = "ruff"
|
|
119
|
-
version = "0.15.
|
|
119
|
+
version = "0.15.1"
|
|
120
120
|
source = { registry = "https://pypi.org/simple" }
|
|
121
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
121
|
+
sdist = { url = "https://files.pythonhosted.org/packages/04/dc/4e6ac71b511b141cf626357a3946679abeba4cf67bc7cc5a17920f31e10d/ruff-0.15.1.tar.gz", hash = "sha256:c590fe13fb57c97141ae975c03a1aedb3d3156030cabd740d6ff0b0d601e203f", size = 4540855, upload-time = "2026-02-12T23:09:09.998Z" }
|
|
122
122
|
wheels = [
|
|
123
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
124
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
125
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
126
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
127
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
128
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
129
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
130
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
131
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
132
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
133
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
134
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
135
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
136
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
137
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
138
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
139
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
123
|
+
{ url = "https://files.pythonhosted.org/packages/23/bf/e6e4324238c17f9d9120a9d60aa99a7daaa21204c07fcd84e2ef03bb5fd1/ruff-0.15.1-py3-none-linux_armv6l.whl", hash = "sha256:b101ed7cf4615bda6ffe65bdb59f964e9f4a0d3f85cbf0e54f0ab76d7b90228a", size = 10367819, upload-time = "2026-02-12T23:09:03.598Z" },
|
|
124
|
+
{ url = "https://files.pythonhosted.org/packages/b3/ea/c8f89d32e7912269d38c58f3649e453ac32c528f93bb7f4219258be2e7ed/ruff-0.15.1-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:939c995e9277e63ea632cc8d3fae17aa758526f49a9a850d2e7e758bfef46602", size = 10798618, upload-time = "2026-02-12T23:09:22.928Z" },
|
|
125
|
+
{ url = "https://files.pythonhosted.org/packages/5e/0f/1d0d88bc862624247d82c20c10d4c0f6bb2f346559d8af281674cf327f15/ruff-0.15.1-py3-none-macosx_11_0_arm64.whl", hash = "sha256:1d83466455fdefe60b8d9c8df81d3c1bbb2115cede53549d3b522ce2bc703899", size = 10148518, upload-time = "2026-02-12T23:08:58.339Z" },
|
|
126
|
+
{ url = "https://files.pythonhosted.org/packages/f5/c8/291c49cefaa4a9248e986256df2ade7add79388fe179e0691be06fae6f37/ruff-0.15.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a9457e3c3291024866222b96108ab2d8265b477e5b1534c7ddb1810904858d16", size = 10518811, upload-time = "2026-02-12T23:09:31.865Z" },
|
|
127
|
+
{ url = "https://files.pythonhosted.org/packages/c3/1a/f5707440e5ae43ffa5365cac8bbb91e9665f4a883f560893829cf16a606b/ruff-0.15.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:92c92b003e9d4f7fbd33b1867bb15a1b785b1735069108dfc23821ba045b29bc", size = 10196169, upload-time = "2026-02-12T23:09:17.306Z" },
|
|
128
|
+
{ url = "https://files.pythonhosted.org/packages/2a/ff/26ddc8c4da04c8fd3ee65a89c9fb99eaa5c30394269d424461467be2271f/ruff-0.15.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1fe5c41ab43e3a06778844c586251eb5a510f67125427625f9eb2b9526535779", size = 10990491, upload-time = "2026-02-12T23:09:25.503Z" },
|
|
129
|
+
{ url = "https://files.pythonhosted.org/packages/fc/00/50920cb385b89413f7cdb4bb9bc8fc59c1b0f30028d8bccc294189a54955/ruff-0.15.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:66a6dd6df4d80dc382c6484f8ce1bcceb55c32e9f27a8b94c32f6c7331bf14fb", size = 11843280, upload-time = "2026-02-12T23:09:19.88Z" },
|
|
130
|
+
{ url = "https://files.pythonhosted.org/packages/5d/6d/2f5cad8380caf5632a15460c323ae326f1e1a2b5b90a6ee7519017a017ca/ruff-0.15.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a4a42cbb8af0bda9bcd7606b064d7c0bc311a88d141d02f78920be6acb5aa83", size = 11274336, upload-time = "2026-02-12T23:09:14.907Z" },
|
|
131
|
+
{ url = "https://files.pythonhosted.org/packages/a3/1d/5f56cae1d6c40b8a318513599b35ea4b075d7dc1cd1d04449578c29d1d75/ruff-0.15.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ab064052c31dddada35079901592dfba2e05f5b1e43af3954aafcbc1096a5b2", size = 11137288, upload-time = "2026-02-12T23:09:07.475Z" },
|
|
132
|
+
{ url = "https://files.pythonhosted.org/packages/cd/20/6f8d7d8f768c93b0382b33b9306b3b999918816da46537d5a61635514635/ruff-0.15.1-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:5631c940fe9fe91f817a4c2ea4e81f47bee3ca4aa646134a24374f3c19ad9454", size = 11070681, upload-time = "2026-02-12T23:08:55.43Z" },
|
|
133
|
+
{ url = "https://files.pythonhosted.org/packages/9a/67/d640ac76069f64cdea59dba02af2e00b1fa30e2103c7f8d049c0cff4cafd/ruff-0.15.1-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:68138a4ba184b4691ccdc39f7795c66b3c68160c586519e7e8444cf5a53e1b4c", size = 10486401, upload-time = "2026-02-12T23:09:27.927Z" },
|
|
134
|
+
{ url = "https://files.pythonhosted.org/packages/65/3d/e1429f64a3ff89297497916b88c32a5cc88eeca7e9c787072d0e7f1d3e1e/ruff-0.15.1-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:518f9af03bfc33c03bdb4cb63fabc935341bb7f54af500f92ac309ecfbba6330", size = 10197452, upload-time = "2026-02-12T23:09:12.147Z" },
|
|
135
|
+
{ url = "https://files.pythonhosted.org/packages/78/83/e2c3bade17dad63bf1e1c2ffaf11490603b760be149e1419b07049b36ef2/ruff-0.15.1-py3-none-musllinux_1_2_i686.whl", hash = "sha256:da79f4d6a826caaea95de0237a67e33b81e6ec2e25fc7e1993a4015dffca7c61", size = 10693900, upload-time = "2026-02-12T23:09:34.418Z" },
|
|
136
|
+
{ url = "https://files.pythonhosted.org/packages/a1/27/fdc0e11a813e6338e0706e8b39bb7a1d61ea5b36873b351acee7e524a72a/ruff-0.15.1-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:3dd86dccb83cd7d4dcfac303ffc277e6048600dfc22e38158afa208e8bf94a1f", size = 11227302, upload-time = "2026-02-12T23:09:36.536Z" },
|
|
137
|
+
{ url = "https://files.pythonhosted.org/packages/f6/58/ac864a75067dcbd3b95be5ab4eb2b601d7fbc3d3d736a27e391a4f92a5c1/ruff-0.15.1-py3-none-win32.whl", hash = "sha256:660975d9cb49b5d5278b12b03bb9951d554543a90b74ed5d366b20e2c57c2098", size = 10462555, upload-time = "2026-02-12T23:09:29.899Z" },
|
|
138
|
+
{ url = "https://files.pythonhosted.org/packages/e0/5e/d4ccc8a27ecdb78116feac4935dfc39d1304536f4296168f91ed3ec00cd2/ruff-0.15.1-py3-none-win_amd64.whl", hash = "sha256:c820fef9dd5d4172a6570e5721704a96c6679b80cf7be41659ed439653f62336", size = 11599956, upload-time = "2026-02-12T23:09:01.157Z" },
|
|
139
|
+
{ url = "https://files.pythonhosted.org/packages/2a/07/5bda6a85b220c64c65686bc85bd0bbb23b29c62b3a9f9433fa55f17cda93/ruff-0.15.1-py3-none-win_arm64.whl", hash = "sha256:5ff7d5f0f88567850f45081fac8f4ec212be8d0b963e385c3f7d0d2eb4899416", size = 10874604, upload-time = "2026-02-12T23:09:05.515Z" },
|
|
140
140
|
]
|
|
141
141
|
|
|
142
142
|
[[package]]
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
name: publish
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- main
|
|
7
|
-
tags:
|
|
8
|
-
- 'v*'
|
|
9
|
-
# non-main branches are handled by pull_request
|
|
10
|
-
pull_request:
|
|
11
|
-
|
|
12
|
-
jobs:
|
|
13
|
-
build_publish:
|
|
14
|
-
name: "Build (and Publish)"
|
|
15
|
-
runs-on: docker
|
|
16
|
-
container:
|
|
17
|
-
image: codeberg.org/margau/buildenv-uv:latest@sha256:eaa6f1c4510e6d5c0c81164a127e281be029d2ed261e060880145c024e890ce4
|
|
18
|
-
|
|
19
|
-
steps:
|
|
20
|
-
- uses: https://code.forgejo.org/actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
21
|
-
with:
|
|
22
|
-
fetch-depth: 0
|
|
23
|
-
- name: Build the project
|
|
24
|
-
run: uv build
|
|
25
|
-
- name: Publish release to pypi
|
|
26
|
-
run: uv publish
|
|
27
|
-
if: "${{ startsWith(github.ref, 'refs/tags') }}"
|
|
28
|
-
env:
|
|
29
|
-
UV_PUBLISH_TOKEN: "${{ secrets.UV_PUBLISH_TOKEN }}"
|
|
30
|
-
- name: Publish dev version to pypi
|
|
31
|
-
run: uv publish
|
|
32
|
-
if: "${{ github.ref == 'refs/heads/main' }}"
|
|
33
|
-
env:
|
|
34
|
-
UV_PUBLISH_TOKEN: "${{ secrets.UV_PUBLISH_TOKEN }}"
|
|
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.dev76 → pkg_exporter-0.2.8.dev80}/src/pkg_exporter/pkgmanager/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|