On Fri, Sep 14, 2012 at 02:15:41AM +0200, Branko Čibej wrote:
> On 12.09.2012 17:08, Stefan Sperling wrote:
> > The 1.6.19 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!
>
> The Windows ZIP file does not contain a bunch of generated source files
> from subversion/bindings/swig. Both tarballs contain those files.
>
> -- Brane
The dist.sh script deliberately excludes these files on Windows:
# Don't run autogen.sh when we are building the Windows zip file.
# Windows users don't need the files generated by this command,
# especially not the generated projects or SWIG files.
if [ -z "$ZIP" ] ; then
echo "Running ./autogen.sh in sandbox, to create ./configure ..."
(cd "$DISTPATH" && ./autogen.sh --release) || exit 1
fi
The commit which introduced this is:
------------------------------------------------------------------------
r861576 | djames | 2006-09-14 23:52:48 +0200 (Thu, 14 Sep 2006) | 4 lines
* dist.sh: Don't run autogen.sh when we're building a Windows release,
as it's unnecessary. Also, don't run Neon's autogen.sh.
------------------------------------------------------------------------
However, there are some .swg files in the zip within bindings/swig/include.
These were also present in earlier releases (e.g. subversion-1.6.12.zip).
Perhaps that's a long-standing bug in the packaging scripts.
Received on 2012-09-17 11:25:44 CEST