updater-vim-9.1.1634 — gvim → 9.1.1634,vim → 9.1.1634,vim_runtime → 9.1.1634,xxd_standalone → 9.1.1634 (#12471)

* Add unbuilt vim to updater-vim-9.1.1634

* updater-vim-9.1.1634: Build Run on linux/arm/v7.

* updater-vim-9.1.1634: Build Run on linux/amd64.

* updater-vim-9.1.1634: Build Run on linux/386.

* updater-vim-9.1.1634: Package File Update Run on linux/386 container.

* Add ignore_updater to package.rb, and let version.rb use that to ignore packages during updates.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Rebuild vim packages.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Adjust PR title arrows.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
This commit is contained in:
chromebrew-actions[bot]
2025-08-15 13:35:07 -05:00
committed by GitHub
parent 45d0ec7691
commit 2a93a63001
16 changed files with 395 additions and 219 deletions

View File

@@ -402,13 +402,13 @@ jobs:
PKG_DELTA+=( "${file}" )
elif [[ -z "$upstream_version" ]]; then
echo "- \`${file}\` &rarr; ${pkg_version}" >> /tmp/pr.txt
PKG_DELTA+=( "${file} => ${pkg_version}" )
PKG_DELTA+=( "${file} ${pkg_version}" )
elif [[ "$pkg_version" == "$upstream_version" ]]; then
echo "- \`${file}\` &rarr; ${pkg_version}" >> /tmp/pr.txt
PKG_DELTA+=( "${file} => ${pkg_version}" )
PKG_DELTA+=( "${file} ${pkg_version}" )
else
echo "- \`${file}\` &rarr; ${pkg_version} (current version is ${upstream_version})" >> /tmp/pr.txt
PKG_DELTA+=( "${file} => ${pkg_version}" )
PKG_DELTA+=( "${file} ${pkg_version}" )
fi
done
echo -e "##\nBuilds attempted for:" >> /tmp/pr.txt