Files
chromebrew/packages/qemu.rb
github-actions[bot] 46d5639699 AutoBuild: update-cmake started at 2025-05-06-15UTC (#11877)
* Cmake 4.0.1 => 4.0.2

* Adjust cmake build options to properly set LIBRARY_PATH.

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

* Adjust cmake build.

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

* Adjust cmake build options.

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

* Remove 'mold -run' usage as that confuses LIBRARY_PATH overrides.

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

* Add built packages for linux/386 to update-cmake

* Add built packages for linux/amd64 to update-cmake

* Add built packages for linux/arm/v7 to update-cmake

* Confirm autotools change works with nano update.

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

* Add built packages for linux/386 to update-cmake

* Add built packages for linux/amd64 to update-cmake

* Add built packages for linux/arm/v7 to update-cmake

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: Ed Reel <edreel@gmail.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
2025-05-06 17:40:47 +00:00

105 lines
3.1 KiB
Ruby
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
require 'package'
class Qemu < Package
description 'QEMU is a generic and open source machine emulator and virtualizer.'
homepage 'https://www.qemu.org/'
version '9.1.1'
license 'GPL-2'
compatibility 'aarch64 armv7l x86_64'
min_glibc '2.29' # Needed for MAP_FIXED_NOREPLACE support.
source_url 'https://github.com/qemu/qemu.git'
git_hashtag "v#{version}"
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'b07e876cca85b8003be705aee939d5676e0a8109fa69bfb3d7a3cb16d986e67d',
armv7l: 'b07e876cca85b8003be705aee939d5676e0a8109fa69bfb3d7a3cb16d986e67d',
x86_64: '30183ad202272d2d568a6da30a58ad228cd1b42daebee015051703cbdd88eafe'
})
depends_on 'alsa_lib' # R
depends_on 'at_spi2_core' # R
depends_on 'bzip2' # R
depends_on 'cairo' # R
depends_on 'curl' # R
depends_on 'elfutils' # R
depends_on 'eudev' # R
depends_on 'fftw' # R
depends_on 'fontconfig' # R
depends_on 'gcc_lib' # R
depends_on 'gdk_pixbuf' # R
depends_on 'glibc_lib' # R
depends_on 'glibc' # R
depends_on 'glib' # R
depends_on 'gnutls' # R
depends_on 'gtk3' # R
depends_on 'harfbuzz' # R
depends_on 'hicolor_icon_theme'
depends_on 'jack' # R
depends_on 'jemalloc'
depends_on 'libaio' # R
depends_on 'libcap_ng' # R
depends_on 'libcyrussasl' # R
depends_on 'libepoxy' # R
depends_on 'libgcrypt'
depends_on 'libjpeg_turbo' # R
depends_on 'libpng' # R
depends_on 'libsamplerate' # R
depends_on 'libsdl2' # R
depends_on 'libseccomp' # R
depends_on 'libslirp' # R
depends_on 'libssh' # R
depends_on 'libusb' # R
depends_on 'libx11' # R
depends_on 'libxkbcommon' # R
depends_on 'linux_pam' # R
depends_on 'lzfse' # R
depends_on 'lzo' # R
depends_on 'mesa' # R
depends_on 'ncurses' # R
depends_on 'pango' # R
depends_on 'pipewire' # R
depends_on 'pixman' # R
depends_on 'pulseaudio' # R
depends_on 'py3_sphinx_rtd_theme' => :build
depends_on 'sdl2_image' # R
depends_on 'snappy' # R
depends_on 'sphinx' => :build
depends_on 'vte' # R
depends_on 'zlib' # R
depends_on 'zstd' # R
def self.patch
# Avoid linux/usbdevice_fs.h:88:9: error: unknown type name u8 error
FileUtils.mkdir_p 'linux'
FileUtils.cp "#{CREW_PREFIX}/include/linux/usbdevice_fs.h", 'linux/usbdevice_fs.h'
system "sed -i 's,^\\([[:blank:]]*\\)u8,\\1__u8,g' linux/usbdevice_fs.h"
system "sed -i 's,<linux/usbdevice_fs.h>,\"linux/usbdevice_fs.h\",g' hw/usb/host-libusb.c"
end
def self.build
FileUtils.mkdir_p 'build'
Dir.chdir 'build' do
system "../configure #{CREW_CONFIGURE_OPTIONS.sub(/--target.*/, '').gsub('vfpv3-d16', 'neon').gsub('--disable-dependency-tracking', '').sub(/--program-prefix.*?(?=\s|$)/, '').sub(/--program-suffix.*?(?=\s|$)/, '')} \
--enable-kvm \
--enable-lto"
@counter = 1
@counter_max = 20
loop do
break if Kernel.system "make -j #{CREW_NPROC}"
puts "Make iteration #{@counter} of #{@counter_max}...".orange
@counter += 1
break if @counter > @counter_max
end
end
end
def self.install
Dir.chdir 'build' do
system "make DESTDIR=#{CREW_DEST_DIR} install"
end
end
end