New review comment by classabbyamp on void-packages repository https://github.com/void-linux/void-packages/pull/51053#discussion_r1780119574 Comment: don't hardcode-the submodule versions directly in the distfile urls. something like this would be better, and also means it won't overwrite old versions of these distfiles when updated: ```bash # after revision _tpc_ver=1.6.2 _vgec_ver=8d71f6740ffff4671cdadbca255ce528e3cd3fef # ... # then distfiles="https://github.com/LizardByte/Sunshine/archive/refs/tags/v${version}.tar.gz https://github.com/michaeltyson/TPCircularBuffer/archive/refs/tags/${_tpc_ver}.tar.gz>TPCircularBuffer-${_tpc_ver}.tar.gz https://github.com/LizardByte/Virtual-Gamepad-Emulation-Client/archive/${_vgec_ver}.tar.gz>ViGEmClient-${_vgec_ver}.tar.gz ..." # and skip_extraction=" TPCircularBuffer-${_tpc_ver}.tar.gz ..." ```