Package Details: implot-git 1.0.r722.gd65a2be-1

Git Clone URL: https://aur.archlinux.org/implot-git.git (read-only, click to copy)
Package Base: implot-git
Description: Immediate Mode Plotting
Upstream URL: https://github.com/epezent/implot
Licenses: MIT
Provides: implot
Submitter: Rainbowu
Maintainer: Rainbowu
Last Packager: Rainbowu
Votes: 0
Popularity: 0.000000
First Submitted: 2025-08-12 11:04 (UTC)
Last Updated: 2026-07-07 20:52 (UTC)

Dependencies (3)

Required by (0)

Sources (2)

Latest Comments

Shinmen commented on 2026-07-07 18:08 (UTC) (edited on 2026-07-07 18:09 (UTC) by Shinmen)

Hi! Thanks for maintaining this package.

Could you please update the pkgver() function to include a revision/commit counter (e.g. r<revision>.<hash>)?

Currently, the version format 1.0.<commit_hash> causes update loops in AUR helpers (like yay and paru). Because commit hashes can start with either letters or numbers, vercmp evaluates commit hashes starting with digits
as newer than those starting with letters (e.g., vercmp 1.0.524f9fc 1.0.d65a2be returns 1, meaning the database version 524f9fc is incorrectly treated as newer than the actual latest commit d65a2be).

Updating the pkgver() function to something like this would fix the loop permanently:

    pkgver() {
       cd implot
       printf "1.0.r%s.g%s" "(gitrev - list - -countHEAD)""(git rev-parse --short HEAD)"
    }

Thank you!

dreieck commented on 2025-08-24 17:06 (UTC)

git must be added to makedepends.

Regards and thanks for maintaining!

dreieck commented on 2025-08-24 17:04 (UTC)

Please also add conflicts=('implot').

Also, since this is a -git package, you must add a proper pkgver() function.

Regards and thanks for the package!