From d513950262cf3173cc66be94b9b63e20485c8bc9 Mon Sep 17 00:00:00 2001 From: Ed Morley <501702+edmorley@users.noreply.github.com> Date: Thu, 23 Nov 2023 14:49:37 +0000 Subject: [PATCH] Add name, homepage and license to EOL buildpacks metadata (#439) Amongst other reasons, this now means that `pack builder inspect` will no longer be missing the name/URL for the EOL buildpack. Before: ``` Buildpacks: ID NAME VERSION HOMEPAGE heroku/builder-eol-warning - 1.0.0 - ... ``` After: ``` Buildpacks: ID NAME VERSION HOMEPAGE heroku/builder-eol-warning Builder End-of-Life Warning 1.0.0 https://github.com/heroku/cnb-builder-images ... ``` GUS-W-14547289. --- builder-classic-22/end-of-life-buildpack/buildpack.toml | 5 +++++ buildpacks-20/end-of-life-buildpack/buildpack.toml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/builder-classic-22/end-of-life-buildpack/buildpack.toml b/builder-classic-22/end-of-life-buildpack/buildpack.toml index 93e88ba6..c940ed74 100644 --- a/builder-classic-22/end-of-life-buildpack/buildpack.toml +++ b/builder-classic-22/end-of-life-buildpack/buildpack.toml @@ -3,6 +3,11 @@ api = "0.9" [buildpack] id = "heroku/builder-eol-warning" version = "1.0.0" + name = "Builder End-of-Life Warning" + homepage = "https://github.com/heroku/cnb-builder-images" + +[[buildpack.licenses]] + type = "BSD-3-Clause" [[stacks]] id = "*" diff --git a/buildpacks-20/end-of-life-buildpack/buildpack.toml b/buildpacks-20/end-of-life-buildpack/buildpack.toml index 93e88ba6..c940ed74 100644 --- a/buildpacks-20/end-of-life-buildpack/buildpack.toml +++ b/buildpacks-20/end-of-life-buildpack/buildpack.toml @@ -3,6 +3,11 @@ api = "0.9" [buildpack] id = "heroku/builder-eol-warning" version = "1.0.0" + name = "Builder End-of-Life Warning" + homepage = "https://github.com/heroku/cnb-builder-images" + +[[buildpack.licenses]] + type = "BSD-3-Clause" [[stacks]] id = "*"