5e7fadb9ca
redbear-ci / check (push) Has been cancelled
Converting [source] git=/tar= to path="source" removed the URL cookbook parsed
the package version from, so non-Cargo recipes without an explicit
[package].version failed at packaging ('cannot guess version', hit on
ninja-build). Add version = "0.3.1" (the branch version, matching the vendored
convention e.g. brush) to the 3 affected recipes, and make vendor-recipe.sh add
it automatically on future conversions.
21 lines
623 B
TOML
21 lines
623 B
TOML
[source]
|
|
# Vendored local fork (full-fork model): builds from the committed source/
|
|
# tree (offline, reproducible). source/ = pristine upstream + the patches below
|
|
# BAKED IN. .patch files kept tracked so a version bump can re-apply them via
|
|
# sync-recipe-source.sh.
|
|
# upstream: http://ftp.gnu.org/gnu/make/make-4.4.tar.gz
|
|
# blake3: 1a0e5353205e106bd9b3c0f4a5f37ee1156a1e1c8feb771d1b4842c216612cba
|
|
# patch (baked): redox.patch
|
|
path = "source"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
DYNAMIC_INIT
|
|
cookbook_configure
|
|
"""
|
|
|
|
[package]
|
|
version = "0.3.1"
|
|
description = "GNU Make build system (mkfifo jobserver enabled)"
|