New : The package will now auto updates itself as a common AUR -git
package.
The package will now change to Technology Preview
as soon as it is made available by Citrix and will be back to Release
when the preview is over, all this automated by the PKGBUILD system.
To also note, due to this change, the new versions will not be automatically reflected to the AUR website, but will when you will check for update in paru or yay.
Technical note : This bug took me few hours to fix but it is worth to note that the call grep
returns a value > 0
when nothing is found, and so on the first call to grep as to be finished by a || true
instruction to prevent the call to pkgver()
made by PKGBUILD from failing. Another workaround exists that is to use perl
instead of grep
but I did not choose this solution.
Pinned Comments
class101 commented on 2023-11-23 20:48 (UTC) (edited on 2023-12-14 04:20 (UTC) by class101)
New : The package will now auto updates itself as a common AUR
-git
package.The package will now change to
Technology Preview
as soon as it is made available by Citrix and will be back toRelease
when the preview is over, all this automated by the PKGBUILD system.To also note, due to this change, the new versions will not be automatically reflected to the AUR website, but will when you will check for update in paru or yay.
Technical note : This bug took me few hours to fix but it is worth to note that the call
grep
returns a value> 0
when nothing is found, and so on the first call to grep as to be finished by a|| true
instruction to prevent the call topkgver()
made by PKGBUILD from failing. Another workaround exists that is to useperl
instead ofgrep
but I did not choose this solution.