gpg --keyserver keys.openpgp.org --recv-keys CFDF148828C642A7
This did not work for me. I will see what I can find out and post here.
Git Clone URL: | https://aur.archlinux.org/wine-stable.git (read-only, click to copy) |
---|---|
Package Base: | wine-stable |
Description: | A compatibility layer for running Windows programs |
Upstream URL: | https://www.winehq.org/ |
Licenses: | LGPL |
Conflicts: | wine |
Provides: | wine |
Submitter: | chungy |
Maintainer: | chungy |
Last Packager: | chungy |
Votes: | 36 |
Popularity: | 1.39 |
First Submitted: | 2016-06-18 08:40 (UTC) |
Last Updated: | 2024-08-21 21:55 (UTC) |
gpg --keyserver keys.openpgp.org --recv-keys CFDF148828C642A7
This did not work for me. I will see what I can find out and post here.
gpg --keyserver keys.openpgp.org --recv-keys CEFAC8EAAF17519D
seems to not be doing anything for me anymore, so the package doesn't build because of a dependency of a dependency's checksum
This worked:
gpg --keyserver keys.openpgp.org --recv-keys CFDF148828C642A7
Can you add this patch: https://bugs.winehq.org/show_bug.cgi?id=54994 There is a bug with lates mesa for those who have opengl below v4.6
Can you also drop the lib32-libgphoto2 dependency, it has been dropped from the repos and is a nightmare to build from aur
@angindel Before reporting such things while using an AUR helper (in this case I can see you are using yay
),
always check if building with makepkg
also fails (which it won't because I just checked)
I recommend trying to build with makepkg
WHY IT FAILS WITH yay
:
(Most likely) yay
(like other pacman wrappers) calls makepkg
at least two separate times: once to run the PKGBUILD's prepare
function and the other actually builds (build
) and installs (package
) the package.
Since these happen in two separate instances of the command, these lines in the prepare
function
# https://bugs.winehq.org/show_bug.cgi?id=43530
export CFLAGS="${CFLAGS/-fno-plt/}"
export LDFLAGS="${LDFLAGS/,-z,now/}"
don't produce the intended effect, since the environmental variables don't carry over to the second call of makepkg
which actually triggers the build
function (which is where these two statements are actually of use)
This can indeed be easily fixed by moving those lines to the build
function
error build wine-stable:
/home/limc/.cache/yay/wine-stable/src/wine-64-build/tools/winebuild/winebuild -w --staticlib -o dlls/winecrt0/libwinecrt0.a \
-m32 dlls/winecrt0/crt_dllmain.o dlls/winecrt0/crt_fltused.o dlls/winecrt0/debug.o \
dlls/winecrt0/delay_load.o dlls/winecrt0/dll_canunload.o dlls/winecrt0/dll_main.o \
dlls/winecrt0/dll_register.o dlls/winecrt0/exception.o dlls/winecrt0/exe16_entry.o \
dlls/winecrt0/register.o dlls/winecrt0/setjmp.o dlls/winecrt0/stub.o dlls/winecrt0/unix_lib.o \
dlls/winecrt0/exe_entry.o dlls/winecrt0/exe_main.o dlls/winecrt0/exe_wentry.o \
dlls/winecrt0/exe_wmain.o
/home/limc/.cache/yay/wine-stable/src/wine-64-build/tools/winebuild/winebuild -w --implib -o dlls/kernel32/libkernel32.a \
-m32 --export ../wine/dlls/kernel32/kernel32.spec
/home/limc/.cache/yay/wine-stable/src/wine-64-build/tools/winebuild/winebuild -w --implib -o dlls/ntdll/libntdll.a \
-m32 --export ../wine/dlls/ntdll/ntdll.spec
/home/limc/.cache/yay/wine-stable/src/wine-64-build/tools/winegcc/winegcc -o dlls/d3d12/d3d12.dll.so --wine-objdir . \
--winebuild /home/limc/.cache/yay/wine-stable/src/wine-64-build/tools/winebuild/winebuild -m32 \
-fno-PIC -Wl,-z,notext -fasynchronous-unwind-tables -shared ../wine/dlls/d3d12/d3d12.spec -mcygwin \
dlls/d3d12/d3d12_main.o dlls/dxgi/libdxgi.a libs/dxguid/libdxguid.a dlls/gdi32/libgdi32.a \
dlls/user32/libuser32.a libs/uuid/libuuid.a dlls/win32u/libwin32u.a dlls/winecrt0/libwinecrt0.a \
dlls/kernel32/libkernel32.a dlls/ntdll/libntdll.a -L/usr/lib32 -lvkd3d -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now
/usr/bin/ld: dlls/d3d12/d3d12_main.o: direct GOT relocation R_386_GOT32X against `__vsnprintf_chk@@GLIBC_2.3.4' without base register can not be used when making a shared object
/usr/bin/ld: failed to set dynamic section sizes: Success
collect2: error: ld returned 1 exit status
winegcc: /usr/bin/gcc failed
make: *** [Makefile:24829: dlls/d3d12/d3d12.dll.so] Error 2
==> ERROR: A failure occurred in build().
Aborting...
-> error making: wine-stable
@dahu1 would you mind elaborating how the package will "fill your HD"?
There should be no such issue with the package, and for me it builds normally. If there is an issue, please say so!
Use sudo pacman -Sy wine. I also installed sudo snap install wine-platform-runtime before, not sure if necessary.
@MarsSeed: I got the same errors. I'm building in a chroot with aurutils, and the makepkg.conf used (from devtools) enable LTO. So, assuming you're in a similar case, you need to add !lto to the options array in the PKGBUILD because wine does not compile properly with LTO.
Shitty assembly code in .c source ://
Pinned Comments
isatsam commented on 2023-11-08 23:25 (UTC) (edited on 2023-11-08 23:25 (UTC) by isatsam)
gpg --keyserver keys.openpgp.org --recv-keys CEFAC8EAAF17519D
seems to not be doing anything for me anymore, so the package doesn't build because of a dependency of a dependency's checksum
This worked:
gpg --keyserver keys.openpgp.org --recv-keys CFDF148828C642A7