I tried running sudo pacman -Syu because it said there are 18 upstream updates. But I can’t do the update pacman stop with below message.
s4ndm4n at darksideofmoon in ~
↪ sudo pacman -Syu
[sudo] password for s4ndm4n:
:: Synchronizing package databases...
core is up to date
extra is up to date
community is up to date
multilib is up to date
endeavouros is up to date
:: Starting full system upgrade...
resolving dependencies...
looking for conflicting packages...
error: failed to prepare transaction (could not satisfy dependencies)
:: installing libvpx (1.11.0-1) breaks dependency 'libvpx.so=6-64' required by ffmpeg3.4
:: installing x264 (3:0.163.r3060.5db6aa6-1) breaks dependency 'libx264.so=161-64' required by ffmpeg3.4
s4ndm4n at darksideofmoon in ~
You could try - won’t lose anything as long as you install the packages back. I could update my machines without any issue, but this was reported on Arch Linux subreddit.
-Rc in plain english means remove this package and also remove anything that would stop this package from being removed. As longs as you pay attention to the list of packages it will remove.
That being said, in this case, replacing ffmpeg3.4 with ffmpeg probably would have been a simpler solution, like this:
yay -Syu ffmpeg
That would have let you keep all the dependencies installed.