There is a new pull request by fosslinux against master on the void-packages repository https://github.com/fosslinux/void-packages texlive-20201230 https://github.com/void-linux/void-packages/pull/27569 Texlive update This is the first texlive update (well, texmf packge) update ever. The metapackages have been updated to pull in the new versions of the packages. The build_style do_check needs some further fixing. It was flawed on updates because it checked against every single version of the package in repositories. I fixed that in the first commit. However, there is another problem. All of the packages have to first be built and then check run for each package, otherwise it is checking against the outdated information on the other packages. IMO, the best way to solve this would be to restrict the search to only the repository where the binpkgs are being generated. This means that some checks will be missed in CI but it will pass, and when it is updated on a local machine we can do the two pass: 1. `./xbps-src pkg texlive-blah` for each package 2. `./xbps-src check texlive-blah` for each package Which is required anyway right now to check and for it to succeed. @Chocimier thoughts on this above proposal, as you originally wrote the do_check. A patch file from https://github.com/void-linux/void-packages/pull/27569.patch is attached