Merge pull request #94481 from veprbl/pr/texlive_no_rev

texlive: disable revisioned tarballs for now
This commit is contained in:
Dmitry Kalinkin 2020-08-20 09:44:27 -07:00 committed by GitHub
commit 88baea464c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,8 +99,11 @@ let
urls = args.urls or (if args ? url then [ args.url ] else
lib.concatMap
(up: [
"${up}/${urlName}.r${toString revision}.tar.xz"
"${up}/${urlName}.tar.xz" # TODO To be removed for telive 2020
# Only ~11% of packages in texlive 2019 have revisions, so
# the number of requests is nearly doubled if we lookup
# the name with revision
# "${up}/${urlName}.r${toString revision}.tar.xz"
"${up}/${urlName}.tar.xz" # TODO To be removed for texlive 2020?
])
urlPrefixes);