Package Details: vrrtest-git r44.eca8bbf-1

Git Clone URL: https://aur.archlinux.org/vrrtest-git.git (read-only, click to copy)
Package Base: vrrtest-git
Description: A very small utility to test variable refresh rate.
Upstream URL: https://github.com/Nixola/VRRTest
Licenses: zlib
Conflicts: vrrtest
Provides: vrrtest
Submitter: joserebelo
Maintainer: Nixola
Last Packager: Nixola
Votes: 23
Popularity: 0.21
First Submitted: 2021-05-07 23:25 (UTC)
Last Updated: 2026-07-09 21:56 (UTC)

Dependencies (2)

Required by (0)

Sources (3)

Latest Comments

Nixola commented on 2026-07-09 21:59 (UTC)

Hi! Thanks for transferring the package over, and for creating and maintaining it in the first place. Also sorry for the breaking changes.

joserebelo commented on 2026-07-09 21:19 (UTC)

Hi, apologies for the delay, I have been away for the past couple of weeks. I have transferred the package to you, as I am unable to continue maintaining it.

Nixola commented on 2026-06-14 22:46 (UTC) (edited on 2026-06-15 10:50 (UTC) by Nixola)

Hi! Would you mind adding provides=('vrrtest') and conflicts=('vrrtest') to the pkgbuild, or alternatively renaming the executable and desktop file to vrrtest-git? I just created a vrrtest package I'll maintain myself, and I'd like the two to conflict cleanly or coexist.

You'll also need to copy the contents of the src subfolder instead of the repo itself, as I reogranized it a bit. The following patch should work:

diff --git a/PKGBUILD b/PKGBUILD
index ab76a44..423c6a9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,6 +7,8 @@ url='https://github.com/Nixola/VRRTest'
 license=('zlib')
 makedepends=('git')
 depends=('love')
+provides=('vrrtest')
+conflicts=('vrrtest')
 source=(
   'vrrtest_src::git+https://github.com/Nixola/VRRTest.git'
   'vrrtest'
@@ -25,8 +27,7 @@ pkgver() {

 package() {
   mkdir -p "$pkgdir/opt/vrrtest"
-  cp -r "$srcdir/vrrtest_src/." "$pkgdir/opt/vrrtest"
-  rm -rf "$pkgdir/opt/vrrtest/.git"
+  cp -r "$srcdir/vrrtest_src/src/." "$pkgdir/opt/vrrtest"

   install -Dm755 -t "$pkgdir/usr/bin" vrrtest

I'm also open to maintaining the package myself.

hexchain commented on 2022-08-03 19:01 (UTC)

Since this is a -git package, could you please add git in makedepends (following the guideline at [1]) to ensure it can be built in a clean chroot?

[1] https://wiki.archlinux.org/title/VCS_package_guidelines#Guidelines