Remove orphaned bakery.toml — nothing serves it

breadarr has no .forgejo/workflows at all (no mirror, release, or
package workflow) and no PKGBUILD, and it isn't listed in
bread-ecosystem's registry/bread-ecosystem.toml, so gen-index.sh would
never pick it up even if a release workflow existed. The bakery.toml
here was pure dead metadata.

Not wiring up a release workflow instead: breadarr isn't in the
registry and its distribution channel (bakery, pacman, both, neither)
hasn't actually been decided, so adding one here would be inventing
a channel commitment I have no signal for. If/when breadarr is ready
to ship, follow docs/release-channels.md in bread-ecosystem to add it
properly (bakery.toml + registry entry + release.yml, or a PKGBUILD +
package.yml, or both).
This commit is contained in:
Breadway 2026-07-17 14:02:59 +08:00
parent 830e80622e
commit 2e32488b26

View file

@ -1,21 +0,0 @@
name = "breadarr"
description = "Lightweight Sonarr/Radarr/Prowlarr replacement"
binaries = ["breadarrd", "breadarr-tui"]
# breadarr runs natively (not in Docker), so unlike the old Sonarr/Radarr/
# Prowlarr containers it needs these on the host PATH directly.
system_deps = ["mkvtoolnix-cli", "ffmpeg"]
optional_system_deps = []
bread_deps = []
[[service]]
unit = "breadarrd.service"
enable = true
[config]
dir = "~/.config/breadarr"
example = "config.example.toml"
[install]
post_install = [
"systemctl --user is-active --quiet breadarrd || systemctl --user start breadarrd",
]