New review comment by mhmdanas on void-packages repository https://github.com/void-linux/void-packages/pull/43160#discussion_r1155106104 Comment: Hyphens are not allowed in `version`, but you can instead do something like this: ```suggestion version=3.3.26.1 _distver="${version%.*}-${version##*.}" ``` and then use `${_distver}` instead of `${version}-1` in `distfiles`. For what it's worth, it's been years since the last release with a non-`-1` suffix was released, so this may not be really necessary (I think it wouldn't be a terrible idea though).