Does aur or Pacman support package pinning like Debian based releases?
Linux Questions
Linux questions Rules (in addition of the Lemmy.zip rules)
- stay on topic
- be nice (no name calling)
- do not post long blocks of text such as logs
- do not delete your posts
- only post questions (no information posts)
Tips for giving and receiving help
- be as clear and specific
- say thank you if a solution works
- verify your solutions before posting them as facts.
Any rule violations will result in disciplinary actions
I think pacman support somethings similar. In /etc/pacman.conf you can add packages to a ignore list. I only used it when nvidia driver gives me problems which it has been a few years at this point.
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
#IgnorePkg =
#IgnoreGroup =
I kinda need ffmpeg to be up to date and want ffmpeg-full to be accessible. Not sure how this feature solves my needs.
Stick 'em in a distrobox, export as needed.
Don't fuck with arch packages. Trying to resolve and maintain that dependency hell will be an unworkable nightmare.
If you only need libfdk-aac occasionally you can go with a docker container https://hub.docker.com/r/jrottenberg/ffmpeg
Example:
docker run -it --rm \
-v "$PWD:/data" \
jrottenberg/ffmpeg:snapshot-scratch \
-i /data/input.mp4 -c:a libfdk_aac /data/output.m4a
You could install a version of ffmpeg-full locally, just for your user, with a different name. I do this for x265-mod-patman-git. It's available as x265-mod and doesn't conflict with anything.