You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Alexander Teut <al...@gmail.com> on 2016/11/03 13:58:33 UTC

Tarball get-deps.sh not downloading serf

Hi!

There's a problem with get-debs.sh in current svn source (version 1.9.4
(r1740329))

Firstly, the serf version is 1.3.8, but there's already 1.3.9.

Secondly, it's impossible to install it, because of wrong URL at get_serf()
section. Google Code repo is deprecated. I guess, line 91 should be
replaced with:

$HTTP_FETCH https://www.apache.org/dist/serf/$SERF.tar.bz2

-- 
Regards,
Alexander Teut
http://g <http://rikkimongoose.ru>ithub.com/rikkimongoose

Re: Tarball get-deps.sh not downloading serf

Posted by Daniel Shahaf <d....@daniel.shahaf.name>.
Alexander Teut wrote on Thu, Nov 03, 2016 at 16:58:33 +0300:
> Firstly, the serf version is 1.3.8, but there's already 1.3.9.

That's intentional.  We don't bump recommended dependency versions in
patch releases unless required to pick up a bug fix.  (1.3.9 should
stlil work; it's just not what the script picks up.)

> Secondly, it's impossible to install it, because of wrong URL at get_serf()
> section. Google Code repo is deprecated. I guess, line 91 should be
> replaced with:
> 
> $HTTP_FETCH https://www.apache.org/dist/serf/$SERF.tar.bz2

Already fixed for 1.9.5:

    % svn cat ^/subversion/branches/1.9.x/get-deps.sh | grep serf | grep ://
        $HTTP_FETCH https://archive.apache.org/dist/serf/$SERF.tar.bz2 

>

Thanks for the report.

Daniel