3bcf4cc196
Comprehensive fix — not a fallback. Each recipe now has explicit [package] section with name and version. Version inference: - Git-source recipes without rev/branch: '0.1.0' (Red Bear convention) - Tar/git recipes with version in URL or dir name: extracted version - Sysroot-copy recipes: matched to toolchain version Affected: 250+ recipes across all categories (core, libs, dev, system, kde, qt, drivers, gpu, drm, kernel, userspace, etc.) Every recipe in the redbear-mini build chain that was missing [package] now has explicit version metadata. Cookbook can now always determine a version at packaging time, eliminating 'cannot guess version' failures. No cookbook fallback hack — the source of truth is recipe metadata.
37 lines
1.6 KiB
TOML
37 lines
1.6 KiB
TOML
[package]
|
|
name = "redbear-hwutils"
|
|
version = "0.1.0"
|
|
|
|
[source]
|
|
path = "source"
|
|
|
|
[build]
|
|
template = "cargo"
|
|
|
|
[package.files]
|
|
"/usr/bin/lspci" = "lspci"
|
|
"/usr/bin/lsusb" = "lsusb"
|
|
"/usr/bin/redbear-usb-check" = "redbear-usb-check"
|
|
"/usr/bin/redbear-bluetooth-battery-check" = "redbear-bluetooth-battery-check"
|
|
"/usr/bin/redbear-drm-display-check" = "redbear-drm-display-check"
|
|
"/usr/bin/redbear-greeter-check" = "redbear-greeter-check"
|
|
"/usr/bin/redbear-phase4-wayland-check" = "redbear-phase4-wayland-check"
|
|
"/usr/bin/redbear-phase5-network-check" = "redbear-phase5-network-check"
|
|
"/usr/bin/redbear-phase5-wifi-check" = "redbear-phase5-wifi-check"
|
|
"/usr/bin/redbear-phase5-wifi-capture" = "redbear-phase5-wifi-capture"
|
|
"/usr/bin/redbear-phase5-wifi-run" = "redbear-phase5-wifi-run"
|
|
"/usr/bin/redbear-phase5-wifi-analyze" = "redbear-phase5-wifi-analyze"
|
|
"/usr/bin/redbear-phase5-wifi-link-check" = "redbear-phase5-wifi-link-check"
|
|
"/usr/bin/redbear-phase1-evdev-check" = "redbear-phase1-evdev-check"
|
|
"/usr/bin/redbear-phase1-udev-check" = "redbear-phase1-udev-check"
|
|
"/usr/bin/redbear-phase1-firmware-check" = "redbear-phase1-firmware-check"
|
|
"/usr/bin/redbear-phase1-drm-check" = "redbear-phase1-drm-check"
|
|
"/usr/bin/redbear-phase2-wayland-check" = "redbear-phase2-wayland-check"
|
|
"/usr/bin/redbear-phase3-kwin-check" = "redbear-phase3-kwin-check"
|
|
"/usr/bin/redbear-phase4-kde-check" = "redbear-phase4-kde-check"
|
|
"/usr/bin/redbear-phase5-gpu-check" = "redbear-phase5-gpu-check"
|
|
"/usr/bin/redbear-boot-check" = "redbear-boot-check"
|
|
"/usr/bin/redbear-phase6-kde-check" = "redbear-phase6-kde-check"
|
|
"/usr/bin/redbear-phase5-cs-check" = "redbear-phase5-cs-check"
|
|
"/usr/bin/cmdline" = "cmdline"
|