diff --git a/sources b/sources index 4c4169a..c4f3e18 100644 --- a/sources +++ b/sources @@ -1,3 +1,3 @@ -SHA512 (wine-8.4.tar.xz) = 8de144a65c0a3a2984fabc1294b647b8581da5fa8bd28a9ff756ab59256ee2b453d898453fc902bbc372a4e017a8e29b1eeef917f137ec1134ac08b671eccc7d -SHA512 (wine-8.4.tar.xz.sign) = 45ee2bc5d8c68d47e4e8ffc112f5cb9c772ae8c2b24e77c758aaecd8e4566c1fe4ea2ade369147a48230874c77389a25ee6af2675d5282072cdb417be143c856 -SHA512 (wine-staging-8.4.tar.gz) = 96a6a870020e59f8437c65604536fec4b80d7d9e5a937e5d0a6cb0b2b4e544e6153fa0cdf2a8fd2c32d090001334e68124c2855c6a2a1454fdcdb6ea23d75fd7 +SHA512 (wine-8.5.tar.xz) = f6aaab8a32eb7bce7f48d21d99417c9e6e8fe41b3d36320762775ef954db7ddd4fcff01d56475f35038d814557834a41a9e3ae85e5cae8a1b820c5044b42a327 +SHA512 (wine-8.5.tar.xz.sign) = e06378b8d1230ab25842b2595fac0aa436e22850a5bb3708bba02c4a80b4f2ea502ccf69c3f81182dfc5f646361b08289799f1235307efe510225493e7bf441d +SHA512 (wine-staging-8.5.tar.gz) = 9d347c55a62f661bdcc102d373e05d162217b7b1348bdb6f2b114d20e35146862379d2cf03a96916bd1d52166a538af55d48e25a169cd6ee23818673bd35909a diff --git a/wine.init b/wine.init deleted file mode 100644 index 990bb83..0000000 --- a/wine.init +++ /dev/null @@ -1,89 +0,0 @@ -#!/bin/sh -# -# wine Allow users to run Windows(tm) applications by just clicking on them -# (or typing ./file.exe) -# -# chkconfig: 35 98 10 -# description: Allow users to run Windows(tm) applications by just clicking \ -# on them (or typing ./file.exe) -### BEGIN INIT INFO -# Provides: wine-binfmt -# Required-Start: -# Required-Stop: -# Default-Start: 2 3 4 5 -# Default-Stop: 0 1 6 -# Short-Description: Add and remove wine binary handler -# Description: Allow users to run Windows(tm) applications by just clicking -# on them (or typing ./file.exe) -### END INIT INFO - - -. /etc/rc.d/init.d/functions -RETVAL=0 - -start() { -# fix bug on changing runlevels #213230 - if [ -e /proc/sys/fs/binfmt_misc/windows ]; then - echo -n $"Binary handler for Windows applications already registered" - else - echo -n $"Registering binary handler for Windows applications: " - /sbin/modprobe binfmt_misc &>/dev/null - echo ':windows:M::MZ::/usr/bin/wine:' >/proc/sys/fs/binfmt_misc/register || : - echo ':windowsPE:M::PE::/usr/bin/wine:' >/proc/sys/fs/binfmt_misc/register || : - RETVAL=$? - [ $RETVAL -eq 0 ] && success || failure - fi - echo -} - -stop() { - echo -n $"Unregistering binary handler for Windows applications: " - echo "-1" >/proc/sys/fs/binfmt_misc/windows || : - echo "-1" >/proc/sys/fs/binfmt_misc/windowsPE || : - RETVAL=$? - [ $RETVAL -eq 0 ] && success || failure - echo -} - -wine_status() { - if [ -e /proc/sys/fs/binfmt_misc/windows ]; then - echo $"Wine binary format handlers are registered." - return 0 - else - echo $"Wine binary format handlers are not registered." - return 3 - fi -} - -case "$1" in - start) - start - ;; - stop) - stop - ;; - status) - wine_status - RETVAL=$? - ;; - restart) - stop - start - ;; - reload) - stop - start - ;; - condrestart|try-restart) - - if [ -e /proc/sys/fs/binfmt_misc/windows ]; then - stop - start - fi - ;; - *) - echo $"Usage: $prog {start|stop|status|restart|reload|try-restart}" - exit 1 -esac -exit $RETVAL - diff --git a/wine.spec b/wine.spec index 2c413b7..36db13f 100644 --- a/wine.spec +++ b/wine.spec @@ -40,7 +40,7 @@ %endif Name: wine -Version: 8.4 +Version: 8.5 Release: 1%{?dist} Summary: A compatibility layer for windows applications @@ -49,10 +49,10 @@ URL: https://www.winehq.org/ Source0: https://dl.winehq.org/wine/source/8.0/wine-%{version}.tar.xz Source10: https://dl.winehq.org/wine/source/8.0/wine-%{version}.tar.xz.sign -Source2: wine.systemd -Source3: wine-README-Fedora -Source4: wine-32.conf -Source5: wine-64.conf +Source1: wine.systemd +Source2: wine-README-Fedora +Source3: wine-32.conf +Source4: wine-64.conf # desktop files Source100: wine-notepad.desktop @@ -818,7 +818,7 @@ mkdir -p %{buildroot}%{_sysconfdir}/wine # Allow users to launch Windows programs by just clicking on the .exe file... mkdir -p %{buildroot}%{_binfmtdir} -install -p -c -m 644 %{SOURCE2} %{buildroot}%{_binfmtdir}/wine.conf +install -p -c -m 644 %{SOURCE1} %{buildroot}%{_binfmtdir}/wine.conf # add wine dir to desktop mkdir -p %{buildroot}%{_sysconfdir}/xdg/menus/applications-merged @@ -940,18 +940,18 @@ desktop-file-install \ --dir=%{buildroot}%{_datadir}/applications \ %{SOURCE300} -cp -p %{SOURCE3} README-FEDORA +cp -p %{SOURCE2} README-FEDORA cp -p %{SOURCE502} README-tahoma mkdir -p %{buildroot}%{_sysconfdir}/ld.so.conf.d/ %ifarch %{ix86} %{arm} -install -p -m644 %{SOURCE4} %{buildroot}%{_sysconfdir}/ld.so.conf.d/ +install -p -m644 %{SOURCE3} %{buildroot}%{_sysconfdir}/ld.so.conf.d/ %endif %ifarch x86_64 aarch64 -install -p -m644 %{SOURCE5} %{buildroot}%{_sysconfdir}/ld.so.conf.d/ +install -p -m644 %{SOURCE4} %{buildroot}%{_sysconfdir}/ld.so.conf.d/ %endif @@ -1346,6 +1346,7 @@ fi %{_libdir}/wine/%{winepedir}/gphoto2.ds %{_libdir}/wine/%{winesodir}/gphoto2.so %{_libdir}/wine/%{winepedir}/gpkcsp.dll +%{_libdir}/wine/%{winepedir}/graphicscapture.dll %{_libdir}/wine/%{winepedir}/hal.dll %{_libdir}/wine/%{winepedir}/hh.exe %{_libdir}/wine/%{winepedir}/hhctrl.ocx @@ -2127,6 +2128,7 @@ fi %{_libdir}/wine/%{winesodir}/glu32.dll.so %{_libdir}/wine/%{winesodir}/gphoto2.ds.so %{_libdir}/wine/%{winesodir}/gpkcsp.dll.so +%{_libdir}/wine/%{winesodir}/graphicscapture.dll.so %{_libdir}/wine/%{winesodir}/hal.dll.so %{_libdir}/wine/%{winesodir}/hh.exe.so %{_libdir}/wine/%{winesodir}/hhctrl.ocx.so @@ -2775,6 +2777,9 @@ fi %endif %changelog +* Sat Apr 01 2023 Michael Cronenworth - 8.5-1 +- version update + * Tue Mar 21 2023 Michael Cronenworth - 8.4-1 - version update