|
Running makepkg directly worked fine, but apparently at least paru would
go running `makepkg --printsrcinfo` itself and baulk at the extra lines,
which I had previously manually removed from .SRCINFO, believing it to
not really matter. Once I discovered it *did* matter, I looked into
/usr/bin/makepkg to find out how to detect --printsrcinfo. Probably not
a great way of doing it, but it’ll probably do it.
This fixes the issue surfaced by electricprism in
https://aur.archlinux.org/packages/gimp-plugin-gmic-git/#comment-820310
|
|
• Improved version numbers: upstream changed from `v.234` to `v.2.3.4`,
which messed up the ordering, since `v.2.9.7` (the latest version of
gmic-qt) sorted earlier than `v.218` (the last commit of this
package). I resolved this by stripping the `v.` prefix, since `v`
sorts earlier than `2`, so order is retained without needing an epoch.
• gimp-2.99 is now supported (and, in anticipation, gimp-3.0), in
addition to gimp-2.0. They’re packaged as mutually exclusive here for
now, which is probably not great, but it’ll do for now. I put the gimp
major version number in the pkgver; that might be something, I guess.
I will note here that I actually haven’t verified this on the
extra/gimp package (gimp-2.0), only on aur/gimp-devel (gimp-2.99).
But I believe it should work.
• Fixed the missing wget make dependency (gmic requires it).
|