30 Commits

Author SHA1 Message Date
renovate 7c2df90556 chore(deps): update debian docker tag to trixie-20260623
PR Checks / hadolint (pull_request) Successful in 6s
PR Checks / build-test (pull_request) Successful in 2m16s
2026-06-24 02:59:18 +00:00
cloudix_mcp_server 2d9c22701b chore: bump SABnzbd 3.7.2 → 4.5.5
Docker Build and Push / lint (pull_request) Successful in 7s
Docker Build and Push / build (pull_request) Successful in 2m33s
Docker Build and Push / test (pull_request) Failing after 25s
Docker Build and Push / push (pull_request) Has been skipped
Latest stable 4.x release from https://github.com/sabnzbd/sabnzbd
2026-06-12 08:51:24 -04:00
cloudix_mcp_server 213fcfa08a fix: also unpin cffi and cryptography in requirements.txt
Docker Build and Push / lint (pull_request) Successful in 7s
Docker Build and Push / build (pull_request) Successful in 3m4s
Docker Build and Push / test (pull_request) Failing after 1m19s
Docker Build and Push / push (pull_request) Has been skipped
System python3-cffi (apt) conflicts with cffi==1.15.1 pin;
system cryptography conflicts with cryptography==39.0.0 pin.
Unpin both so pip uses the Debian-provided versions.
2026-06-12 08:38:22 -04:00
cloudix_mcp_server d19dca8715 fix: restore clean Dockerfile, only remove pywin32 from requirements
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Failing after 1m39s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
Remove the broken multi-line Python block. Only keep the targeted
pywin32 removal (other pins are handled via apt-installed packages
python3-cffi).
2026-06-12 08:37:50 -04:00
cloudix_mcp_server 26ee42dfa9 fix: use Python script to filter requirements.txt instead of sed
Docker Build and Push / lint (pull_request) Failing after 5s
Docker Build and Push / build (pull_request) Failing after 5s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
Replace brittle sed patch with a Python script that:
1. Removes Windows/macOS-only packages (pywin32, pyobjc, etc.)
2. Unpins versions to let pip resolve with system packages from apt
2026-06-12 08:36:53 -04:00
cloudix_mcp_server 56c44bd008 fix: remove pywin32 from requirements.txt (Windows-only package)
Docker Build and Push / lint (pull_request) Successful in 7s
Docker Build and Push / build (pull_request) Failing after 52s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
pywin32 is a Windows-only dependency not available on pip for Linux.
Remove it after unpinning to allow requirements install to complete.
2026-06-12 08:33:40 -04:00
cloudix_mcp_server 3ea95d1cac fix: unpin all packages in requirements.txt for system compatibility
Docker Build and Push / lint (pull_request) Successful in 8s
Docker Build and Push / build (pull_request) Failing after 53s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
Debian Trixie ships many Python packages (cryptography 43.0.0,
cffi, etc.) via apt that conflict with SABnzbd's pinned versions
(cryptography==39.0.0, cffi==1.15.1). Pinned deps fail to install
because pip can't uninstall the system packages (no RECORD file).
Relax all pins so pip uses compatible versions already present.
2026-06-12 08:30:57 -04:00
cloudix_mcp_server 5034429022 fix: unpin cffi from requirements.txt to use system python3-cffi
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Failing after 1m26s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
SABnzbd 3.7.2 pins cffi==1.15.1 which is incompatible with Python 3.13
(removed internal API _PyErr_WriteUnraisableMsg). Relax the pin so pip
uses the system-installed python3-cffi (Debian Trixie's version).
2026-06-12 08:28:22 -04:00
cloudix_mcp_server 8572d2e071 fix: install python3-cffi from apt (Python 3.13 compatible)
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Failing after 1m33s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
The pip cffi package fails to build from source on Python 3.13
(no pre-built wheel). Install python3-cffi from Debian repos instead.
Remove the pip cffi>=1.17 workaround.
2026-06-12 08:20:41 -04:00
cloudix_mcp_server bfc1e68e90 fix: pre-install cffi>=1.17 for Python 3.13 compatibility
Docker Build and Push / lint (pull_request) Successful in 8s
Docker Build and Push / build (pull_request) Failing after 1m46s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
SABnzbd's requirements.txt pins cffi 1.15.1 which uses the removed
_PyErr_WriteUnraisableMsg API (Python 3.13+). Pre-install cffi>=1.17
so pip doesn't try to build the incompatible version.
2026-06-12 08:17:49 -04:00
cloudix_mcp_server 2edb1909df fix: remove pip --upgrade pip (Debian's pip 25.1.1 has no RECORD file)
Docker Build and Push / lint (pull_request) Successful in 7s
Docker Build and Push / build (pull_request) Failing after 1m38s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
Debian's pip 25.1.1 is already installed without a RECORD file, causing
the upgrade to fail. The system pip is already recent enough for
requirements.txt.
2026-06-12 08:15:26 -04:00
cloudix_mcp_server f505b1cac0 fix: remove explicit sabyenc pip install (incompatible with Python 3.13)
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Failing after 45s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
sabyenc uses deprecated Python 2 C API (PyString_*) removed in Python
3.12+. Debian Trixie ships Python 3.13. The yEnc dependency is handled
by SABnzbd's requirements.txt. Remove the outdated explicit pip install.
2026-06-12 08:13:22 -04:00
cloudix_mcp_server 1e05c40ffc fix: add PIP_BREAK_SYSTEM_PACKAGES=1 for Debian Trixie PEP 668
Docker Build and Push / lint (pull_request) Successful in 8s
Docker Build and Push / build (pull_request) Failing after 54s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
Debian Trixie enforces PEP 668 (externally-managed-environment),
blocking system-wide pip installs. Export PIP_BREAK_SYSTEM_PACKAGES=1
to allow pip to install sabyenc and other Python deps in the container.
2026-06-12 08:10:46 -04:00
cloudix_mcp_server bba9068158 fix: replace python3-yenc with pip sabyenc for Trixie compatibility
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Failing after 55s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
python3-yenc was removed from Debian Trixie. SABnzbd uses sabyenc
(via pip) as the replacement. Uncomment the pip install line and
remove python3-yenc from apt RUNTIME_PACKAGES.
2026-06-12 08:08:11 -04:00
cloudix_mcp_server 3b3af1662f chore: bump debian buster → trixie and fix sources.list for deb822 format
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Failing after 18s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
Debian Trixie uses the new deb822 format (/etc/apt/sources.list.d/debian.sources)
instead of the old /etc/apt/sources.list file. The two sed commands that target
sources.list need updating:
- Remove archive.debian.org redirect (Trixie is still active on main mirrors)
- Add contrib/non-free to the deb822-format sources file
2026-06-12 08:06:21 -04:00
Sagent 1319d1d3c2 chore: improve renovate dependency detection
Docker Build and Push / lint (pull_request) Successful in 9s
Docker Build and Push / build (pull_request) Failing after 1m27s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
- Add renovate.json with custom regexManagers for:
  - Quoted FROM images (debian:buster)
  - SABNZBD_VERSION, TINI_VERSION, PAR2CMDLINE_VERSION env pins
- Disable gitlabci manager (legacy CI, migrated to Gitea Actions)
- Remove unnecessary quotes from FROM image reference
2026-06-09 02:15:40 +00:00
Sagent 8b6088cee9 fix: redirect deb.debian.org to archive.debian.org for buster EOL
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Successful in 2m42s
Docker Build and Push / test (pull_request) Successful in 21s
Docker Build and Push / push (pull_request) Has been skipped
2026-06-08 21:25:27 +00:00
Sagent c0b250624f fix: add DL3013,DL3042 to hadolint ignore for pip install
Docker Build and Push / lint (pull_request) Successful in 9s
Docker Build and Push / build (pull_request) Failing after 13s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
2026-06-08 20:46:03 +00:00
Sagent fb21d41f32 fix: unquote HEALTHCHECK interval to satisfy hadolint parser
Docker Build and Push / lint (pull_request) Failing after 6s
Docker Build and Push / build (pull_request) Failing after 10s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
2026-06-08 19:53:14 +00:00
Sagent b9f2cd448b feat: add lint, build, test, push pipeline with SHA-pinned actions
Docker Build and Push / lint (pull_request) Failing after 8s
Docker Build and Push / build (pull_request) Failing after 25s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
- Split single build job into 4 jobs: lint, build, test, push
- SHA-pin all actions for supply chain security
- Use ChristopherHX artifact actions (Gitea-compatible)
- Add tests/test.sh with Docker bridge gateway networking
- Add hadolint ignore for apt/brace patterns
2026-06-08 19:41:55 +00:00
Julien Cabillot 5ede3e3bf0 feat: mega update
web/sabnzbd/pipeline/head There was a failure building this commit
2023-02-24 17:28:31 -05:00
Cabillot Julien c2442efbb9 fix cleanup 2018-05-14 14:00:39 -04:00
Julien Cabillot bcbc066173 Maintainer -> label maintainer 2018-05-06 16:26:29 +00:00
Cabillot Julien fd983e6f95 on désactive tini 2018-02-21 12:07:26 +01:00
root 87681bbde8 changement maintainer 2017-11-06 20:08:42 +01:00
root 60a2becec1 ajout de tiny pour l'init 2017-11-06 11:44:18 +01:00
root 09962aadc1 ménage 2017-11-03 08:49:44 +01:00
root 046ead009f ajout curl pour healthcheck 2017-11-01 18:45:44 +01:00
root 14ac4d9cb4 ajout du health check 2017-10-31 21:49:19 +01:00
root 473fe4d59f import 2017-10-31 21:38:46 +01:00