Package Details: dracula-icons-git 1:1.0.0.r24.gde2a8ed-1

Git Clone URL: https://aur.archlinux.org/dracula-icons-git.git (read-only, click to copy)
Package Base: dracula-icons-git
Description: Dark icons theme for Linux desktops (development version)
Upstream URL: https://github.com/m4thewz/dracula-icons
Keywords: dracula icons scalable svg theme
Licenses: GPL-3.0-or-later
Conflicts: dracula-icons
Provides: dracula-icons
Submitter: thorion3006
Maintainer: kseistrup
Last Packager: kseistrup
Votes: 10
Popularity: 0.113512
First Submitted: 2021-12-06 14:19 (UTC)
Last Updated: 2026-02-02 06:31 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

kseistrup commented on 2026-01-12 08:29 (UTC) (edited on 2026-01-12 08:29 (UTC) by kseistrup)

FYI: I've flagged this package for orphaning so that somebody else can take over.

kseistrup commented on 2026-01-12 08:26 (UTC)

Please change the algorithm in the pkgver() function. It doesn't work in its current form because the calculated version does not increase in a monotonic fashion.

earlybird commented on 2024-05-27 05:54 (UTC)

please change the pkgversion

kseistrup commented on 2024-05-23 07:22 (UTC) (edited on 2024-05-23 07:23 (UTC) by kseistrup)

The current pkgver() scheme is broken: Because commit IDs are essentially random numbers, they don't increase in a monotonic fasion. The latest git commit today produces the version "1.0.0.b07ba2a5-1" while the installed version is "1.0.0.d0532ac3-1".

May I suggest the pkgver() be changed to e.g.:

printf "1.0.0.r%s.g%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"

Today that will give us

1.0.0.r14.gb07ba2a

I.e., the 14th commit, having a git hash of "b07ba2a".

That should be enough to have the version increase monotonically.

Cheers.