diff --git a/features/sci/exec.config b/features/sci/exec.config index 3a234c1..d1b9319 100755 --- a/features/sci/exec.config +++ b/features/sci/exec.config @@ -12,9 +12,9 @@ systemctl enable ssh # TODO : these all should go in the repo # all versions URL encoded -EDK2_VERSION="20260221-0gl1%2Bbp2150" -LIBVIRT_VERSION="12.2.0-1gl5%2Bbp2150" -CLOUD_HYPERVISOR_VERSION="52.1-1gl4%2Bbp2150" +EDK2_VERSION="20260221-0gl1+bp2150" +LIBVIRT_VERSION="12.2.0-1gl5+bp2150" +CLOUD_HYPERVISOR_VERSION="52.1-1gl4+bp2150" mkdir /tmp/custompackages for p in https://github.com/gardenlinux/package-edk2-cloud-hypervisor-gl/releases/download/$EDK2_VERSION/build.tar.xz.0000 https://github.com/gardenlinux/package-libvirt/releases/download/$LIBVIRT_VERSION/build.tar.xz.0000 https://github.com/gardenlinux/package-cloud-hypervisor-gl/releases/download/$CLOUD_HYPERVISOR_VERSION/build.tar.xz.0000; do diff --git a/renovate.json b/renovate.json index c756739..43d8e2a 100644 --- a/renovate.json +++ b/renovate.json @@ -6,39 +6,39 @@ "description": "Update libvirt package version for rel-2150-dev", "managerFilePatterns": ["/features/sci/exec\\.config$/"], "matchStrings": [ - "LIBVIRT_VERSION=\"(?[^%]+)%2Bbp2150\"" + "LIBVIRT_VERSION=\"(?.+)\\+bp2150\"" ], "depNameTemplate": "gardenlinux/package-libvirt", "datasourceTemplate": "github-releases", "extractVersionTemplate": "^(?.+)\\+bp2150$", "versioningTemplate": "loose", - "autoReplaceStringTemplate": "LIBVIRT_VERSION=\"{{{newValue}}}%2Bbp2150\"" + "autoReplaceStringTemplate": "LIBVIRT_VERSION=\"{{{newValue}}}+bp2150\"" }, { "customType": "regex", "description": "Update cloud-hypervisor-gl package version for rel-2150-dev", "managerFilePatterns": ["/features/sci/exec\\.config$/"], "matchStrings": [ - "CLOUD_HYPERVISOR_VERSION=\"(?[^%]+)%2Bbp2150\"" + "CLOUD_HYPERVISOR_VERSION=\"(?.+)\\+bp2150\"" ], "depNameTemplate": "gardenlinux/package-cloud-hypervisor-gl", "datasourceTemplate": "github-releases", "extractVersionTemplate": "^(?.+)\\+bp2150$", "versioningTemplate": "loose", - "autoReplaceStringTemplate": "CLOUD_HYPERVISOR_VERSION=\"{{{newValue}}}%2Bbp2150\"" + "autoReplaceStringTemplate": "CLOUD_HYPERVISOR_VERSION=\"{{{newValue}}}+bp2150\"" }, { "customType": "regex", "description": "Update edk2-cloud-hypervisor-gl package version for rel-2150-dev", "managerFilePatterns": ["/features/sci/exec\\.config$/"], "matchStrings": [ - "EDK2_VERSION=\"(?[^%]+)%2Bbp2150\"" + "EDK2_VERSION=\"(?.+)\\+bp2150\"" ], "depNameTemplate": "gardenlinux/package-edk2-cloud-hypervisor-gl", "datasourceTemplate": "github-releases", "extractVersionTemplate": "^(?.+)\\+bp2150$", "versioningTemplate": "loose", - "autoReplaceStringTemplate": "EDK2_VERSION=\"{{{newValue}}}%2Bbp2150\"" + "autoReplaceStringTemplate": "EDK2_VERSION=\"{{{newValue}}}+bp2150\"" } ] }