<div dir="ltr"><div style="font-family:courier new,monospace" class="gmail_default"></div><div style="font-family:courier new,monospace" class="gmail_default">Dimitris --<br><br></div><div style="font-family:courier new,monospace" class="gmail_default">The DOWNLOAD= URI in this week's <a href="http://youtube-dl.info">youtube-dl.info</a> was also incorrect.<br><br></div><div style="font-family:courier new,monospace" class="gmail_default">When I 'found' and downloaded the File, the MD5SUM= in the <a href="http://youtube-dl.info">youtube-dl.info</a> File was OK and I was able to build a working youtube-gl version 2018-07-04<br><br></div><div style="font-family:courier new,monospace" class="gmail_default"><br>Ed --<br><br></div><div style="font-family:courier new,monospace" class="gmail_default">Yes, the URI for the youtube-dl file is predictable.<br><br></div><div style="font-family:courier new,monospace" class="gmail_default">The youtube-dl releases are here:<br><br><a href="https://github.com/rg3/youtube-dl/releases/">https://github.com/rg3/youtube-dl/releases/</a><br><br></div><div style="font-family:courier new,monospace" class="gmail_default">Each YYYY.MM.DD Version is in a ~/YYYY.MM.DD/ subdirectory ( I dropped the https so gmail does not auto-link the 'url' ):<br><br><a href="http://github.com/rg3/youtube-dl/releases/YYYY.MM.DD/">github.com/rg3/youtube-dl/releases/YYYY.MM.DD/</a><br><br></div><div style="font-family:courier new,monospace" class="gmail_default">And each of the versioned tar.gz files is:<br><br><a href="http://github.com/rg3/youtube-dl/releases/YYYY.MM.DD/youtube-dl-YYYY.MM.DD.tar.gz">github.com/rg3/youtube-dl/releases/YYYY.MM.DD/youtube-dl-YYYY.MM.DD.tar.gz</a><br></div><div style="font-family:courier new,monospace" class="gmail_default"><br></div><div style="font-family:courier new,monospace" class="gmail_default">So for example, the DOWNLOAD= setting for Version 2018.07.04 should have been:<br></div><div style="font-family:courier new,monospace" class="gmail_default"><br>DOWNLOAD="<a href="https://github.com/rg3/youtube-dl/releases/download/2018.07.04/youtube-dl-2018.07.04.tar.gz">https://github.com/rg3/youtube-dl/releases/download/2018.07.04/youtube-dl-2018.07.04.tar.gz</a>"<br></div><div style="font-family:courier new,monospace" class="gmail_default"><br></div><div style="font-family:courier new,monospace" class="gmail_default">At least the pattern works for now, until they reorganize github :)<br><br></div><div style="font-family:courier new,monospace" class="gmail_default">-- kjh<br><br></div><div style="font-family:courier new,monospace" class="gmail_default">This Q&d script will generate a working <a href="http://youtube-dl.info">youtube-dl.info</a> DOWNLOAD= URI for a DateStamped Version:<br><br></div><div style="font-family:courier new,monospace" class="gmail_default">It can also generate the URI for the corresponding MD5SUMS File for checking the downloaded file.<br><br></div><div style="font-family:courier new,monospace" class="gmail_default"># --- cut  here ---<br>#!/bin/sh<br><br>URI="<a href="https://github.com/rg3/youtube-dl/releases/download">https://github.com/rg3/youtube-dl/releases/download</a>"<br>VER="<<VERSION>>/youtube-dl-<<VERSION>>.tar.gz"<br>MD5="<<VERSION>>/MD5SUMS"<br><br></div><div style="font-family:courier new,monospace" class="gmail_default">DoMD5=0<br><br></div><div style="font-family:courier new,monospace" class="gmail_default">[ "$1" = "-m" ] && DoMD5=1 && shift<br><br></div><div style="font-family:courier new,monospace" class="gmail_default">[ $# -lt 1 ] && echo "usage `basename $0` Version [ Version ... ]" >&2 && exit 1<br><br>for Str in $@<br>do<br>   Ver="$(echo "$Str" |sed -e 's/\-/./g')"       # because I am old and forgetful ...<br><br></div><div style="font-family:courier new,monospace" class="gmail_default">   if [ "$DoMD5" != "1" ]<br></div><div style="font-family:courier new,monospace" class="gmail_default">   then<br></div><div style="font-family:courier new,monospace" class="gmail_default">      echo "$URI/$VER" |sed -e "s#<<VERSION>>#$Ver#g"<br></div><div style="font-family:courier new,monospace" class="gmail_default">   else<br><div style="font-family:courier new,monospace" class="gmail_default">      echo "$URI/$MD5" |sed -e "s#<<VERSION>>#$Ver#g"<br></div></div><div style="font-family:courier new,monospace" class="gmail_default">   fi<br><br></div><div style="font-family:courier new,monospace" class="gmail_default">done<br># --- cut there ---<br><br></div><div style="font-family:courier new,monospace" class="gmail_default">Example ... The next version of youtube-dl is 2018-07.10<br><br>$ ./.gen-uri.sh 2018.07.10<br><br><a href="https://github.com/rg3/youtube-dl/releases/download/2018.07.10/youtube-dl-2018.07.10.tar.gz">https://github.com/rg3/youtube-dl/releases/download/2018.07.10/youtube-dl-2018.07.10.tar.gz</a><br><br></div><div style="font-family:courier new,monospace" class="gmail_default">There is also an MD5SUMS file ... get it ...<br><br></div><div style="font-family:courier new,monospace" class="gmail_default">$ ./.gen-uri.sh -m 2018.07.10<br><br><a href="https://github.com/rg3/youtube-dl/releases/download/2018.07.10/MD5SUMS">https://github.com/rg3/youtube-dl/releases/download/2018.07.10/MD5SUMS</a><br><br></div><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jul 10, 2018 at 9:42 PM, Ed Ender <span dir="ltr"><<a href="mailto:skaendo@excite.com" target="_blank">skaendo@excite.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">This one works too:<br>
<a href="https://github.com/rg3/youtube-dl/releases/download/2018.07.10/youtube-dl-2018.07.10.tar.gz" rel="noreferrer" target="_blank">https://github.com/rg3/<wbr>youtube-dl/releases/download/<wbr>2018.07.10/youtube-dl-2018.07.<wbr>10.tar.gz</a><br>
<br>
I prefer not to use referral links myself.<br>
Just my 2 cents.<br>
<span class="HOEnZb"><font color="#888888"><br>
Ed<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
<br>
-----Original Message-----<br>
From: "Alexander Verbovetsky" [<a href="mailto:alik@ejik.org">alik@ejik.org</a>]<br>
Date: 07/10/2018 08:37 PM<br>
To: <a href="mailto:slackbuilds-users@slackbuilds.org">slackbuilds-users@slackbuilds.<wbr>org</a><br>
Subject: Re: [Slackbuilds-users] youtube-dl DOWNLOAD= moved ?<br>
<br>
Hello,<br>
<br>
> When I suggested to use upstream's releases instead of the auto<br>
> generated ones at github which were causing issues I neglected to<br>
> notice that upstream removed old releases... Sorry about that...<br>
<br>
But this url works:<br>
<a href="https://yt-dl.org/downloads/2018.06.25/youtube-dl-2018.06.25.tar.gz" rel="noreferrer" target="_blank">https://yt-dl.org/downloads/<wbr>2018.06.25/youtube-dl-2018.06.<wbr>25.tar.gz</a><br>
<br>
The broken one is:<br>
<a href="http://www.yt-dl.org/downloads/latest/youtube-dl-2018.06.25.tar.gz" rel="noreferrer" target="_blank">http://www.yt-dl.org/<wbr>downloads/latest/youtube-dl-<wbr>2018.06.25.tar.gz</a><br>
<br>
Best regards,<br>
Alexander<br>
______________________________<wbr>_________________<br>
SlackBuilds-users mailing list<br>
<a href="mailto:SlackBuilds-users@slackbuilds.org">SlackBuilds-users@slackbuilds.<wbr>org</a><br>
<a href="https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users" rel="noreferrer" target="_blank">https://lists.slackbuilds.org/<wbr>mailman/listinfo/slackbuilds-<wbr>users</a><br>
Archives - <a href="https://lists.slackbuilds.org/pipermail/slackbuilds-users/" rel="noreferrer" target="_blank">https://lists.slackbuilds.org/<wbr>pipermail/slackbuilds-users/</a><br>
FAQ - <a href="https://slackbuilds.org/faq/" rel="noreferrer" target="_blank">https://slackbuilds.org/faq/</a><br>
<br>
<br>
<br>
______________________________<wbr>_________________<br>
SlackBuilds-users mailing list<br>
<a href="mailto:SlackBuilds-users@slackbuilds.org">SlackBuilds-users@slackbuilds.<wbr>org</a><br>
<a href="https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users" rel="noreferrer" target="_blank">https://lists.slackbuilds.org/<wbr>mailman/listinfo/slackbuilds-<wbr>users</a><br>
Archives - <a href="https://lists.slackbuilds.org/pipermail/slackbuilds-users/" rel="noreferrer" target="_blank">https://lists.slackbuilds.org/<wbr>pipermail/slackbuilds-users/</a><br>
FAQ - <a href="https://slackbuilds.org/faq/" rel="noreferrer" target="_blank">https://slackbuilds.org/faq/</a><br>
<br>
</div></div></blockquote></div><br></div>