Files
nixpkgs/pkgs/development/python-modules
Patrick Hilhorst f7e390e6d4 treewide: fix redirected urls (run 3)
Related:
 - 9fc5e7e473
 - 593e11fd94
 - 508ae42a0f

Since the last time I ran this script, the Repology API changed, so I had to
adapt the script used in the previous PR. The new API should be more robust, so
overall this is a positive (no more grepping the error messages for our relevant
data but just a nice json structure).

Here's the new script I used:

```sh
curl https://repology.org/api/v1/repository/nix_unstable/problems \
   | jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \
   | sort | uniq | tee script.sed
find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```

I will also add this script to `maintainers/scripts`.
2020-10-02 09:01:35 -07:00
..
2020-09-13 13:22:53 +01:00
2020-09-21 13:39:37 +02:00
2020-09-21 21:53:33 +02:00
2020-09-14 09:11:08 -04:00
2020-09-14 09:11:08 -04:00
2020-09-21 11:08:08 -07:00
2020-09-20 12:23:18 +01:00
2020-09-23 20:12:28 -07:00
2020-09-22 10:11:37 -07:00
2020-09-11 16:04:51 +02:00
2020-09-21 23:16:37 -07:00
2020-09-20 08:17:50 -07:00
2020-09-13 09:09:47 +02:00
2020-09-13 04:20:00 +00:00
2020-09-17 11:35:38 +02:00
2020-09-16 00:26:48 -07:00
2020-09-10 15:15:39 -07:00
2020-09-13 12:44:47 +01:00
2020-09-29 21:04:40 -07:00
2020-09-26 18:52:35 -07:00
2020-09-09 20:04:41 -07:00
2020-09-23 09:23:16 -07:00
2020-10-01 04:20:00 +00:00
2020-09-10 15:15:58 -07:00
2020-09-10 15:16:44 -07:00
2020-09-21 23:38:26 -07:00
2020-09-24 09:05:40 -07:00
2020-09-25 10:47:44 -05:00
2020-09-27 20:00:31 -07:00
2020-09-21 09:55:45 -07:00
2020-09-20 08:57:11 +02:00
2020-09-27 11:43:05 -07:00
2020-09-21 10:55:45 -07:00
2020-09-21 11:07:48 -07:00
2020-09-12 01:37:06 +02:00