There's a merged pull request on the void-packages repository vsv: update to 2.0.0 https://github.com/void-linux/void-packages/pull/42099 Description: `vsv` was rewritten from Bash to Rust so this template reflects that change - the user-facing CLI interface has not changed. #### Testing the changes - I tested the changes in this PR: **YES** #### Local build testing - I built this PR locally for my native architecture, (x86_64-2.36) - I built this PR locally for these architectures: - armv6l (cross) --- I built the package locally: ``` ./xbps-src pkg vsv # exited successfully ./xbps-src -a armv6l pkg vsv # exited succkssefully ``` I tested to make sure the package looked sane (had the files i expected): ``` $ xbps-query --repository=hostdir/binpkgs -f vsv /usr/bin/vsv /usr/share/licenses/vsv/LICENSE /usr/share/man/man8/vsv.8 ``` I installed the package on my system to make sure 1. it ran 2. was a compiled binary and not a bash script. ``` $ sudo xbps-install --repository hostdir/binpkgs vsv $ file /usr/bin/vsv /usr/bin/vsv: ELF 64-bit LSB pie executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=351cfbeb98cf65b1d3c34e7296348b96384521d2, for GNU/Linux 3.2.0, stripped $ vsv -V vsv 2.0.0 ```