There is an updated pull request by tsndqst against master on the void-packages repository https://github.com/tsndqst/void-packages rebuild-postgresql https://github.com/void-linux/void-packages/pull/47977 Rebuild postgresql for glibc upgrade Due to the [glibc update](https://github.com/void-linux/void-packages/pull/45501) a few days ago Postgresql needs to be rebuilt. The following warning is shown when connecting to postgres after upgrading glibc. ``` WARNING: database "postgres" has a collation version mismatch DETAIL: The database was created using collation version 2.36, but the operating system provides version 2.38. HINT: Rebuild all objects in this database that use the default collation and run ALTER DATABASE postgres REFRESH COLLATION VERSION, or build PostgreSQL with the right library version. ``` Since there is a new patch release for Postgresql available I decided to bump the version too. If we just want to rebuild the existing versions I can change the template to continue using the current versions. UPDATE: I installed the package created by this PR but the warning above didn't change. I ended up running `ALTER DATABASE postgres REFRESH COLLATION VERSION` to resolve the warning. #### Testing the changes - I tested the changes in this PR: **YES** A patch file from https://github.com/void-linux/void-packages/pull/47977.patch is attached