mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
Update gimp and deps. — lensfun → 0.3.4,babl → 0.1.116-1,bdwgc → 8.2.10,gegl → 0.4.64-1,gexiv2 → 0.14.6,gimp → 3.2.0-RC1,jasper → 4.2.8,lapack → 3.12.1,libogg → 1.3.6,mailutils → 3.20,py3_cfgv → 3.5.0,py3_twine → 6.2.0,suitesparse → 7.12.1,w3m → 0.5.3+git20230121 (#13512)
* Add unbuilt gimp to updater-gimp-3.2.0 * Adjust version. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gimp deps, add lensfun. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add gegl build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild babl with vapi. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild gegl with vapi. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add suitesparse build, reenable vala in gimp build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gexiv2 => 0.14.6 from the stable tag. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Cleanup gimp package. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild gegl. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add x86_64 binaries. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add arm binaries built with GCC 14. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-gimp-3.2.0: Package File Update Run on linux/amd64 container. * updater-gimp-3.2.0: Package File Update Run on linux/arm/v7 container. * Add fallback if gitlab package id can not be identified. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Document reason for fallback. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix py3_twine, py3_cfgv Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add verbose pkg message to tools/build_updated_packages.rb 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: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
ca1388d474
commit
121723f188
@@ -4,7 +4,7 @@ require 'etc'
|
||||
require 'open3'
|
||||
|
||||
OLD_CREW_VERSION ||= defined?(CREW_VERSION) ? CREW_VERSION : '1.0'
|
||||
CREW_VERSION ||= '1.67.20' unless defined?(CREW_VERSION) && CREW_VERSION == OLD_CREW_VERSION
|
||||
CREW_VERSION ||= '1.68.0' unless defined?(CREW_VERSION) && CREW_VERSION == OLD_CREW_VERSION
|
||||
|
||||
# Kernel architecture.
|
||||
KERN_ARCH ||= Etc.uname[:machine]
|
||||
@@ -472,6 +472,7 @@ unless defined?(CREW_ANITYA_PACKAGE_NAME_MAPPINGS)
|
||||
{ pkg_name: 'selenium_server_standalone', anitya_pkg: 'selenium', comments: '' },
|
||||
{ pkg_name: 'signal_desktop', anitya_pkg: 'signal', comments: '' },
|
||||
{ pkg_name: 'smbclient', anitya_pkg: 'samba', comments: '' },
|
||||
{ pkg_name: 'tcpwrappers', anitya_pkg: 'tcp_wrappers', comments: '' },
|
||||
{ pkg_name: 'tepl_6', anitya_pkg: 'libgedit-tepl', comments: '' },
|
||||
{ pkg_name: 'upx', anitya_pkg: 'upx', comments: 'Prefer to GitHub' },
|
||||
{ pkg_name: 'vidstab', anitya_pkg: 'vid.stab', comments: 'Prefer to GitHub' },
|
||||
|
||||
@@ -121,6 +121,12 @@ class PackageUtils
|
||||
gitlab_binary_pkg_id = `curl -s --location \
|
||||
"#{CREW_GITLAB_PKG_REPO}?package_type=generic&package_name=#{pkg_name}&package_version=#{pkg_version}_#{pkg_arch}#{'_build' if build}" \
|
||||
| jq -r ".[] | select(.name==\\"#{pkg_name}\\" and .version==\\"#{pkg_version}_#{pkg_arch}#{'_build' if build}\\") | .id"`.chomp
|
||||
# Need fallback for complicated versions like in w3m.
|
||||
if gitlab_binary_pkg_id.blank?
|
||||
gitlab_binary_pkg_id = `curl -s --location \
|
||||
"#{CREW_GITLAB_PKG_REPO}?package_type=generic&package_name=#{pkg_name}" \
|
||||
| jq -r ".[] | select(.name==\\"#{pkg_name}\\" and .version==\\"#{pkg_version}_#{pkg_arch}#{'_build' if build}\\") | .id"`.chomp
|
||||
end
|
||||
crewlog "gitlab_binary_pkg_id is #{gitlab_binary_pkg_id}" if verbose
|
||||
# What is the hash of the gitlab package remote binary file name?
|
||||
pkg_file_name = `curl -s --location \
|
||||
|
||||
Reference in New Issue
Block a user