Package Details: wlr-protocols-git r105.4264185-1

Git Clone URL: https://aur.archlinux.org/wlr-protocols-git.git (read-only, click to copy)
Package Base: wlr-protocols-git
Description: Wayland protocols designed for use in wlroots (and other compositors).
Upstream URL: https://gitlab.freedesktop.org/wlroots/wlr-protocols
Licenses: MIT
Provides: wlr-protocols
Submitter: justforlxz
Maintainer: justforlxz
Last Packager: justforlxz
Votes: 1
Popularity: 0.005250
First Submitted: 2023-06-26 03:47 (UTC)
Last Updated: 2023-07-10 05:20 (UTC)

Dependencies (2)

Required by (4)

Sources (1)

Latest Comments

DeedleFake commented on 2023-06-28 19:33 (UTC)

The pkgver() function defined in the PKGBUILD is non-standard and causes some problems with AUR helpers such as yay because of the way in which it alters the local copy of the git repo. The Arch Wiki recommends a different pkgver() function for Git repos that don't have tags:

pkgver() {
  cd "$pkgname"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
}

Also, while there isn't a non-VCS wlr-protocols package, could you please add provides=('wlr-protocols') so that if one does appear it will be simpler for anything depending on this package?