This is a collection of the PKGBUILD
files (Arch User Repository install files) that I maintain.
Feel free to submit PRs if you want to see a change or an update, I'll be likely to merge, test, and push soon.
Archived pkgbuilds can be found in archived
, which includes
python35
removed due to age
I'm mostly putting these here so I have a way to copy and paste a friendly answer for questions on aur.archlinux.org.
This package intentionally doesn't use --enable-optimizations
. Enabling optimizations adds a lot of build time – I
for one would not upgrade my Python as regularly if every update took 25-40 minutes of heavy CPU use (depending on your
machine, but laptop was pretty beefy when I got it three years ago, and even 3.11 takes 25 minutes on it). Adding the
flag is easy to do on your own – grab the repo, add the flag, makepkg
. Imo adding it by default would be a poor
choice.
Nope. Been there, done that, got chewed out for it. tl;dr: Provides=Python makes the system assume that if you have
Python from core and Python from AUR installed, and you remove core Python, then all Python dependencies will continue
working. Which they won't, obv, so adding provides=(Python)
(yes, even with a version string!) is misleading and bad.
These instructions are just intended for me, rixx – you don't have to run through these steps when you submit a PR!
- In sub-directory: Edit
PKGBUILD
makepkg --check
namcap PKGBUILD
namcap *.zst
makepkg --printsrcinfo > .SRCINFO
git commit -am 'Meaningful commit message'
git push
- In root directory:
git commit -am [package] Meaningful commit message