Cannot update some pacakges on recent update

I am getting this error after running yay for system update:

Cannot find the debugedit binary required for including source files in debug packages.

for these 5 packages:

gns3-server - exit status 15
qtforkawesome - exit status 15
gns3-gui - exit status 15
brave-bin - exit status 15
rest - exit status 15

rest had some issues before this update, but others are new, what should I do?

I assume it helps to edit file /etc/makepkg.conf:

  • search for the line starting with OPTIONS=
  • on that line change option debug to !debug
1 Like

Thanks, i try it asap… but why it is behaving like this now, it was OK before hand. I am , is n’t debugging after compiling is a good thing?

I think Arch devs recently changed the default to debug which is not the best choice for users who are not debugging the results.
If you are a dev, then debug may be a useful setting.

No I am not certainly a dev, and I don’t usually mess with build setup of AUR packages, but I just want to make sure not install broken packages and not notice it.

The debug setting is mainly meant for users who want to debug the build results, for various reasons like fixing a bug. For other users it is better to set to !debug.

2 Likes

Great , so I should not worry about it.
Is this config file is for make command in general or only applies to AUR PKGBUILD files? I like to learn about how it works in the future. I think I should try to make a package to fully get how it is done

This config file is for the makepkg command.
See

  • man makepkg
  • man makepkg.conf
  • man PKGBUILD

You could fetch some small and simple AUR package with command
yay -Ga <pkgname>
and then go to the fetched folder and run
makepkg
to see how it goes.
When the build succeeds, look at the makepkg (or pacman) options to see how you can install the built package (<pkgname>*.zst) if you want to install it too.

1 Like

Thank you for your help, going to give it a try ASAP, I want to create a AUR package in the future, both to learn also give something back to FOSS community

1 Like

can pacman or yay be simulated without actually changing files?

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.