From 01c1b11605b41d1b6694c3f8de6af6a1fd3b2cd7 Mon Sep 17 00:00:00 2001 From: Gonzalo Gomez Gracia Date: Fri, 10 Nov 2023 16:18:59 +0100 Subject: [PATCH 1/2] [Bitnami] Add distro field Signed-off-by: Gonzalo Gomez Gracia --- PURL-TYPES.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/PURL-TYPES.rst b/PURL-TYPES.rst index 1ace3bd..d3b9d51 100644 --- a/PURL-TYPES.rst +++ b/PURL-TYPES.rst @@ -81,11 +81,12 @@ bitnami - The ``name`` is the component name. It must be lowercased. - The ``version`` is the full Bitnami package version, including version, revision and architecture. - The ``arch`` is the qualifiers key for a package architecture. Available values: ``amd64`` (default) and ``arm64``. +- The ``distro`` is the qualifiers key for the distribution associated to the package. - Examples:: - pkg:bitnami/wordpress - pkg:bitnami/wordpress@6.2.0 - pkg:bitnami/wordpress@6.2.0?arch=arm64 + pkg:bitnami/wordpress?distro=debian-12 + pkg:bitnami/wordpress@6.2.0?distro=debian-12 + pkg:bitnami/wordpress@6.2.0?arch=arm64&distro=debian-12 cocoapods --------- From 9cfc34e3787f0ea60be1c6216acc1ac07449c262 Mon Sep 17 00:00:00 2001 From: Gonzalo Gomez Gracia Date: Wed, 3 Jan 2024 16:55:56 +0100 Subject: [PATCH 2/2] Minor update --- PURL-TYPES.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PURL-TYPES.rst b/PURL-TYPES.rst index d3b9d51..10700ac 100644 --- a/PURL-TYPES.rst +++ b/PURL-TYPES.rst @@ -79,7 +79,7 @@ bitnami - The default repository is ``https://downloads.bitnami.com/files/stacksmith``. - The ``name`` is the component name. It must be lowercased. -- The ``version`` is the full Bitnami package version, including version, revision and architecture. +- The ``version`` is the full Bitnami package version, including version and revision. - The ``arch`` is the qualifiers key for a package architecture. Available values: ``amd64`` (default) and ``arm64``. - The ``distro`` is the qualifiers key for the distribution associated to the package. - Examples:: @@ -87,6 +87,7 @@ bitnami pkg:bitnami/wordpress?distro=debian-12 pkg:bitnami/wordpress@6.2.0?distro=debian-12 pkg:bitnami/wordpress@6.2.0?arch=arm64&distro=debian-12 + pkg:bitnami/wordpress@6.2.0?arch=arm64&distro=photon-4 cocoapods ---------