Error downloading sources for wing
Since yesterday, the source archive for wing doesn't match the checksum:
```
C:\gtk-build\src\v0.3.24.tar.gz - Download finished
Error: Hash mismatch on C:\gtk-build\src\v0.3.24.tar.gz:
Calculated '5318966119a3af2b427179dff9733520f3229274fcccb1f51518c1226600694f'
Expected 'ea828739d77f1d1841863fddb693bf2ede9142ee47ba527f5946604a2635591e'
```
I checked the downloaded file and it is an HTML document with the "Making sure you're not a bot!" Anubis challenge.
The same output can be observed by running the following snippet:
```
from urllib.request import urlopen
r = urlopen("https://gitlab.gnome.org/GNOME/wing/-/archive/v0.3.24/wing-v0.3.24.tar.gz", None)
print(r.status)
print(r.read())
```
This problem affects only wing, the other GNOME projects have `archive_url` pointing to [download.gnome.org](https://download.gnome.org) that doesn't seem to block downloads.
3 条评论