<div class="gmail_quote"><div dir="ltr">On Wed, Apr 25, 2018, 7:29 PM Christoph Willing <<a href="mailto:chris.willing@iinet.net.au">chris.willing@iinet.net.au</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On 26/04/18 02:29, Matteo Bernardini wrote:<br>
> 2018-04-25 17:50 GMT+02:00 Jeremy Hansen <<a href="mailto:jebrhansen%2BSBo@gmail.com" target="_blank">jebrhansen+SBo@gmail.com</a>>:<br>
>> It took some digging, but I found the download url for their tagged<br>
>> releases. To get to where I found it, read on, otherwise, skip to the direct<br>
>> link for 0.7.6 (the latest tag right now). On their main page,<br>
>> <a href="http://christophe.varoqui.free.fr" rel="noreferrer" target="_blank">http://christophe.varoqui.free.fr</a>, click on the link for git tags (which I<br>
>> have linked at the bottom of this message). From there, click on tag you<br>
>> want. Then click the tag again next to the commit message. Then click the<br>
>> "Tree" in the top area (not the one at the end of the commit line). Then you<br>
>> should be able to click snapshot for the link. Every other method I found<br>
>> for the snapshot would provide the hash, rather than the tag. What a pain!<br>
>><br>
>> <a href="https://git.opensvc.com/?p=multipath-tools/.git;a=snapshot;h=refs/tags/0.7.6;sf=tgz" rel="noreferrer" target="_blank">https://git.opensvc.com/?p=multipath-tools/.git;a=snapshot;h=refs/tags/0.7.6;sf=tgz</a><br>
> <br>
> this, unfortunately, doesn't work with wget...<br>
> <br>
<br>
You can make it work by quoting the url i.e.<br>
    wget<br>
"<a href="https://git.opensvc.com/?p=multipath-tools/.git;a=snapshot;h=refs/tags/0.7.6;sf=tgz" rel="noreferrer" target="_blank">https://git.opensvc.com/?p=multipath-tools/.git;a=snapshot;h=refs/tags/0.7.6;sf=tgz</a>"<br>
<br>
The only problem with that is that the resulting filename is:<br>
<br>
index.html\?p\=multipath-tools%2F.git\;a\=snapshot\;h\=refs%2Ftags%2F0.7.6\;sf\=tgz<br>
<br>
That could be renamed after download or we could use wget's -O option to<br>
rename it during download, although I can't quickly see how to<br>
incorporate that into a .info file.<br>
<br>
chris<br></blockquote></div><div><br></div><div>Yeah, I don't think you could do that through the .info. Plus, all tools may not rely solely on wget, so any flags could break other methods of downloading. I think the only option would be to include an if/then in the SlackBuild that would rename the file if it exists before it attempts to extract it. Something like (not sure if it will keep the indent, but you get the idea):</div><div><br></div><div>if ls index.html*.tgz; then<br>    mv index.html*.tgz $PRGNAM-$VERSION.tar.gz<br>fi<br></div><div><br></div><div>Jeremy</div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote></div>