rafael2k / darkice

DarkIce is a live audio streamer. It records audio from an audio interface (e.g. sound card), encodes it and sends it to a streaming server. This is the official development repository of Darkice.
http://www.darkice.org
198 stars 46 forks source link

Darkice v1.4 - Git Tag doesn't reflect release version (v1.4 vs. v.14) #149

Closed paraenggu closed 4 years ago

paraenggu commented 4 years ago

The newest Darkice release v1.4 has been tagged as v.14.

For package maintainers of Darkice, it would be helpful if the tag could be chosen to reflect the actual release version, such as v1.4.

This allows one to define download URLs with variable parts instead of having to hard code the Git tag or perform some magic to derive the URL from the release version.

Example from a darkice RPM Spec file:

Name:     darkice
Version:  1.4
# [...]
Source0:  https://github.com/rafael2k/%{name}/releases/download/v.14/%{name}-%{version}.tar.gz

instead of:

Name:     darkice
Version:  1.4
# [...]
Source0:  https://github.com/rafael2k/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
paraenggu commented 4 years ago

Thanks a lot for re-tagging, I've updated the Spec file for Darkice accordingly.