- update to 9.21 release: - More support for network sessions in DirectPlay. - Header fixes for C++ compilation. - I/O completion fixes. - More formats supported in D3DX9. - Various bug fixes. - update staging to 9.21 release - remove wisotool, as it should not be useful anymore - remove dosbox as a runtime dependency - remove desktop integration, as most users who use wine directly, don't use them, and most people use wine bottle managers - spec file overhauled, using pkgconfig, removing Leap < 1500 OBS-URL: https://build.opensuse.org/request/show/1222910 OBS-URL: https://build.opensuse.org/package/show/Emulators/wine?expand=0&rev=1156
23 lines
663 B
Bash
23 lines
663 B
Bash
#!/usr/bin/sh
|
|
|
|
set -e
|
|
|
|
if [[ -z "$1" ]]; then
|
|
echo "Please enter the version you want to update to";
|
|
exit 1;
|
|
fi
|
|
|
|
VERSION="$1"
|
|
|
|
echo "++++++++++++++++++++++++++++++++++++++++++++++"
|
|
echo "patching spec file and downloading the tarball"
|
|
echo "++++++++++++++++++++++++++++++++++++++++++++++"
|
|
|
|
sed -i -e 's|Version: .*|Version: '${VERSION}'|g' wine.spec
|
|
osc service mr download_files
|
|
curl -L -o wine-staging-${VERSION}.tar.gz https://github.com/wine-staging/wine-staging/archive/refs/tags/v${VERSION}.tar.gz
|
|
|
|
echo "++++++++++++++++++++++++++++++++++++++++++++++"
|
|
echo "Done! Have fun building and testing"
|
|
echo "++++++++++++++++++++++++++++++++++++++++++++++"
|