fix: drop rpm build target and stale system tool depends

- Remove rpm from linux build targets (rpmbuild not available locally)
  CI can add it back with apt-get if needed, but pandoc/ffmpeg are now
  bundled so the rpm depends were incorrect anyway
- Remove rpmbuild apt install step from release.yml (not needed)
- Remove pandoc/ffmpeg from deb depends — they are now bundled binaries
- Keep imagemagick and libreoffice-common in deb depends (not bundled)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-04-23 23:00:00 +05:30
co-authored by Copilot
parent 5ee986fab8
commit edefcb8409
2 changed files with 1 additions and 15 deletions
-3
View File
@@ -19,9 +19,6 @@ jobs:
node-version: 20 node-version: 20
cache: npm cache: npm
- name: Install rpmbuild
run: sudo apt-get update && sudo apt-get install -y rpm
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm ci
+1 -12
View File
@@ -192,8 +192,7 @@
"target": [ "target": [
"deb", "deb",
"AppImage", "AppImage",
"snap", "snap"
"rpm"
], ],
"category": "Utility", "category": "Utility",
"maintainer": "ConcreteInfo <amit.wh@gmail.com>", "maintainer": "ConcreteInfo <amit.wh@gmail.com>",
@@ -203,21 +202,11 @@
}, },
"deb": { "deb": {
"depends": [ "depends": [
"pandoc",
"ffmpeg",
"imagemagick", "imagemagick",
"libreoffice-common" "libreoffice-common"
], ],
"description": "Professional Markdown editor and universal file converter", "description": "Professional Markdown editor and universal file converter",
"maintainer": "ConcreteInfo <amit.wh@gmail.com>" "maintainer": "ConcreteInfo <amit.wh@gmail.com>"
},
"rpm": {
"depends": [
"pandoc",
"ffmpeg",
"ImageMagick",
"libreoffice-core"
]
} }
} }
} }