3 Commits

Author SHA1 Message Date
pan 3d63dc5957 Update Thüringen edition to v0.17 core 2026-07-06 21:12:21 +02:00
pan 2fb3c8fb13 Align ignores and clarify APT version selection 2026-07-05 23:47:48 +02:00
pan 2de36d02dd Use public signed RPM repository bootstrap 2026-07-05 23:27:02 +02:00
6 changed files with 63 additions and 8 deletions
+53 -1
View File
@@ -1,8 +1,60 @@
# Python
__pycache__/
*.py[cod]
*.pyo
*.egg-info/
.eggs/
.pytest_cache/
.venv/
.mypy_cache/
.ruff_cache/
.hypothesis/
.tox/
.nox/
.pyre/
.pytype/
.pyright/
# Packaging
build/
dist/
*.whl
*.deb
*.rpm
rpmbuild/
# Virtual environments
.venv/
venv/
env/
.direnv/
# Coverage
.coverage
.coverage.*
coverage.xml
htmlcov/
# Editors and operating systems
.idea/
.vscode/
.fleet/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# Local configuration and secrets
.env
.env.*
!.env.example
synadm.yaml
synadm.yml
synadm.yaml.bak-*
synadm.yml.bak-*
*.local.yaml
*.local.yml
# Local logs and temporary files
*.log
*.tmp
+5 -2
View File
@@ -45,14 +45,17 @@ sudo apt update
sudo apt install synadm-tui-thueringen
```
Dieser Ablauf wurde mit Version 0.15 in einer isolierten APT-Umgebung geprüft: Signaturprüfung, Paketauflösung, Download, Dateirechte und Programmstart waren erfolgreich.
APT wählt automatisch die neueste verfügbare Version. Eine Versionsangabe wie
`synadm-tui-thueringen=0.17` ist für die normale Installation nicht erforderlich.
Dieser Ablauf wurde mit Version 0.17 in einer isolierten APT-Umgebung geprüft: Signaturprüfung, Paketauflösung, Download, Dateirechte und Programmstart waren erfolgreich.
## RPM-Status
Die getrennte und signierte RPM-Quelle wird so eingerichtet:
```bash
sudo curl -fsSL https://git.blackwall.ipv64.de/pan/synadm-tui-thueringen/raw/branch/main/packaging/synadm-tui-thueringen.repo \
sudo curl -fsSL https://git.blackwall.ipv64.de/api/packages/pan/generic/synadm-tui-repository/1/synadm-tui-thueringen.repo \
-o /etc/yum.repos.d/synadm-tui-thueringen.repo
sudo dnf install synadm-tui-thueringen
```
+1 -1
View File
@@ -3,4 +3,4 @@ name=synadm TUI Thüringen
baseurl=https://git.blackwall.ipv64.de/api/packages/pan/rpm/thueringen
enabled=1
gpgcheck=1
gpgkey=https://git.blackwall.ipv64.de/pan/synadm-tui/raw/branch/main/packaging/RPM-GPG-KEY-synadm-tui
gpgkey=https://git.blackwall.ipv64.de/api/packages/pan/generic/synadm-tui-repository/1/RPM-GPG-KEY-synadm-tui
+2 -2
View File
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
[project]
name = "synadm-tui-thueringen"
version = "0.16"
version = "0.17"
description = "Thüringen-Edition der Terminal-Oberfläche für synadm"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "GPL-3.0-or-later" }
authors = [{ name = "synadm-tui contributors" }]
dependencies = ["synadm-tui==0.16"]
dependencies = ["synadm-tui==0.17"]
classifiers = [
"Environment :: Console :: Curses",
"Programming Language :: Python :: 3",
+1 -1
View File
@@ -1,3 +1,3 @@
"""Branding extension for the Thüringen edition of synadm TUI."""
__version__ = "0.16"
__version__ = "0.17"