AutoBuild: libxml2 started at 2025-07-19-13UTC. (#12221)

* Update libxml2_autotools for new icu4c

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

* Fix build_updated_packages typo.

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

* Fix build_updated_packages typo.

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

* Updated package files for linux/386 to branch libxml2.

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
This commit is contained in:
chromebrew-actions[bot]
2025-07-19 14:48:35 -05:00
committed by GitHub
parent a47fa0678b
commit 4b8c6d4428
2 changed files with 6 additions and 6 deletions

View File

@@ -14,10 +14,10 @@ class Libxml2_autotools < Autotools
binary_compression 'tar.zst' binary_compression 'tar.zst'
binary_sha256({ binary_sha256({
aarch64: 'b1e3a145dbd2808a04db8ce44e69f6e71224f6a08cbe3ceada4df99d5a019734', aarch64: '90329ad261162fa53deb07bf04fbbfd5e2c4ce466b4b868e29fbf2fffcb1551a',
armv7l: 'b1e3a145dbd2808a04db8ce44e69f6e71224f6a08cbe3ceada4df99d5a019734', armv7l: '90329ad261162fa53deb07bf04fbbfd5e2c4ce466b4b868e29fbf2fffcb1551a',
i686: '90bc0e31787a59c96fc1e563c4622aa6597e870f0ff2aa5f8b6b84a4087282e1', i686: '07569ac9ce0e961550e3f00e53c84c270577cf001ec50534f018c756cf0e3e47',
x86_64: 'b5ba490429312ceaf3ae96f7b6944e3c45f3f18edf8acc3599d96f9cf33fa62f' x86_64: '93d41d6a6de1ed07c18d1e271114e5239f198244e2610353d8f258f671191460'
}) })
depends_on 'gcc_lib' # R depends_on 'gcc_lib' # R

View File

@@ -1,5 +1,5 @@
#!/usr/local/bin/ruby #!/usr/local/bin/ruby
# build_updated_packages version 2.9 (for Chromebrew) # build_updated_packages version 3.0 (for Chromebrew)
# This updates the versions in python pip packages by calling # This updates the versions in python pip packages by calling
# tools/update_python_pip_packages.rb, checks for updated ruby packages # tools/update_python_pip_packages.rb, checks for updated ruby packages
# by calling tools/update_ruby_gem_packages.rb, and then checks if any # by calling tools/update_ruby_gem_packages.rb, and then checks if any
@@ -80,7 +80,7 @@ def update_hashes(name = nil)
puts "#{arch_specific_url} found!" if remote_binary[arch.to_sym] && CREW_VERBOSE puts "#{arch_specific_url} found!" if remote_binary[arch.to_sym] && CREW_VERBOSE
end end
# Add build hashes. # Add build hashes.
system 'crew update_package_file #[name}' unless remote_binary.values.all?(nil) system "crew update_package_file #{name}" unless remote_binary.values.all?(nil)
# Add manifests if we are in the right architecture. # Add manifests if we are in the right architecture.
FileUtils.cp "#{CREW_META_PATH}/#{name}.filelist", "#{CREW_LOCAL_REPO_ROOT}/manifest/#{ARCH}/#{name.chr}/#{name}.filelist" if system("yes | crew install #{name}") && File.exist?("#{CREW_META_PATH}/#{name}.filelist") FileUtils.cp "#{CREW_META_PATH}/#{name}.filelist", "#{CREW_LOCAL_REPO_ROOT}/manifest/#{ARCH}/#{name.chr}/#{name}.filelist" if system("yes | crew install #{name}") && File.exist?("#{CREW_META_PATH}/#{name}.filelist")
end end