> On Tue, Jan 03, 2023 at 12:00:21PM +0100, Zdenek Dohnal wrote:
> 
> My understanding — which may be not be the whole picture — is that this is not
> supported by rpmautospec natively. Essentially, every spec file change is
> _supposed_ to caused the Release number to grow, so by definition, a commit 
> that
> adds a minorbump will also cause a bump of the release value, which is not
> useful.
> 
> The desired effect can be implemented by overriding %dist:
> 
>   %global dist %dist~test.0
>   Release: %autorelease
> 
> Notice that I used '~' to make the redefined %dist _lower_ than the original.
> Let's say that the last official build had Release==1.
> When this spec is built, you end up with Release==2.fc38~test.0.
> When the %dist override is removed, and the package is built officially,
> we end up with Release==2.fc38  (2.fc38~test.0 < 2.fc38).

While this is nice, note that it will work once only, i.e. you cannot do a 
test.1 against the same "-2" this way.
Have you tried `-b` and `-e` options to `%autorelease`?

_______________________________________________
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue

Reply via email to