NEWS Debian 13.x support - #83
Open
EA7JRS wants to merge 11 commits into
Open
Conversation
Set up CMake configuration for the aprx project with C11 standard, required dependencies, and installation rules.
Added instructions for compiling from source on Debian 13.x.
Added LORA stream sanitization and KISS frame processing improvements.
Updated the installation instructions to clone a new repository for aprx.
Removed 'hlog.c' from the list of source files.
Updated installation instructions for APRS-LoRa, including new clone command and build steps.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Automatización y Empaquetado ModernoPara facilitar el despliegue en Debian 13 y mantener el código limpio, es conveniente reestructurar los scripts de instalación del repositorio.Migrar a CMake: Reemplaza los archivos configure.in y Makefile.in por un único CMakeLists.txt. Esto te permitirá gestionar de forma automática las dependencias críticas (como libssl-dev) y configurar flags de optimización modernos (-O2, -Wall, -Wextra) con solo un par de líneas de código.Actualizar el script de Systemd: El repositorio original cuenta con configuraciones antiguas de inicio (estilo SystemV/init.d).
Añade un archivo de servicio nativo de Systemd (aprx.service) moderno que aproveche las directivas de seguridad de Debian 13 (como ProtectSystem=full y PrivateTmp=true) para aislar el proceso del demonio:
ini
[Unit]
Description=APRS Digipeater and Internet Gateway Daemon
After=network.target
[Service]
Type=forking
PIDFile=/var/run/aprx.pid
ExecStart=/usr/local/sbin/aprx -f /etc/aprx.conf
Restart=on-failure
ProtectSystem=full
[Install]
WantedBy=multi-user.target