diff options
author | Kenneth Myhra <kennethmyhra@gmail.com> | 2023-02-07 11:12:14 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-02-07 13:35:49 +0000 |
commit | 944191560acb1f79f10493a1fc9fde7b81a943b1 (patch) | |
tree | a0692c6cac02b68f906356c3f85094537e271a8e | |
parent | 96ac527e3c46e6714d620630f2b4fc0b339aafbb (diff) | |
download | serenity-944191560acb1f79f10493a1fc9fde7b81a943b1.zip |
Ports: Update qemu to 7.2.0
-rw-r--r-- | Ports/AvailablePorts.md | 2 | ||||
-rwxr-xr-x | Ports/qemu/package.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 08f8abedda..4d19d40803 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -210,7 +210,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n | [`pt2-clone`](pt2-clone/) | ProTracker 2 clone | 1.49 | https://github.com/8bitbubsy/pt2-clone | | [`pv`](pv/) | Pipe Viewer | 1.6.20 | http://www.ivarch.com/programs/pv.shtml | | [`python3`](python3/) | Python | 3.11.0 | https://www.python.org/ | -| [`qemu`](qemu/) | QEMU | 7.1.0 | https://qemu.org | +| [`qemu`](qemu/) | QEMU | 7.2.0 | https://qemu.org | | [`qoi`](qoi/) | Quite OK Image Format for fast, lossless image compression | edb8d7b | https://github.com/phoboslab/qoi | | [`qt6-qt5compat`](qt6-qt5compat/) | Qt6 Qt5Compat | 6.4.0 | https://doc.qt.io/qt-6/qtcore5-index.html | | [`qt6-qtbase`](qt6-qtbase/) | Qt6 QtBase | 6.4.0 | https://qt.io | diff --git a/Ports/qemu/package.sh b/Ports/qemu/package.sh index 98f498b516..b415b7933d 100755 --- a/Ports/qemu/package.sh +++ b/Ports/qemu/package.sh @@ -1,6 +1,6 @@ #!/usr/bin/env -S bash ../.port_include.sh port='qemu' -version='7.1.0' +version='7.2.0' useconfigure='true' configopts=( "--target-list=aarch64-softmmu,i386-softmmu,x86_64-softmmu" @@ -14,7 +14,7 @@ configopts=( "--enable-tools" ) depends=("glib" "pixman" "SDL2") -files="https://download.qemu.org/qemu-${version}.tar.xz qemu-${version}.tar.xz a0634e536bded57cf38ec8a751adb124b89c776fe0846f21ab6c6728f1cbbbe6" +files="https://download.qemu.org/qemu-${version}.tar.xz qemu-${version}.tar.xz 5b49ce2687744dad494ae90a898c52204a3406e84d072482a1e1be854eeb2157" auth_type='sha256' pre_patch() { |