MantisBT - Doomseeker
View Issue Details
0003907Doomseeker[All Projects] Bugpublic2021-09-24 16:152021-12-28 12:32
WubTheCaptain 
Zalewa 
normalminorhave not tried
closedno change required 
GNU/Linux
1.3.2 
 
0003907: Doomseeker can't download the Zandronum 3.1 (210919-1948) testing binary on GNU/Linux (non-Windows non-Darwin) operating systems
0003904:0021760:
Quote from WubTheCaptain
Apparently Zandronum 3.1 (210919-1948) also started using the linux-x64.tgz filename for releases, instead of the former linux-x86_64.tar.bz2. Doomseeker's code currently only supports the latter. Kind of a nightmare to have these inconsistencies.
$ curl -I'https://zandronum.com/downloads/testing/3.1/ZandroDev3.1-210919-1948linux-x64.tgz [^]'
HTTP/1.1 200 OK
Date: Fri, 24 Sep 2021 16:10:20 GMT
Server: Apache
Last-Modified: Mon, 20 Sep 2021 09:27:56 GMT
ETag: "3bf3711-5cc69e575d358"
Accept-Ranges: bytes
Content-Length: 62863121
Content-Type: application/x-gzip

$ curl -I'https://zandronum.com/downloads/testing/3.1/ZandroDev3.1-210919-1948linux-x86_64.tar.bz [^]'
HTTP/1.1 404 Not Found
Date: Fri, 24 Sep 2021 16:10:30 GMT
Server: Apache
Content-Type: text/html; charset=iso-8859-1


Quote from src/plugins/zandronum/zandronumbinaries.cpp
#ifdef Q_OS_WIN32
// ...
#else

#ifndef __x86_64__
#define TESTING_BINARY_URL TESTING_BINARY_URL_BASE "linux-x86.tar.bz2"
#else
#define TESTING_BINARY_URL TESTING_BINARY_URL_BASE "linux-x86_64.tar.bz2"
#endif

// ...
#endif
No tags attached.
Issue History
2021-09-24 16:15WubTheCaptainNew Issue
2021-09-24 16:21WubTheCaptainNote Added: 0021764
2021-09-24 16:21WubTheCaptainDescription Updatedbug_revision_view_page.php?rev_id=13358#r13358
2021-09-24 16:21WubTheCaptainAdditional Information Updatedbug_revision_view_page.php?rev_id=13360#r13360
2021-09-25 05:59doomjoshuaboyNote Added: 0021773
2021-09-27 11:32ZalewaNote Added: 0021774
2021-09-27 11:32ZalewaNote Edited: 0021774bug_revision_view_page.php?bugnote_id=21774#r13374
2021-09-27 11:32ZalewaStatusnew => feedback
2021-09-27 11:54doomjoshuaboyNote Added: 0021777
2021-09-27 11:57ZalewaStatusfeedback => resolved
2021-09-27 11:57ZalewaResolutionopen => no change required
2021-09-27 11:57ZalewaAssigned To => Zalewa
2021-12-28 12:32WubTheCaptainStatusresolved => closed

Notes
(0021764)
WubTheCaptain   
2021-09-24 16:21   
Should Doomseeker support the new filenames or should we expect Zandronum to release the older format .tar.bz2 distributions in the future too?
(0021773)
doomjoshuaboy   
2021-09-25 05:59   
If not I can change it over to use the older format.
(0021774)
Zalewa   
2021-09-27 11:32   
Please don't change the naming scheme for the archives. The previous name was technically correct, and as you can see, changing the scheme breaks compatibility with the tooling.

(0021777)
doomjoshuaboy   
2021-09-27 11:54   
Managed to fix it by renaming the files. Thanks for reporting it.