[01:36:36] ive been running into some issues with gitian lately [01:37:01] have been getting a similar error to what was fixed with this: https://github.com/NAVCoin/navcoin-core/pull/433/files [01:37:06] however now that version is 404 [01:37:09] well [01:37:57] when i dug into it, it's actually been 302 redirected to http://ftp.yzu.edu.tw/nongnu/freetype/freetype-2.7.1.tar.bz2 [01:38:26] and curl is not running with the -L flag so the curl request dies when it gets the 302 instead of following the redirect [01:38:47] sooo [01:39:21] i made a branch with the new URL here; https://github.com/NAVCoin/navcoin-core/blob/freetype-depends/depends/packages/freetype.mk [01:39:27] and im using this branch to build my binary [01:39:36] but... we should probably think of a better fix [01:39:51] perhaps adding the -L flag to curl when its getting the depends [01:40:11] i just havent looked into how these work and where the actual curl command is getting called [01:42:09] trying again now, will report back if this works or not [01:45:40] hmm [01:46:04] nope, the depends build is still failing to curl that URL [01:46:11] even though i can curl it from the CLI [01:47:10] it seems like it also looks to https://build.nav.community/depends-sources [01:47:12] as a back up [01:47:18] after the other URL fails [01:47:20] but this is also 404 [01:49:32] make: Entering directory `/home/ubuntu/build/navcoin-core/depends' Checksum missing or mismatched for freetype source. Forcing re-download. Fetching freetype-2.7.1.tar.bz2 from http://ftp.yzu.edu.tw/nongnu/freetype % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 [01:49:32] --:--:-- 0 Warning: Transient problem: timeout Will retry in 1 seconds. 3 retries left. 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0 Warning: Transient problem: timeout Will retry in 2 seconds. 2 retries left. 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0 Warning: Transient problem: timeout Will retry in 4 seconds. 1 retries left. 0 0 0 0 0 0 0 0 [01:49:33] --:--:-- 0:00:40 --:--:-- 0 curl: (28) Resolving timed out after 10530 milliseconds Fetching freetype-2.7.1.tar.bz2 from https://build.nav.community/depends-sources % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0 Warning: Transient problem: timeout Will [01:49:33] retry in 1 seconds. 3 retries left. 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0 Warning: Transient problem: timeout Will retry in 2 seconds. 2 retries left. 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0 Warning: Transient problem: timeout Will retry in 4 seconds. 1 retries left. 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0 curl: (28) Resolving [01:49:34] timed out after 10531 milliseconds [01:52:22] but curling from commandlline works [01:52:26] $ curl -v http://ftp.yzu.edu.tw/nongnu/freetype/freetype-2.7.1.tar.bz2 -O % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* Trying 140.138.144.169... * TCP_NODELAY set 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0* [01:52:26] Connected to ftp.yzu.edu.tw (140.138.144.169) port 80 (#0) > GET /nongnu/freetype/freetype-2.7.1.tar.bz2 HTTP/1.1 > Host: ftp.yzu.edu.tw > User-Agent: curl/7.52.1 > Accept: */* > < HTTP/1.1 200 OK < Server: nginx < Date: Fri, 12 Apr 2019 01:51:26 GMT < Content-Type: application/octet-stream < Content-Length: 1825107 < Last-Modified: Fri, 30 Dec 2016 20:59:26 GMT < Connection: keep-alive < ETag: "5866caae-1bd953" < Accept-Ranges: bytes < { [2587 [01:52:27] bytes data] 98 1782k 98 1763k 0 0 55891 0 0:00:32 0:00:32 --:--:-- 57664* Curl_http_done: called premature == 0 100 1782k 100 1782k 0 0 56498 0 0:00:32 0:00:32 --:--:-- 36751 * Connection #0 to host ftp.yzu.edu.tw left intact [01:58:58] trying hosting the bz file somewhere else [02:16:49] mm [02:16:55] i dont understand why it wont curl from there [02:17:00] works fine from command line