Evgeny Kotkov <[email protected]> writes:
> The 1.15.0-rc1 release artifacts are now available for testing/signing.
> Please get the tarballs from
> https://dist.apache.org/repos/dist/dev/subversion
> and add your signatures there.
>
> Thanks!
Apparently, the tarballs are missing the pregenerated files for CMake build.
The reason for that is the `if not args.version < Version("1.15.0")` condition
in our release.py script [1]. The version object has special handling for
pre-release build, and Version("1.15.0-rc1") is less than Version("1.15.0").
While that makes sense logically, it also means that this condition excludes
running `python gen-make.py -t cmake` for prerelease 1.15.x builds, such
as 1.15.0-rc1.
I plan to fix the issue and will roll RC2 shortly.
[1]:
https://svn.apache.org/viewvc/subversion/trunk/tools/dist/release.py?revision=1933378&view=markup#l885
Thanks,
Evgeny Kotkov