From 2097fb48f1698e384e7a65e28a122f5f9c2437c7 Mon Sep 17 00:00:00 2001 From: vasilito Date: Sun, 12 Jul 2026 18:39:02 +0300 Subject: [PATCH] fix: add [package].version to ca-certificates and icu recipes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cookbook requires parseable version — ca-certificates (git source, no rev/branch) and icu (tar URL with underscore version format) failed 'cannot guess version' at packaging stage. Added explicit [package] sections: - ca-certificates: version 0.1.0 - icu: version 75.1 --- local/recipes/libs/icu/recipe.toml | 4 ++++ recipes/other/ca-certificates/recipe.toml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/local/recipes/libs/icu/recipe.toml b/local/recipes/libs/icu/recipe.toml index d028ba4cf4..bcedc60367 100644 --- a/local/recipes/libs/icu/recipe.toml +++ b/local/recipes/libs/icu/recipe.toml @@ -2,6 +2,10 @@ # Two-step cross-build: host-native build for data tools, then cross-compile. # Static-only build; cmake find_package(ICU) works with static libs via ICU_USE_STATIC. # Required by konsole for bidirectional text rendering. +[package] +name = "icu" +version = "75.1" + [source] tar = "https://github.com/unicode-org/icu/releases/download/release-75-1/icu4c-75_1-src.tgz" diff --git a/recipes/other/ca-certificates/recipe.toml b/recipes/other/ca-certificates/recipe.toml index b7674f22bd..233d650a60 100644 --- a/recipes/other/ca-certificates/recipe.toml +++ b/recipes/other/ca-certificates/recipe.toml @@ -1,3 +1,7 @@ +[package] +name = "ca-certificates" +version = "0.1.0" + [source] git = "https://gitlab.redox-os.org/redox-os/ca-certificates.git"