Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
9acd1eb7 18cb356d

+8345 -6452
+4 -6
lib/options.nix
··· 337 337 338 338 # Helper functions. 339 339 340 - /* Convert an option, described as a list of the option parts in to a 341 - safe, human readable version. 340 + /* Convert an option, described as a list of the option parts to a 341 + human-readable version. 342 342 343 343 Example: 344 344 (showOption ["foo" "bar" "baz"]) == "foo.bar.baz" 345 - (showOption ["foo" "bar.baz" "tux"]) == "foo.bar.baz.tux" 345 + (showOption ["foo" "bar.baz" "tux"]) == "foo.\"bar.baz\".tux" 346 + (showOption ["windowManager" "2bwm" "enable"]) == "windowManager.\"2bwm\".enable" 346 347 347 348 Placeholders will not be quoted as they are not actual values: 348 349 (showOption ["foo" "*" "bar"]) == "foo.*.bar" 349 350 (showOption ["foo" "<name>" "bar"]) == "foo.<name>.bar" 350 - 351 - Unlike attributes, options can also start with numbers: 352 - (showOption ["windowManager" "2bwm" "enable"]) == "windowManager.2bwm.enable" 353 351 */ 354 352 showOption = parts: let 355 353 escapeOptionPart = part:
+6
maintainers/maintainer-list.nix
··· 9198 9198 githubId = 952712; 9199 9199 name = "Matt Christ"; 9200 9200 }; 9201 + matthew-levan = { 9202 + email = "matthew@coeli.network"; 9203 + github = "matthew-levan"; 9204 + githubId = 91502660; 9205 + name = "Matthew LeVan"; 9206 + }; 9201 9207 matthewcroughan = { 9202 9208 email = "matt@croughan.sh"; 9203 9209 github = "MatthewCroughan";
+14 -8
nixos/lib/make-options-doc/default.nix
··· 91 91 in rec { 92 92 inherit optionsNix; 93 93 94 - optionsAsciiDoc = pkgs.runCommand "options.adoc" {} '' 95 - ${pkgs.python3Minimal}/bin/python ${./generateDoc.py} \ 96 - --format asciidoc \ 94 + optionsAsciiDoc = pkgs.runCommand "options.adoc" { 95 + nativeBuildInputs = [ pkgs.nixos-render-docs ]; 96 + } '' 97 + nixos-render-docs -j $NIX_BUILD_CORES options asciidoc \ 98 + --manpage-urls ${pkgs.path + "/doc/manpage-urls.json"} \ 99 + --revision ${lib.escapeShellArg revision} \ 97 100 ${optionsJSON}/share/doc/nixos/options.json \ 98 - > $out 101 + $out 99 102 ''; 100 103 101 - optionsCommonMark = pkgs.runCommand "options.md" {} '' 102 - ${pkgs.python3Minimal}/bin/python ${./generateDoc.py} \ 103 - --format commonmark \ 104 + optionsCommonMark = pkgs.runCommand "options.md" { 105 + nativeBuildInputs = [ pkgs.nixos-render-docs ]; 106 + } '' 107 + nixos-render-docs -j $NIX_BUILD_CORES options commonmark \ 108 + --manpage-urls ${pkgs.path + "/doc/manpage-urls.json"} \ 109 + --revision ${lib.escapeShellArg revision} \ 104 110 ${optionsJSON}/share/doc/nixos/options.json \ 105 - > $out 111 + $out 106 112 ''; 107 113 108 114 optionsJSON = pkgs.runCommand "options.json"
-112
nixos/lib/make-options-doc/generateDoc.py
··· 1 - import argparse 2 - import json 3 - import sys 4 - 5 - formats = ['commonmark', 'asciidoc'] 6 - 7 - parser = argparse.ArgumentParser( 8 - description = 'Generate documentation for a set of JSON-formatted NixOS options' 9 - ) 10 - parser.add_argument( 11 - 'nix_options_path', 12 - help = 'a path to a JSON file containing the NixOS options' 13 - ) 14 - parser.add_argument( 15 - '-f', 16 - '--format', 17 - choices = formats, 18 - required = True, 19 - help = f'the documentation format to generate' 20 - ) 21 - 22 - args = parser.parse_args() 23 - 24 - class OptionsEncoder(json.JSONEncoder): 25 - def encode(self, obj): 26 - # Unpack literal expressions and other Nix types. 27 - # Don't escape the strings: they were escaped when initially serialized to JSON. 28 - if isinstance(obj, dict): 29 - _type = obj.get('_type') 30 - if _type is not None: 31 - if _type == 'literalExpression' or _type == 'literalDocBook': 32 - return obj['text'] 33 - 34 - if _type == 'derivation': 35 - return obj['name'] 36 - 37 - raise Exception(f'Unexpected type `{_type}` in {json.dumps(obj)}') 38 - 39 - return super().encode(obj) 40 - 41 - def generate_commonmark(options): 42 - for (name, value) in options.items(): 43 - print('##', name.replace('<', '&lt;').replace('>', '&gt;')) 44 - print(value['description']) 45 - print() 46 - if 'type' in value: 47 - print('*_Type_*') 48 - print ('```') 49 - print(value['type']) 50 - print ('```') 51 - print() 52 - print() 53 - if 'default' in value: 54 - print('*_Default_*') 55 - print('```') 56 - print(json.dumps(value['default'], cls=OptionsEncoder, ensure_ascii=False, separators=(',', ':'))) 57 - print('```') 58 - print() 59 - print() 60 - if 'example' in value: 61 - print('*_Example_*') 62 - print('```') 63 - print(json.dumps(value['example'], cls=OptionsEncoder, ensure_ascii=False, separators=(',', ':'))) 64 - print('```') 65 - print() 66 - print() 67 - 68 - # TODO: declarations: link to github 69 - def generate_asciidoc(options): 70 - for (name, value) in options.items(): 71 - print(f'== {name}') 72 - print() 73 - print(value['description']) 74 - print() 75 - print('[discrete]') 76 - print('=== details') 77 - print() 78 - print(f'Type:: {value["type"]}') 79 - if 'default' in value: 80 - print('Default::') 81 - print('+') 82 - print('----') 83 - print(json.dumps(value['default'], cls=OptionsEncoder, ensure_ascii=False, separators=(',', ':'))) 84 - print('----') 85 - print() 86 - else: 87 - print('No Default:: {blank}') 88 - if value['readOnly']: 89 - print('Read Only:: {blank}') 90 - else: 91 - print() 92 - if 'example' in value: 93 - print('Example::') 94 - print('+') 95 - print('----') 96 - print(json.dumps(value['example'], cls=OptionsEncoder, ensure_ascii=False, separators=(',', ':'))) 97 - print('----') 98 - print() 99 - else: 100 - print('No Example:: {blank}') 101 - print() 102 - 103 - with open(args.nix_options_path) as nix_options_json: 104 - options = json.load(nix_options_json) 105 - 106 - if args.format == 'commonmark': 107 - generate_commonmark(options) 108 - elif args.format == 'asciidoc': 109 - generate_asciidoc(options) 110 - else: 111 - raise Exception(f'Unsupported documentation format `--format {args.format}`') 112 -
+18
nixos/modules/hardware/flipperzero.nix
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + 7 + cfg = config.hardware.flipperzero; 8 + 9 + in 10 + 11 + { 12 + options.hardware.flipperzero.enable = mkEnableOption (mdDoc "udev rules and software for Flipper Zero devices"); 13 + 14 + config = mkIf cfg.enable { 15 + environment.systemPackages = [ pkgs.qFlipper ]; 16 + services.udev.packages = [ pkgs.qFlipper ]; 17 + }; 18 + }
+1
nixos/modules/module-list.nix
··· 53 53 ./hardware/cpu/intel-sgx.nix 54 54 ./hardware/device-tree.nix 55 55 ./hardware/digitalbitbox.nix 56 + ./hardware/flipperzero.nix 56 57 ./hardware/flirc.nix 57 58 ./hardware/gkraken.nix 58 59 ./hardware/gpgsmartcards.nix
+3
pkgs/applications/editors/helix/default.nix
··· 23 23 mkdir -p $out/lib 24 24 cp -r runtime $out/lib 25 25 installShellCompletion contrib/completion/hx.{bash,fish,zsh} 26 + mkdir -p $out/share/{applications,icons} 27 + cp contrib/Helix.desktop $out/share/applications 28 + cp contrib/helix.png $out/share/icons 26 29 ''; 27 30 postFixup = '' 28 31 wrapProgram $out/bin/hx --set HELIX_RUNTIME $out/lib/runtime
+209 -209
pkgs/applications/editors/vim/plugins/generated.nix
··· 173 173 174 174 LeaderF = buildVimPluginFrom2Nix { 175 175 pname = "LeaderF"; 176 - version = "2023-02-17"; 176 + version = "2023-02-21"; 177 177 src = fetchFromGitHub { 178 178 owner = "Yggdroot"; 179 179 repo = "LeaderF"; 180 - rev = "86db2ec0d332c125c6c7d726721c613380978e2e"; 181 - sha256 = "0rp1fhsr0l4986nm6a96nw0612y2xa1d4ckkjxg7ca2nab6q24wj"; 180 + rev = "0f9606ee3e7c0e2d3437b88b6aad77ed82609e97"; 181 + sha256 = "0kks1rlblniwimzxdjjqypz4s7l6c6lv0bxhsgkyhl2vw978n2xx"; 182 182 }; 183 183 meta.homepage = "https://github.com/Yggdroot/LeaderF/"; 184 184 }; ··· 353 353 354 354 SpaceVim = buildVimPluginFrom2Nix { 355 355 pname = "SpaceVim"; 356 - version = "2023-01-17"; 356 + version = "2023-02-19"; 357 357 src = fetchFromGitHub { 358 358 owner = "SpaceVim"; 359 359 repo = "SpaceVim"; 360 - rev = "25e2819b0e6ad38f51c918ea09e159c8a09bbdc3"; 361 - sha256 = "15s0ndfpji3zms2fbijm7ys40x5p8994cdir3a0ya1nksf3yb9jj"; 360 + rev = "6333a123c8681415ae141edc0943d0f7b377e619"; 361 + sha256 = "0f2nbcjcsi993c5lf8mvm5ma80clm793iqhwdq4amjmxxqsdipxp"; 362 362 }; 363 363 meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; 364 364 }; ··· 498 498 499 499 aerial-nvim = buildVimPluginFrom2Nix { 500 500 pname = "aerial.nvim"; 501 - version = "2023-02-14"; 501 + version = "2023-02-19"; 502 502 src = fetchFromGitHub { 503 503 owner = "stevearc"; 504 504 repo = "aerial.nvim"; 505 - rev = "89031be806abded509a7bafd99bd9944eb5108a5"; 506 - sha256 = "1xg7ja016qq2r7x22rh77rbjx2qhfyh6bx1px9d8gsgy4zxnr0pg"; 505 + rev = "faadebfd77f176bd8acfab8bc9decac4abba26b0"; 506 + sha256 = "0jzbapmrca4pqxl5nwra4wm29hgfcq5v0zng2a5hivbbjqrk7zzs"; 507 507 fetchSubmodules = true; 508 508 }; 509 509 meta.homepage = "https://github.com/stevearc/aerial.nvim/"; ··· 859 859 860 860 barbecue-nvim = buildVimPluginFrom2Nix { 861 861 pname = "barbecue.nvim"; 862 - version = "2023-02-16"; 862 + version = "2023-02-20"; 863 863 src = fetchFromGitHub { 864 864 owner = "utilyre"; 865 865 repo = "barbecue.nvim"; 866 - rev = "c6cb480f397d19f73cf2ff491c547d751118dbae"; 867 - sha256 = "0xlqmz0mg9h531a7667sxpr9q1nff525jjyw4fz07xwfs8q47wxr"; 866 + rev = "55eb481d2554c7e612e52b68aa23be2090dc58cf"; 867 + sha256 = "1fff73c663z6pcvkic9ngr9hs9vn6fpxw72x2ivwwiz7d983i93q"; 868 868 }; 869 869 meta.homepage = "https://github.com/utilyre/barbecue.nvim/"; 870 870 }; ··· 1027 1027 1028 1028 bufferline-nvim = buildVimPluginFrom2Nix { 1029 1029 pname = "bufferline.nvim"; 1030 - version = "2023-02-11"; 1030 + version = "2023-02-20"; 1031 1031 src = fetchFromGitHub { 1032 1032 owner = "akinsho"; 1033 1033 repo = "bufferline.nvim"; 1034 - rev = "84b0822b2af478d0b4f7b0f9249ca218855331db"; 1035 - sha256 = "0q6y91wpg0znzmr188hk20llaz6cdpbsw0fiazacfj0y5pkgid6w"; 1034 + rev = "cbb798dd2db7841550cd2c6c6dde12dfda055928"; 1035 + sha256 = "0wy8cdrsirk94il9qyv1c29mcysr41mjrr8f595pkb5zyd45lb34"; 1036 1036 }; 1037 1037 meta.homepage = "https://github.com/akinsho/bufferline.nvim/"; 1038 1038 }; ··· 1159 1159 1160 1160 clangd_extensions-nvim = buildVimPluginFrom2Nix { 1161 1161 pname = "clangd_extensions.nvim"; 1162 - version = "2023-01-02"; 1162 + version = "2023-02-20"; 1163 1163 src = fetchFromGitHub { 1164 1164 owner = "p00f"; 1165 1165 repo = "clangd_extensions.nvim"; 1166 - rev = "a5c3c8390dfb342d630bdc25941a4d8f433510be"; 1167 - sha256 = "0picfypj5by4zmq37h0dmszwk8vzj5dq04q2jy8lb9p5n36rkwya"; 1166 + rev = "722ee39d4c1b309bef4a6c2da1749c3e3358757f"; 1167 + sha256 = "1wdni05s0d1p5wmzr30sazqm3fi8n178jf1fdwwlbjpvalgjn5kp"; 1168 1168 }; 1169 1169 meta.homepage = "https://github.com/p00f/clangd_extensions.nvim/"; 1170 1170 }; ··· 1363 1363 1364 1364 cmp-fuzzy-buffer = buildVimPluginFrom2Nix { 1365 1365 pname = "cmp-fuzzy-buffer"; 1366 - version = "2023-02-16"; 1366 + version = "2023-02-19"; 1367 1367 src = fetchFromGitHub { 1368 1368 owner = "tzachar"; 1369 1369 repo = "cmp-fuzzy-buffer"; 1370 - rev = "21d281de0fda5bf4f57920f54eb60e212593ba63"; 1371 - sha256 = "1794rhyf0sjwzw3hbzxv53vispifyxxxp1niv6zw4bmrks3jxdg8"; 1370 + rev = "5da5f20b2b459671c207599404ef8fe3fa0f60f0"; 1371 + sha256 = "08q6i73pp7h03ghd3fpdlfxhz85hrgg5s4cp4f2j4h87sssi5mzw"; 1372 1372 }; 1373 1373 meta.homepage = "https://github.com/tzachar/cmp-fuzzy-buffer/"; 1374 1374 }; 1375 1375 1376 1376 cmp-fuzzy-path = buildVimPluginFrom2Nix { 1377 1377 pname = "cmp-fuzzy-path"; 1378 - version = "2022-11-29"; 1378 + version = "2023-02-19"; 1379 1379 src = fetchFromGitHub { 1380 1380 owner = "tzachar"; 1381 1381 repo = "cmp-fuzzy-path"; 1382 - rev = "28735cebc314f0b080a41350adae8612b6fc7814"; 1383 - sha256 = "0jwr9xb0axs1i3xk0z773jrp77jy1a274pwwd09lradm4rfa052q"; 1382 + rev = "0caa34810c03a94ef01a57c3758fcaeab3130cf3"; 1383 + sha256 = "1axr13kw7g3jmk29s20nyqv153qxfjd4jajwcxw9m184p27nb74z"; 1384 1384 }; 1385 1385 meta.homepage = "https://github.com/tzachar/cmp-fuzzy-path/"; 1386 1386 }; ··· 1615 1615 1616 1616 cmp-tabnine = buildVimPluginFrom2Nix { 1617 1617 pname = "cmp-tabnine"; 1618 - version = "2022-12-27"; 1618 + version = "2023-02-19"; 1619 1619 src = fetchFromGitHub { 1620 1620 owner = "tzachar"; 1621 1621 repo = "cmp-tabnine"; 1622 - rev = "ee1341c53e7b82f55c6e83287828f652c2ac35e1"; 1623 - sha256 = "0x61dhbx1wvbnf1pjz1an3zhmp25xy07wshw8dw5yf46qi623l09"; 1622 + rev = "1b1c0235c54e3fc9e77504ed8d36028f64e6f48d"; 1623 + sha256 = "12ivpbxpqvxb6c2p0snpr65d45ppx57l8aylnb3l39ciabknjhdm"; 1624 1624 }; 1625 1625 meta.homepage = "https://github.com/tzachar/cmp-tabnine/"; 1626 1626 }; ··· 1759 1759 1760 1760 coc-lua = buildVimPluginFrom2Nix { 1761 1761 pname = "coc-lua"; 1762 - version = "2023-02-18"; 1762 + version = "2023-02-20"; 1763 1763 src = fetchFromGitHub { 1764 1764 owner = "josa42"; 1765 1765 repo = "coc-lua"; 1766 - rev = "b8aacc44913b4b8de089d067ef6f103512e76e18"; 1767 - sha256 = "10hdrw4yzadggaaz4x3vjpmk8jnalcprp8sn550mxy95al1ip4q8"; 1766 + rev = "bf9bde0a86022c494c995778a5bf7210f2420601"; 1767 + sha256 = "0fyyq22f33q949v5cabjynbj311279cxfm4wb3mi6v1agzpxh8lb"; 1768 1768 }; 1769 1769 meta.homepage = "https://github.com/josa42/coc-lua/"; 1770 1770 }; ··· 2119 2119 2120 2120 coq-artifacts = buildVimPluginFrom2Nix { 2121 2121 pname = "coq.artifacts"; 2122 - version = "2023-02-12"; 2122 + version = "2023-02-19"; 2123 2123 src = fetchFromGitHub { 2124 2124 owner = "ms-jpq"; 2125 2125 repo = "coq.artifacts"; 2126 - rev = "6acfe02d3b8057ed9ed5bbd02b1ecc426eb9d97d"; 2127 - sha256 = "16rmmmh34y2pz1iwk8mnk88vs5cdqrm0sw52fnsmg5r82wy1i7y7"; 2126 + rev = "eba0531cea9fe292059dbecf677d36a07f9c28b2"; 2127 + sha256 = "059p1rjjhk4i2fxi9zgd923j7ksj9cfx4f9smhnqdqgmkm57lnwd"; 2128 2128 }; 2129 2129 meta.homepage = "https://github.com/ms-jpq/coq.artifacts/"; 2130 2130 }; 2131 2131 2132 2132 coq-thirdparty = buildVimPluginFrom2Nix { 2133 2133 pname = "coq.thirdparty"; 2134 - version = "2023-02-12"; 2134 + version = "2023-02-19"; 2135 2135 src = fetchFromGitHub { 2136 2136 owner = "ms-jpq"; 2137 2137 repo = "coq.thirdparty"; 2138 - rev = "0b93c482acfc0bcdd760ff431b4d338e19395776"; 2139 - sha256 = "0hns2zvxlxd9wpdkr5cvcgzms6vkcw3h9p8ck1zj6msh0w1pmg67"; 2138 + rev = "531faab60ba9418eb180a4a127a661bed98b46a2"; 2139 + sha256 = "0lkkyd9iz89lnalvf2i8yz9ssiwiavvnmavxzn0siw7p69x2fkr2"; 2140 2140 }; 2141 2141 meta.homepage = "https://github.com/ms-jpq/coq.thirdparty/"; 2142 2142 }; ··· 2155 2155 2156 2156 coq_nvim = buildVimPluginFrom2Nix { 2157 2157 pname = "coq_nvim"; 2158 - version = "2023-02-12"; 2158 + version = "2023-02-19"; 2159 2159 src = fetchFromGitHub { 2160 2160 owner = "ms-jpq"; 2161 2161 repo = "coq_nvim"; 2162 - rev = "49189b020236002bae41f823da9ac0f73dca873f"; 2163 - sha256 = "17rmg7b9ibx1d8bb8s9r9zxqxxh206hkb5avykrdbngrg1sy64y6"; 2162 + rev = "272a39c8f483c0bf6137dd382363639aab83a23e"; 2163 + sha256 = "0yy9lyh9wx7wa4s6ishqg3g0lb0z3c6hhywghpvyd16kldf6lrd9"; 2164 2164 }; 2165 2165 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 2166 2166 }; ··· 2227 2227 2228 2228 csv-vim = buildVimPluginFrom2Nix { 2229 2229 pname = "csv.vim"; 2230 - version = "2022-11-23"; 2230 + version = "2023-02-20"; 2231 2231 src = fetchFromGitHub { 2232 2232 owner = "chrisbra"; 2233 2233 repo = "csv.vim"; 2234 - rev = "fb159987bb430bb61e07928d132e4487e54a82ef"; 2235 - sha256 = "1c6fas33baabdfsm95icbi8n84ica2hysyvkprx4zpz5zn2b8rk5"; 2234 + rev = "0f6900bf1d0f2ccdbe59ed246db4a82e5cc16e78"; 2235 + sha256 = "0yi9r665xsvp2043mwc58wljfnsp38pzab7j14mb0fcs787r0kq4"; 2236 2236 }; 2237 2237 meta.homepage = "https://github.com/chrisbra/csv.vim/"; 2238 2238 }; ··· 2299 2299 2300 2300 dashboard-nvim = buildVimPluginFrom2Nix { 2301 2301 pname = "dashboard-nvim"; 2302 - version = "2023-02-16"; 2302 + version = "2023-02-20"; 2303 2303 src = fetchFromGitHub { 2304 2304 owner = "glepnir"; 2305 2305 repo = "dashboard-nvim"; 2306 - rev = "2312a5024748e869a355d91170f2e8fbf2bd5a51"; 2307 - sha256 = "1sg2c2238m6nrmp700b2wvw9g9p1wfc7d1v4ma0lam4d1z0xhwyj"; 2306 + rev = "0d5e201629a85617fb7efef61c3212fb4529f31a"; 2307 + sha256 = "1jylspgsfana9chd5ywx3ylk54fkgj5r2jhy5x7145k1zmwq49qv"; 2308 2308 }; 2309 2309 meta.homepage = "https://github.com/glepnir/dashboard-nvim/"; 2310 2310 }; ··· 2987 2987 2988 2988 firenvim = buildVimPluginFrom2Nix { 2989 2989 pname = "firenvim"; 2990 - version = "2023-02-17"; 2990 + version = "2023-02-18"; 2991 2991 src = fetchFromGitHub { 2992 2992 owner = "glacambre"; 2993 2993 repo = "firenvim"; 2994 - rev = "07652ec0b659cba53e5dc07eeb660234a7b248ee"; 2995 - sha256 = "1w3l0byhnk873c9qfyp4gna96aff37769l82jqwdcvs7a2dalsz3"; 2994 + rev = "dca3e56021cb5c39f401c9d83531743416c3365f"; 2995 + sha256 = "0hrkidscljbggsvkajvmqn1x79raa1bpjbwiqjgp3b1vckhyzz3h"; 2996 2996 }; 2997 2997 meta.homepage = "https://github.com/glacambre/firenvim/"; 2998 2998 }; ··· 3096 3096 3097 3097 friendly-snippets = buildVimPluginFrom2Nix { 3098 3098 pname = "friendly-snippets"; 3099 - version = "2023-02-12"; 3099 + version = "2023-02-19"; 3100 3100 src = fetchFromGitHub { 3101 3101 owner = "rafamadriz"; 3102 3102 repo = "friendly-snippets"; 3103 - rev = "1645e7cd98ed99e766c84ab3cf13a1612c77dcee"; 3104 - sha256 = "13zvkv7vnfrj0xs31s1gv74amxpdyvc2m2x8br58vxfscy3wbaa4"; 3103 + rev = "6fa50a94ba5378bb73013a6e163376d8e69bd8a5"; 3104 + sha256 = "0a0xzfynxrwb53azlsdqda4pdsnvavkdfxmsg776snv6iqx9sw1g"; 3105 3105 }; 3106 3106 meta.homepage = "https://github.com/rafamadriz/friendly-snippets/"; 3107 3107 }; ··· 3204 3204 3205 3205 fzf-lua = buildVimPluginFrom2Nix { 3206 3206 pname = "fzf-lua"; 3207 - version = "2023-02-18"; 3207 + version = "2023-02-21"; 3208 3208 src = fetchFromGitHub { 3209 3209 owner = "ibhagwan"; 3210 3210 repo = "fzf-lua"; 3211 - rev = "52f0cfd8021404988dc446734711f215bba6a6de"; 3212 - sha256 = "0ypidlvf3fc5nq4s9qz9w7378zzppv7qajwydm84v3g76p1aqm3a"; 3211 + rev = "b15ef042f7006827e7413baad89a0e8541079c9e"; 3212 + sha256 = "0svjfw6nsczqpfqic1zvpnz3bn9iivzp81i5kkq7vqgks11ji0w9"; 3213 3213 }; 3214 3214 meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; 3215 3215 }; ··· 3384 3384 3385 3385 glance-nvim = buildVimPluginFrom2Nix { 3386 3386 pname = "glance.nvim"; 3387 - version = "2023-02-15"; 3387 + version = "2023-02-20"; 3388 3388 src = fetchFromGitHub { 3389 3389 owner = "DNLHC"; 3390 3390 repo = "glance.nvim"; 3391 - rev = "24b367dc1678ad3d23b26396a8e06363b32facbe"; 3392 - sha256 = "1x33hn6lk4jlq7h7ss3b29105kbs0l5f2zykn9d9n6rvl5qwdmw1"; 3391 + rev = "bbded06ea23faad779297122e93b1c0dcdb2a770"; 3392 + sha256 = "0sirrb5s3g93a65ygc2s8g481vfgp205vyvsrghml5r93pddvzkc"; 3393 3393 }; 3394 3394 meta.homepage = "https://github.com/DNLHC/glance.nvim/"; 3395 3395 }; ··· 3420 3420 3421 3421 go-nvim = buildVimPluginFrom2Nix { 3422 3422 pname = "go.nvim"; 3423 - version = "2023-02-19"; 3423 + version = "2023-02-21"; 3424 3424 src = fetchFromGitHub { 3425 3425 owner = "ray-x"; 3426 3426 repo = "go.nvim"; 3427 - rev = "c11b8b50f3f4eeef7f7a8f07f697fd67794fd2ac"; 3428 - sha256 = "12r0j62d76m2vh88wv4phc5s2r43scx3j8f814slnyigprdprs9k"; 3427 + rev = "7a6c02dd199f62e4c87c4e9641b0963c6b0ad81f"; 3428 + sha256 = "1jzl73fxpa370jxh9i134jpgnm9badim3i581h5n5id8qgfnibng"; 3429 3429 }; 3430 3430 meta.homepage = "https://github.com/ray-x/go.nvim/"; 3431 3431 }; ··· 3623 3623 3624 3624 haskell-tools-nvim = buildVimPluginFrom2Nix { 3625 3625 pname = "haskell-tools.nvim"; 3626 - version = "2023-02-17"; 3626 + version = "2023-02-20"; 3627 3627 src = fetchFromGitHub { 3628 3628 owner = "MrcJkb"; 3629 3629 repo = "haskell-tools.nvim"; 3630 - rev = "b4a4046d4910b4e7f42de30765ea78c888919757"; 3631 - sha256 = "12sl1yxib33pcpz38yxm8shhw71xkiw1ywlxxv1inph5avsy0ylk"; 3630 + rev = "f95c5b019777768c0498bef05e1ee095f7d9398f"; 3631 + sha256 = "0pz4xma58zwzi1705lmv7q6ijjqcrgydip47cbp6h7si1sl42kl4"; 3632 3632 }; 3633 3633 meta.homepage = "https://github.com/MrcJkb/haskell-tools.nvim/"; 3634 3634 }; ··· 3671 3671 3672 3672 heirline-nvim = buildVimPluginFrom2Nix { 3673 3673 pname = "heirline.nvim"; 3674 - version = "2023-02-18"; 3674 + version = "2023-02-19"; 3675 3675 src = fetchFromGitHub { 3676 3676 owner = "rebelot"; 3677 3677 repo = "heirline.nvim"; 3678 - rev = "b2e69dc3385772159b5dffd3a12a7af874692e10"; 3679 - sha256 = "11c5ng73vh9m29g4i3y4pc05pnblb90yggbh96vw5hkkvv0ahg9s"; 3678 + rev = "b69415d912d466db17b8ee1eb777cc7f776a9286"; 3679 + sha256 = "0pv320i23wwp58xy3lpiy4j90y6fl8frmw19nk0c8dy9c10pdg6s"; 3680 3680 }; 3681 3681 meta.homepage = "https://github.com/rebelot/heirline.nvim/"; 3682 3682 }; ··· 3886 3886 3887 3887 indent-blankline-nvim = buildVimPluginFrom2Nix { 3888 3888 pname = "indent-blankline.nvim"; 3889 - version = "2023-01-26"; 3889 + version = "2023-02-20"; 3890 3890 src = fetchFromGitHub { 3891 3891 owner = "lukas-reineke"; 3892 3892 repo = "indent-blankline.nvim"; 3893 - rev = "8299fe7703dfff4b1752aeed271c3b95281a952d"; 3894 - sha256 = "1z2rnaa9p62yid89n9pni9jzzdlcdc55i95c67yn5qzxd3h637hi"; 3893 + rev = "018bd04d80c9a73d399c1061fa0c3b14a7614399"; 3894 + sha256 = "1ncpar0n8702j5h4a2bv8zx9kcg7gwfhs52qqrcg1yfsgjzb86bl"; 3895 3895 }; 3896 3896 meta.homepage = "https://github.com/lukas-reineke/indent-blankline.nvim/"; 3897 3897 }; ··· 4175 4175 4176 4176 lazy-lsp-nvim = buildVimPluginFrom2Nix { 4177 4177 pname = "lazy-lsp.nvim"; 4178 - version = "2022-11-02"; 4178 + version = "2023-02-20"; 4179 4179 src = fetchFromGitHub { 4180 4180 owner = "dundalek"; 4181 4181 repo = "lazy-lsp.nvim"; 4182 - rev = "7866efc6e5bef78e7f14ab2c0118c1fed15947c9"; 4183 - sha256 = "1d9qk7bffj2ppyd6m6r8g5ip804kqjn64a8k7ckd6jqxfl9w3xga"; 4182 + rev = "d22d54c7558415faf6f518db1e00d995d595a99d"; 4183 + sha256 = "0v7j8bjd5naf5qbr362r82nqa4grwj2r9wk68s5dv9zg576ybm0p"; 4184 4184 }; 4185 4185 meta.homepage = "https://github.com/dundalek/lazy-lsp.nvim/"; 4186 4186 }; 4187 4187 4188 4188 lazy-nvim = buildVimPluginFrom2Nix { 4189 4189 pname = "lazy.nvim"; 4190 - version = "2023-02-17"; 4190 + version = "2023-02-20"; 4191 4191 src = fetchFromGitHub { 4192 4192 owner = "folke"; 4193 4193 repo = "lazy.nvim"; 4194 - rev = "7339145a223dab7e7ddccf0986ffbf9d2cb804e8"; 4195 - sha256 = "0mw9sxnmyc5wipw7m1ap1s1f1a7mfi2qi9d2ibfibbrwbpx5n0yz"; 4194 + rev = "8077428e63feb0f3bf795d53b23ba1695b28ab0e"; 4195 + sha256 = "12bq0ppdm7frjgd336lvp3crw9ivsl5lj33f7fjvpqgsib7gy87r"; 4196 4196 }; 4197 4197 meta.homepage = "https://github.com/folke/lazy.nvim/"; 4198 4198 }; ··· 4439 4439 4440 4440 lir-nvim = buildVimPluginFrom2Nix { 4441 4441 pname = "lir.nvim"; 4442 - version = "2023-02-15"; 4442 + version = "2023-02-21"; 4443 4443 src = fetchFromGitHub { 4444 4444 owner = "tamago324"; 4445 4445 repo = "lir.nvim"; 4446 - rev = "248f6b1da1f597e51513dd970672c7e57253f92a"; 4447 - sha256 = "0l5xx5n1vzghpp85x7ilw53qz1jcjmm5xjkiiwlg6bpb6shrlnyn"; 4446 + rev = "1aa871f20637eccc4e1e26b0fbcf9aafc9b6caf7"; 4447 + sha256 = "0vwlp8b4kj0201abq5rh470kf4lsk2pr1207qhjd2ay1wp69ywiq"; 4448 4448 }; 4449 4449 meta.homepage = "https://github.com/tamago324/lir.nvim/"; 4450 4450 }; ··· 4595 4595 4596 4596 lsp-zero-nvim = buildVimPluginFrom2Nix { 4597 4597 pname = "lsp-zero.nvim"; 4598 - version = "2023-02-17"; 4598 + version = "2023-02-19"; 4599 4599 src = fetchFromGitHub { 4600 4600 owner = "VonHeikemen"; 4601 4601 repo = "lsp-zero.nvim"; 4602 - rev = "4361fbcb9e56ecd22169865a6588db8b1764c06c"; 4603 - sha256 = "0kac8cc30j8w0d0417wsjdib9jiqbdyavhg34hn0sl3kwyp92nc4"; 4602 + rev = "674a60c7d4f2a90c75d66fe98603d7ca708939dc"; 4603 + sha256 = "1iha7i85bsamnb7gqnnhh784xycfwfg8vbyc93d42wpsksm7yjzr"; 4604 4604 }; 4605 4605 meta.homepage = "https://github.com/VonHeikemen/lsp-zero.nvim/"; 4606 4606 }; ··· 4702 4702 4703 4703 luasnip = buildVimPluginFrom2Nix { 4704 4704 pname = "luasnip"; 4705 - version = "2023-02-11"; 4705 + version = "2023-02-20"; 4706 4706 src = fetchFromGitHub { 4707 4707 owner = "l3mon4d3"; 4708 4708 repo = "luasnip"; 4709 - rev = "58fbfc627a93281a77f7d161d4ff702e639677b1"; 4710 - sha256 = "0vxqy0m1kvd4xfadv6pmx9l9h2pjrk7dsr43av6nf6xn2yrr7sin"; 4709 + rev = "92276ba735056dab04b0508e421a6a5d729e3f81"; 4710 + sha256 = "1vfkra9xygdm6ffdlkdca636i97hazhv1l66zpn3lwlliyqi1pzv"; 4711 4711 fetchSubmodules = true; 4712 4712 }; 4713 4713 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; ··· 4799 4799 4800 4800 mason-nvim = buildVimPluginFrom2Nix { 4801 4801 pname = "mason.nvim"; 4802 - version = "2023-02-18"; 4802 + version = "2023-02-20"; 4803 4803 src = fetchFromGitHub { 4804 4804 owner = "williamboman"; 4805 4805 repo = "mason.nvim"; 4806 - rev = "4546dec8b56bc56bc1d81e717e4a935bc7cd6477"; 4807 - sha256 = "179mz9pc7qp4vqmlmhd1pz9z0qagfkywb1l2sj7i1039smkf9p9a"; 4806 + rev = "b8a6632a0f2d263199d5d480ca85477fe0f414ab"; 4807 + sha256 = "0622x0k1xi5z6jdz2bpqvym34ysk38axfyjq45m6hhl6qcy0ysxg"; 4808 4808 }; 4809 4809 meta.homepage = "https://github.com/williamboman/mason.nvim/"; 4810 4810 }; ··· 5231 5231 5232 5232 neoconf-nvim = buildVimPluginFrom2Nix { 5233 5233 pname = "neoconf.nvim"; 5234 - version = "2023-02-18"; 5234 + version = "2023-02-21"; 5235 5235 src = fetchFromGitHub { 5236 5236 owner = "folke"; 5237 5237 repo = "neoconf.nvim"; 5238 - rev = "060986ec2fcb27cfa175ac24d6467f46261bc257"; 5239 - sha256 = "0y8lvqfgs3lqd09dmvh04dpj76r5qmjh7q09wblmrc0nf7big3q2"; 5238 + rev = "ca85eea7841f043671ebd6c784771f08b9d34231"; 5239 + sha256 = "0pf44ydg6m70haban92fl7yvl3755jqw6h1icaglci8p198gsvln"; 5240 5240 }; 5241 5241 meta.homepage = "https://github.com/folke/neoconf.nvim/"; 5242 5242 }; ··· 5267 5267 5268 5268 neoformat = buildVimPluginFrom2Nix { 5269 5269 pname = "neoformat"; 5270 - version = "2023-02-04"; 5270 + version = "2023-02-20"; 5271 5271 src = fetchFromGitHub { 5272 5272 owner = "sbdchd"; 5273 5273 repo = "neoformat"; 5274 - rev = "2e9fd3a7cbdce0c90379c8bc52e0bca6726eba81"; 5275 - sha256 = "02f77wwhb1wfk9bcvy5mnc4r2rdgw6b3pdmacizmjnd1a9ajqysn"; 5274 + rev = "16bd62efc3fcdcd0f6682ea47f1f6070850f9963"; 5275 + sha256 = "1d5bqxfdg01hnx239v7bi301325ihvdypy0p4b1ay5py5jckld9h"; 5276 5276 }; 5277 5277 meta.homepage = "https://github.com/sbdchd/neoformat/"; 5278 5278 }; ··· 5291 5291 5292 5292 neogit = buildVimPluginFrom2Nix { 5293 5293 pname = "neogit"; 5294 - version = "2023-01-31"; 5294 + version = "2023-02-20"; 5295 5295 src = fetchFromGitHub { 5296 5296 owner = "TimUntersberger"; 5297 5297 repo = "neogit"; 5298 - rev = "089d388876a535032ac6a3f80e19420f09e4ddda"; 5299 - sha256 = "0h44l14frinh9mcbjps04d0s853pppw0qlwdjkdg5wrfnh975vya"; 5298 + rev = "bde758e658c1cdc794293afbde698b5aaa93c5de"; 5299 + sha256 = "093gg1k7z0afhg8m2zvpkbf6aqb2ggjz50lrrf3wq0j25qsj1f4i"; 5300 5300 }; 5301 5301 meta.homepage = "https://github.com/TimUntersberger/neogit/"; 5302 5302 }; ··· 5315 5315 5316 5316 neomake = buildVimPluginFrom2Nix { 5317 5317 pname = "neomake"; 5318 - version = "2022-03-19"; 5318 + version = "2023-02-20"; 5319 5319 src = fetchFromGitHub { 5320 5320 owner = "neomake"; 5321 5321 repo = "neomake"; 5322 - rev = "0556893d7fbc1948ac1a82cd0f41023d76a234b2"; 5323 - sha256 = "0dw6miyxbbi71na8qb7nqk20vni1q46lmg51r0h354xcnxn4hyms"; 5322 + rev = "584f882b9f991245374e7e7d7d1f78bae90b7a35"; 5323 + sha256 = "0wywd9s5x70zw7yrid6nvlq1hz406j5j47y011jxan4ra4r9ixvy"; 5324 5324 }; 5325 5325 meta.homepage = "https://github.com/neomake/neomake/"; 5326 5326 }; ··· 5591 5591 5592 5592 nlsp-settings-nvim = buildVimPluginFrom2Nix { 5593 5593 pname = "nlsp-settings.nvim"; 5594 - version = "2023-02-17"; 5594 + version = "2023-02-21"; 5595 5595 src = fetchFromGitHub { 5596 5596 owner = "tamago324"; 5597 5597 repo = "nlsp-settings.nvim"; 5598 - rev = "c3980083e9d0db50e9cc9adf14e930ff0404e845"; 5599 - sha256 = "0jd21zwa2mjxkr3ad7s3w43gzxwdqahhnv3gml5cn9qqncybszgb"; 5598 + rev = "cbe9ee8184e46311efbce79d9806f3ee803a2521"; 5599 + sha256 = "16jv396s6mpk6w9fhrkh1wgc484647x1vs05y05j6smgi5h1hrlg"; 5600 5600 }; 5601 5601 meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; 5602 5602 }; ··· 5627 5627 5628 5628 no-neck-pain-nvim = buildVimPluginFrom2Nix { 5629 5629 pname = "no-neck-pain.nvim"; 5630 - version = "2023-02-16"; 5630 + version = "2023-02-20"; 5631 5631 src = fetchFromGitHub { 5632 5632 owner = "shortcuts"; 5633 5633 repo = "no-neck-pain.nvim"; 5634 - rev = "3ef7e6626825beb08d88747d574d8633e23a805b"; 5635 - sha256 = "0nsgqgm7hqyvhx2bg60zh5rrzcrhcll1lfqaspzkx9cic0yq42as"; 5634 + rev = "c97c44bc86522ceead8c9c9b775b2e1215549158"; 5635 + sha256 = "03zyfnzqj20yv9cy6pvh8r5j5v0mgcay7jv4lmgi3gsp0z4qa8ia"; 5636 5636 }; 5637 5637 meta.homepage = "https://github.com/shortcuts/no-neck-pain.nvim/"; 5638 5638 }; ··· 5711 5711 5712 5712 null-ls-nvim = buildVimPluginFrom2Nix { 5713 5713 pname = "null-ls.nvim"; 5714 - version = "2023-02-16"; 5714 + version = "2023-02-20"; 5715 5715 src = fetchFromGitHub { 5716 5716 owner = "jose-elias-alvarez"; 5717 5717 repo = "null-ls.nvim"; 5718 - rev = "a82aa08c0063843926947f3688b0e61fd71db680"; 5719 - sha256 = "14ijkjfbg5dm54wkp34rf6z9p5v2z7psxnfv526rqp9p4qqasghk"; 5718 + rev = "689cdd78f70af20a37b5309ebc287ac645ae4f76"; 5719 + sha256 = "1fja54wrmqafqww1ifkpmidwq52r246sana9j57dm92j3l39fv5q"; 5720 5720 }; 5721 5721 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 5722 5722 }; ··· 5807 5807 5808 5808 nvim-bqf = buildVimPluginFrom2Nix { 5809 5809 pname = "nvim-bqf"; 5810 - version = "2023-02-08"; 5810 + version = "2023-02-20"; 5811 5811 src = fetchFromGitHub { 5812 5812 owner = "kevinhwang91"; 5813 5813 repo = "nvim-bqf"; 5814 - rev = "7a278012efb0a12bc49ecc3e16ec5591c41fae88"; 5815 - sha256 = "1wykg4d6rx6grfb69svwwhk7f28g2cf87bdb13pwlbxyl7cxw908"; 5814 + rev = "b71e6bc220ea2ef8f09d5e6b39d52609a965f322"; 5815 + sha256 = "0kl2p55vrq1qwbk4r7mrly0gmw794h6nxivb17f4zn8lmvvcbmjc"; 5816 5816 }; 5817 5817 meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/"; 5818 5818 }; ··· 5847 5847 src = fetchFromGitHub { 5848 5848 owner = "hrsh7th"; 5849 5849 repo = "nvim-cmp"; 5850 - rev = "0c6a89af9a62ecc18f7cf89393b077af1063cd6c"; 5851 - sha256 = "1d490dli7r7sb0qviyy2b9n6ssy75iy8pszfbwyanp71v04k5v9w"; 5850 + rev = "8202df9561b90102b41dbc1ad71945534ef4ea39"; 5851 + sha256 = "15mpzg05x36vnbq9gs5q71fw9hin8b635r5lf42v6crdqw8wghmf"; 5852 5852 }; 5853 5853 meta.homepage = "https://github.com/hrsh7th/nvim-cmp/"; 5854 5854 }; ··· 6131 6131 6132 6132 nvim-jqx = buildVimPluginFrom2Nix { 6133 6133 pname = "nvim-jqx"; 6134 - version = "2023-02-17"; 6134 + version = "2023-02-19"; 6135 6135 src = fetchFromGitHub { 6136 6136 owner = "gennaro-tedesco"; 6137 6137 repo = "nvim-jqx"; 6138 - rev = "bb9e70fe83f2d176d3fae3234415c50f9231a8e2"; 6139 - sha256 = "1d84hy4vl3jkjzq0ir9p3rgal3nsagq5b9w0r20ql1c9n6cs2lqh"; 6138 + rev = "4c4082cf94ccd32f5780859c875f91ddef763694"; 6139 + sha256 = "0clqgq8whvcnpxlqhyw721kyljhsyvmx8mqfq8qaxys8b6cf8fwy"; 6140 6140 }; 6141 6141 meta.homepage = "https://github.com/gennaro-tedesco/nvim-jqx/"; 6142 6142 }; ··· 6203 6203 6204 6204 nvim-lspconfig = buildVimPluginFrom2Nix { 6205 6205 pname = "nvim-lspconfig"; 6206 - version = "2023-02-15"; 6206 + version = "2023-02-20"; 6207 6207 src = fetchFromGitHub { 6208 6208 owner = "neovim"; 6209 6209 repo = "nvim-lspconfig"; 6210 - rev = "649137cbc53a044bffde36294ce3160cb18f32c7"; 6211 - sha256 = "1xy1jzjhjn6m4xy556giiq265flli04csl0c1wf4dgpa03rd0yqf"; 6210 + rev = "b5db147e28337319331d516a826b00976f3584de"; 6211 + sha256 = "14hjgk0g81mn26xwd3hspzi2jqiy1viiyc6pz3zqnmn66g958bfl"; 6212 6212 }; 6213 6213 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 6214 6214 }; ··· 6323 6323 6324 6324 nvim-nu = buildVimPluginFrom2Nix { 6325 6325 pname = "nvim-nu"; 6326 - version = "2023-01-03"; 6326 + version = "2023-02-18"; 6327 6327 src = fetchFromGitHub { 6328 6328 owner = "LhKipp"; 6329 6329 repo = "nvim-nu"; 6330 - rev = "1aad12e866f6d53dd5ec31ada79767199334a4ca"; 6331 - sha256 = "022gmlrncbs46fqkbcnc4y8jyfasqac5nd09qq1qxdjgkw4924kj"; 6330 + rev = "ebacb8363ed3c21ffd4e47e277dde8f34609585b"; 6331 + sha256 = "0wd9ddyllmrisdcbp6mxl7nhcxs449k0rbwm0vshk3wig1wz4gdi"; 6332 6332 }; 6333 6333 meta.homepage = "https://github.com/LhKipp/nvim-nu/"; 6334 6334 }; ··· 6395 6395 6396 6396 nvim-snippy = buildVimPluginFrom2Nix { 6397 6397 pname = "nvim-snippy"; 6398 - version = "2023-02-12"; 6398 + version = "2023-02-18"; 6399 6399 src = fetchFromGitHub { 6400 6400 owner = "dcampos"; 6401 6401 repo = "nvim-snippy"; 6402 - rev = "12cb37c1d850365c6d3cb512efff901ae94a6927"; 6403 - sha256 = "077qvj1wy6q3kpadnavsz50y7ba0n1vrv9qdm5v49yj889f5iibc"; 6402 + rev = "80104ebd1e77d019f736bee46de2f1dbfe36f8af"; 6403 + sha256 = "144vv4yggmhsdrzqfrazj9cxm0pqcxlyqc7h535ss8cg0wqgx9bp"; 6404 6404 }; 6405 6405 meta.homepage = "https://github.com/dcampos/nvim-snippy/"; 6406 6406 }; ··· 6467 6467 6468 6468 nvim-tree-lua = buildVimPluginFrom2Nix { 6469 6469 pname = "nvim-tree.lua"; 6470 - version = "2023-02-14"; 6470 + version = "2023-02-20"; 6471 6471 src = fetchFromGitHub { 6472 6472 owner = "nvim-tree"; 6473 6473 repo = "nvim-tree.lua"; 6474 - rev = "08a0aa1a3b7411ee0a7887c8818528b1558cef96"; 6475 - sha256 = "0kgc928nrdjzl0sjm1yqfd489yw36fa4w0vbmp1siwwfrck97l5n"; 6474 + rev = "9c97e6449b0b0269bd44e1fd4857184dfa57bb4c"; 6475 + sha256 = "1qdz4ark1xjwc3xkcc3dm9cxinnfhd8mi0kawb8qjy87gw73i9mz"; 6476 6476 }; 6477 6477 meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; 6478 6478 }; 6479 6479 6480 6480 nvim-treesitter = buildVimPluginFrom2Nix { 6481 6481 pname = "nvim-treesitter"; 6482 - version = "2023-02-18"; 6482 + version = "2023-02-19"; 6483 6483 src = fetchFromGitHub { 6484 6484 owner = "nvim-treesitter"; 6485 6485 repo = "nvim-treesitter"; 6486 - rev = "17d7cf6f4b4057a949e86df6fbc2e271ba788823"; 6487 - sha256 = "088vpscxda9vph9ncvspyk51pkbykjmb6d5vrassiy1vpcvpa2bh"; 6486 + rev = "ce0dba96f47cd8bbd46b4c3ac8fd1b9502f1002a"; 6487 + sha256 = "0hgd2flldhjh38j69mgg5gg7iy8wcg258rhdx46ag8jgxvx31imc"; 6488 6488 }; 6489 6489 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 6490 6490 }; ··· 6575 6575 6576 6576 nvim-ts-rainbow2 = buildVimPluginFrom2Nix { 6577 6577 pname = "nvim-ts-rainbow2"; 6578 - version = "2023-02-17"; 6578 + version = "2023-02-20"; 6579 6579 src = fetchgit { 6580 6580 url = "https://gitlab.com/HiPhish/nvim-ts-rainbow2"; 6581 - rev = "352ce3e654cab593586fe02e7ca78c2cab13743d"; 6582 - sha256 = "026xi0grnqpp5j2vqx5n93y0g5avq0yx0qz23h88as5nhfa07wzj"; 6581 + rev = "99768947820b969bcd99c4252c6166a984f99be4"; 6582 + sha256 = "0swhhj6algx9j9020rcwbra8qw0nxk5c2pan0vjv4g18byya7i2y"; 6583 6583 }; 6584 6584 meta.homepage = "https://gitlab.com/HiPhish/nvim-ts-rainbow2"; 6585 6585 }; ··· 6598 6598 6599 6599 nvim-web-devicons = buildVimPluginFrom2Nix { 6600 6600 pname = "nvim-web-devicons"; 6601 - version = "2023-02-18"; 6601 + version = "2023-02-19"; 6602 6602 src = fetchFromGitHub { 6603 6603 owner = "nvim-tree"; 6604 6604 repo = "nvim-web-devicons"; 6605 - rev = "53faf5e6d38cb3ca5c7487421524fa2b187b15b2"; 6606 - sha256 = "1ad7x73dnmjzzhkgn6xcb0f4ir5j3zfqmbi1fsxw7ydsb433563j"; 6605 + rev = "4709a504d2cd2680fb511675e64ef2790d491d36"; 6606 + sha256 = "0b3h95x2xhrhwspfazibpknxrli70vjahbf52h74yda4ji0n2x4a"; 6607 6607 }; 6608 6608 meta.homepage = "https://github.com/nvim-tree/nvim-web-devicons/"; 6609 6609 }; ··· 6827 6827 6828 6828 oxocarbon-nvim = buildVimPluginFrom2Nix { 6829 6829 pname = "oxocarbon.nvim"; 6830 - version = "2023-02-12"; 6830 + version = "2023-02-18"; 6831 6831 src = fetchFromGitHub { 6832 6832 owner = "nyoom-engineering"; 6833 6833 repo = "oxocarbon.nvim"; 6834 - rev = "f93de9b8589eda0d1d766cbe3c76ed1e1abc0a71"; 6835 - sha256 = "11yp33398vya0b4ncf2whf5rj42h16kyd2h4xglyl77dixawmvgf"; 6834 + rev = "0dcf03dc2d9c96166d20b82875ce7eea484b5fdc"; 6835 + sha256 = "1qvwcfid1vs9a0k3xn2ki5iiwgv246qkdzsl2pndsrv04gk42j07"; 6836 6836 }; 6837 6837 meta.homepage = "https://github.com/nyoom-engineering/oxocarbon.nvim/"; 6838 6838 }; ··· 6983 6983 6984 6984 plenary-nvim = buildNeovimPluginFrom2Nix { 6985 6985 pname = "plenary.nvim"; 6986 - version = "2023-01-30"; 6986 + version = "2023-02-19"; 6987 6987 src = fetchFromGitHub { 6988 6988 owner = "nvim-lua"; 6989 6989 repo = "plenary.nvim"; 6990 - rev = "9a0d3bf7b832818c042aaf30f692b081ddd58bd9"; 6991 - sha256 = "1xy4hs0pckzbxd249zwg2r0vi94fy9arb966nypw1dx4vxw8072z"; 6990 + rev = "253d34830709d690f013daf2853a9d21ad7accab"; 6991 + sha256 = "17vvl06jc5vrfrv7gljflkqykshhg84wnhbl9br4pm050ywlg4ng"; 6992 6992 }; 6993 6993 meta.homepage = "https://github.com/nvim-lua/plenary.nvim/"; 6994 6994 }; ··· 7393 7393 7394 7394 rust-tools-nvim = buildVimPluginFrom2Nix { 7395 7395 pname = "rust-tools.nvim"; 7396 - version = "2023-02-05"; 7396 + version = "2023-02-20"; 7397 7397 src = fetchFromGitHub { 7398 7398 owner = "simrat39"; 7399 7399 repo = "rust-tools.nvim"; 7400 - rev = "bd1aa99ffb911a1cf99b3fcf3b44c0391c57e3ef"; 7401 - sha256 = "0sja04sgpaa30v3ndnffh8n2lx0igicjpmddc7h5v2n62il5z1a8"; 7400 + rev = "71d2cf67b5ed120a0e31b2c8adb210dd2834242f"; 7401 + sha256 = "14vma4r8v20r2ddkhwxs5zhp5lcqa51sxayxdri1z21gvaykzs8a"; 7402 7402 }; 7403 7403 meta.homepage = "https://github.com/simrat39/rust-tools.nvim/"; 7404 7404 }; ··· 7610 7610 7611 7611 slimv = buildVimPluginFrom2Nix { 7612 7612 pname = "slimv"; 7613 - version = "2022-05-09"; 7613 + version = "2023-02-19"; 7614 7614 src = fetchFromGitHub { 7615 7615 owner = "kovisoft"; 7616 7616 repo = "slimv"; 7617 - rev = "cba9910aaad90dd5f1cd508ad98adebe2271069c"; 7618 - sha256 = "16zxvwrgiv5fafwm0b75ici35c630466mxdk4dww978152bxahzn"; 7617 + rev = "48f21d04dc7f9732d04ffec101dfcf17b7f515cb"; 7618 + sha256 = "01dkvxkh3xpv45cbc4sylw5a1dsipd3841x88cc32nrarafsmgfn"; 7619 7619 }; 7620 7620 meta.homepage = "https://github.com/kovisoft/slimv/"; 7621 7621 }; ··· 7802 7802 7803 7803 splitjoin-vim = buildVimPluginFrom2Nix { 7804 7804 pname = "splitjoin.vim"; 7805 - version = "2022-09-04"; 7805 + version = "2023-02-19"; 7806 7806 src = fetchFromGitHub { 7807 7807 owner = "AndrewRadev"; 7808 7808 repo = "splitjoin.vim"; 7809 - rev = "956d67c88512b91c2938da3a9e0aeeea2b82cd0b"; 7810 - sha256 = "0dlsdb42j4d9q1fcw7jfwks6w516xi8ap1v7kip831bh4p6jyl1w"; 7809 + rev = "cdc1eb05496c2ecdeea7c7bf7ab0b6ab5b421f24"; 7810 + sha256 = "0rm8ml6nxkl0sgwbhsp5xjjjn45dq2pdg8amaywp0vjdnjcq9pi5"; 7811 7811 fetchSubmodules = true; 7812 7812 }; 7813 7813 meta.homepage = "https://github.com/AndrewRadev/splitjoin.vim/"; ··· 8201 8201 8202 8202 telescope-cheat-nvim = buildVimPluginFrom2Nix { 8203 8203 pname = "telescope-cheat.nvim"; 8204 - version = "2021-12-05"; 8204 + version = "2023-02-19"; 8205 8205 src = fetchFromGitHub { 8206 8206 owner = "nvim-telescope"; 8207 8207 repo = "telescope-cheat.nvim"; 8208 - rev = "8a169767c19db2f2ef2fb3fffe6adbac5a630282"; 8209 - sha256 = "0x68zb1x1v7dkrbgz88wh9ffij0ngjr23k5axxhhi07ppynmhvag"; 8208 + rev = "5549dfe9207b06eb28bff74af977f078376f9762"; 8209 + sha256 = "0wxdv266fn83yh1dy05pw5xgd0j7gndngk3s3g7lljbj7y0nzy5m"; 8210 8210 }; 8211 8211 meta.homepage = "https://github.com/nvim-telescope/telescope-cheat.nvim/"; 8212 8212 }; ··· 8237 8237 8238 8238 telescope-file-browser-nvim = buildVimPluginFrom2Nix { 8239 8239 pname = "telescope-file-browser.nvim"; 8240 - version = "2023-02-17"; 8240 + version = "2023-02-19"; 8241 8241 src = fetchFromGitHub { 8242 8242 owner = "nvim-telescope"; 8243 8243 repo = "telescope-file-browser.nvim"; 8244 - rev = "ee594419f3bc39b4123ad0cf8e7d4b7d6cad1303"; 8245 - sha256 = "0dyg09nw7kxylplln3p5905rb3y5jl6vzxx5nrix5a3qwfs2ijnl"; 8244 + rev = "6eb6bb45b7a9bed94a464a3e1dadfe870459628c"; 8245 + sha256 = "0b96wrjvy9mp9qpjhi4jb1mrzsfwww21lahjhgx8kk9y4ml503dg"; 8246 8246 }; 8247 8247 meta.homepage = "https://github.com/nvim-telescope/telescope-file-browser.nvim/"; 8248 8248 }; ··· 8346 8346 8347 8347 telescope-media-files-nvim = buildVimPluginFrom2Nix { 8348 8348 pname = "telescope-media-files.nvim"; 8349 - version = "2021-10-21"; 8349 + version = "2023-02-19"; 8350 8350 src = fetchFromGitHub { 8351 8351 owner = "nvim-telescope"; 8352 8352 repo = "telescope-media-files.nvim"; 8353 - rev = "513e4ee385edd72bf0b35a217b7e39f84b6fe93c"; 8354 - sha256 = "1ap3ijh64ynyxzbc62ijfkbwasv506i17pc65bh3w4dfpzn6rlpy"; 8353 + rev = "0826c7a730bc4d36068f7c85cf4c5b3fd9fb570a"; 8354 + sha256 = "0bvvnflzz1x511fk891mimsfahw843kk4v90l6h4yy1bi9a10qps"; 8355 8355 }; 8356 8356 meta.homepage = "https://github.com/nvim-telescope/telescope-media-files.nvim/"; 8357 8357 }; ··· 8370 8370 8371 8371 telescope-symbols-nvim = buildVimPluginFrom2Nix { 8372 8372 pname = "telescope-symbols.nvim"; 8373 - version = "2022-04-17"; 8373 + version = "2023-02-19"; 8374 8374 src = fetchFromGitHub { 8375 8375 owner = "nvim-telescope"; 8376 8376 repo = "telescope-symbols.nvim"; 8377 - rev = "f7d7c84873c95c7bd5682783dd66f84170231704"; 8378 - sha256 = "1yw09d2snma0vy36nfdswm1snf21w183aji7f6y8jnkx47g6gc37"; 8377 + rev = "f2060117d965df4a626f068a4ebbd8ee051aa076"; 8378 + sha256 = "1g9pj2g8l2rkz6szrijw56l1hd7lfac8i3g4fyvhi3x4xqjnml3h"; 8379 8379 }; 8380 8380 meta.homepage = "https://github.com/nvim-telescope/telescope-symbols.nvim/"; 8381 8381 }; ··· 8454 8454 8455 8455 telescope-nvim = buildVimPluginFrom2Nix { 8456 8456 pname = "telescope.nvim"; 8457 - version = "2023-01-31"; 8457 + version = "2023-02-20"; 8458 8458 src = fetchFromGitHub { 8459 8459 owner = "nvim-telescope"; 8460 8460 repo = "telescope.nvim"; 8461 - rev = "203bf5609137600d73e8ed82703d6b0e320a5f36"; 8462 - sha256 = "1h64qyvvnzv7ph49vciv2izv9ws7ds1z9cncrmxs7jwlh3vv10ig"; 8461 + rev = "a486ac3e8fb2198f3636da1927ed57a28836fbd8"; 8462 + sha256 = "1a2qdqxvp3d1i1wlc7gac1vqfbp0idcnk6y78vmjgziksamj4579"; 8463 8463 }; 8464 8464 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 8465 8465 }; ··· 8695 8695 8696 8696 toggleterm-nvim = buildVimPluginFrom2Nix { 8697 8697 pname = "toggleterm.nvim"; 8698 - version = "2023-02-17"; 8698 + version = "2023-02-20"; 8699 8699 src = fetchFromGitHub { 8700 8700 owner = "akinsho"; 8701 8701 repo = "toggleterm.nvim"; 8702 - rev = "557664818f6af78de6192f0ce8bc2e887bf4943a"; 8703 - sha256 = "1pfr2240cwqjcdza18815lblcsr1ccd63phajcl31izsrx0ba78z"; 8702 + rev = "ecf9dacccbcf0d66d9aa9074fdbb5ed51575399a"; 8703 + sha256 = "12x47qf98lxwvc6hpw60vwax9aw7wnh21y9j2kxzndzjxi7v6lik"; 8704 8704 }; 8705 8705 meta.homepage = "https://github.com/akinsho/toggleterm.nvim/"; 8706 8706 }; ··· 8779 8779 8780 8780 trouble-nvim = buildVimPluginFrom2Nix { 8781 8781 pname = "trouble.nvim"; 8782 - version = "2023-02-18"; 8782 + version = "2023-02-20"; 8783 8783 src = fetchFromGitHub { 8784 8784 owner = "folke"; 8785 8785 repo = "trouble.nvim"; 8786 - rev = "247f9eeabae8e1efc0ed5bc613cc1a9c27e91828"; 8787 - sha256 = "174zv283scsv84wbbvm2j24fs0dy5dj5rcpqib3sdyxfydvvc18p"; 8786 + rev = "3b754285635a66a93aeb15fa71a23417d8997217"; 8787 + sha256 = "0bgm93g4yh5f84nf7h2w9gb3glaffk2dl2p5b0cp38x033lz1yk9"; 8788 8788 }; 8789 8789 meta.homepage = "https://github.com/folke/trouble.nvim/"; 8790 8790 }; ··· 8971 8971 8972 8972 verilog_systemverilog-vim = buildVimPluginFrom2Nix { 8973 8973 pname = "verilog_systemverilog.vim"; 8974 - version = "2022-11-20"; 8974 + version = "2023-02-20"; 8975 8975 src = fetchFromGitHub { 8976 8976 owner = "vhda"; 8977 8977 repo = "verilog_systemverilog.vim"; 8978 - rev = "5bf36012ecd4f82a987acaee1c8504cbc8711aeb"; 8979 - sha256 = "1v2d2jyp9h2mjrmkmya879ilmsjbwdbpms1lfhiw7gx8bzb5qa62"; 8978 + rev = "b47a3c0e5ace979f67326b82702b9da5acd7efb9"; 8979 + sha256 = "1ig8m86pbvjqvykgi0xm45c0q3h5ibwqjmr3scpqkz2ah6wahpvb"; 8980 8980 }; 8981 8981 meta.homepage = "https://github.com/vhda/verilog_systemverilog.vim/"; 8982 8982 }; ··· 9067 9067 9068 9068 vim-abolish = buildVimPluginFrom2Nix { 9069 9069 pname = "vim-abolish"; 9070 - version = "2023-01-20"; 9070 + version = "2023-02-20"; 9071 9071 src = fetchFromGitHub { 9072 9072 owner = "tpope"; 9073 9073 repo = "vim-abolish"; 9074 - rev = "d55c90d6c9995ccb79d2152564a4939cd84d73e9"; 9075 - sha256 = "0vfhjv7jpx15lqd6kf7jds5x5x4x5gj9cbr5rgm0cbbcn2734gji"; 9074 + rev = "c164cac033087d73b3a94650c02f6c092ee56115"; 9075 + sha256 = "0n3gj93ankh8nwiwsmydgg0v8vz4bxbymbh551kgj4aigpivip01"; 9076 9076 }; 9077 9077 meta.homepage = "https://github.com/tpope/vim-abolish/"; 9078 9078 }; ··· 10651 10651 10652 10652 vim-go = buildVimPluginFrom2Nix { 10653 10653 pname = "vim-go"; 10654 - version = "2023-02-17"; 10654 + version = "2023-02-19"; 10655 10655 src = fetchFromGitHub { 10656 10656 owner = "fatih"; 10657 10657 repo = "vim-go"; 10658 - rev = "819851b6ba8fdcf15454ae3a713622128c795774"; 10659 - sha256 = "0l36zy577zai4qv9327nysyaakbna8rmf6x7sj1h2dqgp7jag3fa"; 10658 + rev = "b8a41085bfd67fee97ad075c6df65590ce7417a7"; 10659 + sha256 = "0m477wpyjxx0g7gdrcwnnhp6s8z23wlb7nljd6lrjkf1lqphb5i7"; 10660 10660 }; 10661 10661 meta.homepage = "https://github.com/fatih/vim-go/"; 10662 10662 }; ··· 11145 11145 11146 11146 vim-jsonnet = buildVimPluginFrom2Nix { 11147 11147 pname = "vim-jsonnet"; 11148 - version = "2022-10-25"; 11148 + version = "2023-02-20"; 11149 11149 src = fetchFromGitHub { 11150 11150 owner = "google"; 11151 11151 repo = "vim-jsonnet"; 11152 - rev = "f27e1d67dff34ac9cf9c83ea2f2f814e53aa409c"; 11153 - sha256 = "05zlsn7344zffwjsx4f65rp85jrgfm4wi40iqjj137x11jhwb9a2"; 11152 + rev = "4ebc6619ddce5d032a985b42a9864154c3d20e4a"; 11153 + sha256 = "1z2zk2wqfv58qxd8pa4hrpyhi5nlgf8m4gqb9f31pdnb78ci860a"; 11154 11154 }; 11155 11155 meta.homepage = "https://github.com/google/vim-jsonnet/"; 11156 11156 }; ··· 11494 11494 11495 11495 vim-matchup = buildVimPluginFrom2Nix { 11496 11496 pname = "vim-matchup"; 11497 - version = "2023-02-12"; 11497 + version = "2023-02-19"; 11498 11498 src = fetchFromGitHub { 11499 11499 owner = "andymass"; 11500 11500 repo = "vim-matchup"; 11501 - rev = "945e01e39fc137bd74bb3aa8c4f40e6ffb5be2dd"; 11502 - sha256 = "04lzlz7y72nw5in3r46xc8xb1f4avdcjbwl1sic9v0gbr4w3g2hb"; 11501 + rev = "3a48818a8113a502f245c29d894201421727577a"; 11502 + sha256 = "1hxsjs83i2rjkmhvsxrxk1y6as9xi8b5ji9abvwvb90p2a765987"; 11503 11503 }; 11504 11504 meta.homepage = "https://github.com/andymass/vim-matchup/"; 11505 11505 }; ··· 13187 13187 13188 13188 vim-tpipeline = buildVimPluginFrom2Nix { 13189 13189 pname = "vim-tpipeline"; 13190 - version = "2023-02-16"; 13190 + version = "2023-02-18"; 13191 13191 src = fetchFromGitHub { 13192 13192 owner = "vimpostor"; 13193 13193 repo = "vim-tpipeline"; 13194 - rev = "95a6ccbe9f33bc42dd4cee45731d8bc3fbcd92d1"; 13195 - sha256 = "1nxrva8gs2fq6vi3w26ns6lrfpbyfw495knidpx9pmvcf0ypxcva"; 13194 + rev = "2b61cd2726d2f2cab5ab66761732143268f78b5c"; 13195 + sha256 = "07z5sialjki7w8qipqplpg67jgshgbckv9nmp83x40vrjypsiml9"; 13196 13196 }; 13197 13197 meta.homepage = "https://github.com/vimpostor/vim-tpipeline/"; 13198 13198 }; ··· 13427 13427 13428 13428 vim-wakatime = buildVimPluginFrom2Nix { 13429 13429 pname = "vim-wakatime"; 13430 - version = "2023-02-06"; 13430 + version = "2023-02-20"; 13431 13431 src = fetchFromGitHub { 13432 13432 owner = "wakatime"; 13433 13433 repo = "vim-wakatime"; 13434 - rev = "ee4ab57adf62a309aeef383a2da23b6e48e5ae50"; 13435 - sha256 = "1k5nhwcn7ckn44pzy49fn7i116lydarzn9ks1cczwh9nkmwwwsks"; 13434 + rev = "62113bb063aa1923146e59270d71563441ceabe5"; 13435 + sha256 = "1n5d7jz5d3iamq030dmvb67w06b8ap1nvmj03shbx03i189kp2g1"; 13436 13436 }; 13437 13437 meta.homepage = "https://github.com/wakatime/vim-wakatime/"; 13438 13438 }; ··· 13740 13740 13741 13741 vimtex = buildVimPluginFrom2Nix { 13742 13742 pname = "vimtex"; 13743 - version = "2023-02-15"; 13743 + version = "2023-02-20"; 13744 13744 src = fetchFromGitHub { 13745 13745 owner = "lervag"; 13746 13746 repo = "vimtex"; 13747 - rev = "aa55f528d1a12ba2cdf7953639e5b6ced9aa1999"; 13748 - sha256 = "1f3dcbid27vcxs1r0rhvzm0rfvghianvs03bah5xpxmzj0q5cvnc"; 13747 + rev = "8bbd3b0308ba8238c4d00a24d68a6074e19ccc0a"; 13748 + sha256 = "10ahwp0nzz34iq4i8rv1lx45c87zp87wvwg0fn3rwy9hd35gpnn9"; 13749 13749 }; 13750 13750 meta.homepage = "https://github.com/lervag/vimtex/"; 13751 13751 }; ··· 14125 14125 14126 14126 catppuccin-nvim = buildVimPluginFrom2Nix { 14127 14127 pname = "catppuccin-nvim"; 14128 - version = "2023-02-17"; 14128 + version = "2023-02-21"; 14129 14129 src = fetchFromGitHub { 14130 14130 owner = "catppuccin"; 14131 14131 repo = "nvim"; 14132 - rev = "60f8f40df0db92b5715642b3ea7074380c4b7995"; 14133 - sha256 = "0hgm542vdav33gj9dacy43anh9ql7x8jr1ihwbx11jlxqr5vhhp7"; 14132 + rev = "22e55672793be043a5ce9790e7617322ef4ab445"; 14133 + sha256 = "0smpk37fiwq4rmgiy2b3f3yyhkwynfy6i70hrxblqn9as5kk7cjc"; 14134 14134 }; 14135 14135 meta.homepage = "https://github.com/catppuccin/nvim/"; 14136 14136 }; ··· 14149 14149 14150 14150 chad = buildVimPluginFrom2Nix { 14151 14151 pname = "chad"; 14152 - version = "2023-02-14"; 14152 + version = "2023-02-19"; 14153 14153 src = fetchFromGitHub { 14154 14154 owner = "ms-jpq"; 14155 14155 repo = "chadtree"; 14156 - rev = "c37df0dcd9a379fc6e17dfaac42ecf9ce5b25977"; 14157 - sha256 = "0s6jpa5n7h2235x2kx7i7qhrf9zzvqqhc4h8crq62da2qvhhqsqh"; 14156 + rev = "ea91862411d16f4e4bed9c6fef452b8c1b2a662f"; 14157 + sha256 = "0fm3kkfvr816n90pl07wyy8mhzpz4rn93xy61hys7cj53q99fngq"; 14158 14158 }; 14159 14159 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 14160 14160 }; ··· 14173 14173 14174 14174 embark-vim = buildVimPluginFrom2Nix { 14175 14175 pname = "embark-vim"; 14176 - version = "2023-02-05"; 14176 + version = "2023-02-19"; 14177 14177 src = fetchFromGitHub { 14178 14178 owner = "embark-theme"; 14179 14179 repo = "vim"; 14180 - rev = "ebcbf51e13a5fea046c784906c149a057ba9d8b6"; 14181 - sha256 = "1hbjwv2chrj310nvikb0pbs5wjj0bicx2874vjn2qh0rfypzqr1b"; 14180 + rev = "d724faa9bfcd37f1995071e678e30af2229eb1a1"; 14181 + sha256 = "0ibcifqm3vrdvq2dzm4qyh7y0i134653irq33jg3kmqijxzzrb58"; 14182 14182 }; 14183 14183 meta.homepage = "https://github.com/embark-theme/vim/"; 14184 14184 }; ··· 14197 14197 14198 14198 lspsaga-nvim-original = buildVimPluginFrom2Nix { 14199 14199 pname = "lspsaga-nvim-original"; 14200 - version = "2023-02-18"; 14200 + version = "2023-02-20"; 14201 14201 src = fetchFromGitHub { 14202 14202 owner = "glepnir"; 14203 14203 repo = "lspsaga.nvim"; 14204 - rev = "66bb06771789d677ef2b7c9a0bd57941298f6a9f"; 14205 - sha256 = "1rp53hwm19bi53y0vndv2m4222ml7qz2iib23wqdj709azz6sr0j"; 14204 + rev = "73380b25ec27e9df788752174703cfdad98e66dd"; 14205 + sha256 = "0z50c074bk2jsvsglwdw532i8zp0w8yb2sfk5izgm9hk02n2niys"; 14206 14206 }; 14207 14207 meta.homepage = "https://github.com/glepnir/lspsaga.nvim/"; 14208 14208 };
+3 -3
pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix
··· 1203 1203 }; 1204 1204 python = buildGrammar { 1205 1205 language = "python"; 1206 - version = "9e53981"; 1206 + version = "528855e"; 1207 1207 src = fetchFromGitHub { 1208 1208 owner = "tree-sitter"; 1209 1209 repo = "tree-sitter-python"; 1210 - rev = "9e53981ec31b789ee26162ea335de71f02186003"; 1211 - hash = "sha256-D2++Xg7dRfjGM2r4cxaXGQnBOAX5JBREcEAJeNa7Y9M="; 1210 + rev = "528855eee2665210e1bf5556de48b8d8dacb8932"; 1211 + hash = "sha256-H2RWMbbKIMbfH/TMC5SKbO9qEB9RfFUOYrczwmDdrVo="; 1212 1212 }; 1213 1213 meta.homepage = "https://github.com/tree-sitter/tree-sitter-python"; 1214 1214 };
+2 -2
pkgs/applications/misc/gnome-firmware/default.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "gnome-firmware"; 23 - version = "43.1"; 23 + version = "43.2"; 24 24 25 25 src = fetchFromGitLab { 26 26 domain = "gitlab.gnome.org"; 27 27 owner = "World"; 28 28 repo = "gnome-firmware"; 29 29 rev = version; 30 - sha256 = "9QS6X1Cm9/wToQ8hnGNn3VytSCpZI8StZ3+vf0/wbAw="; 30 + sha256 = "oplypNSj028cVBn+eJxNm5pJltp7Cw5Oto/L39pI0vA="; 31 31 }; 32 32 33 33 nativeBuildInputs = [
+2 -2
pkgs/applications/networking/cluster/glooctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "glooctl"; 5 - version = "1.13.6"; 5 + version = "1.13.7"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "solo-io"; 9 9 repo = "gloo"; 10 10 rev = "v${version}"; 11 - hash = "sha256-CBWKKW5VIkRgl7wY63OCm/CowWHO389se3kEraqaDCI="; 11 + hash = "sha256-npp03e5pAir8t9Ej52fafW7Uk24Y+UOFojaNc2MSkVA="; 12 12 }; 13 13 14 14 subPackages = [ "projects/gloo/cli/cmd" ];
+3 -3
pkgs/applications/networking/cluster/k9s/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "k9s"; 5 - version = "0.27.2"; 5 + version = "0.27.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "derailed"; 9 9 repo = "k9s"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-9wdc3Wiqry8+q/60Y7mPzH0k4dp1nKIGinxfkYBaHJY="; 11 + sha256 = "sha256-oUn9qQG4rpunfeHgSlY9THkYv1aGWrVmdTZoEWeZJTs="; 12 12 }; 13 13 14 14 ldflags = [ ··· 20 20 21 21 tags = [ "netgo" ]; 22 22 23 - vendorHash = "sha256-8H7siVl6gXifQOBOLtyCeDbYflhKjaIRmP0KOTWVJk0="; 23 + vendorHash = "sha256-sQ3D4JUK9epRkDZ7DC+IH+iMaLN+uKM2hZkhqji+0Zc="; 24 24 25 25 # TODO investigate why some config tests are failing 26 26 doCheck = !(stdenv.isDarwin && stdenv.isAarch64);
+2 -2
pkgs/applications/networking/instant-messengers/discord/default.nix
··· 1 1 { branch ? "stable", callPackage, fetchurl, lib, stdenv }: 2 2 let 3 3 versions = if stdenv.isLinux then { 4 - stable = "0.0.24"; 4 + stable = "0.0.25"; 5 5 ptb = "0.0.38"; 6 6 canary = "0.0.148"; 7 7 } else { ··· 14 14 x86_64-linux = { 15 15 stable = fetchurl { 16 16 url = "https://dl.discordapp.net/apps/linux/${version}/discord-${version}.tar.gz"; 17 - sha256 = "sha256-SG+34ft0mTqtg9rFiI60N6JIONyqF8c8SlnRcn5a4Xc="; 17 + sha256 = "sha256-WBcmy9fwGPq3Vs1+7lIOR7OiW/d0kZNIKp4Q5NRYBCw="; 18 18 }; 19 19 ptb = fetchurl { 20 20 url = "https://dl-ptb.discordapp.net/apps/linux/${version}/discord-ptb-${version}.tar.gz";
+2 -2
pkgs/applications/networking/instant-messengers/signal-cli/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "signal-cli"; 5 - version = "0.11.6"; 5 + version = "0.11.7"; 6 6 7 7 # Building from source would be preferred, but is much more involved. 8 8 src = fetchurl { 9 9 url = "https://github.com/AsamK/signal-cli/releases/download/v${version}/signal-cli-${version}-Linux.tar.gz"; 10 - hash = "sha256-DWG67Jr2hDas1aL5Q+9MUjNKNLFpOFLsehYbJfy/rzg="; 10 + hash = "sha256-oN80HQkPpJfhM4WBaRm4ytmhLjSokjEpfMhP6/XnQXs="; 11 11 }; 12 12 13 13 buildInputs = lib.optionals stdenv.isLinux [ libmatthew_java dbus dbus_java ];
+2 -2
pkgs/applications/networking/remote/freerdp/default.nix
··· 70 70 in 71 71 stdenv.mkDerivation rec { 72 72 pname = "freerdp"; 73 - version = "2.9.0"; 73 + version = "2.10.0"; 74 74 75 75 src = fetchFromGitHub { 76 76 owner = "FreeRDP"; 77 77 repo = "FreeRDP"; 78 78 rev = version; 79 - sha256 = "sha256-I9xJWHoY8fZ5T9zca77gFciC+7JdD6fMwV16giiY4FU="; 79 + sha256 = "sha256-4sq3LblFRWCBREudtzg+o9wjstm58gPzBq7QAwlWvEg="; 80 80 }; 81 81 82 82 postPatch = ''
+2 -2
pkgs/applications/video/ani-cli/default.nix
··· 12 12 13 13 stdenvNoCC.mkDerivation rec { 14 14 pname = "ani-cli"; 15 - version = "4.0"; 15 + version = "4.1"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "pystardust"; 19 19 repo = "ani-cli"; 20 20 rev = "v${version}"; 21 - hash = "sha256-1yhBlQ/abT+/BKEIskgnAh+cmKCzXuS9hu6apaangVk="; 21 + hash = "sha256-8fpOCyv/XafrVy76jtazRoHW2gidjikgnRdaWzh8kY8="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/data/fonts/andika/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "andika"; 5 - version = "6.101"; 5 + version = "6.200"; 6 6 7 7 src = fetchzip { 8 8 url = "https://software.sil.org/downloads/r/andika/Andika-${version}.zip"; 9 - hash = "sha256-LghkGd/cjuXghzsU9X/YneNIdBeDEnu0ARszipANm8w="; 9 + hash = "sha256-Ge+Yq3+1IJ+mXhjw7Vtpu5DIWiMfwOdEH/S1RSzYh3A="; 10 10 }; 11 11 12 12 installPhase = ''
+2 -2
pkgs/desktops/gnome/core/epiphany/default.nix
··· 38 38 39 39 stdenv.mkDerivation rec { 40 40 pname = "epiphany"; 41 - version = "43.0"; 41 + version = "43.1"; 42 42 43 43 src = fetchurl { 44 44 url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 45 - sha256 = "tm1Jn57nJpbYPPhEElN3GBqVRVSkuzeFtzKTOArAwic="; 45 + sha256 = "6G6tJ8uZgoFRUGZN478g+vN193uAZbArMRgMZba767Q="; 46 46 }; 47 47 48 48 patches = lib.optionals withPantheon [
+11 -10
pkgs/development/compilers/xa/dxa.nix
··· 4 4 , installShellFiles 5 5 }: 6 6 7 - stdenv.mkDerivation rec { 7 + stdenv.mkDerivation (self: { 8 8 pname = "dxa"; 9 9 version = "0.1.5"; 10 10 11 11 src = fetchurl { 12 12 urls = [ 13 - "https://www.floodgap.com/retrotech/xa/dists/${pname}-${version}.tar.gz" 14 - "https://www.floodgap.com/retrotech/xa/dists/unsupported/${pname}-${version}.tar.gz" 13 + "https://www.floodgap.com/retrotech/xa/dists/dxa-${self.version}.tar.gz" 14 + "https://www.floodgap.com/retrotech/xa/dists/unsupported/dxa-${self.version}.tar.gz" 15 15 ]; 16 16 hash = "sha256-jkDtd4FlgfmtlaysLtaaL7KseFDkM9Gc1oQZOkWCZ5k="; 17 17 }; ··· 27 27 28 28 installPhase = '' 29 29 runHook preInstall 30 - install -d $out/bin/ 31 - install dxa $out/bin/ 30 + 31 + install -Dm755 -T dxa $out/bin/dxa 32 32 installManPage dxa.1 33 + 33 34 runHook postInstall 34 35 ''; 35 36 36 - meta = with lib; { 37 + meta = { 37 38 homepage = "https://www.floodgap.com/retrotech/xa/"; 38 39 description = "Andre Fachat's open-source 6502 disassembler"; 39 - license = licenses.gpl2Plus; 40 - maintainers = with maintainers; [ AndersonTorres ]; 41 - platforms = with platforms; unix; 40 + license = lib.licenses.gpl2Plus; 41 + maintainers = with lib.maintainers; [ AndersonTorres ]; 42 + platforms = with lib.platforms; unix; 42 43 }; 43 - } 44 + })
+10 -10
pkgs/development/compilers/xa/xa.nix
··· 4 4 , perl 5 5 }: 6 6 7 - stdenv.mkDerivation rec { 7 + stdenv.mkDerivation (self: { 8 8 pname = "xa"; 9 - version = "2.3.13"; 9 + version = "2.3.14"; 10 10 11 11 src = fetchurl { 12 12 urls = [ 13 - "https://www.floodgap.com/retrotech/xa/dists/${pname}-${version}.tar.gz" 14 - "https://www.floodgap.com/retrotech/xa/dists/unsupported/${pname}-${version}.tar.gz" 13 + "https://www.floodgap.com/retrotech/xa/dists/xa-${self.version}.tar.gz" 14 + "https://www.floodgap.com/retrotech/xa/dists/unsupported/xa-${self.version}.tar.gz" 15 15 ]; 16 - hash = "sha256-qUd68VC2yKkc09QeHPjJ31UtODMmSVV2gwJxykRnvYY="; 16 + hash = "sha256-G5u6vdvY07lBC4UuUKEo7qQeaBM55vdsPoB2+lQg8C4="; 17 17 }; 18 18 19 19 nativeCheckInputs = [ perl ]; ··· 43 43 patchShebangs tests 44 44 ''; 45 45 46 - meta = with lib; { 46 + meta = { 47 47 homepage = "https://www.floodgap.com/retrotech/xa/"; 48 48 description = "Andre Fachat's open-source 6502 cross assembler"; 49 49 longDescription = '' ··· 62 62 suite, as well as "bare" plain binary object files 63 63 - block structure for label scoping 64 64 ''; 65 - license = licenses.gpl2Plus; 66 - maintainers = with maintainers; [ AndersonTorres ]; 67 - platforms = with platforms; unix; 65 + license = lib.licenses.gpl2Plus; 66 + maintainers = with lib.maintainers; [ AndersonTorres ]; 67 + platforms = with lib.platforms; unix; 68 68 }; 69 - } 69 + })
-46
pkgs/development/dotnet-modules/python-language-server/default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchFromGitHub 4 - , buildDotnetModule 5 - , dotnetCorePackages 6 - , stdenvNoCC 7 - , autoPatchelfHook 8 - , openssl 9 - , icu 10 - }: 11 - 12 - buildDotnetModule rec { 13 - pname = "python-language-server"; 14 - version = "2022-02-18"; 15 - 16 - src = fetchFromGitHub { 17 - owner = "microsoft"; 18 - repo = "python-language-server"; 19 - rev = "52c1afd34b5acb0b44597bb8681232876fe94084"; 20 - sha256 = "05s8mwi3dqzjghgpr1mfs1b7cgrq818bbj1v7aly6axc8c2n4gny"; 21 - }; 22 - 23 - projectFile = "src/LanguageServer/Impl/Microsoft.Python.LanguageServer.csproj"; 24 - nugetDeps = ./deps.nix; 25 - 26 - dotnet-sdk = dotnetCorePackages.sdk_3_1; 27 - dotnet-runtime = dotnetCorePackages.runtime_3_1; 28 - 29 - nativeBuildInputs = [ autoPatchelfHook ]; 30 - buildInputs = [ stdenv.cc.cc.lib ]; 31 - runtimeDeps = [ openssl icu ]; 32 - 33 - postFixup = '' 34 - mv $out/bin/Microsoft.Python.LanguageServer $out/bin/python-language-server 35 - ''; 36 - 37 - passthru.updateScript = ./updater.sh; 38 - 39 - meta = with lib; { 40 - description = "Microsoft Language Server for Python"; 41 - homepage = "https://github.com/microsoft/python-language-server"; 42 - license = licenses.asl20; 43 - maintainers = with maintainers; [ thomasjm ]; 44 - platforms = [ "x86_64-linux" ]; 45 - }; 46 - }
-107
pkgs/development/dotnet-modules/python-language-server/deps.nix
··· 1 - # This file was automatically generated by passthru.fetch-deps. 2 - # Please dont edit it manually, your changes might get overwritten! 3 - 4 - { fetchNuGet }: [ 5 - (fetchNuGet { pname = "MessagePack"; version = "2.1.90"; sha256 = "1j5wjl7aq7nn5ga3j6zaaivdf2wlfyd7w66ak0i7krgrmv26lb8i"; }) 6 - (fetchNuGet { pname = "MessagePack.Annotations"; version = "2.1.90"; sha256 = "08sghhwbz8h7ji9lg0klhwcyndxg6v11pq9jac975sb38samnm11"; }) 7 - (fetchNuGet { pname = "MicroBuild.Core"; version = "0.3.0"; sha256 = "190d755l60j3l5m1661wj19gj9w6ngza56q3vkijkkmbbabdmqln"; }) 8 - (fetchNuGet { pname = "Microsoft.Bcl.AsyncInterfaces"; version = "1.0.0"; sha256 = "00dx5armvkqjxvkldz3invdlck9nj7w21dlsr2aqp1rqbyrbsbbh"; }) 9 - (fetchNuGet { pname = "Microsoft.Extensions.FileSystemGlobbing"; version = "3.1.8"; sha256 = "1v2lr0vbssqayzgxvdwb54jmvz7mvlih4l9h7i71gm3c62nlbq8y"; }) 10 - (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; }) 11 - (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.1"; sha256 = "164wycgng4mi9zqi2pnsf1pq6gccbqvw6ib916mqizgjmd8f44pj"; }) 12 - (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "3.0.0"; sha256 = "1bk8r4r3ihmi6322jmcag14jmw11mjqys202azqjzglcx59pxh51"; }) 13 - (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.1.0"; sha256 = "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh"; }) 14 - (fetchNuGet { pname = "Microsoft.VisualStudio.Threading"; version = "16.6.13"; sha256 = "0qbvcwy7njz5zpqgfqdf41gf9xqcz64z4rkfjf6bi4zynpkv6n1l"; }) 15 - (fetchNuGet { pname = "Microsoft.VisualStudio.Threading.Analyzers"; version = "16.6.13"; sha256 = "09nqkjnarwj0chb6xrzscq98mpgi86n2a3mfdd3y695kviq99s18"; }) 16 - (fetchNuGet { pname = "Microsoft.VisualStudio.Validation"; version = "15.5.31"; sha256 = "1ah99rn922qa0sd2k3h64m324f2r32pw8cn4cfihgvwx4qdrpmgw"; }) 17 - (fetchNuGet { pname = "Microsoft.Win32.Primitives"; version = "4.3.0"; sha256 = "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq"; }) 18 - (fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "4.6.0"; sha256 = "0i4y782yrqqyx85pg597m20gm0v126w0j9ddk5z7xb3crx4z9f2s"; }) 19 - (fetchNuGet { pname = "Nerdbank.Streams"; version = "2.5.76"; sha256 = "017h8m1zrm247alhlz4vqsz580b8b88s50cyxb939hmc2nn0qlfv"; }) 20 - (fetchNuGet { pname = "NETStandard.Library"; version = "2.0.3"; sha256 = "1fn9fxppfcg4jgypp2pmrpr6awl3qz1xmnri0cygpkwvyx27df1y"; }) 21 - (fetchNuGet { pname = "Newtonsoft.Json"; version = "12.0.3"; sha256 = "17dzl305d835mzign8r15vkmav2hq8l6g7942dfjpnzr17wwl89x"; }) 22 - (fetchNuGet { pname = "runtime.any.System.Collections"; version = "4.3.0"; sha256 = "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0"; }) 23 - (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tracing"; version = "4.3.0"; sha256 = "00j6nv2xgmd3bi347k00m7wr542wjlig53rmj28pmw7ddcn97jbn"; }) 24 - (fetchNuGet { pname = "runtime.any.System.Globalization"; version = "4.3.0"; sha256 = "1daqf33hssad94lamzg01y49xwndy2q97i2lrb7mgn28656qia1x"; }) 25 - (fetchNuGet { pname = "runtime.any.System.Globalization.Calendars"; version = "4.3.0"; sha256 = "1ghhhk5psqxcg6w88sxkqrc35bxcz27zbqm2y5p5298pv3v7g201"; }) 26 - (fetchNuGet { pname = "runtime.any.System.IO"; version = "4.3.0"; sha256 = "0l8xz8zn46w4d10bcn3l4yyn4vhb3lrj2zw8llvz7jk14k4zps5x"; }) 27 - (fetchNuGet { pname = "runtime.any.System.Reflection"; version = "4.3.0"; sha256 = "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly"; }) 28 - (fetchNuGet { pname = "runtime.any.System.Reflection.Primitives"; version = "4.3.0"; sha256 = "0x1mm8c6iy8rlxm8w9vqw7gb7s1ljadrn049fmf70cyh42vdfhrf"; }) 29 - (fetchNuGet { pname = "runtime.any.System.Resources.ResourceManager"; version = "4.3.0"; sha256 = "03kickal0iiby82wa5flar18kyv82s9s6d4xhk5h4bi5kfcyfjzl"; }) 30 - (fetchNuGet { pname = "runtime.any.System.Runtime"; version = "4.3.0"; sha256 = "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b"; }) 31 - (fetchNuGet { pname = "runtime.any.System.Runtime.Handles"; version = "4.3.0"; sha256 = "0bh5bi25nk9w9xi8z23ws45q5yia6k7dg3i4axhfqlnj145l011x"; }) 32 - (fetchNuGet { pname = "runtime.any.System.Runtime.InteropServices"; version = "4.3.0"; sha256 = "0c3g3g3jmhlhw4klrc86ka9fjbl7i59ds1fadsb2l8nqf8z3kb19"; }) 33 - (fetchNuGet { pname = "runtime.any.System.Text.Encoding"; version = "4.3.0"; sha256 = "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3"; }) 34 - (fetchNuGet { pname = "runtime.any.System.Text.Encoding.Extensions"; version = "4.3.0"; sha256 = "0lqhgqi0i8194ryqq6v2gqx0fb86db2gqknbm0aq31wb378j7ip8"; }) 35 - (fetchNuGet { pname = "runtime.any.System.Threading.Tasks"; version = "4.3.0"; sha256 = "03mnvkhskbzxddz4hm113zsch1jyzh2cs450dk3rgfjp8crlw1va"; }) 36 - (fetchNuGet { pname = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; sha256 = "0rwpqngkqiapqc5c2cpkj7idhngrgss5qpnqg0yh40mbyflcxf8i"; }) 37 - (fetchNuGet { pname = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; sha256 = "1n06gxwlinhs0w7s8a94r1q3lwqzvynxwd3mp10ws9bg6gck8n4r"; }) 38 - (fetchNuGet { pname = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; sha256 = "0404wqrc7f2yc0wxv71y3nnybvqx8v4j9d47hlscxy759a525mc3"; }) 39 - (fetchNuGet { pname = "runtime.native.System"; version = "4.3.0"; sha256 = "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4"; }) 40 - (fetchNuGet { pname = "runtime.native.System.Net.Http"; version = "4.3.0"; sha256 = "1n6rgz5132lcibbch1qlf0g9jk60r0kqv087hxc0lisy50zpm7kk"; }) 41 - (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.Apple"; version = "4.3.0"; sha256 = "1b61p6gw1m02cc1ry996fl49liiwky6181dzr873g9ds92zl326q"; }) 42 - (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; sha256 = "0zy5r25jppz48i2bkg8b9lfig24xixg6nm3xyr1379zdnqnpm8f6"; }) 43 - (fetchNuGet { pname = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; sha256 = "096ch4n4s8k82xga80lfmpimpzahd2ip1mgwdqgar0ywbbl6x438"; }) 44 - (fetchNuGet { pname = "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; sha256 = "1dm8fifl7rf1gy7lnwln78ch4rw54g0pl5g1c189vawavll7p6rj"; }) 45 - (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"; version = "4.3.0"; sha256 = "10yc8jdrwgcl44b4g93f1ds76b176bajd3zqi2faf5rvh1vy9smi"; }) 46 - (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; sha256 = "1m9z1k9kzva9n9kwinqxl97x2vgl79qhqjlv17k9s2ymcyv2bwr6"; }) 47 - (fetchNuGet { pname = "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; sha256 = "1cpx56mcfxz7cpn57wvj18sjisvzq8b5vd9rw16ihd2i6mcp3wa1"; }) 48 - (fetchNuGet { pname = "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; sha256 = "15gsm1a8jdmgmf8j5v1slfz8ks124nfdhk2vxs2rw3asrxalg8hi"; }) 49 - (fetchNuGet { pname = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; sha256 = "0q0n5q1r1wnqmr5i5idsrd9ywl33k0js4pngkwq9p368mbxp8x1w"; }) 50 - (fetchNuGet { pname = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; sha256 = "1x0g58pbpjrmj2x2qw17rdwwnrcl0wvim2hdwz48lixvwvp22n9c"; }) 51 - (fetchNuGet { pname = "runtime.unix.Microsoft.Win32.Primitives"; version = "4.3.0"; sha256 = "0y61k9zbxhdi0glg154v30kkq7f8646nif8lnnxbvkjpakggd5id"; }) 52 - (fetchNuGet { pname = "runtime.unix.System.Diagnostics.Debug"; version = "4.3.0"; sha256 = "1lps7fbnw34bnh3lm31gs5c0g0dh7548wfmb8zz62v0zqz71msj5"; }) 53 - (fetchNuGet { pname = "runtime.unix.System.IO.FileSystem"; version = "4.3.0"; sha256 = "14nbkhvs7sji5r1saj2x8daz82rnf9kx28d3v2qss34qbr32dzix"; }) 54 - (fetchNuGet { pname = "runtime.unix.System.Net.Primitives"; version = "4.3.0"; sha256 = "0bdnglg59pzx9394sy4ic66kmxhqp8q8bvmykdxcbs5mm0ipwwm4"; }) 55 - (fetchNuGet { pname = "runtime.unix.System.Private.Uri"; version = "4.3.0"; sha256 = "1jx02q6kiwlvfksq1q9qr17fj78y5v6mwsszav4qcz9z25d5g6vk"; }) 56 - (fetchNuGet { pname = "runtime.unix.System.Runtime.Extensions"; version = "4.3.0"; sha256 = "0pnxxmm8whx38dp6yvwgmh22smknxmqs5n513fc7m4wxvs1bvi4p"; }) 57 - (fetchNuGet { pname = "StreamJsonRpc"; version = "2.5.46"; sha256 = "0rsgxfxcfgbx1w2jhllx1cwnbj9vra6034gv4kgzahh0v5vn8shf"; }) 58 - (fetchNuGet { pname = "System.Buffers"; version = "4.3.0"; sha256 = "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy"; }) 59 - (fetchNuGet { pname = "System.Buffers"; version = "4.5.0"; sha256 = "1ywfqn4md6g3iilpxjn5dsr0f5lx6z0yvhqp4pgjcamygg73cz2c"; }) 60 - (fetchNuGet { pname = "System.Collections"; version = "4.3.0"; sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9"; }) 61 - (fetchNuGet { pname = "System.Collections.Concurrent"; version = "4.3.0"; sha256 = "0wi10md9aq33jrkh2c24wr2n9hrpyamsdhsxdcnf43b7y86kkii8"; }) 62 - (fetchNuGet { pname = "System.Collections.Immutable"; version = "1.5.0"; sha256 = "1d5gjn5afnrf461jlxzawcvihz195gayqpcfbv6dd7pxa9ialn06"; }) 63 - (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.3.0"; sha256 = "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y"; }) 64 - (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "4.3.0"; sha256 = "0z6m3pbiy0qw6rn3n209rrzf9x1k4002zh90vwcrsym09ipm2liq"; }) 65 - (fetchNuGet { pname = "System.Diagnostics.Tracing"; version = "4.3.0"; sha256 = "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4"; }) 66 - (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki"; }) 67 - (fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.3.0"; sha256 = "1xwl230bkakzzkrggy1l1lxmm3xlhk4bq2pkv790j5lm8g887lxq"; }) 68 - (fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.3.0"; sha256 = "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls"; }) 69 - (fetchNuGet { pname = "System.IO"; version = "4.3.0"; sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f"; }) 70 - (fetchNuGet { pname = "System.IO.FileSystem"; version = "4.3.0"; sha256 = "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw"; }) 71 - (fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.3.0"; sha256 = "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c"; }) 72 - (fetchNuGet { pname = "System.IO.Pipelines"; version = "4.7.0"; sha256 = "1cx6bl2bhzp30ahy2csnwbphmlwwp840j56wgab105xc32la0mg4"; }) 73 - (fetchNuGet { pname = "System.Linq"; version = "4.3.0"; sha256 = "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7"; }) 74 - (fetchNuGet { pname = "System.Memory"; version = "4.5.3"; sha256 = "0naqahm3wljxb5a911d37mwjqjdxv9l0b49p5dmfyijvni2ppy8a"; }) 75 - (fetchNuGet { pname = "System.Net.Http"; version = "4.3.4"; sha256 = "0kdp31b8819v88l719j6my0yas6myv9d1viql3qz5577mv819jhl"; }) 76 - (fetchNuGet { pname = "System.Net.Primitives"; version = "4.3.0"; sha256 = "0c87k50rmdgmxx7df2khd9qj7q35j9rzdmm2572cc55dygmdk3ii"; }) 77 - (fetchNuGet { pname = "System.Net.WebSockets"; version = "4.3.0"; sha256 = "1gfj800078kggcgl0xyl00a6y5k4wwh2k2qm69rjy22wbmq7fy4p"; }) 78 - (fetchNuGet { pname = "System.Private.Uri"; version = "4.3.0"; sha256 = "04r1lkdnsznin0fj4ya1zikxiqr0h6r6a1ww2dsm60gqhdrf0mvx"; }) 79 - (fetchNuGet { pname = "System.Reflection"; version = "4.3.0"; sha256 = "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m"; }) 80 - (fetchNuGet { pname = "System.Reflection.Emit"; version = "4.6.0"; sha256 = "18h375q5bn9h7swxnk4krrxym1dxmi9bm26p89xps9ygrj4q6zqw"; }) 81 - (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.6.0"; sha256 = "0hry2k6b7kicg4zxnq0hhn0ys52711pxy7l9v5sp7gvp9cicwpgp"; }) 82 - (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.3.0"; sha256 = "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276"; }) 83 - (fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.3.0"; sha256 = "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49"; }) 84 - (fetchNuGet { pname = "System.Runtime"; version = "4.3.0"; sha256 = "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7"; }) 85 - (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "4.5.2"; sha256 = "1vz4275fjij8inf31np78hw50al8nqkngk04p3xv5n4fcmf1grgi"; }) 86 - (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "4.6.0"; sha256 = "0xmzi2gpbmgyfr75p24rqqsba3cmrqgmcv45lsqp5amgrdwd0f0m"; }) 87 - (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.3.0"; sha256 = "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60"; }) 88 - (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.3.0"; sha256 = "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8"; }) 89 - (fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.3.0"; sha256 = "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j"; }) 90 - (fetchNuGet { pname = "System.Runtime.Numerics"; version = "4.3.0"; sha256 = "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z"; }) 91 - (fetchNuGet { pname = "System.Security.AccessControl"; version = "4.6.0"; sha256 = "1wl1dyghi0qhpap1vgfhg2ybdyyhy9vc2a7dpm1xb30vfgmlkjmf"; }) 92 - (fetchNuGet { pname = "System.Security.Cryptography.Algorithms"; version = "4.3.0"; sha256 = "03sq183pfl5kp7gkvq77myv7kbpdnq3y0xj7vi4q1kaw54sny0ml"; }) 93 - (fetchNuGet { pname = "System.Security.Cryptography.Cng"; version = "4.3.0"; sha256 = "1k468aswafdgf56ab6yrn7649kfqx2wm9aslywjam1hdmk5yypmv"; }) 94 - (fetchNuGet { pname = "System.Security.Cryptography.Csp"; version = "4.3.0"; sha256 = "1x5wcrddf2s3hb8j78cry7yalca4lb5vfnkrysagbn6r9x6xvrx1"; }) 95 - (fetchNuGet { pname = "System.Security.Cryptography.Encoding"; version = "4.3.0"; sha256 = "1jr6w70igqn07k5zs1ph6xja97hxnb3mqbspdrff6cvssgrixs32"; }) 96 - (fetchNuGet { pname = "System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0givpvvj8yc7gv4lhb6s1prq6p2c4147204a0wib89inqzd87gqc"; }) 97 - (fetchNuGet { pname = "System.Security.Cryptography.Primitives"; version = "4.3.0"; sha256 = "0pyzncsv48zwly3lw4f2dayqswcfvdwq2nz0dgwmi7fj3pn64wby"; }) 98 - (fetchNuGet { pname = "System.Security.Cryptography.X509Certificates"; version = "4.3.0"; sha256 = "0valjcz5wksbvijylxijjxb1mp38mdhv03r533vnx1q3ikzdav9h"; }) 99 - (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "4.6.0"; sha256 = "1jmfzfz1n8hp63s5lja5xxpzkinbp6g59l3km9h8avjiisdrg5wm"; }) 100 - (fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; sha256 = "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr"; }) 101 - (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.3.0"; sha256 = "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy"; }) 102 - (fetchNuGet { pname = "System.Threading"; version = "4.3.0"; sha256 = "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34"; }) 103 - (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.3.0"; sha256 = "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7"; }) 104 - (fetchNuGet { pname = "System.Threading.Tasks.Dataflow"; version = "4.9.0"; sha256 = "1g6s9pjg4z8iy98df60y9a01imdqy59zd767vz74rrng78jl2dk5"; }) 105 - (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.5.3"; sha256 = "0g7r6hm572ax8v28axrdxz1gnsblg6kszq17g51pj14a5rn2af7i"; }) 106 - (fetchNuGet { pname = "System.ValueTuple"; version = "4.5.0"; sha256 = "00k8ja51d0f9wrq4vv5z2jhq8hy31kac2rg0rv06prylcybzl8cy"; }) 107 - ]
-23
pkgs/development/dotnet-modules/python-language-server/updater.sh
··· 1 - #!/usr/bin/env nix-shell 2 - #!nix-shell -I nixpkgs=./. -i bash -p gnused jq common-updater-scripts nix-prefetch-git 3 - set -eo pipefail 4 - cd "$(dirname "${BASH_SOURCE[0]}")" 5 - 6 - deps_file="$(realpath ./deps.nix)" 7 - 8 - nix-prefetch-git https://github.com/microsoft/python-language-server --quiet > repo_info 9 - new_version="$(jq -r ".date" < repo_info | cut -d"T" -f1)" 10 - new_hash="$(jq -r ".sha256" < repo_info)" 11 - new_rev="$(jq -r ".rev" < repo_info)" 12 - rm repo_info 13 - 14 - old_rev="$(sed -nE 's/\s*rev = "(.*)".*/\1/p' ./default.nix)" 15 - 16 - if [[ $new_rev == $old_rev ]]; then 17 - echo "Already up to date!" 18 - exit 0 19 - fi 20 - 21 - pushd ../../../.. 22 - update-source-version python-language-server "$new_version" "$new_hash" --rev="$new_rev" 23 - $(nix-build -A python-language-server.fetch-deps --no-out-link) "$deps_file"
+2 -2
pkgs/development/libraries/edencommon/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "edencommon"; 5 - version = "2023.01.30.00"; 5 + version = "2023.02.13.00"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "facebookexperimental"; 9 9 repo = "edencommon"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-N3/Ey0zrfOfuAaS6qIpEgUUL5GkCZrqpAspJ7OprLPk="; 11 + sha256 = "sha256-WxxE7ePZuNkSKRQG5Vni51xrrZT6BsKwwvhzykQf9X4="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+23 -5
pkgs/development/libraries/libressl/default.nix
··· 12 12 then "DYLD_LIBRARY_PATH" 13 13 else "LD_LIBRARY_PATH"; 14 14 15 - generic = { version, hash, patches ? [] }: stdenv.mkDerivation rec { 15 + generic = 16 + { version 17 + , hash 18 + , patches ? [] 19 + , knownVulnerabilities ? [] 20 + }: stdenv.mkDerivation rec 21 + { 16 22 pname = "libressl"; 17 23 inherit version; 18 24 ··· 80 86 license = with licenses; [ publicDomain bsdOriginal bsd0 bsd3 gpl3 isc openssl ]; 81 87 platforms = platforms.all; 82 88 maintainers = with maintainers; [ thoughtpolice fpletz ]; 89 + inherit knownVulnerabilities; 83 90 }; 84 91 }; 85 92 ··· 87 94 libressl_3_4 = generic { 88 95 version = "3.4.3"; 89 96 hash = "sha256-/4i//jVIGLPM9UXjyv5FTFAxx6dyFwdPUzJx1jw38I0="; 97 + knownVulnerabilities = [ "Support ended 2022-10-14." ]; 98 + patches = [ 99 + (fetchpatch { 100 + # https://marc.info/?l=libressl&m=167582148932407&w=2 101 + name = "backport-type-confusion-fix.patch"; 102 + url = "https://raw.githubusercontent.com/libressl/portable/30dc760ed1d7c70766b135500950d8ca9d17b13a/patches/x509_genn.c.diff"; 103 + sha256 = "sha256-N9jsOueqposDWZwaR+n/v/cHgNiZbZ644d8/wKjN2/M="; 104 + stripLen = 2; 105 + extraPrefix = "crypto/"; 106 + }) 107 + ]; 90 108 }; 91 109 92 110 libressl_3_5 = generic { 93 - version = "3.5.3"; 94 - hash = "sha256-OrXl6u9pziDGsXDuZNeFtCI19I8uYrCV/KXXtmcriyg="; 111 + version = "3.5.4"; 112 + hash = "sha256-A3naE0Si9xrUpOO+MO+dgu7N3Of43CrmZjGh3+FDQ6w="; 95 113 96 114 patches = [ 97 115 # Fix endianness detection on aarch64-darwin, issue #181187 ··· 104 122 }; 105 123 106 124 libressl_3_6 = generic { 107 - version = "3.6.1"; 108 - hash = "sha256-rPrGExbpO5GcKNYtUwN8pzTehcRrTXA/Gf2Dlc8AZ3Q="; 125 + version = "3.6.2"; 126 + hash = "sha256-S+gP/wc3Rs9QtKjlur4nlayumMaxMqngJRm0Rd+/0DM="; 109 127 }; 110 128 }
+2 -2
pkgs/development/python-modules/deal/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "deal"; 22 - version = "4.23.4"; 22 + version = "4.23.7"; 23 23 format = "pyproject"; 24 24 disabled = pythonOlder "3.7"; 25 25 ··· 27 27 owner = "life4"; 28 28 repo = pname; 29 29 rev = "refs/tags/${version}"; 30 - hash = "sha256-YwozwoTb1JsvrwcTntlpWpQJ9DszH2lmtuKkK8qZiG0="; 30 + hash = "sha256-RWbMitgrU8VUsOgarBKYDNPIa/AwifvBURUytiGzeVo="; 31 31 }; 32 32 33 33 postPatch = ''
+6 -3
pkgs/development/python-modules/dunamai/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "dunamai"; 15 - version = "1.15.0"; 15 + version = "1.16.0"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.7"; ··· 21 21 owner = "mtkennerly"; 22 22 repo = "dunamai"; 23 23 rev = "refs/tags/v${version}"; 24 - sha256 = "sha256-dqMI51UHbkyfkxAPojRlS6qew2Ob4LbUkYua6zmcQgc="; 24 + hash = "sha256-pPUn+1rv76N/7WVDyWJLPVMweJ1Qbx6/P4zIKU06hSs="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ ··· 49 49 setuptools 50 50 ]; 51 51 52 - pythonImportsCheck = [ "dunamai" ]; 52 + pythonImportsCheck = [ 53 + "dunamai" 54 + ]; 53 55 54 56 meta = with lib; { 55 57 description = "Dynamic version generation"; 56 58 homepage = "https://github.com/mtkennerly/dunamai"; 59 + changelog = "https://github.com/mtkennerly/dunamai/blob/v${version}/CHANGELOG.md"; 57 60 license = licenses.mit; 58 61 maintainers = with maintainers; [ jmgilman ]; 59 62 };
+2 -2
pkgs/development/python-modules/pipdeptree/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "pipdeptree"; 17 - version = "2.4.0"; 17 + version = "2.5.0"; 18 18 format = "pyproject"; 19 19 20 20 disabled = pythonOlder "3.7"; ··· 23 23 owner = "tox-dev"; 24 24 repo = "pipdeptree"; 25 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-agjerQTSkrpHCleqNUxg+NFiPnf9u9DQrs3vSR917oE="; 26 + hash = "sha256-hAODK7kFCntfKC77VF/KyTk0O/z+bXHixVxQIz8JuDk="; 27 27 }; 28 28 29 29 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/stripe/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "stripe"; 10 - version = "5.1.1"; 10 + version = "5.2.0"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-wAjdCMWZhtzwWfu3dkhucLgtT6RqY8oQhdlLJojCjhk="; 17 + hash = "sha256-pDcrna+DEtgjaaqmSZcpem8Ea8B8oJ91159ayAkztBQ="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/types-pyyaml/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "types-pyyaml"; 8 - version = "6.0.12.6"; 8 + version = "6.0.12.8"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchPypi { 12 12 pname = "types-PyYAML"; 13 13 inherit version; 14 - sha256 = "sha256-JOdrk41Y5oZFJx7rFJr2Ai0dqZeI5IH5Wb0oSxZPOaE="; 14 + sha256 = "sha256-GTBIaaidSa8AvmgeeyZ0FN8hP064ljTESV+mLo+UK58="; 15 15 }; 16 16 17 17 # Module doesn't have tests
+2 -2
pkgs/development/tools/build-managers/shards/default.nix
··· 37 37 in 38 38 rec { 39 39 shards_0_17 = generic { 40 - version = "0.17.1"; 41 - hash = "sha256-YAsFsMoZVUINnIQzYNjE7/hpvipmyU5DrLJJrk9TkHs="; 40 + version = "0.17.2"; 41 + hash = "sha256-2HpoMgyi8jnWYiBHscECYiaRu2g0mAH+dCY1t5m/l1s="; 42 42 }; 43 43 44 44 shards = shards_0_17;
+2 -2
pkgs/development/tools/go-tools/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "go-tools"; 8 - version = "2023.1"; 8 + version = "2023.1.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "dominikh"; 12 12 repo = "go-tools"; 13 13 rev = version; 14 - sha256 = "sha256-RzYaaiDu78JVM8G0zJzlZcyCd+1V9KZIyIIyVib0yZc="; 14 + sha256 = "sha256-Xnylkv0n3FExQ4e4pmD6DAUqGtud80wHHoVY56UXfOU="; 15 15 }; 16 16 17 17 vendorHash = "sha256-o9UtS6AMgRYuAkOWdktG2Kr3QDBDQTOGSlya69K2br8=";
+3 -3
pkgs/development/tools/rust/cargo-watch/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-watch"; 5 - version = "8.3.0"; 5 + version = "8.4.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "watchexec"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-2keI5hTWglqh+mLeGzRCxpfnUt6kur0I9fefYwZr5l4="; 11 + hash = "sha256-YwiTzIO60ct076vMoK9BHKa65Qet2PAvPRwnZcjDgcM="; 12 12 }; 13 13 14 - cargoHash = "sha256-kR12j0Z7nXfwh9nPT35/LpkK56a8D1gvVkl9/2s6rIQ="; 14 + cargoHash = "sha256-BzcKWQSB94H3XOsbwNvJoAHlZwkJvLABIrfFh9Ugfig="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ Cocoa CoreServices Foundation libiconv ]; 17 17
+3 -3
pkgs/development/tools/symfony-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "symfony-cli"; 5 - version = "5.4.21"; 6 - vendorHash = "sha256-P5KEliTqj9kGYffhl014QK6qPY9gLG+bViOz4dtsQwA="; 5 + version = "5.5.0"; 6 + vendorHash = "sha256-l8h2jHOwxvFEk9v/U8DU8g6La9TyPtpDvQTTSX4BW84="; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "symfony-cli"; 10 10 repo = "symfony-cli"; 11 11 rev = "v${version}"; 12 - sha256 = "sha256-lNEd5mj5K8MhlLkrRiFnEqVLnS+4mx7FNAtYuF5jdC0="; 12 + sha256 = "sha256-d/Ld/F1dvwO7/uKLtgQmYhfOoxvIyEbnE3ks6R2412I="; 13 13 }; 14 14 15 15 ldflags = [
+2 -1
pkgs/games/steam/default.nix
··· 5 5 let 6 6 steamPackagesFun = self: let 7 7 inherit (self) callPackage; 8 - in { 8 + in rec { 9 9 steamArch = if stdenv.hostPlatform.system == "x86_64-linux" then "amd64" 10 10 else if stdenv.hostPlatform.system == "i686-linux" then "i386" 11 11 else throw "Unsupported platform: ${stdenv.hostPlatform.system}"; ··· 21 21 else null; 22 22 inherit buildFHSUserEnv; 23 23 }; 24 + steam-fhsenv-small = steam-fhsenv.override { withGameSpecificLibraries = false; }; 24 25 steamcmd = callPackage ./steamcmd.nix { }; 25 26 }; 26 27 keep = self: { };
+80 -93
pkgs/games/steam/fhsenv.nix
··· 1 - { config, lib, writeScript, buildFHSUserEnv, steam, glxinfo-i686 1 + { lib, stdenv, writeScript, buildFHSUserEnv, steam, glxinfo-i686, runtimeShell 2 2 , steam-runtime-wrapped, steam-runtime-wrapped-i686 ? null 3 3 , extraPkgs ? pkgs: [ ] # extra packages to add to targetPkgs 4 4 , extraLibraries ? pkgs: [ ] # extra packages to add to multiPkgs 5 5 , extraProfile ? "" # string to append to profile 6 6 , extraArgs ? "" # arguments to always pass to steam 7 - , runtimeOnly ? false 8 - , runtimeShell 9 - , stdenv 10 - 11 - # DEPRECATED 12 - , withJava ? config.steam.java or false 13 - , withPrimus ? config.steam.primus or false 7 + , withGameSpecificLibraries ? true # exclude game specific libraries 14 8 }: 15 9 16 10 let 17 - commonTargetPkgs = pkgs: with pkgs; 18 - [ 19 - # Needed for operating system detection until 20 - # https://github.com/ValveSoftware/steam-for-linux/issues/5909 is resolved 21 - lsb-release 22 - # Errors in output without those 23 - pciutils 24 - # Games' dependencies 25 - xorg.xrandr 26 - which 27 - # Needed by gdialog, including in the steam-runtime 28 - perl 29 - # Open URLs 30 - xdg-utils 31 - iana-etc 32 - # Steam Play / Proton 33 - python3 34 - # Steam VR 35 - procps 36 - usbutils 11 + commonTargetPkgs = pkgs: with pkgs; [ 12 + # Needed for operating system detection until 13 + # https://github.com/ValveSoftware/steam-for-linux/issues/5909 is resolved 14 + lsb-release 15 + # Errors in output without those 16 + pciutils 17 + # Games' dependencies 18 + xorg.xrandr 19 + which 20 + # Needed by gdialog, including in the steam-runtime 21 + perl 22 + # Open URLs 23 + xdg-utils 24 + iana-etc 25 + # Steam Play / Proton 26 + python3 27 + # Steam VR 28 + procps 29 + usbutils 37 30 38 - # electron based launchers need newer versions of these libraries than what runtime provides 39 - mesa 40 - sqlite 41 - ] ++ lib.optional withJava jdk8 # TODO: upgrade https://github.com/NixOS/nixpkgs/pull/89731 42 - ++ lib.optional withPrimus primus 43 - ++ extraPkgs pkgs; 31 + # electron based launchers need newer versions of these libraries than what runtime provides 32 + mesa 33 + sqlite 34 + ] ++ extraPkgs pkgs; 44 35 45 36 ldPath = lib.optionals stdenv.is64bit [ "/lib64" ] 46 37 ++ [ "/lib32" ] ··· 87 78 libthai 88 79 pango 89 80 90 - # Not formally in runtime but needed by some games 91 - at-spi2-atk 92 - at-spi2-core # CrossCode 93 - gst_all_1.gstreamer 94 - gst_all_1.gst-plugins-ugly 95 - gst_all_1.gst-plugins-base 96 - json-glib # paradox launcher (Stellaris) 97 - libdrm 98 - libxkbcommon # paradox launcher 99 - libvorbis # Dead Cells 100 - libxcrypt # Alien Isolation, XCOM 2, Company of Heroes 2 101 - mono 102 - xorg.xkeyboardconfig 103 - xorg.libpciaccess 104 - xorg.libXScrnSaver # Dead Cells 105 - udev # shadow of the tomb raider 106 - icu # dotnet runtime, e.g. stardew valley 107 - 108 - # screeps dependencies 109 - gtk3 110 - dbus 111 - zlib 112 - atk 113 - cairo 114 - freetype 115 - gdk-pixbuf 116 - fontconfig 117 - 118 - # friends options won't display "Launch Game" without it 119 - lsof 120 - 121 - # called by steam's setup.sh 122 - file 123 - 124 - # Prison Architect 125 - libGLU 126 - libuuid 127 - libbsd 128 - alsa-lib 129 - 130 - # Loop Hero 131 - libidn2 132 - libpsl 133 - nghttp2.lib 134 - openssl_1_1 135 - rtmpdump 81 + lsof # friends options won't display "Launch Game" without it 82 + file # called by steam's setup.sh 136 83 137 84 # dependencies for mesa drivers, needed inside pressure-vessel 138 85 mesa.llvmPackages.llvm.lib ··· 144 91 xorg.libxshmfence 145 92 xorg.libXxf86vm 146 93 libelf 147 - 148 - # pressure-vessel (required for mangohud and possibly more) 149 - elfutils.out 150 - 151 - # Required 152 - glib 153 - gtk2 154 - bzip2 94 + (lib.getLib elfutils) 155 95 156 96 # Without these it silently fails 157 97 xorg.libXinerama ··· 171 111 libusb1 172 112 dbus-glib 173 113 ffmpeg 174 - # Only libraries are needed from those two 175 114 libudev0-shim 176 115 177 116 # Verified games requirements 117 + fontconfig 118 + freetype 178 119 xorg.libXt 179 120 xorg.libXmu 180 121 libogg ··· 182 123 SDL 183 124 SDL2_image 184 125 glew110 126 + libdrm 185 127 libidn 186 128 tbb 129 + zlib 187 130 188 131 # Other things from runtime 132 + glib 133 + gtk2 134 + bzip2 189 135 flac 190 136 freeglut 191 137 libjpeg ··· 212 158 librsvg 213 159 xorg.libXft 214 160 libvdpau 215 - ] 216 - ++ steamPackages.steam-runtime-wrapped.overridePkgs 161 + ] ++ lib.optionals withGameSpecificLibraries [ 162 + # Not formally in runtime but needed by some games 163 + at-spi2-atk 164 + at-spi2-core # CrossCode 165 + gst_all_1.gstreamer 166 + gst_all_1.gst-plugins-ugly 167 + gst_all_1.gst-plugins-base 168 + json-glib # paradox launcher (Stellaris) 169 + libdrm 170 + libxkbcommon # paradox launcher 171 + libvorbis # Dead Cells 172 + libxcrypt # Alien Isolation, XCOM 2, Company of Heroes 2 173 + mono 174 + xorg.xkeyboardconfig 175 + xorg.libpciaccess 176 + xorg.libXScrnSaver # Dead Cells 177 + udev # Shadow of the Tomb Raider 178 + icu # dotnet runtime, e.g. Stardew Valley 179 + 180 + # screeps dependencies 181 + gtk3 182 + dbus 183 + zlib 184 + atk 185 + cairo 186 + freetype 187 + gdk-pixbuf 188 + fontconfig 189 + 190 + # Prison Architect 191 + libGLU 192 + libuuid 193 + libbsd 194 + alsa-lib 195 + 196 + # Loop Hero 197 + libidn2 198 + libpsl 199 + nghttp2.lib 200 + openssl_1_1 201 + rtmpdump 202 + ] ++ steamPackages.steam-runtime-wrapped.overridePkgs 217 203 ++ extraLibraries pkgs; 218 204 219 205 extraInstallCommands = '' ··· 266 252 exec steam ${extraArgs} "$@" 267 253 ''; 268 254 269 - inherit (steam) meta; 255 + meta = steam.meta // lib.optionalAttrs (!withGameSpecificLibraries) { 256 + description = steam.meta.description + " (without game specific libraries)"; 257 + }; 270 258 271 259 # allows for some gui applications to share IPC 272 260 # this fixes certain issues where they don't render correctly ··· 282 270 283 271 targetPkgs = commonTargetPkgs; 284 272 inherit multiPkgs profile extraInstallCommands; 285 - 286 273 inherit unshareIpc unsharePid; 287 274 288 275 runScript = writeScript "steam-run" ''
+6 -7
pkgs/misc/jackaudio/default.nix
··· 14 14 , testers 15 15 }: 16 16 17 - with lib; 18 17 let 19 18 inherit (python3Packages) python dbus-python; 20 19 shouldUsePkg = pkg: if pkg != null && lib.meta.availableOn stdenv.hostPlatform pkg then pkg else null; ··· 34 33 src = fetchFromGitHub { 35 34 owner = "jackaudio"; 36 35 repo = "jack2"; 37 - rev = "v${version}"; 36 + rev = "v${finalAttrs.version}"; 38 37 sha256 = "01s8i64qczxqawgrzrw19asaqmcspf5l2h3203xzg56wnnhhzcw7"; 39 38 }; 40 39 41 40 nativeBuildInputs = [ pkg-config python makeWrapper wafHook ]; 42 41 buildInputs = [ libsamplerate libsndfile readline eigen celt 43 42 optDbus optPythonDBus optLibffado optAlsaLib optLibopus 44 - ] ++ optionals stdenv.isDarwin [ 43 + ] ++ lib.optionals stdenv.isDarwin [ 45 44 aften AudioUnit CoreAudio Accelerate libobjc 46 45 ]; 47 46 ··· 54 53 wafConfigureFlags = [ 55 54 "--classic" 56 55 "--autostart=${if (optDbus != null) then "dbus" else "classic"}" 57 - ] ++ optional (optDbus != null) "--dbus" 58 - ++ optional (optLibffado != null) "--firewire" 59 - ++ optional (optAlsaLib != null) "--alsa"; 56 + ] ++ lib.optional (optDbus != null) "--dbus" 57 + ++ lib.optional (optLibffado != null) "--firewire" 58 + ++ lib.optional (optAlsaLib != null) "--alsa"; 60 59 61 60 postInstall = (if libOnly then '' 62 61 rm -rf $out/{bin,share} ··· 67 66 68 67 passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 69 68 70 - meta = { 69 + meta = with lib; { 71 70 description = "JACK audio connection kit, version 2 with jackdbus"; 72 71 homepage = "https://jackaudio.org"; 73 72 license = licenses.gpl2Plus;
+24 -17
pkgs/misc/urbit/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, curl, git, gmp, libsigsegv, meson, ncurses, ninja 2 - , openssl, pkg-config, re2c, zlib 1 + { stdenv 2 + , lib 3 + , fetchzip 3 4 }: 4 5 6 + let 7 + os = if stdenv.isDarwin then "macos" else "linux"; 8 + arch = if stdenv.isAarch64 then "aarch64" else "x86_64"; 9 + platform = "${os}-${arch}"; 10 + in 5 11 stdenv.mkDerivation rec { 6 12 pname = "urbit"; 7 - version = "0.7.3"; 13 + version = "1.20"; 8 14 9 - src = fetchFromGitHub { 10 - owner = "urbit"; 11 - repo = "urbit"; 12 - rev = "v${version}"; 13 - sha256 = "192843pjzh8z55fd0x70m3l1vncmixljia3nphgn7j7x4976xkp2"; 14 - fetchSubmodules = true; 15 + src = fetchzip { 16 + url = "https://github.com/urbit/vere/releases/download/vere-v${version}/${platform}.tgz"; 17 + sha256 = { 18 + x86_64-linux = "sha256-nBIpf9akK4cXnR5y5Fcl1g7/FxL8BU/CH/WHGhYuP74="; 19 + aarch64-linux = "sha256-ERSYXNh/vmAKr4PNonOxTm5/FRLNDWwHSHM6fIeY4Nc="; 20 + x86_64-darwin = "sha256-Kk9hNzyWngnyqlyQ9hILFM81WVw1ZYimMj4K3ENtifE="; 21 + aarch64-darwin = "sha256-i3ixj04J/fcb396ncINLF8eYw1mpFCYeIM3f74K6tqY="; 22 + }.${stdenv.hostPlatform.system} or (throw "unsupported system ${stdenv.hostPlatform.system}"); 15 23 }; 16 24 17 - nativeBuildInputs = [ pkg-config ninja meson ]; 18 - buildInputs = [ curl git gmp libsigsegv ncurses openssl re2c zlib ]; 19 - 20 - postPatch = '' 21 - patchShebangs . 25 + postInstall = '' 26 + install -m755 -D vere-v${version}-${platform} $out/bin/urbit 22 27 ''; 23 28 29 + passthru.updateScript = ./update-bin.sh; 30 + 24 31 meta = with lib; { 25 - description = "An operating function"; 26 32 homepage = "https://urbit.org"; 33 + description = "An operating function"; 34 + platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"]; 35 + maintainers = [ maintainers.matthew-levan ]; 27 36 license = licenses.mit; 28 - maintainers = with maintainers; [ mudri ]; 29 - platforms = with platforms; linux; 30 37 }; 31 38 }
+40
pkgs/misc/urbit/update-bin.sh
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -i bash -p curl common-updater-scripts nix-prefetch 3 + 4 + set -euo pipefail 5 + 6 + ROOT="$(dirname "$(readlink -f "$0")")" 7 + NIX_DRV="$ROOT/default.nix" 8 + if [ ! -f "$NIX_DRV" ]; then 9 + echo "ERROR: cannot find urbit in $ROOT" 10 + exit 1 11 + fi 12 + 13 + fetch_arch() { 14 + VER="$1"; ARCH="$2" 15 + URL="https://github.com/urbit/vere/releases/download/vere-v${VER}/${ARCH}.tgz"; 16 + nix-prefetch "{ stdenv, fetchzip }: 17 + stdenv.mkDerivation rec { 18 + pname = \"vere\"; version = \"${VER}\"; 19 + src = fetchzip { url = \"$URL\"; }; 20 + } 21 + " 22 + } 23 + 24 + replace_sha() { 25 + sed -i "s#$1 = \"sha256-.\{44\}\"#$1 = \"$2\"#" "$NIX_DRV" 26 + } 27 + 28 + VERE_VER=$(curl https://bootstrap.urbit.org/vere/live/last) 29 + 30 + VERE_LINUX_AARCH64_SHA256=$(fetch_arch "$VERE_VER" "linux-aarch64") 31 + VERE_LINUX_X64_SHA256=$(fetch_arch "$VERE_VER" "linux-x86_64") 32 + VERE_DARWIN_AARCH64_SHA256=$(fetch_arch "$VERE_VER" "macos-aarch64") 33 + VERE_DARWIN_X64_SHA256=$(fetch_arch "$VERE_VER" "macos-x86_64") 34 + 35 + sed -i "s/version = \".*\"/version = \"$VERE_VER\"/" "$NIX_DRV" 36 + 37 + replace_sha "aarch64-linux" "$VERE_LINUX_AARCH64_SHA256" 38 + replace_sha "x86_64-linux" "$VERE_LINUX_X64_SHA256" 39 + replace_sha "aarch64-darwin" "$VERE_DARWIN_AARCH64_SHA256" 40 + replace_sha "x86_64-darwin" "$VERE_DARWIN_X64_SHA256"
+12 -4
pkgs/servers/sql/mariadb/default.nix
··· 240 240 }; 241 241 in 242 242 self: { 243 + # see https://mariadb.org/about/#maintenance-policy for EOLs 243 244 mariadb_104 = self.callPackage generic { 244 245 # Supported until 2024-06-18 245 246 version = "10.4.28"; ··· 255 256 inherit (self.darwin.apple_sdk.frameworks) CoreServices; 256 257 }; 257 258 mariadb_106 = self.callPackage generic { 258 - # Supported until 2026-07 259 + # Supported until 2026-07-06 259 260 version = "10.6.12"; 260 261 hash = "sha256-PtLrdCnC+uVCPKVcZhdC0QfjUkbxqwwQcJbwxLg5Rjo="; 261 262 inherit (self.darwin) cctools; 262 263 inherit (self.darwin.apple_sdk.frameworks) CoreServices; 263 264 }; 264 265 mariadb_108 = self.callPackage generic { 265 - # Supported until 2023-05. TODO: remove ahead of 23.05 branchoff 266 + # Supported until 2023-05-20. TODO: remove ahead of 23.05 branchoff 266 267 version = "10.8.7"; 267 268 hash = "sha256-A6uqsKMvNTjqZZFbrUBBWf2mHEJE9HZJpC6xdUIGuAI="; 268 269 inherit (self.darwin) cctools; 269 270 inherit (self.darwin.apple_sdk.frameworks) CoreServices; 270 271 }; 271 272 mariadb_109 = self.callPackage generic { 272 - # Supported until 2023-08. TODO: remove ahead of 23.05 branchoff? 273 + # Supported until 2023-08-22. TODO: remove ahead of 23.05 branchoff? 273 274 version = "10.9.5"; 274 275 hash = "sha256-CXYrdcZEuUEukV0w4bJm3tc5ZRf8L9hrvmf+zDcGWtw="; 275 276 inherit (self.darwin) cctools; 276 277 inherit (self.darwin.apple_sdk.frameworks) CoreServices; 277 278 }; 278 279 mariadb_1010 = self.callPackage generic { 279 - # Supported until 2023-11 280 + # Supported until 2023-11-17 280 281 version = "10.10.3"; 281 282 hash = "sha256-DQxF/oUFnY0mxuIp8wQQqLj3KC7C1WVg/JqJMOFO130="; 283 + inherit (self.darwin) cctools; 284 + inherit (self.darwin.apple_sdk.frameworks) CoreServices; 285 + }; 286 + mariadb_1011 = self.callPackage generic { 287 + # Supported until 2028-02-16 288 + version = "10.11.2"; 289 + hash = "sha256-HIne4MrtD2i8Kh0gPrmKEjFQ5qF59u4PH8C6Pwjccdw="; 282 290 inherit (self.darwin) cctools; 283 291 inherit (self.darwin.apple_sdk.frameworks) CoreServices; 284 292 };
+16 -4
pkgs/tools/archivers/7zz/default.nix
··· 53 53 54 54 sourceRoot = "."; 55 55 56 - patches = [ ./fix-build-on-darwin.patch ]; 56 + patches = [ 57 + ./fix-build-on-darwin.patch 58 + ./fix-cross-mingw-build.patch 59 + ]; 57 60 patchFlags = [ "-p0" ]; 61 + 62 + postPatch = lib.optionalString stdenv.hostPlatform.isMinGW '' 63 + substituteInPlace CPP/7zip/7zip_gcc.mak C/7zip_gcc_c.mak \ 64 + --replace windres.exe ${stdenv.cc.targetPrefix}windres 65 + ''; 58 66 59 67 NIX_CFLAGS_COMPILE = lib.optionals stdenv.isDarwin [ 60 68 "-Wno-deprecated-copy-dtor" 69 + ] ++ lib.optionals stdenv.hostPlatform.isMinGW [ 70 + "-Wno-conversion" 71 + "-Wno-unused-macros" 61 72 ]; 62 73 63 74 inherit makefile; ··· 73 84 # aarch64-darwin so we don't need additional changes for it 74 85 ++ lib.optionals stdenv.isDarwin [ "MACOSX_DEPLOYMENT_TARGET=10.16" ] 75 86 # it's the compression code with the restriction, see DOC/License.txt 76 - ++ lib.optionals (!enableUnfree) [ "DISABLE_RAR_COMPRESS=true" ]; 87 + ++ lib.optionals (!enableUnfree) [ "DISABLE_RAR_COMPRESS=true" ] 88 + ++ lib.optionals (stdenv.hostPlatform.isMinGW) [ "IS_MINGW=1" "MSYSTEM=1" ]; 77 89 78 90 nativeBuildInputs = lib.optionals useUasm [ uasm ]; 79 91 ··· 84 96 installPhase = '' 85 97 runHook preInstall 86 98 87 - install -Dm555 -t $out/bin b/*/7zz 99 + install -Dm555 -t $out/bin b/*/7zz${stdenv.hostPlatform.extensions.executable} 88 100 install -Dm444 -t $out/share/doc/${pname} ../../../../DOC/*.txt 89 101 90 102 runHook postInstall ··· 109 121 # the unRAR compression code is disabled by default 110 122 lib.optionals enableUnfree [ unfree ]; 111 123 maintainers = with maintainers; [ anna328p peterhoeg jk ]; 112 - platforms = platforms.unix; 124 + platforms = platforms.unix ++ platforms.windows; 113 125 mainProgram = "7zz"; 114 126 }; 115 127 }
+659
pkgs/tools/archivers/7zz/fix-cross-mingw-build.patch
··· 1 + diff --git C/7zVersion.rc C/7zVersion.rc 2 + index 6ed26de7445..675e9bb0321 100755 3 + --- C/7zVersion.rc 4 + +++ C/7zVersion.rc 5 + @@ -5,7 +5,7 @@ 6 + #define MY_VFT_APP 0x00000001L 7 + #define MY_VFT_DLL 0x00000002L 8 + 9 + -// #include <WinVer.h> 10 + +// #include <winver.h> 11 + 12 + #ifndef MY_VERSION 13 + #include "7zVersion.h" 14 + diff --git C/7zip_gcc_c.mak C/7zip_gcc_c.mak 15 + index d41810478db..43cdd51271e 100755 16 + --- C/7zip_gcc_c.mak 17 + +++ C/7zip_gcc_c.mak 18 + @@ -93,7 +93,7 @@ DEL_OBJ_EXE = -$(RM) $(O)\*.o $(O)\$(PROG).exe $(O)\$(PROG).dll 19 + endif 20 + 21 + 22 + -LIB2 = -lOle32 -loleaut32 -luuid -ladvapi32 -lUser32 23 + +LIB2 = -lole32 -loleaut32 -luuid -ladvapi32 -luser32 24 + 25 + CXXFLAGS_EXTRA = -DUNICODE -D_UNICODE 26 + # -Wno-delete-non-virtual-dtor 27 + diff --git C/Alloc.c C/Alloc.c 28 + index 142a1ea2219..0d0107c56f4 100755 29 + --- C/Alloc.c 30 + +++ C/Alloc.c 31 + @@ -6,7 +6,7 @@ 32 + #include <stdio.h> 33 + 34 + #ifdef _WIN32 35 + -#include <Windows.h> 36 + +#include <windows.h> 37 + #endif 38 + #include <stdlib.h> 39 + 40 + diff --git C/CpuArch.c C/CpuArch.c 41 + index a0e93e8b08e..36e0be0b1c8 100755 42 + --- C/CpuArch.c 43 + +++ C/CpuArch.c 44 + @@ -217,7 +217,7 @@ BoolInt CPU_Is_InOrder() 45 + } 46 + 47 + #if !defined(MY_CPU_AMD64) && defined(_WIN32) 48 + -#include <Windows.h> 49 + +#include <windows.h> 50 + static BoolInt CPU_Sys_Is_SSE_Supported() 51 + { 52 + OSVERSIONINFO vi; 53 + @@ -275,7 +275,7 @@ BoolInt CPU_IsSupported_SHA() 54 + // #include <stdio.h> 55 + 56 + #ifdef _WIN32 57 + -#include <Windows.h> 58 + +#include <windows.h> 59 + #endif 60 + 61 + BoolInt CPU_IsSupported_AVX2() 62 + @@ -351,7 +351,7 @@ BoolInt CPU_IsSupported_PageGB() 63 + 64 + #ifdef _WIN32 65 + 66 + -#include <Windows.h> 67 + +#include <windows.h> 68 + 69 + BoolInt CPU_IsSupported_CRC32() { return IsProcessorFeaturePresent(PF_ARM_V8_CRC32_INSTRUCTIONS_AVAILABLE) ? 1 : 0; } 70 + BoolInt CPU_IsSupported_CRYPTO() { return IsProcessorFeaturePresent(PF_ARM_V8_CRYPTO_INSTRUCTIONS_AVAILABLE) ? 1 : 0; } 71 + diff --git C/DllSecur.c C/DllSecur.c 72 + index a37c1b3e2c5..16755bba930 100755 73 + --- C/DllSecur.c 74 + +++ C/DllSecur.c 75 + @@ -5,7 +5,7 @@ 76 + 77 + #ifdef _WIN32 78 + 79 + -#include <Windows.h> 80 + +#include <windows.h> 81 + 82 + #include "DllSecur.h" 83 + 84 + diff --git C/Threads.h C/Threads.h 85 + index e9493afff62..71972558d48 100755 86 + --- C/Threads.h 87 + +++ C/Threads.h 88 + @@ -5,7 +5,7 @@ 89 + #define __7Z_THREADS_H 90 + 91 + #ifdef _WIN32 92 + -#include <Windows.h> 93 + +#include <windows.h> 94 + #else 95 + 96 + #if defined(__linux__) 97 + diff --git C/Util/7zipInstall/7zipInstall.c C/Util/7zipInstall/7zipInstall.c 98 + index 2c498bb4392..d791bc4181c 100755 99 + --- C/Util/7zipInstall/7zipInstall.c 100 + +++ C/Util/7zipInstall/7zipInstall.c 101 + @@ -10,7 +10,7 @@ 102 + #endif 103 + 104 + #include <windows.h> 105 + -#include <ShlObj.h> 106 + +#include <shlobj.h> 107 + 108 + #include "../../7z.h" 109 + #include "../../7zAlloc.h" 110 + diff --git C/Util/7zipInstall/resource.rc C/Util/7zipInstall/resource.rc 111 + index 4d6a91feda1..c19f601f69f 100755 112 + --- C/Util/7zipInstall/resource.rc 113 + +++ C/Util/7zipInstall/resource.rc 114 + @@ -1,6 +1,6 @@ 115 + #include <winnt.h> 116 + #include <WinUser.h> 117 + -#include <CommCtrl.h> 118 + +#include <commctrl.h> 119 + 120 + #define USE_COPYRIGHT_CR 121 + #include "../../7zVersion.rc" 122 + diff --git C/Util/7zipUninstall/7zipUninstall.c C/Util/7zipUninstall/7zipUninstall.c 123 + index 89cd764dbe9..32ece1c6c14 100755 124 + --- C/Util/7zipUninstall/7zipUninstall.c 125 + +++ C/Util/7zipUninstall/7zipUninstall.c 126 + @@ -11,7 +11,7 @@ 127 + // #define SZ_ERROR_ABORT 100 128 + 129 + #include <windows.h> 130 + -#include <ShlObj.h> 131 + +#include <shlobj.h> 132 + 133 + #include "../../7zVersion.h" 134 + 135 + diff --git C/Util/7zipUninstall/resource.rc C/Util/7zipUninstall/resource.rc 136 + index 506e0665cdd..ae1dfedc83b 100755 137 + --- C/Util/7zipUninstall/resource.rc 138 + +++ C/Util/7zipUninstall/resource.rc 139 + @@ -1,6 +1,6 @@ 140 + #include <winnt.h> 141 + #include <WinUser.h> 142 + -#include <CommCtrl.h> 143 + +#include <commctrl.h> 144 + 145 + #define USE_COPYRIGHT_CR 146 + #include "../../7zVersion.rc" 147 + diff --git CPP/7zip/7zip_gcc.mak CPP/7zip/7zip_gcc.mak 148 + index 2a24e06aa1f..fb32b933201 100755 149 + --- CPP/7zip/7zip_gcc.mak 150 + +++ CPP/7zip/7zip_gcc.mak 151 + @@ -113,8 +113,8 @@ MY_MKDIR=mkdir 152 + DEL_OBJ_EXE = -$(RM) $(O)\*.o $(O)\$(PROG).exe $(O)\$(PROG).dll 153 + endif 154 + 155 + -LIB2_GUI = -lOle32 -lGdi32 -lComctl32 -lComdlg32 $(LIB_HTMLHELP) 156 + -LIB2 = -loleaut32 -luuid -ladvapi32 -lUser32 $(LIB2_GUI) 157 + +LIB2_GUI = -lole32 -lgdi32 -lcomctl32 -lcomdlg32 $(LIB_HTMLHELP) 158 + +LIB2 = -loleaut32 -luuid -ladvapi32 -luser32 $(LIB2_GUI) 159 + 160 + CXXFLAGS_EXTRA = -DUNICODE -D_UNICODE 161 + # -Wno-delete-non-virtual-dtor 162 + diff --git CPP/7zip/Bundles/Fm/StdAfx.h CPP/7zip/Bundles/Fm/StdAfx.h 163 + index c15e07939da..d1e094cc339 100755 164 + --- CPP/7zip/Bundles/Fm/StdAfx.h 165 + +++ CPP/7zip/Bundles/Fm/StdAfx.h 166 + @@ -9,8 +9,8 @@ 167 + 168 + #include "../../../Common/Common.h" 169 + 170 + -#include <CommCtrl.h> 171 + -#include <ShlObj.h> 172 + -#include <Shlwapi.h> 173 + +#include <commctrl.h> 174 + +#include <shlobj.h> 175 + +#include <shlwapi.h> 176 + 177 + #endif 178 + diff --git CPP/7zip/Bundles/SFXWin/SfxWin.cpp CPP/7zip/Bundles/SFXWin/SfxWin.cpp 179 + index cf3bad389a0..260484c11e4 100755 180 + --- CPP/7zip/Bundles/SFXWin/SfxWin.cpp 181 + +++ CPP/7zip/Bundles/SFXWin/SfxWin.cpp 182 + @@ -4,7 +4,7 @@ 183 + 184 + #include "../../../Common/MyWindows.h" 185 + 186 + -#include <Shlwapi.h> 187 + +#include <shlwapi.h> 188 + 189 + #include "../../../Common/MyInitGuid.h" 190 + 191 + diff --git CPP/7zip/Bundles/SFXWin/StdAfx.h CPP/7zip/Bundles/SFXWin/StdAfx.h 192 + index f263ecb77c5..e96640e995c 100755 193 + --- CPP/7zip/Bundles/SFXWin/StdAfx.h 194 + +++ CPP/7zip/Bundles/SFXWin/StdAfx.h 195 + @@ -6,7 +6,7 @@ 196 + #include "../../../Common/Common.h" 197 + 198 + #include <commctrl.h> 199 + -#include <ShlObj.h> 200 + +#include <shlobj.h> 201 + 202 + // #define printf(x) NO_PRINTF_(x) 203 + // #define sprintf(x) NO_SPRINTF_(x) 204 + diff --git CPP/7zip/Crypto/RandGen.cpp CPP/7zip/Crypto/RandGen.cpp 205 + index c123109a15b..c3709ccff6b 100755 206 + --- CPP/7zip/Crypto/RandGen.cpp 207 + +++ CPP/7zip/Crypto/RandGen.cpp 208 + @@ -19,7 +19,7 @@ 209 + 210 + #ifdef USE_STATIC_RtlGenRandom 211 + 212 + -// #include <NTSecAPI.h> 213 + +// #include <ntsecapi.h> 214 + 215 + EXTERN_C_BEGIN 216 + #ifndef RtlGenRandom 217 + diff --git CPP/7zip/GuiCommon.rc CPP/7zip/GuiCommon.rc 218 + index 565ee702ef9..13043ef4c53 100755 219 + --- CPP/7zip/GuiCommon.rc 220 + +++ CPP/7zip/GuiCommon.rc 221 + @@ -4,7 +4,7 @@ 222 + // #include <WinUser.h> 223 + 224 + // for Windows CE: 225 + -#include <CommCtrl.h> 226 + +#include <commctrl.h> 227 + 228 + 229 + LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US 230 + diff --git CPP/7zip/MyVersionInfo.rc CPP/7zip/MyVersionInfo.rc 231 + index eddf8935c84..90e65376be8 100755 232 + --- CPP/7zip/MyVersionInfo.rc 233 + +++ CPP/7zip/MyVersionInfo.rc 234 + @@ -1,2 +1,2 @@ 235 + #include "MyVersion.h" 236 + -#include "..\..\C\7zVersion.rc" 237 + +#include "../../C/7zVersion.rc" 238 + diff --git CPP/7zip/UI/Common/Update.cpp CPP/7zip/UI/Common/Update.cpp 239 + index 5490ff445a0..003ee6634ea 100755 240 + --- CPP/7zip/UI/Common/Update.cpp 241 + +++ CPP/7zip/UI/Common/Update.cpp 242 + @@ -1163,7 +1163,7 @@ static HRESULT EnumerateInArchiveItems( 243 + 244 + #if defined(_WIN32) && !defined(UNDER_CE) 245 + 246 + -#include <MAPI.h> 247 + +#include <mapi.h> 248 + 249 + #endif 250 + 251 + diff --git CPP/7zip/UI/Console/Main.cpp CPP/7zip/UI/Console/Main.cpp 252 + index 363572cd3dd..765f55293a7 100755 253 + --- CPP/7zip/UI/Console/Main.cpp 254 + +++ CPP/7zip/UI/Console/Main.cpp 255 + @@ -5,7 +5,7 @@ 256 + #include "../../../Common/MyWindows.h" 257 + 258 + #ifdef _WIN32 259 + -#include <Psapi.h> 260 + +#include <psapi.h> 261 + #else 262 + #include <unistd.h> 263 + #include <sys/ioctl.h> 264 + diff --git CPP/7zip/UI/Explorer/ContextMenu.h CPP/7zip/UI/Explorer/ContextMenu.h 265 + index e60ffccf11b..aea34e7de07 100755 266 + --- CPP/7zip/UI/Explorer/ContextMenu.h 267 + +++ CPP/7zip/UI/Explorer/ContextMenu.h 268 + @@ -5,7 +5,7 @@ 269 + 270 + #include "../../../Common/MyWindows.h" 271 + 272 + -#include <ShlObj.h> 273 + +#include <shlobj.h> 274 + 275 + #include "MyExplorerCommand.h" 276 + 277 + diff --git CPP/7zip/UI/Explorer/DllExportsExplorer.cpp CPP/7zip/UI/Explorer/DllExportsExplorer.cpp 278 + index 84c92e2e2d3..df126d8d232 100755 279 + --- CPP/7zip/UI/Explorer/DllExportsExplorer.cpp 280 + +++ CPP/7zip/UI/Explorer/DllExportsExplorer.cpp 281 + @@ -11,7 +11,7 @@ 282 + #include "../../../Common/MyWindows.h" 283 + // #include "../../../Common/IntToString.h" 284 + 285 + -#include <OleCtl.h> 286 + +#include <olectl.h> 287 + 288 + #include "../../../Common/MyInitGuid.h" 289 + 290 + diff --git CPP/7zip/UI/Explorer/MyExplorerCommand.h CPP/7zip/UI/Explorer/MyExplorerCommand.h 291 + index b1997f0da6e..d1d038df11b 100755 292 + --- CPP/7zip/UI/Explorer/MyExplorerCommand.h 293 + +++ CPP/7zip/UI/Explorer/MyExplorerCommand.h 294 + @@ -17,7 +17,7 @@ 295 + ShObjIdl.h : old Windows SDK 296 + ShObjIdl_core.h : new Windows 10 SDK */ 297 + 298 + -#include <ShObjIdl.h> 299 + +#include <shobjidl.h> 300 + 301 + #ifndef __IShellItem_INTERFACE_DEFINED__ 302 + #define __IShellItem_INTERFACE_DEFINED__ 303 + diff --git CPP/7zip/UI/Explorer/StdAfx.h CPP/7zip/UI/Explorer/StdAfx.h 304 + index 35e8b337d68..16883ceda1b 100755 305 + --- CPP/7zip/UI/Explorer/StdAfx.h 306 + +++ CPP/7zip/UI/Explorer/StdAfx.h 307 + @@ -9,6 +9,6 @@ 308 + 309 + #include "../../../Common/Common.h" 310 + 311 + -#include <ShlObj.h> 312 + +#include <shlobj.h> 313 + 314 + #endif 315 + diff --git CPP/7zip/UI/FileManager/BrowseDialog.cpp CPP/7zip/UI/FileManager/BrowseDialog.cpp 316 + index e43172385b6..286faeeb660 100755 317 + --- CPP/7zip/UI/FileManager/BrowseDialog.cpp 318 + +++ CPP/7zip/UI/FileManager/BrowseDialog.cpp 319 + @@ -4,7 +4,7 @@ 320 + 321 + #include "../../../Common/MyWindows.h" 322 + 323 + -#include <CommCtrl.h> 324 + +#include <commctrl.h> 325 + 326 + #ifndef UNDER_CE 327 + #include "../../../Windows/CommonDialog.h" 328 + diff --git CPP/7zip/UI/FileManager/FM.cpp CPP/7zip/UI/FileManager/FM.cpp 329 + index b0b3715c9a5..14af8c32288 100755 330 + --- CPP/7zip/UI/FileManager/FM.cpp 331 + +++ CPP/7zip/UI/FileManager/FM.cpp 332 + @@ -4,7 +4,7 @@ 333 + 334 + #include "../../../Common/MyWindows.h" 335 + 336 + -#include <Shlwapi.h> 337 + +#include <shlwapi.h> 338 + 339 + #include "../../../../C/Alloc.h" 340 + #ifdef _WIN32 341 + diff --git CPP/7zip/UI/FileManager/FSFolderCopy.cpp CPP/7zip/UI/FileManager/FSFolderCopy.cpp 342 + index b0e1146816d..16208e58f6b 100755 343 + --- CPP/7zip/UI/FileManager/FSFolderCopy.cpp 344 + +++ CPP/7zip/UI/FileManager/FSFolderCopy.cpp 345 + @@ -4,7 +4,7 @@ 346 + 347 + #include "../../../Common/MyWindows.h" 348 + 349 + -#include <WinBase.h> 350 + +#include <winbase.h> 351 + 352 + #include "../../../Common/Defs.h" 353 + #include "../../../Common/StringConvert.h" 354 + diff --git CPP/7zip/UI/FileManager/HelpUtils.cpp CPP/7zip/UI/FileManager/HelpUtils.cpp 355 + index 94253a70f5c..3f4479dbddd 100755 356 + --- CPP/7zip/UI/FileManager/HelpUtils.cpp 357 + +++ CPP/7zip/UI/FileManager/HelpUtils.cpp 358 + @@ -24,7 +24,7 @@ void ShowHelpWindow(LPCSTR) 359 + #include "../../../Windows/FileName.h" 360 + 361 + #else 362 + -#include <HtmlHelp.h> 363 + +#include <htmlhelp.h> 364 + #endif 365 + 366 + #include "../../../Common/StringConvert.h" 367 + diff --git CPP/7zip/UI/FileManager/MyWindowsNew.h CPP/7zip/UI/FileManager/MyWindowsNew.h 368 + index c0fe8439b98..ba7d608b90e 100755 369 + --- CPP/7zip/UI/FileManager/MyWindowsNew.h 370 + +++ CPP/7zip/UI/FileManager/MyWindowsNew.h 371 + @@ -5,7 +5,7 @@ 372 + 373 + #ifdef _MSC_VER 374 + 375 + -#include <ShObjIdl.h> 376 + +#include <shobjidl.h> 377 + 378 + #ifndef __ITaskbarList3_INTERFACE_DEFINED__ 379 + #define __ITaskbarList3_INTERFACE_DEFINED__ 380 + diff --git CPP/7zip/UI/FileManager/Panel.cpp CPP/7zip/UI/FileManager/Panel.cpp 381 + index f7162e502ac..2eaf9e1266b 100755 382 + --- CPP/7zip/UI/FileManager/Panel.cpp 383 + +++ CPP/7zip/UI/FileManager/Panel.cpp 384 + @@ -2,7 +2,7 @@ 385 + 386 + #include "StdAfx.h" 387 + 388 + -#include <WindowsX.h> 389 + +#include <windowsx.h> 390 + // #include <stdio.h> 391 + 392 + #include "../../../Common/IntToString.h" 393 + diff --git CPP/7zip/UI/FileManager/Panel.h CPP/7zip/UI/FileManager/Panel.h 394 + index 5a9fef01de2..1f2b86a8e43 100755 395 + --- CPP/7zip/UI/FileManager/Panel.h 396 + +++ CPP/7zip/UI/FileManager/Panel.h 397 + @@ -5,7 +5,7 @@ 398 + 399 + #include "../../../Common/MyWindows.h" 400 + 401 + -#include <ShlObj.h> 402 + +#include <shlobj.h> 403 + 404 + #include "../../../../C/Alloc.h" 405 + 406 + diff --git CPP/7zip/UI/FileManager/PanelItemOpen.cpp CPP/7zip/UI/FileManager/PanelItemOpen.cpp 407 + index 6af42c96923..595acdbb563 100755 408 + --- CPP/7zip/UI/FileManager/PanelItemOpen.cpp 409 + +++ CPP/7zip/UI/FileManager/PanelItemOpen.cpp 410 + @@ -4,7 +4,7 @@ 411 + 412 + #include "../../../Common/MyWindows.h" 413 + 414 + -#include <TlHelp32.h> 415 + +#include <tlhelp32.h> 416 + 417 + #include "../../../Common/IntToString.h" 418 + 419 + diff --git CPP/7zip/UI/FileManager/RootFolder.cpp CPP/7zip/UI/FileManager/RootFolder.cpp 420 + index 6984434026f..d50c1eb832e 100755 421 + --- CPP/7zip/UI/FileManager/RootFolder.cpp 422 + +++ CPP/7zip/UI/FileManager/RootFolder.cpp 423 + @@ -4,7 +4,7 @@ 424 + 425 + #include "../../../Common/MyWindows.h" 426 + 427 + -#include <ShlObj.h> 428 + +#include <shlobj.h> 429 + 430 + #include "../../../Common/StringConvert.h" 431 + 432 + diff --git CPP/7zip/UI/FileManager/StdAfx.h CPP/7zip/UI/FileManager/StdAfx.h 433 + index 74cfbc6deef..88960aa8c58 100755 434 + --- CPP/7zip/UI/FileManager/StdAfx.h 435 + +++ CPP/7zip/UI/FileManager/StdAfx.h 436 + @@ -14,8 +14,8 @@ 437 + 438 + // #include "../../../Common/MyWindows.h" 439 + 440 + -// #include <CommCtrl.h> 441 + -// #include <ShlObj.h> 442 + -// #include <Shlwapi.h> 443 + +// #include <commctrl.h> 444 + +// #include <shlobj.h> 445 + +// #include <shlwapi.h> 446 + 447 + #endif 448 + diff --git CPP/7zip/UI/FileManager/SysIconUtils.cpp CPP/7zip/UI/FileManager/SysIconUtils.cpp 449 + index 43c613244a8..1cdf1d4c5b3 100755 450 + --- CPP/7zip/UI/FileManager/SysIconUtils.cpp 451 + +++ CPP/7zip/UI/FileManager/SysIconUtils.cpp 452 + @@ -10,7 +10,7 @@ 453 + 454 + #include "SysIconUtils.h" 455 + 456 + -#include <ShlObj.h> 457 + +#include <shlobj.h> 458 + 459 + #define MY_CAST_FUNC (void(*)()) 460 + // #define MY_CAST_FUNC 461 + diff --git CPP/7zip/UI/FileManager/SysIconUtils.h CPP/7zip/UI/FileManager/SysIconUtils.h 462 + index ba747d9ded0..2eedc4be403 100755 463 + --- CPP/7zip/UI/FileManager/SysIconUtils.h 464 + +++ CPP/7zip/UI/FileManager/SysIconUtils.h 465 + @@ -5,7 +5,7 @@ 466 + 467 + #include "../../../Common/MyWindows.h" 468 + 469 + -#include <CommCtrl.h> 470 + +#include <commctrl.h> 471 + 472 + #include "../../../Common/MyString.h" 473 + 474 + diff --git CPP/7zip/UI/FileManager/SystemPage.cpp CPP/7zip/UI/FileManager/SystemPage.cpp 475 + index ff68172e2bf..06025259c85 100755 476 + --- CPP/7zip/UI/FileManager/SystemPage.cpp 477 + +++ CPP/7zip/UI/FileManager/SystemPage.cpp 478 + @@ -4,7 +4,7 @@ 479 + 480 + #include "../../../Common/MyWindows.h" 481 + 482 + -#include <ShlObj.h> 483 + +#include <shlobj.h> 484 + 485 + #include "../../../Common/Defs.h" 486 + #include "../../../Common/StringConvert.h" 487 + diff --git CPP/7zip/UI/GUI/GUI.cpp CPP/7zip/UI/GUI/GUI.cpp 488 + index 0cc2ee3afcc..4ffc2384668 100755 489 + --- CPP/7zip/UI/GUI/GUI.cpp 490 + +++ CPP/7zip/UI/GUI/GUI.cpp 491 + @@ -8,7 +8,7 @@ 492 + 493 + #include "../../../Common/MyWindows.h" 494 + 495 + -#include <Shlwapi.h> 496 + +#include <shlwapi.h> 497 + 498 + #include "../../../Common/MyInitGuid.h" 499 + 500 + diff --git CPP/7zip/UI/GUI/StdAfx.h CPP/7zip/UI/GUI/StdAfx.h 501 + index 498b2fcbe4b..3c830f6a3d4 100755 502 + --- CPP/7zip/UI/GUI/StdAfx.h 503 + +++ CPP/7zip/UI/GUI/StdAfx.h 504 + @@ -11,9 +11,9 @@ 505 + 506 + // #include "../../../Common/MyWindows.h" 507 + 508 + -// #include <CommCtrl.h> 509 + -// #include <ShlObj.h> 510 + -// #include <Shlwapi.h> 511 + +// #include <commctrl.h> 512 + +// #include <shlobj.h> 513 + +// #include <shlwapi.h> 514 + 515 + // #define printf(x) NO_PRINTF_(x) 516 + // #define sprintf(x) NO_SPRINTF_(x) 517 + diff --git CPP/Common/MyInitGuid.h CPP/Common/MyInitGuid.h 518 + index 6895097371a..6b2f3f35d5a 100755 519 + --- CPP/Common/MyInitGuid.h 520 + +++ CPP/Common/MyInitGuid.h 521 + @@ -29,7 +29,7 @@ Also we need IID_IUnknown that is initialized in some file for linking: 522 + #include <basetyps.h> 523 + #endif 524 + 525 + -#include <InitGuid.h> 526 + +#include <initguid.h> 527 + 528 + #ifdef UNDER_CE 529 + DEFINE_GUID(IID_IUnknown, 530 + diff --git CPP/Common/MyWindows.h CPP/Common/MyWindows.h 531 + index 69eed8f6446..f48680f9d05 100755 532 + --- CPP/Common/MyWindows.h 533 + +++ CPP/Common/MyWindows.h 534 + @@ -5,7 +5,7 @@ 535 + 536 + #ifdef _WIN32 537 + 538 + -#include <Windows.h> 539 + +#include <windows.h> 540 + 541 + #ifdef UNDER_CE 542 + #undef VARIANT_TRUE 543 + diff --git CPP/Windows/Control/ComboBox.h CPP/Windows/Control/ComboBox.h 544 + index 8ab9ce5027d..8b12599b785 100755 545 + --- CPP/Windows/Control/ComboBox.h 546 + +++ CPP/Windows/Control/ComboBox.h 547 + @@ -5,7 +5,7 @@ 548 + 549 + #include "../../Common/MyWindows.h" 550 + 551 + -#include <CommCtrl.h> 552 + +#include <commctrl.h> 553 + 554 + #include "../Window.h" 555 + 556 + diff --git CPP/Windows/Control/ImageList.h CPP/Windows/Control/ImageList.h 557 + index e59443058b8..f72ea0d1990 100755 558 + --- CPP/Windows/Control/ImageList.h 559 + +++ CPP/Windows/Control/ImageList.h 560 + @@ -3,7 +3,7 @@ 561 + #ifndef __WINDOWS_CONTROL_IMAGE_LIST_H 562 + #define __WINDOWS_CONTROL_IMAGE_LIST_H 563 + 564 + -#include <CommCtrl.h> 565 + +#include <commctrl.h> 566 + 567 + #include "../Defs.h" 568 + 569 + diff --git CPP/Windows/Control/ListView.h CPP/Windows/Control/ListView.h 570 + index 56e1100c726..cbd9cd1e21d 100755 571 + --- CPP/Windows/Control/ListView.h 572 + +++ CPP/Windows/Control/ListView.h 573 + @@ -5,7 +5,7 @@ 574 + 575 + #include "../../Common/MyWindows.h" 576 + 577 + -#include <CommCtrl.h> 578 + +#include <commctrl.h> 579 + 580 + #include "../Window.h" 581 + 582 + diff --git CPP/Windows/Control/ProgressBar.h CPP/Windows/Control/ProgressBar.h 583 + index 741315dd4dd..f18d89c14f0 100755 584 + --- CPP/Windows/Control/ProgressBar.h 585 + +++ CPP/Windows/Control/ProgressBar.h 586 + @@ -5,7 +5,7 @@ 587 + 588 + #include "../../Common/MyWindows.h" 589 + 590 + -#include <CommCtrl.h> 591 + +#include <commctrl.h> 592 + 593 + #include "../Window.h" 594 + 595 + diff --git CPP/Windows/Control/PropertyPage.h CPP/Windows/Control/PropertyPage.h 596 + index 97c87b3b453..551c95994c2 100755 597 + --- CPP/Windows/Control/PropertyPage.h 598 + +++ CPP/Windows/Control/PropertyPage.h 599 + @@ -5,7 +5,7 @@ 600 + 601 + #include "../../Common/MyWindows.h" 602 + 603 + -#include <PrSht.h> 604 + +#include <prsht.h> 605 + 606 + #include "Dialog.h" 607 + 608 + diff --git CPP/Windows/FileIO.h CPP/Windows/FileIO.h 609 + index 9146491d236..e11022f82d4 100755 610 + --- CPP/Windows/FileIO.h 611 + +++ CPP/Windows/FileIO.h 612 + @@ -17,7 +17,7 @@ 613 + #ifdef _WIN32 614 + 615 + #if defined(_WIN32) && !defined(UNDER_CE) 616 + -#include <WinIoCtl.h> 617 + +#include <winioctl.h> 618 + #endif 619 + 620 + #else 621 + diff --git CPP/Windows/ProcessUtils.h CPP/Windows/ProcessUtils.h 622 + index 64ebe3775e4..de46c6f52a5 100755 623 + --- CPP/Windows/ProcessUtils.h 624 + +++ CPP/Windows/ProcessUtils.h 625 + @@ -3,7 +3,7 @@ 626 + #ifndef __WINDOWS_PROCESS_UTILS_H 627 + #define __WINDOWS_PROCESS_UTILS_H 628 + 629 + -#include <Psapi.h> 630 + +#include <psapi.h> 631 + 632 + #include "../Common/MyString.h" 633 + 634 + diff --git CPP/Windows/SecurityUtils.h CPP/Windows/SecurityUtils.h 635 + index de62035ec86..18a083fc580 100755 636 + --- CPP/Windows/SecurityUtils.h 637 + +++ CPP/Windows/SecurityUtils.h 638 + @@ -3,7 +3,7 @@ 639 + #ifndef __WINDOWS_SECURITY_UTILS_H 640 + #define __WINDOWS_SECURITY_UTILS_H 641 + 642 + -#include <NTSecAPI.h> 643 + +#include <ntsecapi.h> 644 + 645 + #include "Defs.h" 646 + 647 + diff --git CPP/Windows/Shell.h CPP/Windows/Shell.h 648 + index 30388bc5a70..dc3daa5e60b 100755 649 + --- CPP/Windows/Shell.h 650 + +++ CPP/Windows/Shell.h 651 + @@ -4,7 +4,7 @@ 652 + #define __WINDOWS_SHELL_H 653 + 654 + #include "../Common/MyWindows.h" 655 + -#include <ShlObj.h> 656 + +#include <shlobj.h> 657 + 658 + #include "../Common/MyString.h" 659 +
+3 -3
pkgs/tools/misc/easeprobe/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "easeprobe"; 8 - version = "2.0.0"; 8 + version = "2.0.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "megaease"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-y9R2OgK+slQUvUMS3E6aX8WVCQ1fSMAruGKggxYRniA="; 14 + sha256 = "sha256-FBraLP/wsoJiVLjAqNZettMDOd8W8l1j4t8ETyvqrcQ="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-ZfqBSPnIm2GHPREowHmEEPnOovYjoarxrkPeYmZBkIc="; 17 + vendorHash = "sha256-Z2JLFLVTdPGFFHnjNA1JS1lYjGimdvMLiXQyNi+91Hc="; 18 18 19 19 subPackages = [ "cmd/easeprobe" ]; 20 20
+8 -19
pkgs/tools/misc/esptool/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 - , fetchpatch 4 3 , python3 5 4 }: 6 5 7 6 python3.pkgs.buildPythonApplication rec { 8 7 pname = "esptool"; 9 - version = "4.4"; 8 + version = "4.5"; 10 9 11 10 src = fetchFromGitHub { 12 11 owner = "espressif"; 13 12 repo = "esptool"; 14 13 rev = "v${version}"; 15 - hash = "sha256-haLwf3loOvqdqQN/iuVBciQ6nCnuc9AqqOGKvDwLBHE="; 14 + hash = "sha256-SwMdemCk3e3RyXTzoXIqDRywpg3ogE9nQjXGBz0BjwE="; 16 15 }; 17 - 18 - patches = [ 19 - ./test-call-bin-directly.patch 20 - (fetchpatch { 21 - name = "bitstring-4-compatibility.patch"; 22 - url = "https://github.com/espressif/esptool/commit/ee27a6437576797d5f58c31e1c39f3a232a71df0.patch"; 23 - hash = "sha256-8/AzR3HK79eQQRSaGEKU4YKn/piPCPjm/G9pvizKuUE="; 24 - }) 25 - ]; 26 16 27 17 propagatedBuildInputs = with python3.pkgs; [ 28 18 bitstring ··· 34 24 35 25 nativeCheckInputs = with python3.pkgs; [ 36 26 pyelftools 37 - pytest 27 + pytestCheckHook 38 28 ]; 39 29 40 30 # tests mentioned in `.github/workflows/test_esptool.yml` 41 31 checkPhase = '' 42 32 runHook preCheck 43 33 44 - export ESPSECURE_PY=$out/bin/espsecure.py 45 - export ESPTOOL_PY=$out/bin/esptool.py 46 - ${python3.interpreter} test/test_imagegen.py 47 - ${python3.interpreter} test/test_espsecure.py 48 - ${python3.interpreter} test/test_merge_bin.py 49 - ${python3.interpreter} test/test_modules.py 34 + pytest test/test_imagegen.py 35 + pytest test/test_espsecure.py 36 + pytest test/test_merge_bin.py 37 + pytest test/test_image_info.py 38 + pytest test/test_modules.py 50 39 51 40 runHook postCheck 52 41 '';
-89
pkgs/tools/misc/esptool/test-call-bin-directly.patch
··· 1 - diff --git a/test/test_espsecure.py b/test/test_espsecure.py 2 - index 25b0b87..627005c 100755 3 - --- a/test/test_espsecure.py 4 - +++ b/test/test_espsecure.py 5 - @@ -35,7 +35,7 @@ class EspSecureTestCase: 6 - Returns output as a string if there is any, 7 - raises an exception if espsecure.py fails 8 - """ 9 - - cmd = [sys.executable, ESPSECURE_PY] + args.split(" ") 10 - + cmd = [ESPSECURE_PY] + args.split(" ") 11 - print("\nExecuting {}...".format(" ".join(cmd))) 12 - 13 - try: 14 - diff --git a/test/test_esptool.py b/test/test_esptool.py 15 - index 042a1ce..b294e26 100755 16 - --- a/test/test_esptool.py 17 - +++ b/test/test_esptool.py 18 - @@ -57,7 +57,10 @@ try: 19 - ESPTOOL_PY = os.environ["ESPTOOL_PY"] 20 - except KeyError: 21 - ESPTOOL_PY = os.path.join(TEST_DIR, "..", "esptool/__init__.py") 22 - -ESPSECURE_PY = os.path.join(TEST_DIR, "..", "espsecure/__init__.py") 23 - +try: 24 - + ESPSECURE_PY = os.environ["ESPSECURE_PY"] 25 - +except KeyError: 26 - + ESPSECURE_PY = os.path.join(TEST_DIR, "..", "espsecure/__init__.py") 27 - ESPRFC2217SERVER_PY = os.path.join(TEST_DIR, "..", "esp_rfc2217_server.py") 28 - 29 - RETURN_CODE_FATAL_ERROR = 2 30 - @@ -74,7 +77,6 @@ class ESPRFC2217Server(object): 31 - def __init__(self, rfc2217_port=None): 32 - self.port = rfc2217_port or self.get_free_port() 33 - self.cmd = [ 34 - - sys.executable, 35 - ESPRFC2217SERVER_PY, 36 - "-p", 37 - str(self.port), 38 - @@ -130,7 +132,7 @@ class ESPRFC2217Server(object): 39 - class EsptoolTestCase: 40 - def run_espsecure(self, args): 41 - 42 - - cmd = [sys.executable, ESPSECURE_PY] + args.split(" ") 43 - + cmd = [ESPSECURE_PY] + args.split(" ") 44 - print("\nExecuting {}...".format(" ".join(cmd))) 45 - try: 46 - output = subprocess.check_output( 47 - @@ -155,7 +157,7 @@ class EsptoolTestCase: 48 - Raises an exception if esptool.py fails. 49 - """ 50 - trace_args = ["--trace"] if arg_trace else [] 51 - - cmd = [sys.executable, ESPTOOL_PY] + trace_args 52 - + cmd = [ESPTOOL_PY] + trace_args 53 - if chip_name or arg_chip is not None and chip_name != "auto": 54 - cmd += ["--chip", chip_name or arg_chip] 55 - if rfc2217_port or arg_port is not None: 56 - diff --git a/test/test_imagegen.py b/test/test_imagegen.py 57 - index a1feec2..01bd59c 100755 58 - --- a/test/test_imagegen.py 59 - +++ b/test/test_imagegen.py 60 - @@ -108,7 +108,7 @@ class BaseTestCase: 61 - Run esptool.py image_info on a binary file, 62 - assert no red flags about contents. 63 - """ 64 - - cmd = [sys.executable, ESPTOOL_PY, "--chip", chip, "image_info", binpath] 65 - + cmd = [ESPTOOL_PY, "--chip", chip, "image_info", binpath] 66 - try: 67 - output = subprocess.check_output(cmd) 68 - output = output.decode("utf-8") 69 - @@ -123,7 +123,7 @@ class BaseTestCase: 70 - 71 - def run_elf2image(self, chip, elf_path, version=None, extra_args=[]): 72 - """Run elf2image on elf_path""" 73 - - cmd = [sys.executable, ESPTOOL_PY, "--chip", chip, "elf2image"] 74 - + cmd = [ESPTOOL_PY, "--chip", chip, "elf2image"] 75 - if version is not None: 76 - cmd += ["--version", str(version)] 77 - cmd += [elf_path] + extra_args 78 - diff --git a/test/test_merge_bin.py b/test/test_merge_bin.py 79 - index 8230069..2df5f8c 100755 80 - --- a/test/test_merge_bin.py 81 - +++ b/test/test_merge_bin.py 82 - @@ -39,7 +39,6 @@ class TestMergeBin: 83 - output_file.close() 84 - 85 - cmd = [ 86 - - sys.executable, 87 - ESPTOOL_PY, 88 - "--chip", 89 - chip,
+2 -2
pkgs/tools/misc/vsh/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "vsh"; 5 - version = "0.12.1"; 5 + version = "0.12.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "fishi0x01"; 9 9 repo = "vsh"; 10 10 rev = "v${version}"; 11 - sha256 = "0skd16j969mb2kgq503wskaw8clyhkw135ny2nsqv5j2zjpr71ap"; 11 + sha256 = "13qa9r7kij6aqhackzmsn38vyhmajgmhflnrd9rarfhhyg6ldv4z"; 12 12 }; 13 13 14 14 # vendor directory is part of repository
+9 -12
pkgs/tools/nix/nixos-render-docs/default.nix
··· 24 24 }; 25 25 26 26 makeDeps = pkgs: small: 27 - [ pkgs.frozendict ] 28 - ++ ( 29 - if small 30 - then [ 31 - markdown-it-py-no-tests 32 - mdit-py-plugins-no-tests 33 - ] 34 - else [ 35 - pkgs.markdown-it-py 36 - pkgs.mdit-py-plugins 37 - ] 38 - ); 27 + if small 28 + then [ 29 + markdown-it-py-no-tests 30 + mdit-py-plugins-no-tests 31 + ] 32 + else [ 33 + pkgs.markdown-it-py 34 + pkgs.mdit-py-plugins 35 + ]; 39 36 in 40 37 41 38 python.pkgs.buildPythonApplication rec {
+262
pkgs/tools/nix/nixos-render-docs/src/nixos_render_docs/asciidoc.py
··· 1 + from collections.abc import Mapping, MutableMapping, Sequence 2 + from dataclasses import dataclass 3 + from typing import Any, cast, Optional 4 + from urllib.parse import quote 5 + 6 + from .md import Renderer 7 + 8 + import markdown_it 9 + from markdown_it.token import Token 10 + from markdown_it.utils import OptionsDict 11 + 12 + _asciidoc_escapes = { 13 + # escape all dots, just in case one is pasted at SOL 14 + ord('.'): "{zwsp}.", 15 + # may be replaced by typographic variants 16 + ord("'"): "{apos}", 17 + ord('"'): "{quot}", 18 + # passthrough character 19 + ord('+'): "{plus}", 20 + # table marker 21 + ord('|'): "{vbar}", 22 + # xml entity reference 23 + ord('&'): "{amp}", 24 + # crossrefs. < needs extra escaping because links break in odd ways if they start with it 25 + ord('<'): "{zwsp}+<+{zwsp}", 26 + ord('>'): "{gt}", 27 + # anchors, links, block attributes 28 + ord('['): "{startsb}", 29 + ord(']'): "{endsb}", 30 + # superscript, subscript 31 + ord('^'): "{caret}", 32 + ord('~'): "{tilde}", 33 + # bold 34 + ord('*'): "{asterisk}", 35 + # backslash 36 + ord('\\'): "{backslash}", 37 + # inline code 38 + ord('`'): "{backtick}", 39 + } 40 + def asciidoc_escape(s: str) -> str: 41 + s = s.translate(_asciidoc_escapes) 42 + # :: is deflist item, ;; is has a replacement but no idea why 43 + return s.replace("::", "{two-colons}").replace(";;", "{two-semicolons}") 44 + 45 + @dataclass(kw_only=True) 46 + class List: 47 + head: str 48 + 49 + @dataclass() 50 + class Par: 51 + sep: str 52 + block_delim: str 53 + continuing: bool = False 54 + 55 + class AsciiDocRenderer(Renderer): 56 + __output__ = "asciidoc" 57 + 58 + _parstack: list[Par] 59 + _list_stack: list[List] 60 + _attrspans: list[str] 61 + 62 + def __init__(self, manpage_urls: Mapping[str, str], parser: Optional[markdown_it.MarkdownIt] = None): 63 + super().__init__(manpage_urls, parser) 64 + self._parstack = [ Par("\n\n", "====") ] 65 + self._list_stack = [] 66 + self._attrspans = [] 67 + 68 + def _enter_block(self, is_list: bool) -> None: 69 + self._parstack.append(Par("\n+\n" if is_list else "\n\n", self._parstack[-1].block_delim + "=")) 70 + def _leave_block(self) -> None: 71 + self._parstack.pop() 72 + def _break(self, force: bool = False) -> str: 73 + result = self._parstack[-1].sep if force or self._parstack[-1].continuing else "" 74 + self._parstack[-1].continuing = True 75 + return result 76 + 77 + def _admonition_open(self, kind: str) -> str: 78 + pbreak = self._break() 79 + self._enter_block(False) 80 + return f"{pbreak}[{kind}]\n{self._parstack[-2].block_delim}\n" 81 + def _admonition_close(self) -> str: 82 + self._leave_block() 83 + return f"\n{self._parstack[-1].block_delim}\n" 84 + 85 + def _list_open(self, token: Token, head: str) -> str: 86 + attrs = [] 87 + if (idx := token.attrs.get('start')) is not None: 88 + attrs.append(f"start={idx}") 89 + if token.meta['compact']: 90 + attrs.append('options="compact"') 91 + if self._list_stack: 92 + head *= len(self._list_stack[0].head) + 1 93 + self._list_stack.append(List(head=head)) 94 + return f"{self._break()}[{','.join(attrs)}]" 95 + def _list_close(self) -> str: 96 + self._list_stack.pop() 97 + return "" 98 + 99 + def text(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 100 + env: MutableMapping[str, Any]) -> str: 101 + self._parstack[-1].continuing = True 102 + return asciidoc_escape(token.content) 103 + def paragraph_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 104 + env: MutableMapping[str, Any]) -> str: 105 + return self._break() 106 + def paragraph_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 107 + env: MutableMapping[str, Any]) -> str: 108 + return "" 109 + def hardbreak(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 110 + env: MutableMapping[str, Any]) -> str: 111 + return " +\n" 112 + def softbreak(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 113 + env: MutableMapping[str, Any]) -> str: 114 + return f" " 115 + def code_inline(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 116 + env: MutableMapping[str, Any]) -> str: 117 + self._parstack[-1].continuing = True 118 + return f"``{asciidoc_escape(token.content)}``" 119 + def code_block(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 120 + env: MutableMapping[str, Any]) -> str: 121 + return self.fence(token, tokens, i, options, env) 122 + def link_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 123 + env: MutableMapping[str, Any]) -> str: 124 + self._parstack[-1].continuing = True 125 + return f"link:{quote(cast(str, token.attrs['href']), safe='/:')}[" 126 + def link_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 127 + env: MutableMapping[str, Any]) -> str: 128 + return "]" 129 + def list_item_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 130 + env: MutableMapping[str, Any]) -> str: 131 + self._enter_block(True) 132 + # allow the next token to be a block or an inline. 133 + return f'\n{self._list_stack[-1].head} {{empty}}' 134 + def list_item_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 135 + env: MutableMapping[str, Any]) -> str: 136 + self._leave_block() 137 + return "\n" 138 + def bullet_list_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 139 + env: MutableMapping[str, Any]) -> str: 140 + return self._list_open(token, '*') 141 + def bullet_list_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 142 + env: MutableMapping[str, Any]) -> str: 143 + return self._list_close() 144 + def em_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 145 + env: MutableMapping[str, Any]) -> str: 146 + return "__" 147 + def em_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 148 + env: MutableMapping[str, Any]) -> str: 149 + return "__" 150 + def strong_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 151 + env: MutableMapping[str, Any]) -> str: 152 + return "**" 153 + def strong_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 154 + env: MutableMapping[str, Any]) -> str: 155 + return "**" 156 + def fence(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 157 + env: MutableMapping[str, Any]) -> str: 158 + attrs = f"[source,{token.info}]\n" if token.info else "" 159 + code = token.content 160 + if code.endswith('\n'): 161 + code = code[:-1] 162 + return f"{self._break(True)}{attrs}----\n{code}\n----" 163 + def blockquote_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 164 + env: MutableMapping[str, Any]) -> str: 165 + pbreak = self._break(True) 166 + self._enter_block(False) 167 + return f"{pbreak}[quote]\n{self._parstack[-2].block_delim}\n" 168 + def blockquote_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 169 + env: MutableMapping[str, Any]) -> str: 170 + self._leave_block() 171 + return f"\n{self._parstack[-1].block_delim}" 172 + def note_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 173 + env: MutableMapping[str, Any]) -> str: 174 + return self._admonition_open("NOTE") 175 + def note_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 176 + env: MutableMapping[str, Any]) -> str: 177 + return self._admonition_close() 178 + def caution_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 179 + env: MutableMapping[str, Any]) -> str: 180 + return self._admonition_open("CAUTION") 181 + def caution_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 182 + env: MutableMapping[str, Any]) -> str: 183 + return self._admonition_close() 184 + def important_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 185 + env: MutableMapping[str, Any]) -> str: 186 + return self._admonition_open("IMPORTANT") 187 + def important_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 188 + env: MutableMapping[str, Any]) -> str: 189 + return self._admonition_close() 190 + def tip_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 191 + env: MutableMapping[str, Any]) -> str: 192 + return self._admonition_open("TIP") 193 + def tip_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 194 + env: MutableMapping[str, Any]) -> str: 195 + return self._admonition_close() 196 + def warning_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 197 + env: MutableMapping[str, Any]) -> str: 198 + return self._admonition_open("WARNING") 199 + def warning_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 200 + env: MutableMapping[str, Any]) -> str: 201 + return self._admonition_close() 202 + def dl_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 203 + env: MutableMapping[str, Any]) -> str: 204 + return f"{self._break()}[]" 205 + def dl_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 206 + env: MutableMapping[str, Any]) -> str: 207 + return "" 208 + def dt_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 209 + env: MutableMapping[str, Any]) -> str: 210 + return self._break() 211 + def dt_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 212 + env: MutableMapping[str, Any]) -> str: 213 + self._enter_block(True) 214 + return ":: {empty}" 215 + def dd_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 216 + env: MutableMapping[str, Any]) -> str: 217 + return "" 218 + def dd_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 219 + env: MutableMapping[str, Any]) -> str: 220 + self._leave_block() 221 + return "\n" 222 + def myst_role(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 223 + env: MutableMapping[str, Any]) -> str: 224 + self._parstack[-1].continuing = True 225 + content = asciidoc_escape(token.content) 226 + if token.meta['name'] == 'manpage' and (url := self._manpage_urls.get(token.content)): 227 + return f"link:{quote(url, safe='/:')}[{content}]" 228 + return f"[.{token.meta['name']}]``{asciidoc_escape(token.content)}``" 229 + def inline_anchor(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 230 + env: MutableMapping[str, Any]) -> str: 231 + self._parstack[-1].continuing = True 232 + return f"[[{token.attrs['id']}]]" 233 + def attr_span_begin(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 234 + env: MutableMapping[str, Any]) -> str: 235 + self._parstack[-1].continuing = True 236 + (id_part, class_part) = ("", "") 237 + if id := token.attrs.get('id'): 238 + id_part = f"[[{id}]]" 239 + if s := token.attrs.get('class'): 240 + if s == 'keycap': 241 + class_part = "kbd:[" 242 + self._attrspans.append("]") 243 + else: 244 + return super().attr_span_begin(token, tokens, i, options, env) 245 + else: 246 + self._attrspans.append("") 247 + return id_part + class_part 248 + def attr_span_end(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 249 + env: MutableMapping[str, Any]) -> str: 250 + return self._attrspans.pop() 251 + def heading_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 252 + env: MutableMapping[str, Any]) -> str: 253 + return token.markup.replace("#", "=") + " " 254 + def heading_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 255 + env: MutableMapping[str, Any]) -> str: 256 + return "\n" 257 + def ordered_list_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 258 + env: MutableMapping[str, Any]) -> str: 259 + return self._list_open(token, '.') 260 + def ordered_list_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 261 + env: MutableMapping[str, Any]) -> str: 262 + return self._list_close()
+231
pkgs/tools/nix/nixos-render-docs/src/nixos_render_docs/commonmark.py
··· 1 + from collections.abc import Mapping, MutableMapping, Sequence 2 + from dataclasses import dataclass 3 + from typing import Any, cast, Optional 4 + 5 + from .md import md_escape, md_make_code, Renderer 6 + 7 + import markdown_it 8 + from markdown_it.token import Token 9 + from markdown_it.utils import OptionsDict 10 + 11 + @dataclass(kw_only=True) 12 + class List: 13 + next_idx: Optional[int] = None 14 + compact: bool 15 + first_item_seen: bool = False 16 + 17 + @dataclass 18 + class Par: 19 + indent: str 20 + continuing: bool = False 21 + 22 + class CommonMarkRenderer(Renderer): 23 + __output__ = "commonmark" 24 + 25 + _parstack: list[Par] 26 + _link_stack: list[str] 27 + _list_stack: list[List] 28 + 29 + def __init__(self, manpage_urls: Mapping[str, str], parser: Optional[markdown_it.MarkdownIt] = None): 30 + super().__init__(manpage_urls, parser) 31 + self._parstack = [ Par("") ] 32 + self._link_stack = [] 33 + self._list_stack = [] 34 + 35 + def _enter_block(self, extra_indent: str) -> None: 36 + self._parstack.append(Par(self._parstack[-1].indent + extra_indent)) 37 + def _leave_block(self) -> None: 38 + self._parstack.pop() 39 + self._parstack[-1].continuing = True 40 + def _break(self) -> str: 41 + self._parstack[-1].continuing = True 42 + return f"\n{self._parstack[-1].indent}" 43 + def _maybe_parbreak(self) -> str: 44 + result = f"\n{self._parstack[-1].indent}" * 2 if self._parstack[-1].continuing else "" 45 + self._parstack[-1].continuing = True 46 + return result 47 + 48 + def _admonition_open(self, kind: str) -> str: 49 + pbreak = self._maybe_parbreak() 50 + self._enter_block("") 51 + return f"{pbreak}**{kind}:** " 52 + def _admonition_close(self) -> str: 53 + self._leave_block() 54 + return "" 55 + 56 + def _indent_raw(self, s: str) -> str: 57 + if '\n' not in s: 58 + return s 59 + return f"\n{self._parstack[-1].indent}".join(s.splitlines()) 60 + 61 + def text(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 62 + env: MutableMapping[str, Any]) -> str: 63 + self._parstack[-1].continuing = True 64 + return self._indent_raw(md_escape(token.content)) 65 + def paragraph_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 66 + env: MutableMapping[str, Any]) -> str: 67 + return self._maybe_parbreak() 68 + def paragraph_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 69 + env: MutableMapping[str, Any]) -> str: 70 + return "" 71 + def hardbreak(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 72 + env: MutableMapping[str, Any]) -> str: 73 + return f" {self._break()}" 74 + def softbreak(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 75 + env: MutableMapping[str, Any]) -> str: 76 + return self._break() 77 + def code_inline(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 78 + env: MutableMapping[str, Any]) -> str: 79 + self._parstack[-1].continuing = True 80 + return md_make_code(token.content) 81 + def code_block(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 82 + env: MutableMapping[str, Any]) -> str: 83 + return self.fence(token, tokens, i, options, env) 84 + def link_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 85 + env: MutableMapping[str, Any]) -> str: 86 + self._parstack[-1].continuing = True 87 + self._link_stack.append(cast(str, token.attrs['href'])) 88 + return "[" 89 + def link_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 90 + env: MutableMapping[str, Any]) -> str: 91 + return f"]({md_escape(self._link_stack.pop())})" 92 + def list_item_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 93 + env: MutableMapping[str, Any]) -> str: 94 + lst = self._list_stack[-1] 95 + lbreak = "" if not lst.first_item_seen else self._break() * (1 if lst.compact else 2) 96 + lst.first_item_seen = True 97 + head = " -" 98 + if lst.next_idx is not None: 99 + head = f" {lst.next_idx}." 100 + lst.next_idx += 1 101 + self._enter_block(" " * (len(head) + 1)) 102 + return f'{lbreak}{head} ' 103 + def list_item_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 104 + env: MutableMapping[str, Any]) -> str: 105 + self._leave_block() 106 + return "" 107 + def bullet_list_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 108 + env: MutableMapping[str, Any]) -> str: 109 + self._list_stack.append(List(compact=bool(token.meta['compact']))) 110 + return self._maybe_parbreak() 111 + def bullet_list_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 112 + env: MutableMapping[str, Any]) -> str: 113 + self._list_stack.pop() 114 + return "" 115 + def em_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 116 + env: MutableMapping[str, Any]) -> str: 117 + return "*" 118 + def em_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 119 + env: MutableMapping[str, Any]) -> str: 120 + return "*" 121 + def strong_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 122 + env: MutableMapping[str, Any]) -> str: 123 + return "**" 124 + def strong_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 125 + env: MutableMapping[str, Any]) -> str: 126 + return "**" 127 + def fence(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 128 + env: MutableMapping[str, Any]) -> str: 129 + code = token.content 130 + if code.endswith('\n'): 131 + code = code[:-1] 132 + pbreak = self._maybe_parbreak() 133 + return pbreak + self._indent_raw(md_make_code(code, info=token.info, multiline=True)) 134 + def blockquote_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 135 + env: MutableMapping[str, Any]) -> str: 136 + pbreak = self._maybe_parbreak() 137 + self._enter_block("> ") 138 + return pbreak + "> " 139 + def blockquote_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 140 + env: MutableMapping[str, Any]) -> str: 141 + self._leave_block() 142 + return "" 143 + def note_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 144 + env: MutableMapping[str, Any]) -> str: 145 + return self._admonition_open("Note") 146 + def note_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 147 + env: MutableMapping[str, Any]) -> str: 148 + return self._admonition_close() 149 + def caution_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 150 + env: MutableMapping[str, Any]) -> str: 151 + return self._admonition_open("Caution") 152 + def caution_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 153 + env: MutableMapping[str, Any]) -> str: 154 + return self._admonition_close() 155 + def important_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 156 + env: MutableMapping[str, Any]) -> str: 157 + return self._admonition_open("Important") 158 + def important_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 159 + env: MutableMapping[str, Any]) -> str: 160 + return self._admonition_close() 161 + def tip_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 162 + env: MutableMapping[str, Any]) -> str: 163 + return self._admonition_open("Tip") 164 + def tip_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 165 + env: MutableMapping[str, Any]) -> str: 166 + return self._admonition_close() 167 + def warning_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 168 + env: MutableMapping[str, Any]) -> str: 169 + return self._admonition_open("Warning") 170 + def warning_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 171 + env: MutableMapping[str, Any]) -> str: 172 + return self._admonition_close() 173 + def dl_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 174 + env: MutableMapping[str, Any]) -> str: 175 + self._list_stack.append(List(compact=False)) 176 + return "" 177 + def dl_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 178 + env: MutableMapping[str, Any]) -> str: 179 + self._list_stack.pop() 180 + return "" 181 + def dt_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 182 + env: MutableMapping[str, Any]) -> str: 183 + pbreak = self._maybe_parbreak() 184 + self._enter_block(" ") 185 + # add an opening zero-width non-joiner to separate *our* emphasis from possible 186 + # emphasis in the provided term 187 + return f'{pbreak} - *{chr(0x200C)}' 188 + def dt_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 189 + env: MutableMapping[str, Any]) -> str: 190 + return f"{chr(0x200C)}*" 191 + def dd_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 192 + env: MutableMapping[str, Any]) -> str: 193 + self._parstack[-1].continuing = True 194 + return "" 195 + def dd_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 196 + env: MutableMapping[str, Any]) -> str: 197 + self._leave_block() 198 + return "" 199 + def myst_role(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 200 + env: MutableMapping[str, Any]) -> str: 201 + self._parstack[-1].continuing = True 202 + content = md_make_code(token.content) 203 + if token.meta['name'] == 'manpage' and (url := self._manpage_urls.get(token.content)): 204 + return f"[{content}]({url})" 205 + return content # no roles in regular commonmark 206 + def attr_span_begin(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 207 + env: MutableMapping[str, Any]) -> str: 208 + # there's no way we can emit attrspans correctly in all cases. we could use inline 209 + # html for ids, but that would not round-trip. same holds for classes. since this 210 + # renderer is only used for approximate options export and all of these things are 211 + # not allowed in options we can ignore them for now. 212 + return "" 213 + def attr_span_end(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 214 + env: MutableMapping[str, Any]) -> str: 215 + return "" 216 + def heading_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 217 + env: MutableMapping[str, Any]) -> str: 218 + return token.markup + " " 219 + def heading_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 220 + env: MutableMapping[str, Any]) -> str: 221 + return "\n" 222 + def ordered_list_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 223 + env: MutableMapping[str, Any]) -> str: 224 + self._list_stack.append( 225 + List(next_idx = cast(int, token.attrs.get('start', 1)), 226 + compact = bool(token.meta['compact']))) 227 + return self._maybe_parbreak() 228 + def ordered_list_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 229 + env: MutableMapping[str, Any]) -> str: 230 + self._list_stack.pop() 231 + return ""
-1
pkgs/tools/nix/nixos-render-docs/src/nixos_render_docs/docbook.py
··· 1 1 from collections.abc import Mapping, MutableMapping, Sequence 2 - from frozendict import frozendict # type: ignore[attr-defined] 3 2 from typing import Any, cast, Optional, NamedTuple 4 3 5 4 import markdown_it
+14 -2
pkgs/tools/nix/nixos-render-docs/src/nixos_render_docs/md.py
··· 1 1 from abc import ABC 2 2 from collections.abc import Mapping, MutableMapping, Sequence 3 - from frozendict import frozendict # type: ignore[attr-defined] 4 3 from typing import Any, Callable, cast, get_args, Iterable, Literal, NoReturn, Optional 5 4 6 5 import dataclasses ··· 27 26 } 28 27 def md_escape(s: str) -> str: 29 28 return s.translate(_md_escape_table) 29 + 30 + def md_make_code(code: str, info: str = "", multiline: Optional[bool] = None) -> str: 31 + # for multi-line code blocks we only have to count ` runs at the beginning 32 + # of a line, but this is much easier. 33 + multiline = multiline or info != "" or '\n' in code 34 + longest, current = (0, 0) 35 + for c in code: 36 + current = current + 1 if c == '`' else 0 37 + longest = max(current, longest) 38 + # inline literals need a space to separate ticks from content, code blocks 39 + # need newlines. inline literals need one extra tick, code blocks need three. 40 + ticks, sep = ('`' * (longest + (3 if multiline else 1)), '\n' if multiline else ' ') 41 + return f"{ticks}{info}{sep}{code}{sep}{ticks}" 30 42 31 43 AttrBlockKind = Literal['admonition', 'example'] 32 44 ··· 458 470 __renderer__: Callable[[Mapping[str, str], markdown_it.MarkdownIt], Renderer] 459 471 460 472 def __init__(self, manpage_urls: Mapping[str, str]): 461 - self._manpage_urls = frozendict(manpage_urls) 473 + self._manpage_urls = manpage_urls 462 474 463 475 self._md = markdown_it.MarkdownIt( 464 476 "commonmark",
+165 -16
pkgs/tools/nix/nixos-render-docs/src/nixos_render_docs/options.py
··· 8 8 from markdown_it.utils import OptionsDict 9 9 from markdown_it.token import Token 10 10 from typing import Any, Optional 11 + from urllib.parse import quote 11 12 from xml.sax.saxutils import escape, quoteattr 12 13 13 14 import markdown_it 14 15 15 16 from . import parallel 17 + from .asciidoc import AsciiDocRenderer, asciidoc_escape 18 + from .commonmark import CommonMarkRenderer 16 19 from .docbook import DocBookRenderer, make_xml_id 17 20 from .manpage import ManpageRenderer, man_escape 18 - from .md import Converter, md_escape 21 + from .md import Converter, md_escape, md_make_code 19 22 from .types import OptionLoc, Option, RenderedOption 20 23 21 24 def option_is(option: Option, key: str, typ: str) -> Optional[dict[str, str]]: ··· 95 98 if lit := option_is(option, key, 'literalMD'): 96 99 return [ self._render(f"*{key.capitalize()}:*\n{lit['text']}") ] 97 100 elif lit := option_is(option, key, 'literalExpression'): 98 - code = lit['text'] 99 - # for multi-line code blocks we only have to count ` runs at the beginning 100 - # of a line, but this is much easier. 101 - multiline = '\n' in code 102 - longest, current = (0, 0) 103 - for c in code: 104 - current = current + 1 if c == '`' else 0 105 - longest = max(current, longest) 106 - # inline literals need a space to separate ticks from content, code blocks 107 - # need newlines. inline literals need one extra tick, code blocks need three. 108 - ticks, sep = ('`' * (longest + (3 if multiline else 1)), '\n' if multiline else ' ') 109 - code = f"{ticks}{sep}{code}{sep}{ticks}" 101 + code = md_make_code(lit['text']) 110 102 return [ self._render(f"*{key.capitalize()}:*\n{code}") ] 111 103 elif key in option: 112 104 raise Exception(f"{key} has unrecognized type", option[key]) ··· 182 174 @abstractmethod 183 175 def finalize(self) -> str: raise NotImplementedError() 184 176 185 - class OptionsDocBookRenderer(DocBookRenderer): 177 + class OptionDocsRestrictions: 186 178 def heading_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 187 179 env: MutableMapping[str, Any]) -> str: 188 180 raise RuntimeError("md token not supported in options doc", token) 189 181 def heading_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 190 182 env: MutableMapping[str, Any]) -> str: 191 183 raise RuntimeError("md token not supported in options doc", token) 184 + def attr_span_begin(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 185 + env: MutableMapping[str, Any]) -> str: 186 + raise RuntimeError("md token not supported in options doc", token) 187 + def example_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 188 + env: MutableMapping[str, Any]) -> str: 189 + raise RuntimeError("md token not supported in options doc", token) 192 190 191 + class OptionsDocBookRenderer(OptionDocsRestrictions, DocBookRenderer): 193 192 # TODO keep optionsDocBook diff small. remove soon if rendering is still good. 194 193 def ordered_list_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 195 194 env: MutableMapping[str, Any]) -> str: ··· 204 203 __renderer__ = OptionsDocBookRenderer 205 204 __option_block_separator__ = "" 206 205 207 - def __init__(self, manpage_urls: dict[str, str], 206 + def __init__(self, manpage_urls: Mapping[str, str], 208 207 revision: str, 209 208 markdown_by_default: bool, 210 209 document_type: str, ··· 298 297 299 298 return "\n".join(result) 300 299 301 - class OptionsManpageRenderer(ManpageRenderer): 300 + class OptionsManpageRenderer(OptionDocsRestrictions, ManpageRenderer): 302 301 pass 303 302 304 303 class ManpageConverter(BaseConverter): ··· 426 425 427 426 return "\n".join(result) 428 427 428 + class OptionsCommonMarkRenderer(OptionDocsRestrictions, CommonMarkRenderer): 429 + pass 430 + 431 + class CommonMarkConverter(BaseConverter): 432 + __renderer__ = OptionsCommonMarkRenderer 433 + __option_block_separator__ = "" 434 + 435 + def _parallel_render_prepare(self) -> Any: 436 + return (self._manpage_urls, self._revision, self._markdown_by_default) 437 + @classmethod 438 + def _parallel_render_init_worker(cls, a: Any) -> CommonMarkConverter: 439 + return cls(*a) 440 + 441 + def _render_code(self, option: dict[str, Any], key: str) -> list[str]: 442 + # NOTE this duplicates the old direct-paste behavior, even if it is somewhat 443 + # incorrect, since users rely on it. 444 + if lit := option_is(option, key, 'literalDocBook'): 445 + return [ f"*{key.capitalize()}:* {lit['text']}" ] 446 + else: 447 + return super()._render_code(option, key) 448 + 449 + def _render_description(self, desc: str | dict[str, Any]) -> list[str]: 450 + # NOTE this duplicates the old direct-paste behavior, even if it is somewhat 451 + # incorrect, since users rely on it. 452 + if isinstance(desc, str) and not self._markdown_by_default: 453 + return [ desc ] 454 + else: 455 + return super()._render_description(desc) 456 + 457 + def _related_packages_header(self) -> list[str]: 458 + return [ "*Related packages:*" ] 459 + 460 + def _decl_def_header(self, header: str) -> list[str]: 461 + return [ f"*{header}:*" ] 462 + 463 + def _decl_def_entry(self, href: Optional[str], name: str) -> list[str]: 464 + if href is not None: 465 + return [ f" - [{md_escape(name)}]({href})" ] 466 + return [ f" - {md_escape(name)}" ] 467 + 468 + def _decl_def_footer(self) -> list[str]: 469 + return [] 470 + 471 + def finalize(self) -> str: 472 + result = [] 473 + 474 + for (name, opt) in self._sorted_options(): 475 + result.append(f"## {md_escape(name)}\n") 476 + result += opt.lines 477 + result.append("\n\n") 478 + 479 + return "\n".join(result) 480 + 481 + class OptionsAsciiDocRenderer(OptionDocsRestrictions, AsciiDocRenderer): 482 + pass 483 + 484 + class AsciiDocConverter(BaseConverter): 485 + __renderer__ = AsciiDocRenderer 486 + __option_block_separator__ = "" 487 + 488 + def _parallel_render_prepare(self) -> Any: 489 + return (self._manpage_urls, self._revision, self._markdown_by_default) 490 + @classmethod 491 + def _parallel_render_init_worker(cls, a: Any) -> AsciiDocConverter: 492 + return cls(*a) 493 + 494 + def _render_code(self, option: dict[str, Any], key: str) -> list[str]: 495 + # NOTE this duplicates the old direct-paste behavior, even if it is somewhat 496 + # incorrect, since users rely on it. 497 + if lit := option_is(option, key, 'literalDocBook'): 498 + return [ f"*{key.capitalize()}:* {lit['text']}" ] 499 + else: 500 + return super()._render_code(option, key) 501 + 502 + def _render_description(self, desc: str | dict[str, Any]) -> list[str]: 503 + # NOTE this duplicates the old direct-paste behavior, even if it is somewhat 504 + # incorrect, since users rely on it. 505 + if isinstance(desc, str) and not self._markdown_by_default: 506 + return [ desc ] 507 + else: 508 + return super()._render_description(desc) 509 + 510 + def _related_packages_header(self) -> list[str]: 511 + return [ "__Related packages:__" ] 512 + 513 + def _decl_def_header(self, header: str) -> list[str]: 514 + return [ f"__{header}:__\n" ] 515 + 516 + def _decl_def_entry(self, href: Optional[str], name: str) -> list[str]: 517 + if href is not None: 518 + return [ f"* link:{quote(href, safe='/:')}[{asciidoc_escape(name)}]" ] 519 + return [ f"* {asciidoc_escape(name)}" ] 520 + 521 + def _decl_def_footer(self) -> list[str]: 522 + return [] 523 + 524 + def finalize(self) -> str: 525 + result = [] 526 + 527 + for (name, opt) in self._sorted_options(): 528 + result.append(f"== {asciidoc_escape(name)}\n") 529 + result += opt.lines 530 + result.append("\n\n") 531 + 532 + return "\n".join(result) 533 + 429 534 def _build_cli_db(p: argparse.ArgumentParser) -> None: 430 535 p.add_argument('--manpage-urls', required=True) 431 536 p.add_argument('--revision', required=True) ··· 441 546 p.add_argument("infile") 442 547 p.add_argument("outfile") 443 548 549 + def _build_cli_commonmark(p: argparse.ArgumentParser) -> None: 550 + p.add_argument('--manpage-urls', required=True) 551 + p.add_argument('--revision', required=True) 552 + p.add_argument('--markdown-by-default', default=False, action='store_true') 553 + p.add_argument("infile") 554 + p.add_argument("outfile") 555 + 556 + def _build_cli_asciidoc(p: argparse.ArgumentParser) -> None: 557 + p.add_argument('--manpage-urls', required=True) 558 + p.add_argument('--revision', required=True) 559 + p.add_argument('--markdown-by-default', default=False, action='store_true') 560 + p.add_argument("infile") 561 + p.add_argument("outfile") 562 + 444 563 def _run_cli_db(args: argparse.Namespace) -> None: 445 564 with open(args.manpage_urls, 'r') as manpage_urls: 446 565 md = DocBookConverter( ··· 468 587 with open(args.outfile, 'w') as f: 469 588 f.write(md.finalize()) 470 589 590 + def _run_cli_commonmark(args: argparse.Namespace) -> None: 591 + with open(args.manpage_urls, 'r') as manpage_urls: 592 + md = CommonMarkConverter( 593 + json.load(manpage_urls), 594 + revision = args.revision, 595 + markdown_by_default = args.markdown_by_default) 596 + 597 + with open(args.infile, 'r') as f: 598 + md.add_options(json.load(f)) 599 + with open(args.outfile, 'w') as f: 600 + f.write(md.finalize()) 601 + 602 + def _run_cli_asciidoc(args: argparse.Namespace) -> None: 603 + with open(args.manpage_urls, 'r') as manpage_urls: 604 + md = AsciiDocConverter( 605 + json.load(manpage_urls), 606 + revision = args.revision, 607 + markdown_by_default = args.markdown_by_default) 608 + 609 + with open(args.infile, 'r') as f: 610 + md.add_options(json.load(f)) 611 + with open(args.outfile, 'w') as f: 612 + f.write(md.finalize()) 613 + 471 614 def build_cli(p: argparse.ArgumentParser) -> None: 472 615 formats = p.add_subparsers(dest='format', required=True) 473 616 _build_cli_db(formats.add_parser('docbook')) 474 617 _build_cli_manpage(formats.add_parser('manpage')) 618 + _build_cli_commonmark(formats.add_parser('commonmark')) 619 + _build_cli_asciidoc(formats.add_parser('asciidoc')) 475 620 476 621 def run_cli(args: argparse.Namespace) -> None: 477 622 if args.format == 'docbook': 478 623 _run_cli_db(args) 479 624 elif args.format == 'manpage': 480 625 _run_cli_manpage(args) 626 + elif args.format == 'commonmark': 627 + _run_cli_commonmark(args) 628 + elif args.format == 'asciidoc': 629 + _run_cli_asciidoc(args) 481 630 else: 482 631 raise RuntimeError('format not hooked up', args)
+143
pkgs/tools/nix/nixos-render-docs/src/tests/test_asciidoc.py
··· 1 + import nixos_render_docs 2 + 3 + from sample_md import sample1 4 + 5 + class Converter(nixos_render_docs.md.Converter): 6 + __renderer__ = nixos_render_docs.asciidoc.AsciiDocRenderer 7 + 8 + def test_lists() -> None: 9 + c = Converter({}) 10 + # attaching to the nth ancestor list requires n newlines before the + 11 + assert c._render("""\ 12 + - a 13 + 14 + b 15 + - c 16 + - d 17 + - e 18 + 19 + 1 20 + 21 + f 22 + """) == """\ 23 + [] 24 + * {empty}a 25 + + 26 + b 27 + 28 + * {empty}c 29 + + 30 + [options="compact"] 31 + ** {empty}d 32 + + 33 + [] 34 + ** {empty}e 35 + + 36 + 1 37 + 38 + 39 + + 40 + f 41 + """ 42 + 43 + def test_full() -> None: 44 + c = Converter({ 'man(1)': 'http://example.org' }) 45 + assert c._render(sample1) == """\ 46 + [WARNING] 47 + ==== 48 + foo 49 + 50 + [NOTE] 51 + ===== 52 + nested 53 + ===== 54 + 55 + ==== 56 + 57 + 58 + link:link[ multiline ] 59 + 60 + link:http://example.org[man(1)] reference 61 + 62 + [[b]]some [[a]]nested anchors 63 + 64 + __emph__ **strong** __nesting emph **and strong** and ``code``__ 65 + 66 + [] 67 + * {empty}wide bullet 68 + 69 + * {empty}list 70 + 71 + 72 + [] 73 + . {empty}wide ordered 74 + 75 + . {empty}list 76 + 77 + 78 + [options="compact"] 79 + * {empty}narrow bullet 80 + 81 + * {empty}list 82 + 83 + 84 + [options="compact"] 85 + . {empty}narrow ordered 86 + 87 + . {empty}list 88 + 89 + 90 + [quote] 91 + ==== 92 + quotes 93 + 94 + [quote] 95 + ===== 96 + with __nesting__ 97 + 98 + ---- 99 + nested code block 100 + ---- 101 + ===== 102 + 103 + [options="compact"] 104 + * {empty}and lists 105 + 106 + * {empty} 107 + + 108 + ---- 109 + containing code 110 + ---- 111 + 112 + 113 + and more quote 114 + ==== 115 + 116 + [start=100,options="compact"] 117 + . {empty}list starting at 100 118 + 119 + . {empty}goes on 120 + 121 + 122 + [] 123 + 124 + deflist:: {empty} 125 + + 126 + [quote] 127 + ===== 128 + with a quote and stuff 129 + ===== 130 + + 131 + ---- 132 + code block 133 + ---- 134 + + 135 + ---- 136 + fenced block 137 + ---- 138 + + 139 + text 140 + 141 + 142 + more stuff in same deflist:: {empty}foo 143 + """
+92
pkgs/tools/nix/nixos-render-docs/src/tests/test_commonmark.py
··· 1 + import nixos_render_docs 2 + 3 + from sample_md import sample1 4 + 5 + from typing import Mapping, Optional 6 + 7 + import markdown_it 8 + 9 + class Converter(nixos_render_docs.md.Converter): 10 + __renderer__ = nixos_render_docs.commonmark.CommonMarkRenderer 11 + 12 + # NOTE: in these tests we represent trailing spaces by ` ` and replace them with real space later, 13 + # since a number of editors will strip trailing whitespace on save and that would break the tests. 14 + 15 + def test_indented_fence() -> None: 16 + c = Converter({}) 17 + s = """\ 18 + > - ```foo 19 + > thing 20 + >       21 + > rest 22 + > ```\ 23 + """.replace(' ', ' ') 24 + assert c._render(s) == s 25 + 26 + def test_full() -> None: 27 + c = Converter({ 'man(1)': 'http://example.org' }) 28 + assert c._render(sample1) == f"""\ 29 + **Warning:** foo 30 + 31 + **Note:** nested 32 + 33 + [ 34 + multiline 35 + ](link) 36 + 37 + [` man(1) `](http://example.org) reference 38 + 39 + some nested anchors 40 + 41 + *emph* **strong** *nesting emph **and strong** and ` code `* 42 + 43 + - wide bullet 44 + 45 + - list 46 + 47 + 1. wide ordered 48 + 49 + 2. list 50 + 51 + - narrow bullet 52 + - list 53 + 54 + 1. narrow ordered 55 + 2. list 56 + 57 + > quotes 58 + 59 + > > with *nesting* 60 + > >  61 + > > ``` 62 + > > nested code block 63 + > > ``` 64 + 65 + > - and lists 66 + > - ``` 67 + > containing code 68 + > ``` 69 + 70 + > and more quote 71 + 72 + 100. list starting at 100 73 + 101. goes on 74 + 75 + - *‌deflist‌* 76 +     77 + > with a quote 78 + > and stuff 79 +     80 + ``` 81 + code block 82 + ``` 83 +     84 + ``` 85 + fenced block 86 + ``` 87 +     88 + text 89 + 90 + - *‌more stuff in same deflist‌* 91 +     92 + foo""".replace(' ', ' ')
+3 -3
pkgs/tools/text/txt2tags/default.nix
··· 6 6 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "txt2tags"; 9 - version = "unstable-2022-10-17"; 9 + version = "3.8"; 10 10 11 11 format = "setuptools"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "txt2tags"; 15 15 repo = "txt2tags"; 16 - rev = "114ab24ea9111060df136bfc1c8b1a35a59fe0f2"; 17 - hash = "sha256-h2OtlUMzEHKyJ9AIO1Uo9Lx7jMYZNMtC6U+usBu7gNU="; 16 + rev = "refs/tags/${version}"; 17 + hash = "sha256-urLsA2oeQM0WcKNDgaxKJOgBPGohJT6Zq6y6bEYMTxk="; 18 18 }; 19 19 20 20 postPatch = ''
+1 -1
pkgs/tools/typesetting/tex/texlive/combine.nix
··· 15 15 ]; 16 16 }; 17 17 pkgList = rec { 18 - all = lib.filter pkgFilter (combinePkgs pkgSet); 18 + all = lib.filter pkgFilter (combinePkgs (lib.attrValues pkgSet)); 19 19 splitBin = builtins.partition (p: p.tlType == "bin") all; 20 20 bin = mkUniqueOutPaths splitBin.right 21 21 ++ lib.optional
+15 -12
pkgs/tools/typesetting/tex/texlive/default.nix
··· 30 30 31 31 # the set of TeX Live packages, collections, and schemes; using upstream naming 32 32 tl = let 33 - orig = import ./pkgs.nix tl; 33 + orig = import ./pkgs.nix; 34 34 removeSelfDep = lib.mapAttrs 35 - (n: p: if p ? deps then p // { deps = lib.filterAttrs (dn: _: n != dn) p.deps; } 35 + (n: p: if p ? deps then p // { deps = lib.filter (dn: n != dn) p.deps; } 36 36 else p); 37 37 clean = removeSelfDep (orig // { 38 38 # overrides of texlive.tlpdb ··· 42 42 }; 43 43 44 44 xdvi = orig.xdvi // { # it seems to need it to transform fonts 45 - deps = (orig.xdvi.deps or {}) // { inherit (tl) metafont; }; 45 + deps = (orig.xdvi.deps or []) ++ [ "metafont" ]; 46 46 }; 47 47 48 48 # remove dependency-heavy packages from the basic collections 49 49 collection-basic = orig.collection-basic // { 50 - deps = removeAttrs orig.collection-basic.deps [ "metafont" "xdvi" ]; 50 + deps = lib.filter (n: n != "metafont" && n != "xdvi") orig.collection-basic.deps; 51 51 }; 52 52 # add them elsewhere so that collections cover all packages 53 53 collection-metapost = orig.collection-metapost // { 54 - deps = orig.collection-metapost.deps // { inherit (tl) metafont; }; 54 + deps = orig.collection-metapost.deps ++ [ "metafont" ]; 55 55 }; 56 56 collection-plaingeneric = orig.collection-plaingeneric // { 57 - deps = orig.collection-plaingeneric.deps // { inherit (tl) xdvi; }; 57 + deps = orig.collection-plaingeneric.deps ++ [ "xdvi" ]; 58 58 }; 59 59 60 60 # override cyclic dependency until #167226 is fixed 61 61 xecjk = orig.xecjk // { 62 - deps = removeAttrs orig.xecjk.deps [ "ctex" ]; 62 + deps = lib.remove "ctex" orig.xecjk.deps; 63 63 }; 64 64 65 65 texdoc = orig.texdoc // { ··· 82 82 }; 83 83 }); # overrides 84 84 85 - # tl = 86 - in lib.mapAttrs flatDeps clean; 85 + linkDeps = lib.mapAttrs (_: attrs: attrs // lib.optionalAttrs (attrs ? deps) { 86 + deps = builtins.map (n: tl.${n}) attrs.deps; 87 + }); # transform [ "dep1" "dep2" ... ] into [ tl."dep1" ... ] 88 + 89 + in lib.mapAttrs flatDeps (linkDeps clean); 87 90 # TODO: texlive.infra for web2c config? 88 91 89 92 ··· 113 116 ++ lib.optional (attrs.sha512 ? source) (mkPkgV "source") 114 117 ++ lib.optional (bin ? ${pname}) 115 118 ( bin.${pname} // { inherit pname; tlType = "bin"; } ) 116 - ++ combinePkgs (attrs.deps or {}); 119 + ++ combinePkgs (attrs.deps or []); 117 120 }; 118 121 119 122 # for daily snapshots ··· 183 186 ); 184 187 185 188 # combine a set of TL packages into a single TL meta-package 186 - combinePkgs = pkgSet: lib.concatLists # uniqueness is handled in `combine` 187 - (lib.mapAttrsToList (_n: a: a.pkgs) pkgSet); 189 + combinePkgs = pkgList: lib.concatLists # uniqueness is handled in `combine` 190 + (builtins.map (a: a.pkgs) pkgList); 188 191 189 192 in 190 193 tl // {
+6200 -5578
pkgs/tools/typesetting/tex/texlive/pkgs.nix
··· 1 - tl: { # no indentation 1 + { # no indentation 2 2 "12many" = { 3 3 revision = 15878; 4 4 stripPrefix = 0; ··· 226 226 "acro" = { 227 227 revision = 62925; 228 228 stripPrefix = 0; 229 - deps."etoolbox" = tl."etoolbox"; 230 - deps."l3kernel" = tl."l3kernel"; 231 - deps."l3packages" = tl."l3packages"; 229 + deps = [ 230 + "etoolbox" 231 + "l3kernel" 232 + "l3packages" 233 + ]; 232 234 sha512.run = "25c0dc9cda98db7ead55613aea92946cd90e7edfa1213d59966eb8fdd93ae1bc7b532f7849c43fb8fa77291b23dc5d8dc80cba4584c991a7b38e55564bd59ea3"; 233 235 sha512.doc = "c827f8dc5fa88b67e84e48d0cfb6d47aa5bfa98fbceed86e6262d98111a956d425d0a2f3cf54b18cba7593dfac17accc2cbe71cc04f1ea2157c511d670c41daa"; 234 236 hasRunfiles = true; ··· 356 358 "adjustbox" = { 357 359 revision = 64967; 358 360 stripPrefix = 0; 359 - deps."collectbox" = tl."collectbox"; 360 - deps."graphics" = tl."graphics"; 361 - deps."xkeyval" = tl."xkeyval"; 361 + deps = [ 362 + "collectbox" 363 + "graphics" 364 + "xkeyval" 365 + ]; 362 366 sha512.run = "ac12b052b2112d5bcd942888ab69fa20aca6e2b392bf868959b8573ee8611d93042de3f90eace1519a89d0da64d2dcb3046e26fb0f86f46ea3e673e2a2aee2c8"; 363 367 sha512.doc = "d48b405a472df491b3ac6db23b126a70acda26e4dc2baf8e60569f110af2c4c740708c84fad9b70f689022e8747013198c98ea0bb3c6798f1dd8065a431d1ba5"; 364 368 sha512.source = "08da88fe2a344716e7184ac2cadf564a90def84c03af8270a2f5e906ae720a7794dcb2707af5e41ab41406b01021029f4272c3e2844e9e36cd913ab56f049ba3"; ··· 514 518 }; 515 519 "aleph" = { 516 520 revision = 62387; 517 - deps."cm" = tl."cm"; 518 - deps."hyphen-base" = tl."hyphen-base"; 519 - deps."knuth-lib" = tl."knuth-lib"; 520 - deps."lambda" = tl."lambda"; 521 - deps."latex" = tl."latex"; 522 - deps."plain" = tl."plain"; 521 + deps = [ 522 + "cm" 523 + "hyphen-base" 524 + "knuth-lib" 525 + "lambda" 526 + "latex" 527 + "plain" 528 + ]; 523 529 hasFormats = true; 524 530 sha512.run = "222d0c7045ddfdde5f0ca0ebe20a029c32fd0d4f35326c5ead6bf4ebbcadc86a2a2ff609bca3a6c3a04a09828c50c885f49ef9da0e6e548c18c2633400865c7f"; 525 531 sha512.doc = "77d2daaacfa99d7f4ed5b70706751936bed5ae00ac67490e428d900b5fee3d78797d2324039743cbf0cb06a3a03dba17643d67d9057d020a95a536c860d5e78e"; ··· 802 808 }; 803 809 "amstex" = { 804 810 revision = 63708; 805 - deps."amsfonts" = tl."amsfonts"; 806 - deps."cm" = tl."cm"; 807 - deps."hyphen-base" = tl."hyphen-base"; 808 - deps."knuth-lib" = tl."knuth-lib"; 809 - deps."plain" = tl."plain"; 810 - deps."tex" = tl."tex"; 811 + deps = [ 812 + "amsfonts" 813 + "cm" 814 + "hyphen-base" 815 + "knuth-lib" 816 + "plain" 817 + "tex" 818 + ]; 811 819 hasFormats = true; 812 820 sha512.run = "d92156cc5a01152776378c8809993b2ccbc9e917125d2ecfd2a06482401008385928e279a8832f328f7a8f4f3eeb746f9725e4986e4eb2f478c20a432ea8698e"; 813 821 sha512.doc = "ba87f3c3858ad7d86de6bcc03e50c5407e83f9de4bd3b3c63e3ce612fc5f933fba0d10bbad88525bae0a1f489adbd02643687f650874409962ee5b29447e14e8"; ··· 913 921 "antomega" = { 914 922 revision = 21933; 915 923 stripPrefix = 0; 916 - deps."omega" = tl."omega"; 924 + deps = [ 925 + "omega" 926 + ]; 917 927 sha512.run = "af2cbe945ac3495e94fbf69797c05d9a7cd8c3874148c54c602a4a152c669638cf7a861949a3cc2d08aa21f378b57beffddf2d13e3afc1157c74472c348f5405"; 918 928 sha512.doc = "298b2e796736f7598a83a2d4fee53f48e78d0c8b255cc09c686371a3a05a4d36736cef96d812281cfd3fe1024af433f32e117c1c60d7559809220ed8dd5e56a9"; 919 929 sha512.source = "7ee92461e60834af1f736f387823788a44d680171d9a7acbfd71c858885e190f724b5db11074efb74faf63b471af5c34688af1be5b765de67b170dbcf123fe2f"; ··· 1615 1625 "auto-pst-pdf" = { 1616 1626 revision = 56596; 1617 1627 stripPrefix = 0; 1618 - deps."ifplatform" = tl."ifplatform"; 1619 - deps."iftex" = tl."iftex"; 1620 - deps."xkeyval" = tl."xkeyval"; 1628 + deps = [ 1629 + "ifplatform" 1630 + "iftex" 1631 + "xkeyval" 1632 + ]; 1621 1633 sha512.run = "5c1f85a0ec5aa4173181b087a1f5f8e30be6d8c21c3461999a85b42032d45292aa6f8aae4922a5e97d073fff5b2c9d114cd30f5d5bb73ef523718e891ce59473"; 1622 1634 sha512.doc = "73d6f4b2e298eedc537a46c1e69bce9e160eb28e6bc2f631596a4fd3aa658d8b51d6dfddb6748b7e629fe564a2ced5e55bcd766650616d936a4197e368b2fcd7"; 1623 1635 sha512.source = "199e9fefcb2f96f1ad9e33abeecedcff9c72f20614c48951197703ff65901763ef88f425af08021b1843f30c3ee8e3a9756095ad4b165772b829a29c6e5515f2"; ··· 1627 1639 "auto-pst-pdf-lua" = { 1628 1640 revision = 54779; 1629 1641 stripPrefix = 0; 1630 - deps."iftex" = tl."iftex"; 1642 + deps = [ 1643 + "iftex" 1644 + ]; 1631 1645 sha512.run = "053adb8525158b1c0703333bc9a20d3923468da54db4400f83c8c651820a01a9569542afb5502b56abf7034122fe5baf17ea6d2e7d7dbe53acdc7c2f9b1de68d"; 1632 1646 sha512.doc = "dc7647af18502d3f7d88cb9dde9a4bc467204a78d6f6ef441d7593aeb2f9776532eddb94350081619986a0dece023c2ece54d3dce554188f5b62056b7a1a96b8"; 1633 1647 hasRunfiles = true; ··· 2324 2338 "bangla" = { 2325 2339 revision = 60159; 2326 2340 stripPrefix = 0; 2327 - deps."charissil" = tl."charissil"; 2328 - deps."doulossil" = tl."doulossil"; 2341 + deps = [ 2342 + "charissil" 2343 + "doulossil" 2344 + ]; 2329 2345 sha512.run = "adeed1b1f42ef1c76406c376d5f672870feedd4ccdc8db382b057dea6dceecca6e53de7d2c0ca154def6b0be67c05aa46e959c89829f564a3acc6805462bb4bc"; 2330 2346 sha512.doc = "d62d6a72c268421033767b3d2c131583e62e0c139ea3e101094752616498111badc5f0544294e836715dc7b3fffd5da9d9e4d3a4103fd2090f38e7ee31afe5be"; 2331 2347 hasRunfiles = true; ··· 2545 2561 "beamer" = { 2546 2562 revision = 64388; 2547 2563 stripPrefix = 0; 2548 - deps."amscls" = tl."amscls"; 2549 - deps."amsfonts" = tl."amsfonts"; 2550 - deps."amsmath" = tl."amsmath"; 2551 - deps."atbegshi" = tl."atbegshi"; 2552 - deps."etoolbox" = tl."etoolbox"; 2553 - deps."geometry" = tl."geometry"; 2554 - deps."hyperref" = tl."hyperref"; 2555 - deps."iftex" = tl."iftex"; 2556 - deps."pgf" = tl."pgf"; 2557 - deps."translator" = tl."translator"; 2558 - deps."xcolor" = tl."xcolor"; 2564 + deps = [ 2565 + "amscls" 2566 + "amsfonts" 2567 + "amsmath" 2568 + "atbegshi" 2569 + "etoolbox" 2570 + "geometry" 2571 + "hyperref" 2572 + "iftex" 2573 + "pgf" 2574 + "translator" 2575 + "xcolor" 2576 + ]; 2559 2577 sha512.run = "27118c5f5dd76a6c7cd0fb74fd8420c5a0b30655ffd57a1677f7e92163f81992ecfaa13cfbf9e2a0d47069980d0364848bcb0c24b120163833fed09c589f54ba"; 2560 2578 sha512.doc = "52512e5966c4b6f6b7d4660c61115d8ec3fea2b4e3dfd065fcbf4ea6bb9fb1895f48a69f092482932a73c74004b14026fb844ab3d358af706ead011a63053339"; 2561 2579 hasRunfiles = true; ··· 2847 2865 "beaulivre" = { 2848 2866 revision = 64280; 2849 2867 stripPrefix = 0; 2850 - deps."colorist" = tl."colorist"; 2868 + deps = [ 2869 + "colorist" 2870 + ]; 2851 2871 sha512.run = "7fa9fac71a151bc1e100ed3ad4261cb4d76df8734d424ba5600f73d526f48183f3d7024426be5c35114b20e6ff341f3cf735dfafaa96d17a42a4d7fc0e54179a"; 2852 2872 sha512.doc = "d489dadc440661b8c8ceb645a5a2ffbc50c5461d9fb1ac9964be76907aa250f657a1b6bbb7a4f8674babdece60958ce1f089a953e6597af971ace22184eb2d1a"; 2853 2873 hasRunfiles = true; ··· 3024 3044 }; 3025 3045 "bib2gls" = { 3026 3046 revision = 65104; 3027 - deps."glossaries-extra" = tl."glossaries-extra"; 3047 + deps = [ 3048 + "glossaries-extra" 3049 + ]; 3028 3050 sha512.run = "009e393b3083a3260642cb36dc463c714689d1b32d07885c9d20092e4f7386d05118c452e6f97001120f70558a69aa58d757ae0998cefe10e164bb172e432fbf"; 3029 3051 sha512.doc = "2a22e662fa0c41581a3c9d9496f97854ea2faa0d01970ab0cc0542048d0ebdcfcbf7ddc7fcf519510d99300eb6634f1c7688874cf02cf6052962d903c5810887"; 3030 3052 sha512.source = "da69973053fda82589612813834134837cf9680f4257a6336aed08213df0ff4c34dbef3c7edb833c7987549599cc48ae82dec36bac96dda003e3de3d1422bc6d"; ··· 3042 3064 }; 3043 3065 "bibcop" = { 3044 3066 revision = 65306; 3045 - deps."fancyvrb" = tl."fancyvrb"; 3046 - deps."iexec" = tl."iexec"; 3047 - deps."verbatimcopy" = tl."verbatimcopy"; 3067 + deps = [ 3068 + "fancyvrb" 3069 + "iexec" 3070 + "verbatimcopy" 3071 + ]; 3048 3072 sha512.run = "d0b510a55ba24daf97727cd7b81174839276c4c8d467ec2ca1ea9729341d214fedfdd0b05650e33525e67f0c29b46e5e5337d8e08af8d07ba208b91b5ee526cc"; 3049 3073 sha512.doc = "1d36da4a989a59a1a044f310232207a9dd2d20a9cbb55dd5b0f2c52674d1a3ac54cba16de2e634e520a1a4e1e186ceff871ef701165313b4dcac615306700dff"; 3050 3074 sha512.source = "66dedb1e1cebd4cffc1aa411caf621b819c3a718561d899bc144574afd84313205bb14a0966838e0ddb77ad9dd7ab5fdf3570e1131bcb6138d4b27a9189ba4d3"; ··· 3084 3108 "biblatex" = { 3085 3109 revision = 63878; 3086 3110 stripPrefix = 0; 3087 - deps."etoolbox" = tl."etoolbox"; 3088 - deps."kvoptions" = tl."kvoptions"; 3089 - deps."logreq" = tl."logreq"; 3090 - deps."pdftexcmds" = tl."pdftexcmds"; 3091 - deps."url" = tl."url"; 3111 + deps = [ 3112 + "etoolbox" 3113 + "kvoptions" 3114 + "logreq" 3115 + "pdftexcmds" 3116 + "url" 3117 + ]; 3092 3118 sha512.run = "a879c80e266b55d653dead15774e5b08ae827a5bbd8a17d7a6e2f9bf240bbc5be88a0c01df9d4b1ef7ccd3a55d0c7e4ef9b65018bcfd13b209ea370c951cb539"; 3093 3119 sha512.doc = "c941c5c976981fec48a86fafec6a7e8f80d36d1aa766f1b8fc798a2ed934f2f7f1ec17467743afc3e9e4d8fce21d0cd95bdfd378be35c7cd4ef239e49872ff7c"; 3094 3120 hasRunfiles = true; ··· 3393 3419 "biblatex-ms" = { 3394 3420 revision = 64180; 3395 3421 stripPrefix = 0; 3396 - deps."etoolbox" = tl."etoolbox"; 3397 - deps."kvoptions" = tl."kvoptions"; 3398 - deps."logreq" = tl."logreq"; 3399 - deps."pdftexcmds" = tl."pdftexcmds"; 3400 - deps."url" = tl."url"; 3422 + deps = [ 3423 + "etoolbox" 3424 + "kvoptions" 3425 + "logreq" 3426 + "pdftexcmds" 3427 + "url" 3428 + ]; 3401 3429 sha512.run = "cef1cecae6fa89d761f5eda158e495e40e0e77500eec84e4a08df7bacfa3a03fffe1b8e50b27e9456cbd6f393fae6293e61df69faa21e5a245e18c2b13722d86"; 3402 3430 sha512.doc = "9dce37ce0bc21b81bfbaeb2855b81089fb32c3a8b4547ec8197638d1063f2b126f4e94e3dab6164beab71abb66f8a2cce9e4f7efd5494295556156c55679f586"; 3403 3431 hasRunfiles = true; ··· 3684 3712 }; 3685 3713 "bibtex" = { 3686 3714 revision = 64491; 3687 - deps."kpathsea" = tl."kpathsea"; 3715 + deps = [ 3716 + "kpathsea" 3717 + ]; 3688 3718 sha512.run = "fadbb6ca18794e52b40a7083db41c5f1d42e47ce93daed7a551bf8e263f8aac8302578f23fe915c3706e4e3603cbdc9cafc55b07c895542a60eb1670ce07d628"; 3689 3719 sha512.doc = "6e1433e40fd604e391be05b9b68449cb6804488a42aac802d8960407930f99ae4450b77afe1baae4fe9b4d20b48c359472cf6c1e0a67d6f0a4a87cbffaaf1d8c"; 3690 3720 hasRunfiles = true; ··· 3897 3927 "bitset" = { 3898 3928 revision = 53837; 3899 3929 stripPrefix = 0; 3900 - deps."bigintcalc" = tl."bigintcalc"; 3930 + deps = [ 3931 + "bigintcalc" 3932 + ]; 3901 3933 sha512.run = "b1c9121312404d3daf6907623972c35e0f36cfb4197e589bd937c145506cb5a2d9d8c1f665ae3b4d3ec093e55bb146c0b67cd0858425b704fe29989b9924ccb7"; 3902 3934 sha512.doc = "a5a3ba9d27dc3d9658c1d261f798fdc5e6dc4cedd85287ef77d2a0341048d71f8575d4fbd711e499233e0991c51765953931d87d40dd22fa2a4e8ecb9f2a8dab"; 3903 3935 sha512.source = "40580c17ac81137d533eb013ed14bc092281b354ce42883c0a3c33ee7843be7ebed0ce642746ba9e173bedf8ee6f6c243b65e692ef2a50654ada23e323166c89"; ··· 4951 4983 "cbfonts" = { 4952 4984 revision = 54080; 4953 4985 stripPrefix = 0; 4954 - deps."cbfonts-fd" = tl."cbfonts-fd"; 4986 + deps = [ 4987 + "cbfonts-fd" 4988 + ]; 4955 4989 sha512.run = "0e7cecfdfa102113f75f46f9c8bc76f578fca6c967128bb8b203af76cc64cbefd123ae87a8b04a9780f498517bd9f660d12e2dc586220f2c12cc8aa76f1aa40a"; 4956 4990 sha512.doc = "a069b7ca1b46e5656a05a5e38a0f9ea5c3ab1e5301edc47d7fdd43817a8f5d641980c2e54b7731dcbcf16e12f0dff17df5a816d66f7bd2b613232788815bb8e0"; 4957 4991 hasRunfiles = true; ··· 5311 5345 "chemformula" = { 5312 5346 revision = 61719; 5313 5347 stripPrefix = 0; 5314 - deps."units" = tl."units"; 5348 + deps = [ 5349 + "units" 5350 + ]; 5315 5351 sha512.run = "907efcb72ebf3a315bffc11a8d78caa82b510993b4a4de1da8a960bbd6c66bdf5bc202933fce5f4f0626ad4507a5095b571487beb2414bc49bd37e735f0299f1"; 5316 5352 sha512.doc = "c839fed7313744c6abb77fd4f803524c47af7f9ca0e4b533b307a198cc2fefc072541d58afca8cfab6a17b85ecdda4d3bacd451ac9616b47a448560a97f3b62a"; 5317 5353 hasRunfiles = true; ··· 5613 5649 "churchslavonic" = { 5614 5650 revision = 42751; 5615 5651 stripPrefix = 0; 5616 - deps."etoolbox" = tl."etoolbox"; 5617 - deps."fonts-churchslavonic" = tl."fonts-churchslavonic"; 5618 - deps."hyphen-churchslavonic" = tl."hyphen-churchslavonic"; 5619 - deps."oberdiek" = tl."oberdiek"; 5620 - deps."xcolor" = tl."xcolor"; 5652 + deps = [ 5653 + "etoolbox" 5654 + "fonts-churchslavonic" 5655 + "hyphen-churchslavonic" 5656 + "oberdiek" 5657 + "xcolor" 5658 + ]; 5621 5659 sha512.run = "6c572235b95bb1f8407addefdefa1d7d3facc09b963f4d65d2be317986eb6523db9a8ff7104f15c526962ea8fbd0e1430b68867bf619cebc9b494f5cc04bfb07"; 5622 5660 sha512.doc = "90d563afc8248ded0ea4f30ff685e2fd9da8dec7ea92a3d4313040905be883af3f11393a031ec85ad39e9e51d374557e0f1f373a78caf855d2048fc4e0393e37"; 5623 5661 hasRunfiles = true; ··· 5673 5711 }; 5674 5712 "citation-style-language" = { 5675 5713 revision = 65357; 5676 - deps."filehook" = tl."filehook"; 5677 - deps."l3kernel" = tl."l3kernel"; 5678 - deps."l3packages" = tl."l3packages"; 5679 - deps."lua-uca" = tl."lua-uca"; 5680 - deps."lualibs" = tl."lualibs"; 5681 - deps."luatex" = tl."luatex"; 5682 - deps."luaxml" = tl."luaxml"; 5683 - deps."url" = tl."url"; 5714 + deps = [ 5715 + "filehook" 5716 + "l3kernel" 5717 + "l3packages" 5718 + "lua-uca" 5719 + "lualibs" 5720 + "luatex" 5721 + "luaxml" 5722 + "url" 5723 + ]; 5684 5724 sha512.run = "4260ef2c25c7350e01a0bb7b7372a63da723c81a473ecad7346962c49ce35b68d5385863bf3ad742bd4da79720d4d240293f65677e01cdc41993509a5999cd21"; 5685 5725 sha512.doc = "19c2336b57d8da88dcf22a92e54872a0d9548d5b2f9433ef155534c29f935988056240064ee863fa4a86caaa93dd0e4873725342c698bddabcbc90b771fb8d60"; 5686 5726 hasRunfiles = true; ··· 5729 5769 "cjk" = { 5730 5770 revision = 60865; 5731 5771 stripPrefix = 0; 5732 - deps."arphic" = tl."arphic"; 5733 - deps."cns" = tl."cns"; 5734 - deps."garuda-c90" = tl."garuda-c90"; 5735 - deps."norasi-c90" = tl."norasi-c90"; 5736 - deps."uhc" = tl."uhc"; 5737 - deps."wadalab" = tl."wadalab"; 5772 + deps = [ 5773 + "arphic" 5774 + "cns" 5775 + "garuda-c90" 5776 + "norasi-c90" 5777 + "uhc" 5778 + "wadalab" 5779 + ]; 5738 5780 sha512.run = "b13712912e479dab68cab9027042be8cb11047ebf9c034f532c857e83d28f19dfea5a1748685cfe1847c7372f2d0982f79736525694d937c88962c5262094585"; 5739 5781 sha512.doc = "a8c6b2d4d0899b841ccc32b378855d61bdaa65d5f68fd408df3894d386bcde18f384410f34e6f33ee2a5ce770e1e663a05ab038d9b7483012a3cb414739c3705"; 5740 5782 sha512.source = "88be587328daedfed3bdcb289b1a03343bd7257ae180a9e0857a6b00f173f601eccd8e5978dd29c2d95fbab180fcfd5135a682c5218325fc6b664f2cd505213c"; ··· 5752 5794 "cjk-ko" = { 5753 5795 revision = 63561; 5754 5796 stripPrefix = 0; 5755 - deps."cjk" = tl."cjk"; 5797 + deps = [ 5798 + "cjk" 5799 + ]; 5756 5800 sha512.run = "be65ef03300b8fccc4012ece68570a86797e36267ea2f531fead77659cf7bf2a315cca1a3e3386f8d1dc09cbb3b44b20dafb3e0e0cbd53bddb1a368c984937b0"; 5757 5801 sha512.doc = "3ffcae00a4a0dcd175fcf864c3c0c578d7926917216b4a785c0a46074ef013eafe9458ba9010d14f081c63ab4ee0941d0597dace373eb178369de9caa210a16b"; 5758 5802 hasRunfiles = true; ··· 5842 5886 "clicks" = { 5843 5887 revision = 64602; 5844 5888 stripPrefix = 0; 5845 - deps."etoolbox" = tl."etoolbox"; 5846 - deps."xkeyval" = tl."xkeyval"; 5889 + deps = [ 5890 + "etoolbox" 5891 + "xkeyval" 5892 + ]; 5847 5893 sha512.run = "7218b2bf0f28a0ed382e4884aa30b59c2d8bff76a3d7a09461e5e3ebf1f41648889005db3c79fe203a4d3753a65f76a48058582e25f57e61d972e8256657712e"; 5848 5894 sha512.doc = "fc84edae6c263a889ea5b1d7a99b5fdf2c22bbb45c9c104e63d821a80b498d1932e654034f289a7470a15cb2ea6082eb8d8fedce24b21b9ccbd5e4304043d6b3"; 5849 5895 sha512.source = "ff19c270587c08c28db6cad54e2a58ce23f6041b08b6d611b7ffe6fe2b6506c1a7ae33ded3fe3ec59cee3fcfc276e6a1dc3750291b4f7691255066805ca90158"; ··· 6232 6278 "collection-basic" = { 6233 6279 revision = 59159; 6234 6280 stripPrefix = 0; 6235 - deps."amsfonts" = tl."amsfonts"; 6236 - deps."bibtex" = tl."bibtex"; 6237 - deps."cm" = tl."cm"; 6238 - deps."colorprofiles" = tl."colorprofiles"; 6239 - deps."dvipdfmx" = tl."dvipdfmx"; 6240 - deps."dvips" = tl."dvips"; 6241 - deps."ec" = tl."ec"; 6242 - deps."enctex" = tl."enctex"; 6243 - deps."etex" = tl."etex"; 6244 - deps."etex-pkg" = tl."etex-pkg"; 6245 - deps."glyphlist" = tl."glyphlist"; 6246 - deps."graphics-def" = tl."graphics-def"; 6247 - deps."hyph-utf8" = tl."hyph-utf8"; 6248 - deps."hyphen-base" = tl."hyphen-base"; 6249 - deps."hyphenex" = tl."hyphenex"; 6250 - deps."ifplatform" = tl."ifplatform"; 6251 - deps."iftex" = tl."iftex"; 6252 - deps."knuth-lib" = tl."knuth-lib"; 6253 - deps."knuth-local" = tl."knuth-local"; 6254 - deps."kpathsea" = tl."kpathsea"; 6255 - deps."lua-alt-getopt" = tl."lua-alt-getopt"; 6256 - deps."luahbtex" = tl."luahbtex"; 6257 - deps."luatex" = tl."luatex"; 6258 - deps."makeindex" = tl."makeindex"; 6259 - deps."metafont" = tl."metafont"; 6260 - deps."mflogo" = tl."mflogo"; 6261 - deps."mfware" = tl."mfware"; 6262 - deps."modes" = tl."modes"; 6263 - deps."pdftex" = tl."pdftex"; 6264 - deps."plain" = tl."plain"; 6265 - deps."tex" = tl."tex"; 6266 - deps."tex-ini-files" = tl."tex-ini-files"; 6267 - deps."texlive-common" = tl."texlive-common"; 6268 - deps."texlive-en" = tl."texlive-en"; 6269 - deps."texlive-msg-translations" = tl."texlive-msg-translations"; 6270 - deps."texlive-scripts" = tl."texlive-scripts"; 6271 - deps."tlshell" = tl."tlshell"; 6272 - deps."unicode-data" = tl."unicode-data"; 6273 - deps."xdvi" = tl."xdvi"; 6281 + deps = [ 6282 + "amsfonts" 6283 + "bibtex" 6284 + "cm" 6285 + "colorprofiles" 6286 + "dvipdfmx" 6287 + "dvips" 6288 + "ec" 6289 + "enctex" 6290 + "etex" 6291 + "etex-pkg" 6292 + "glyphlist" 6293 + "graphics-def" 6294 + "hyph-utf8" 6295 + "hyphen-base" 6296 + "hyphenex" 6297 + "ifplatform" 6298 + "iftex" 6299 + "knuth-lib" 6300 + "knuth-local" 6301 + "kpathsea" 6302 + "lua-alt-getopt" 6303 + "luahbtex" 6304 + "luatex" 6305 + "makeindex" 6306 + "metafont" 6307 + "mflogo" 6308 + "mfware" 6309 + "modes" 6310 + "pdftex" 6311 + "plain" 6312 + "tex" 6313 + "tex-ini-files" 6314 + "texlive-common" 6315 + "texlive-en" 6316 + "texlive-msg-translations" 6317 + "texlive-scripts" 6318 + "tlshell" 6319 + "unicode-data" 6320 + "xdvi" 6321 + ]; 6274 6322 sha512.run = "4241bc3a3ef21502faa9a2e0b16295126c357fc15813a625306552b40f9da804164abccce642f4ec1e677092f81d61381958b87fcf515120a12f9b7a19055370"; 6275 6323 }; 6276 6324 "collection-bibtexextra" = { 6277 6325 revision = 65257; 6278 6326 stripPrefix = 0; 6279 - deps."aaai-named" = tl."aaai-named"; 6280 - deps."aichej" = tl."aichej"; 6281 - deps."ajl" = tl."ajl"; 6282 - deps."amsrefs" = tl."amsrefs"; 6283 - deps."annotate" = tl."annotate"; 6284 - deps."apacite" = tl."apacite"; 6285 - deps."apalike-ejor" = tl."apalike-ejor"; 6286 - deps."apalike2" = tl."apalike2"; 6287 - deps."archaeologie" = tl."archaeologie"; 6288 - deps."authordate" = tl."authordate"; 6289 - deps."beebe" = tl."beebe"; 6290 - deps."besjournals" = tl."besjournals"; 6291 - deps."bestpapers" = tl."bestpapers"; 6292 - deps."bib2gls" = tl."bib2gls"; 6293 - deps."bibarts" = tl."bibarts"; 6294 - deps."bibcop" = tl."bibcop"; 6295 - deps."biber" = tl."biber"; 6296 - deps."biber-ms" = tl."biber-ms"; 6297 - deps."bibexport" = tl."bibexport"; 6298 - deps."bibhtml" = tl."bibhtml"; 6299 - deps."biblatex" = tl."biblatex"; 6300 - deps."biblatex-abnt" = tl."biblatex-abnt"; 6301 - deps."biblatex-ajc2020unofficial" = tl."biblatex-ajc2020unofficial"; 6302 - deps."biblatex-anonymous" = tl."biblatex-anonymous"; 6303 - deps."biblatex-apa" = tl."biblatex-apa"; 6304 - deps."biblatex-apa6" = tl."biblatex-apa6"; 6305 - deps."biblatex-archaeology" = tl."biblatex-archaeology"; 6306 - deps."biblatex-arthistory-bonn" = tl."biblatex-arthistory-bonn"; 6307 - deps."biblatex-bath" = tl."biblatex-bath"; 6308 - deps."biblatex-bookinarticle" = tl."biblatex-bookinarticle"; 6309 - deps."biblatex-bookinother" = tl."biblatex-bookinother"; 6310 - deps."biblatex-bwl" = tl."biblatex-bwl"; 6311 - deps."biblatex-caspervector" = tl."biblatex-caspervector"; 6312 - deps."biblatex-chem" = tl."biblatex-chem"; 6313 - deps."biblatex-chicago" = tl."biblatex-chicago"; 6314 - deps."biblatex-claves" = tl."biblatex-claves"; 6315 - deps."biblatex-cv" = tl."biblatex-cv"; 6316 - deps."biblatex-dw" = tl."biblatex-dw"; 6317 - deps."biblatex-enc" = tl."biblatex-enc"; 6318 - deps."biblatex-ext" = tl."biblatex-ext"; 6319 - deps."biblatex-fiwi" = tl."biblatex-fiwi"; 6320 - deps."biblatex-gb7714-2015" = tl."biblatex-gb7714-2015"; 6321 - deps."biblatex-german-legal" = tl."biblatex-german-legal"; 6322 - deps."biblatex-gost" = tl."biblatex-gost"; 6323 - deps."biblatex-historian" = tl."biblatex-historian"; 6324 - deps."biblatex-ieee" = tl."biblatex-ieee"; 6325 - deps."biblatex-ijsra" = tl."biblatex-ijsra"; 6326 - deps."biblatex-iso690" = tl."biblatex-iso690"; 6327 - deps."biblatex-jura2" = tl."biblatex-jura2"; 6328 - deps."biblatex-juradiss" = tl."biblatex-juradiss"; 6329 - deps."biblatex-license" = tl."biblatex-license"; 6330 - deps."biblatex-lncs" = tl."biblatex-lncs"; 6331 - deps."biblatex-lni" = tl."biblatex-lni"; 6332 - deps."biblatex-luh-ipw" = tl."biblatex-luh-ipw"; 6333 - deps."biblatex-manuscripts-philology" = tl."biblatex-manuscripts-philology"; 6334 - deps."biblatex-mla" = tl."biblatex-mla"; 6335 - deps."biblatex-morenames" = tl."biblatex-morenames"; 6336 - deps."biblatex-ms" = tl."biblatex-ms"; 6337 - deps."biblatex-multiple-dm" = tl."biblatex-multiple-dm"; 6338 - deps."biblatex-musuos" = tl."biblatex-musuos"; 6339 - deps."biblatex-nature" = tl."biblatex-nature"; 6340 - deps."biblatex-nejm" = tl."biblatex-nejm"; 6341 - deps."biblatex-nottsclassic" = tl."biblatex-nottsclassic"; 6342 - deps."biblatex-opcit-booktitle" = tl."biblatex-opcit-booktitle"; 6343 - deps."biblatex-oxref" = tl."biblatex-oxref"; 6344 - deps."biblatex-philosophy" = tl."biblatex-philosophy"; 6345 - deps."biblatex-phys" = tl."biblatex-phys"; 6346 - deps."biblatex-publist" = tl."biblatex-publist"; 6347 - deps."biblatex-readbbl" = tl."biblatex-readbbl"; 6348 - deps."biblatex-realauthor" = tl."biblatex-realauthor"; 6349 - deps."biblatex-sbl" = tl."biblatex-sbl"; 6350 - deps."biblatex-science" = tl."biblatex-science"; 6351 - deps."biblatex-shortfields" = tl."biblatex-shortfields"; 6352 - deps."biblatex-socialscienceshuberlin" = tl."biblatex-socialscienceshuberlin"; 6353 - deps."biblatex-software" = tl."biblatex-software"; 6354 - deps."biblatex-source-division" = tl."biblatex-source-division"; 6355 - deps."biblatex-spbasic" = tl."biblatex-spbasic"; 6356 - deps."biblatex-subseries" = tl."biblatex-subseries"; 6357 - deps."biblatex-swiss-legal" = tl."biblatex-swiss-legal"; 6358 - deps."biblatex-trad" = tl."biblatex-trad"; 6359 - deps."biblatex-true-citepages-omit" = tl."biblatex-true-citepages-omit"; 6360 - deps."biblatex-unified" = tl."biblatex-unified"; 6361 - deps."biblatex-vancouver" = tl."biblatex-vancouver"; 6362 - deps."biblatex2bibitem" = tl."biblatex2bibitem"; 6363 - deps."biblist" = tl."biblist"; 6364 - deps."bibtexperllibs" = tl."bibtexperllibs"; 6365 - deps."bibtopic" = tl."bibtopic"; 6366 - deps."bibtopicprefix" = tl."bibtopicprefix"; 6367 - deps."bibunits" = tl."bibunits"; 6368 - deps."biolett-bst" = tl."biolett-bst"; 6369 - deps."bookdb" = tl."bookdb"; 6370 - deps."breakcites" = tl."breakcites"; 6371 - deps."cell" = tl."cell"; 6372 - deps."chbibref" = tl."chbibref"; 6373 - deps."chembst" = tl."chembst"; 6374 - deps."chicago" = tl."chicago"; 6375 - deps."chicago-annote" = tl."chicago-annote"; 6376 - deps."chicagoa" = tl."chicagoa"; 6377 - deps."chscite" = tl."chscite"; 6378 - deps."citation-style-language" = tl."citation-style-language"; 6379 - deps."citeall" = tl."citeall"; 6380 - deps."citeref" = tl."citeref"; 6381 - deps."collection-latex" = tl."collection-latex"; 6382 - deps."collref" = tl."collref"; 6383 - deps."compactbib" = tl."compactbib"; 6384 - deps."crossrefware" = tl."crossrefware"; 6385 - deps."custom-bib" = tl."custom-bib"; 6386 - deps."din1505" = tl."din1505"; 6387 - deps."dk-bib" = tl."dk-bib"; 6388 - deps."doipubmed" = tl."doipubmed"; 6389 - deps."ecobiblatex" = tl."ecobiblatex"; 6390 - deps."econ-bst" = tl."econ-bst"; 6391 - deps."economic" = tl."economic"; 6392 - deps."fbs" = tl."fbs"; 6393 - deps."figbib" = tl."figbib"; 6394 - deps."footbib" = tl."footbib"; 6395 - deps."francais-bst" = tl."francais-bst"; 6396 - deps."gbt7714" = tl."gbt7714"; 6397 - deps."geschichtsfrkl" = tl."geschichtsfrkl"; 6398 - deps."harvard" = tl."harvard"; 6399 - deps."harvmac" = tl."harvmac"; 6400 - deps."hep-bibliography" = tl."hep-bibliography"; 6401 - deps."historische-zeitschrift" = tl."historische-zeitschrift"; 6402 - deps."icite" = tl."icite"; 6403 - deps."ietfbibs" = tl."ietfbibs"; 6404 - deps."ijqc" = tl."ijqc"; 6405 - deps."inlinebib" = tl."inlinebib"; 6406 - deps."iopart-num" = tl."iopart-num"; 6407 - deps."is-bst" = tl."is-bst"; 6408 - deps."jbact" = tl."jbact"; 6409 - deps."jmb" = tl."jmb"; 6410 - deps."jneurosci" = tl."jneurosci"; 6411 - deps."jurabib" = tl."jurabib"; 6412 - deps."ksfh_nat" = tl."ksfh_nat"; 6413 - deps."listbib" = tl."listbib"; 6414 - deps."logreq" = tl."logreq"; 6415 - deps."ltb2bib" = tl."ltb2bib"; 6416 - deps."luabibentry" = tl."luabibentry"; 6417 - deps."margbib" = tl."margbib"; 6418 - deps."multibib" = tl."multibib"; 6419 - deps."multibibliography" = tl."multibibliography"; 6420 - deps."munich" = tl."munich"; 6421 - deps."nar" = tl."nar"; 6422 - deps."newcastle-bst" = tl."newcastle-bst"; 6423 - deps."nmbib" = tl."nmbib"; 6424 - deps."notes2bib" = tl."notes2bib"; 6425 - deps."notex-bst" = tl."notex-bst"; 6426 - deps."oscola" = tl."oscola"; 6427 - deps."perception" = tl."perception"; 6428 - deps."plainyr" = tl."plainyr"; 6429 - deps."pnas2009" = tl."pnas2009"; 6430 - deps."rsc" = tl."rsc"; 6431 - deps."showtags" = tl."showtags"; 6432 - deps."sort-by-letters" = tl."sort-by-letters"; 6433 - deps."splitbib" = tl."splitbib"; 6434 - deps."turabian-formatting" = tl."turabian-formatting"; 6435 - deps."uni-wtal-ger" = tl."uni-wtal-ger"; 6436 - deps."uni-wtal-lin" = tl."uni-wtal-lin"; 6437 - deps."urlbst" = tl."urlbst"; 6438 - deps."usebib" = tl."usebib"; 6439 - deps."vak" = tl."vak"; 6440 - deps."windycity" = tl."windycity"; 6441 - deps."xcite" = tl."xcite"; 6442 - deps."zootaxa-bst" = tl."zootaxa-bst"; 6327 + deps = [ 6328 + "aaai-named" 6329 + "aichej" 6330 + "ajl" 6331 + "amsrefs" 6332 + "annotate" 6333 + "apacite" 6334 + "apalike-ejor" 6335 + "apalike2" 6336 + "archaeologie" 6337 + "authordate" 6338 + "beebe" 6339 + "besjournals" 6340 + "bestpapers" 6341 + "bib2gls" 6342 + "bibarts" 6343 + "bibcop" 6344 + "biber" 6345 + "biber-ms" 6346 + "bibexport" 6347 + "bibhtml" 6348 + "biblatex" 6349 + "biblatex-abnt" 6350 + "biblatex-ajc2020unofficial" 6351 + "biblatex-anonymous" 6352 + "biblatex-apa" 6353 + "biblatex-apa6" 6354 + "biblatex-archaeology" 6355 + "biblatex-arthistory-bonn" 6356 + "biblatex-bath" 6357 + "biblatex-bookinarticle" 6358 + "biblatex-bookinother" 6359 + "biblatex-bwl" 6360 + "biblatex-caspervector" 6361 + "biblatex-chem" 6362 + "biblatex-chicago" 6363 + "biblatex-claves" 6364 + "biblatex-cv" 6365 + "biblatex-dw" 6366 + "biblatex-enc" 6367 + "biblatex-ext" 6368 + "biblatex-fiwi" 6369 + "biblatex-gb7714-2015" 6370 + "biblatex-german-legal" 6371 + "biblatex-gost" 6372 + "biblatex-historian" 6373 + "biblatex-ieee" 6374 + "biblatex-ijsra" 6375 + "biblatex-iso690" 6376 + "biblatex-jura2" 6377 + "biblatex-juradiss" 6378 + "biblatex-license" 6379 + "biblatex-lncs" 6380 + "biblatex-lni" 6381 + "biblatex-luh-ipw" 6382 + "biblatex-manuscripts-philology" 6383 + "biblatex-mla" 6384 + "biblatex-morenames" 6385 + "biblatex-ms" 6386 + "biblatex-multiple-dm" 6387 + "biblatex-musuos" 6388 + "biblatex-nature" 6389 + "biblatex-nejm" 6390 + "biblatex-nottsclassic" 6391 + "biblatex-opcit-booktitle" 6392 + "biblatex-oxref" 6393 + "biblatex-philosophy" 6394 + "biblatex-phys" 6395 + "biblatex-publist" 6396 + "biblatex-readbbl" 6397 + "biblatex-realauthor" 6398 + "biblatex-sbl" 6399 + "biblatex-science" 6400 + "biblatex-shortfields" 6401 + "biblatex-socialscienceshuberlin" 6402 + "biblatex-software" 6403 + "biblatex-source-division" 6404 + "biblatex-spbasic" 6405 + "biblatex-subseries" 6406 + "biblatex-swiss-legal" 6407 + "biblatex-trad" 6408 + "biblatex-true-citepages-omit" 6409 + "biblatex-unified" 6410 + "biblatex-vancouver" 6411 + "biblatex2bibitem" 6412 + "biblist" 6413 + "bibtexperllibs" 6414 + "bibtopic" 6415 + "bibtopicprefix" 6416 + "bibunits" 6417 + "biolett-bst" 6418 + "bookdb" 6419 + "breakcites" 6420 + "cell" 6421 + "chbibref" 6422 + "chembst" 6423 + "chicago" 6424 + "chicago-annote" 6425 + "chicagoa" 6426 + "chscite" 6427 + "citation-style-language" 6428 + "citeall" 6429 + "citeref" 6430 + "collection-latex" 6431 + "collref" 6432 + "compactbib" 6433 + "crossrefware" 6434 + "custom-bib" 6435 + "din1505" 6436 + "dk-bib" 6437 + "doipubmed" 6438 + "ecobiblatex" 6439 + "econ-bst" 6440 + "economic" 6441 + "fbs" 6442 + "figbib" 6443 + "footbib" 6444 + "francais-bst" 6445 + "gbt7714" 6446 + "geschichtsfrkl" 6447 + "harvard" 6448 + "harvmac" 6449 + "hep-bibliography" 6450 + "historische-zeitschrift" 6451 + "icite" 6452 + "ietfbibs" 6453 + "ijqc" 6454 + "inlinebib" 6455 + "iopart-num" 6456 + "is-bst" 6457 + "jbact" 6458 + "jmb" 6459 + "jneurosci" 6460 + "jurabib" 6461 + "ksfh_nat" 6462 + "listbib" 6463 + "logreq" 6464 + "ltb2bib" 6465 + "luabibentry" 6466 + "margbib" 6467 + "multibib" 6468 + "multibibliography" 6469 + "munich" 6470 + "nar" 6471 + "newcastle-bst" 6472 + "nmbib" 6473 + "notes2bib" 6474 + "notex-bst" 6475 + "oscola" 6476 + "perception" 6477 + "plainyr" 6478 + "pnas2009" 6479 + "rsc" 6480 + "showtags" 6481 + "sort-by-letters" 6482 + "splitbib" 6483 + "turabian-formatting" 6484 + "uni-wtal-ger" 6485 + "uni-wtal-lin" 6486 + "urlbst" 6487 + "usebib" 6488 + "vak" 6489 + "windycity" 6490 + "xcite" 6491 + "zootaxa-bst" 6492 + ]; 6443 6493 sha512.run = "db80edc251a62547b401d922c954a40dc3887b01a59952bf20829b67953e26083c98249dba83157b0e9db4b0b2b2802f5965d9360b332d45fe4d69762ef38c62"; 6444 6494 }; 6445 6495 "collection-binextra" = { 6446 6496 revision = 65204; 6447 6497 stripPrefix = 0; 6448 - deps."a2ping" = tl."a2ping"; 6449 - deps."adhocfilelist" = tl."adhocfilelist"; 6450 - deps."arara" = tl."arara"; 6451 - deps."asymptote" = tl."asymptote"; 6452 - deps."bibtex8" = tl."bibtex8"; 6453 - deps."bibtexu" = tl."bibtexu"; 6454 - deps."bundledoc" = tl."bundledoc"; 6455 - deps."checklistings" = tl."checklistings"; 6456 - deps."chklref" = tl."chklref"; 6457 - deps."chktex" = tl."chktex"; 6458 - deps."clojure-pamphlet" = tl."clojure-pamphlet"; 6459 - deps."cluttex" = tl."cluttex"; 6460 - deps."collection-basic" = tl."collection-basic"; 6461 - deps."ctan-o-mat" = tl."ctan-o-mat"; 6462 - deps."ctan_chk" = tl."ctan_chk"; 6463 - deps."ctanbib" = tl."ctanbib"; 6464 - deps."ctanify" = tl."ctanify"; 6465 - deps."ctanupload" = tl."ctanupload"; 6466 - deps."ctie" = tl."ctie"; 6467 - deps."cweb" = tl."cweb"; 6468 - deps."de-macro" = tl."de-macro"; 6469 - deps."detex" = tl."detex"; 6470 - deps."digestif" = tl."digestif"; 6471 - deps."dtl" = tl."dtl"; 6472 - deps."dtxgen" = tl."dtxgen"; 6473 - deps."dvi2tty" = tl."dvi2tty"; 6474 - deps."dviasm" = tl."dviasm"; 6475 - deps."dvicopy" = tl."dvicopy"; 6476 - deps."dvidvi" = tl."dvidvi"; 6477 - deps."dviinfox" = tl."dviinfox"; 6478 - deps."dviljk" = tl."dviljk"; 6479 - deps."dviout-util" = tl."dviout-util"; 6480 - deps."dvipng" = tl."dvipng"; 6481 - deps."dvipos" = tl."dvipos"; 6482 - deps."dvisvgm" = tl."dvisvgm"; 6483 - deps."findhyph" = tl."findhyph"; 6484 - deps."fragmaster" = tl."fragmaster"; 6485 - deps."git-latexdiff" = tl."git-latexdiff"; 6486 - deps."gsftopk" = tl."gsftopk"; 6487 - deps."hook-pre-commit-pkg" = tl."hook-pre-commit-pkg"; 6488 - deps."installfont" = tl."installfont"; 6489 - deps."ketcindy" = tl."ketcindy"; 6490 - deps."lacheck" = tl."lacheck"; 6491 - deps."latex-git-log" = tl."latex-git-log"; 6492 - deps."latex-papersize" = tl."latex-papersize"; 6493 - deps."latex2man" = tl."latex2man"; 6494 - deps."latex2nemeth" = tl."latex2nemeth"; 6495 - deps."latexdiff" = tl."latexdiff"; 6496 - deps."latexfileversion" = tl."latexfileversion"; 6497 - deps."latexindent" = tl."latexindent"; 6498 - deps."latexmk" = tl."latexmk"; 6499 - deps."latexpand" = tl."latexpand"; 6500 - deps."light-latex-make" = tl."light-latex-make"; 6501 - deps."listings-ext" = tl."listings-ext"; 6502 - deps."ltxfileinfo" = tl."ltxfileinfo"; 6503 - deps."ltximg" = tl."ltximg"; 6504 - deps."luajittex" = tl."luajittex"; 6505 - deps."make4ht" = tl."make4ht"; 6506 - deps."match_parens" = tl."match_parens"; 6507 - deps."mflua" = tl."mflua"; 6508 - deps."mkjobtexmf" = tl."mkjobtexmf"; 6509 - deps."optexcount" = tl."optexcount"; 6510 - deps."patgen" = tl."patgen"; 6511 - deps."pdfbook2" = tl."pdfbook2"; 6512 - deps."pdfcrop" = tl."pdfcrop"; 6513 - deps."pdfjam" = tl."pdfjam"; 6514 - deps."pdflatexpicscale" = tl."pdflatexpicscale"; 6515 - deps."pdftex-quiet" = tl."pdftex-quiet"; 6516 - deps."pdftosrc" = tl."pdftosrc"; 6517 - deps."pdfxup" = tl."pdfxup"; 6518 - deps."pfarrei" = tl."pfarrei"; 6519 - deps."pkfix" = tl."pkfix"; 6520 - deps."pkfix-helper" = tl."pkfix-helper"; 6521 - deps."purifyeps" = tl."purifyeps"; 6522 - deps."pythontex" = tl."pythontex"; 6523 - deps."seetexk" = tl."seetexk"; 6524 - deps."spix" = tl."spix"; 6525 - deps."srcredact" = tl."srcredact"; 6526 - deps."sty2dtx" = tl."sty2dtx"; 6527 - deps."synctex" = tl."synctex"; 6528 - deps."tex4ebook" = tl."tex4ebook"; 6529 - deps."texaccents" = tl."texaccents"; 6530 - deps."texcount" = tl."texcount"; 6531 - deps."texdef" = tl."texdef"; 6532 - deps."texdiff" = tl."texdiff"; 6533 - deps."texdirflatten" = tl."texdirflatten"; 6534 - deps."texdoc" = tl."texdoc"; 6535 - deps."texdoctk" = tl."texdoctk"; 6536 - deps."texfot" = tl."texfot"; 6537 - deps."texlive-scripts-extra" = tl."texlive-scripts-extra"; 6538 - deps."texliveonfly" = tl."texliveonfly"; 6539 - deps."texloganalyser" = tl."texloganalyser"; 6540 - deps."texlogfilter" = tl."texlogfilter"; 6541 - deps."texlogsieve" = tl."texlogsieve"; 6542 - deps."texosquery" = tl."texosquery"; 6543 - deps."texplate" = tl."texplate"; 6544 - deps."texware" = tl."texware"; 6545 - deps."tie" = tl."tie"; 6546 - deps."tlcockpit" = tl."tlcockpit"; 6547 - deps."tpic2pdftex" = tl."tpic2pdftex"; 6548 - deps."typeoutfileinfo" = tl."typeoutfileinfo"; 6549 - deps."web" = tl."web"; 6550 - deps."xindex" = tl."xindex"; 6551 - deps."xindy" = tl."xindy"; 6552 - deps."xpdfopen" = tl."xpdfopen"; 6498 + deps = [ 6499 + "a2ping" 6500 + "adhocfilelist" 6501 + "arara" 6502 + "asymptote" 6503 + "bibtex8" 6504 + "bibtexu" 6505 + "bundledoc" 6506 + "checklistings" 6507 + "chklref" 6508 + "chktex" 6509 + "clojure-pamphlet" 6510 + "cluttex" 6511 + "collection-basic" 6512 + "ctan-o-mat" 6513 + "ctan_chk" 6514 + "ctanbib" 6515 + "ctanify" 6516 + "ctanupload" 6517 + "ctie" 6518 + "cweb" 6519 + "de-macro" 6520 + "detex" 6521 + "digestif" 6522 + "dtl" 6523 + "dtxgen" 6524 + "dvi2tty" 6525 + "dviasm" 6526 + "dvicopy" 6527 + "dvidvi" 6528 + "dviinfox" 6529 + "dviljk" 6530 + "dviout-util" 6531 + "dvipng" 6532 + "dvipos" 6533 + "dvisvgm" 6534 + "findhyph" 6535 + "fragmaster" 6536 + "git-latexdiff" 6537 + "gsftopk" 6538 + "hook-pre-commit-pkg" 6539 + "installfont" 6540 + "ketcindy" 6541 + "lacheck" 6542 + "latex-git-log" 6543 + "latex-papersize" 6544 + "latex2man" 6545 + "latex2nemeth" 6546 + "latexdiff" 6547 + "latexfileversion" 6548 + "latexindent" 6549 + "latexmk" 6550 + "latexpand" 6551 + "light-latex-make" 6552 + "listings-ext" 6553 + "ltxfileinfo" 6554 + "ltximg" 6555 + "luajittex" 6556 + "make4ht" 6557 + "match_parens" 6558 + "mflua" 6559 + "mkjobtexmf" 6560 + "optexcount" 6561 + "patgen" 6562 + "pdfbook2" 6563 + "pdfcrop" 6564 + "pdfjam" 6565 + "pdflatexpicscale" 6566 + "pdftex-quiet" 6567 + "pdftosrc" 6568 + "pdfxup" 6569 + "pfarrei" 6570 + "pkfix" 6571 + "pkfix-helper" 6572 + "purifyeps" 6573 + "pythontex" 6574 + "seetexk" 6575 + "spix" 6576 + "srcredact" 6577 + "sty2dtx" 6578 + "synctex" 6579 + "tex4ebook" 6580 + "texaccents" 6581 + "texcount" 6582 + "texdef" 6583 + "texdiff" 6584 + "texdirflatten" 6585 + "texdoc" 6586 + "texdoctk" 6587 + "texfot" 6588 + "texlive-scripts-extra" 6589 + "texliveonfly" 6590 + "texloganalyser" 6591 + "texlogfilter" 6592 + "texlogsieve" 6593 + "texosquery" 6594 + "texplate" 6595 + "texware" 6596 + "tie" 6597 + "tlcockpit" 6598 + "tpic2pdftex" 6599 + "typeoutfileinfo" 6600 + "web" 6601 + "xindex" 6602 + "xindy" 6603 + "xpdfopen" 6604 + ]; 6553 6605 sha512.run = "4297ddb3f20775c97c2ac4782060ad2c2da469fb68eda24d98c0c84a07403215aaa4e221b82459300887769e9355cb4425f4fe599d5d8413e38f1be5c7f8fab9"; 6554 6606 }; 6555 6607 "collection-context" = { 6556 6608 revision = 54074; 6557 6609 stripPrefix = 0; 6558 - deps."collection-basic" = tl."collection-basic"; 6559 - deps."context" = tl."context"; 6560 - deps."context-account" = tl."context-account"; 6561 - deps."context-algorithmic" = tl."context-algorithmic"; 6562 - deps."context-animation" = tl."context-animation"; 6563 - deps."context-annotation" = tl."context-annotation"; 6564 - deps."context-bnf" = tl."context-bnf"; 6565 - deps."context-chromato" = tl."context-chromato"; 6566 - deps."context-cmscbf" = tl."context-cmscbf"; 6567 - deps."context-cmttbf" = tl."context-cmttbf"; 6568 - deps."context-construction-plan" = tl."context-construction-plan"; 6569 - deps."context-cyrillicnumbers" = tl."context-cyrillicnumbers"; 6570 - deps."context-degrade" = tl."context-degrade"; 6571 - deps."context-fancybreak" = tl."context-fancybreak"; 6572 - deps."context-filter" = tl."context-filter"; 6573 - deps."context-french" = tl."context-french"; 6574 - deps."context-fullpage" = tl."context-fullpage"; 6575 - deps."context-gantt" = tl."context-gantt"; 6576 - deps."context-gnuplot" = tl."context-gnuplot"; 6577 - deps."context-handlecsv" = tl."context-handlecsv"; 6578 - deps."context-inifile" = tl."context-inifile"; 6579 - deps."context-layout" = tl."context-layout"; 6580 - deps."context-letter" = tl."context-letter"; 6581 - deps."context-lettrine" = tl."context-lettrine"; 6582 - deps."context-mathsets" = tl."context-mathsets"; 6583 - deps."context-notes-zh-cn" = tl."context-notes-zh-cn"; 6584 - deps."context-rst" = tl."context-rst"; 6585 - deps."context-ruby" = tl."context-ruby"; 6586 - deps."context-simplefonts" = tl."context-simplefonts"; 6587 - deps."context-simpleslides" = tl."context-simpleslides"; 6588 - deps."context-title" = tl."context-title"; 6589 - deps."context-transliterator" = tl."context-transliterator"; 6590 - deps."context-typearea" = tl."context-typearea"; 6591 - deps."context-typescripts" = tl."context-typescripts"; 6592 - deps."context-vim" = tl."context-vim"; 6593 - deps."context-visualcounter" = tl."context-visualcounter"; 6594 - deps."jmn" = tl."jmn"; 6595 - deps."npp-for-context" = tl."npp-for-context"; 6610 + deps = [ 6611 + "collection-basic" 6612 + "context" 6613 + "context-account" 6614 + "context-algorithmic" 6615 + "context-animation" 6616 + "context-annotation" 6617 + "context-bnf" 6618 + "context-chromato" 6619 + "context-cmscbf" 6620 + "context-cmttbf" 6621 + "context-construction-plan" 6622 + "context-cyrillicnumbers" 6623 + "context-degrade" 6624 + "context-fancybreak" 6625 + "context-filter" 6626 + "context-french" 6627 + "context-fullpage" 6628 + "context-gantt" 6629 + "context-gnuplot" 6630 + "context-handlecsv" 6631 + "context-inifile" 6632 + "context-layout" 6633 + "context-letter" 6634 + "context-lettrine" 6635 + "context-mathsets" 6636 + "context-notes-zh-cn" 6637 + "context-rst" 6638 + "context-ruby" 6639 + "context-simplefonts" 6640 + "context-simpleslides" 6641 + "context-title" 6642 + "context-transliterator" 6643 + "context-typearea" 6644 + "context-typescripts" 6645 + "context-vim" 6646 + "context-visualcounter" 6647 + "jmn" 6648 + "npp-for-context" 6649 + ]; 6596 6650 sha512.run = "5bd74e1a434549cf31ce31777e9a32f90baa14148e6658633945508a46dbf6611644c4212b53812bb32a399e850517369e3d89bb0e495c89e6f2a979090ed765"; 6597 6651 }; 6598 6652 "collection-fontsextra" = { 6599 6653 revision = 64952; 6600 6654 stripPrefix = 0; 6601 - deps."aboensis" = tl."aboensis"; 6602 - deps."academicons" = tl."academicons"; 6603 - deps."accanthis" = tl."accanthis"; 6604 - deps."adforn" = tl."adforn"; 6605 - deps."adfsymbols" = tl."adfsymbols"; 6606 - deps."aesupp" = tl."aesupp"; 6607 - deps."alegreya" = tl."alegreya"; 6608 - deps."alfaslabone" = tl."alfaslabone"; 6609 - deps."algolrevived" = tl."algolrevived"; 6610 - deps."allrunes" = tl."allrunes"; 6611 - deps."almendra" = tl."almendra"; 6612 - deps."almfixed" = tl."almfixed"; 6613 - deps."andika" = tl."andika"; 6614 - deps."anonymouspro" = tl."anonymouspro"; 6615 - deps."antiqua" = tl."antiqua"; 6616 - deps."antt" = tl."antt"; 6617 - deps."archaic" = tl."archaic"; 6618 - deps."archivo" = tl."archivo"; 6619 - deps."arev" = tl."arev"; 6620 - deps."arimo" = tl."arimo"; 6621 - deps."arvo" = tl."arvo"; 6622 - deps."asana-math" = tl."asana-math"; 6623 - deps."asapsym" = tl."asapsym"; 6624 - deps."ascii-font" = tl."ascii-font"; 6625 - deps."aspectratio" = tl."aspectratio"; 6626 - deps."astro" = tl."astro"; 6627 - deps."atkinson" = tl."atkinson"; 6628 - deps."augie" = tl."augie"; 6629 - deps."auncial-new" = tl."auncial-new"; 6630 - deps."aurical" = tl."aurical"; 6631 - deps."b1encoding" = tl."b1encoding"; 6632 - deps."barcodes" = tl."barcodes"; 6633 - deps."baskervald" = tl."baskervald"; 6634 - deps."baskervaldx" = tl."baskervaldx"; 6635 - deps."baskervillef" = tl."baskervillef"; 6636 - deps."bbding" = tl."bbding"; 6637 - deps."bbm" = tl."bbm"; 6638 - deps."bbm-macros" = tl."bbm-macros"; 6639 - deps."bbold" = tl."bbold"; 6640 - deps."bbold-type1" = tl."bbold-type1"; 6641 - deps."bboldx" = tl."bboldx"; 6642 - deps."belleek" = tl."belleek"; 6643 - deps."bera" = tl."bera"; 6644 - deps."berenisadf" = tl."berenisadf"; 6645 - deps."beuron" = tl."beuron"; 6646 - deps."bguq" = tl."bguq"; 6647 - deps."bitter" = tl."bitter"; 6648 - deps."blacklettert1" = tl."blacklettert1"; 6649 - deps."boisik" = tl."boisik"; 6650 - deps."bookhands" = tl."bookhands"; 6651 - deps."boondox" = tl."boondox"; 6652 - deps."braille" = tl."braille"; 6653 - deps."brushscr" = tl."brushscr"; 6654 - deps."cabin" = tl."cabin"; 6655 - deps."caladea" = tl."caladea"; 6656 - deps."calligra" = tl."calligra"; 6657 - deps."calligra-type1" = tl."calligra-type1"; 6658 - deps."cantarell" = tl."cantarell"; 6659 - deps."carlito" = tl."carlito"; 6660 - deps."carolmin-ps" = tl."carolmin-ps"; 6661 - deps."cascadia-code" = tl."cascadia-code"; 6662 - deps."ccicons" = tl."ccicons"; 6663 - deps."cfr-initials" = tl."cfr-initials"; 6664 - deps."cfr-lm" = tl."cfr-lm"; 6665 - deps."charissil" = tl."charissil"; 6666 - deps."cherokee" = tl."cherokee"; 6667 - deps."chivo" = tl."chivo"; 6668 - deps."cinzel" = tl."cinzel"; 6669 - deps."clara" = tl."clara"; 6670 - deps."clearsans" = tl."clearsans"; 6671 - deps."cm-lgc" = tl."cm-lgc"; 6672 - deps."cm-mf-extra-bold" = tl."cm-mf-extra-bold"; 6673 - deps."cm-unicode" = tl."cm-unicode"; 6674 - deps."cmathbb" = tl."cmathbb"; 6675 - deps."cmbright" = tl."cmbright"; 6676 - deps."cmexb" = tl."cmexb"; 6677 - deps."cmll" = tl."cmll"; 6678 - deps."cmpica" = tl."cmpica"; 6679 - deps."cmsrb" = tl."cmsrb"; 6680 - deps."cmtiup" = tl."cmtiup"; 6681 - deps."cmupint" = tl."cmupint"; 6682 - deps."cochineal" = tl."cochineal"; 6683 - deps."coelacanth" = tl."coelacanth"; 6684 - deps."collection-basic" = tl."collection-basic"; 6685 - deps."comfortaa" = tl."comfortaa"; 6686 - deps."comicneue" = tl."comicneue"; 6687 - deps."concmath-fonts" = tl."concmath-fonts"; 6688 - deps."concmath-otf" = tl."concmath-otf"; 6689 - deps."cookingsymbols" = tl."cookingsymbols"; 6690 - deps."cooperhewitt" = tl."cooperhewitt"; 6691 - deps."cormorantgaramond" = tl."cormorantgaramond"; 6692 - deps."countriesofeurope" = tl."countriesofeurope"; 6693 - deps."courier-scaled" = tl."courier-scaled"; 6694 - deps."courierten" = tl."courierten"; 6695 - deps."crimson" = tl."crimson"; 6696 - deps."crimsonpro" = tl."crimsonpro"; 6697 - deps."cryst" = tl."cryst"; 6698 - deps."cuprum" = tl."cuprum"; 6699 - deps."cyklop" = tl."cyklop"; 6700 - deps."dancers" = tl."dancers"; 6701 - deps."dantelogo" = tl."dantelogo"; 6702 - deps."dejavu" = tl."dejavu"; 6703 - deps."dejavu-otf" = tl."dejavu-otf"; 6704 - deps."dice" = tl."dice"; 6705 - deps."dictsym" = tl."dictsym"; 6706 - deps."dingbat" = tl."dingbat"; 6707 - deps."domitian" = tl."domitian"; 6708 - deps."doublestroke" = tl."doublestroke"; 6709 - deps."doulossil" = tl."doulossil"; 6710 - deps."dozenal" = tl."dozenal"; 6711 - deps."drm" = tl."drm"; 6712 - deps."droid" = tl."droid"; 6713 - deps."dsserif" = tl."dsserif"; 6714 - deps."duerer" = tl."duerer"; 6715 - deps."duerer-latex" = tl."duerer-latex"; 6716 - deps."dutchcal" = tl."dutchcal"; 6717 - deps."ean" = tl."ean"; 6718 - deps."ebgaramond" = tl."ebgaramond"; 6719 - deps."ebgaramond-maths" = tl."ebgaramond-maths"; 6720 - deps."ecc" = tl."ecc"; 6721 - deps."eco" = tl."eco"; 6722 - deps."eczar" = tl."eczar"; 6723 - deps."eiad" = tl."eiad"; 6724 - deps."eiad-ltx" = tl."eiad-ltx"; 6725 - deps."ektype-tanka" = tl."ektype-tanka"; 6726 - deps."electrum" = tl."electrum"; 6727 - deps."elvish" = tl."elvish"; 6728 - deps."epigrafica" = tl."epigrafica"; 6729 - deps."epsdice" = tl."epsdice"; 6730 - deps."erewhon" = tl."erewhon"; 6731 - deps."erewhon-math" = tl."erewhon-math"; 6732 - deps."esrelation" = tl."esrelation"; 6733 - deps."esstix" = tl."esstix"; 6734 - deps."esvect" = tl."esvect"; 6735 - deps."etbb" = tl."etbb"; 6736 - deps."euler-math" = tl."euler-math"; 6737 - deps."eulervm" = tl."eulervm"; 6738 - deps."euxm" = tl."euxm"; 6739 - deps."fbb" = tl."fbb"; 6740 - deps."fdsymbol" = tl."fdsymbol"; 6741 - deps."fetamont" = tl."fetamont"; 6742 - deps."feyn" = tl."feyn"; 6743 - deps."fge" = tl."fge"; 6744 - deps."fira" = tl."fira"; 6745 - deps."firamath" = tl."firamath"; 6746 - deps."firamath-otf" = tl."firamath-otf"; 6747 - deps."foekfont" = tl."foekfont"; 6748 - deps."fonetika" = tl."fonetika"; 6749 - deps."fontawesome" = tl."fontawesome"; 6750 - deps."fontawesome5" = tl."fontawesome5"; 6751 - deps."fontmfizz" = tl."fontmfizz"; 6752 - deps."fonts-churchslavonic" = tl."fonts-churchslavonic"; 6753 - deps."forum" = tl."forum"; 6754 - deps."fourier" = tl."fourier"; 6755 - deps."fouriernc" = tl."fouriernc"; 6756 - deps."frcursive" = tl."frcursive"; 6757 - deps."frederika2016" = tl."frederika2016"; 6758 - deps."frimurer" = tl."frimurer"; 6759 - deps."garamond-libre" = tl."garamond-libre"; 6760 - deps."garamond-math" = tl."garamond-math"; 6761 - deps."genealogy" = tl."genealogy"; 6762 - deps."gentium-tug" = tl."gentium-tug"; 6763 - deps."gfsartemisia" = tl."gfsartemisia"; 6764 - deps."gfsbodoni" = tl."gfsbodoni"; 6765 - deps."gfscomplutum" = tl."gfscomplutum"; 6766 - deps."gfsdidot" = tl."gfsdidot"; 6767 - deps."gfsdidotclassic" = tl."gfsdidotclassic"; 6768 - deps."gfsneohellenic" = tl."gfsneohellenic"; 6769 - deps."gfsneohellenicmath" = tl."gfsneohellenicmath"; 6770 - deps."gfssolomos" = tl."gfssolomos"; 6771 - deps."gillcm" = tl."gillcm"; 6772 - deps."gillius" = tl."gillius"; 6773 - deps."gnu-freefont" = tl."gnu-freefont"; 6774 - deps."gofonts" = tl."gofonts"; 6775 - deps."gothic" = tl."gothic"; 6776 - deps."greenpoint" = tl."greenpoint"; 6777 - deps."grotesq" = tl."grotesq"; 6778 - deps."gudea" = tl."gudea"; 6779 - deps."hacm" = tl."hacm"; 6780 - deps."hamnosys" = tl."hamnosys"; 6781 - deps."hands" = tl."hands"; 6782 - deps."hep-font" = tl."hep-font"; 6783 - deps."hep-math-font" = tl."hep-math-font"; 6784 - deps."heros-otf" = tl."heros-otf"; 6785 - deps."heuristica" = tl."heuristica"; 6786 - deps."hfbright" = tl."hfbright"; 6787 - deps."hfoldsty" = tl."hfoldsty"; 6788 - deps."hindmadurai" = tl."hindmadurai"; 6789 - deps."ibarra" = tl."ibarra"; 6790 - deps."ifsym" = tl."ifsym"; 6791 - deps."imfellenglish" = tl."imfellenglish"; 6792 - deps."inconsolata" = tl."inconsolata"; 6793 - deps."initials" = tl."initials"; 6794 - deps."inriafonts" = tl."inriafonts"; 6795 - deps."inter" = tl."inter"; 6796 - deps."ipaex-type1" = tl."ipaex-type1"; 6797 - deps."iwona" = tl."iwona"; 6798 - deps."jablantile" = tl."jablantile"; 6799 - deps."jamtimes" = tl."jamtimes"; 6800 - deps."josefin" = tl."josefin"; 6801 - deps."junicode" = tl."junicode"; 6802 - deps."kixfont" = tl."kixfont"; 6803 - deps."kpfonts" = tl."kpfonts"; 6804 - deps."kpfonts-otf" = tl."kpfonts-otf"; 6805 - deps."kurier" = tl."kurier"; 6806 - deps."lato" = tl."lato"; 6807 - deps."lexend" = tl."lexend"; 6808 - deps."lfb" = tl."lfb"; 6809 - deps."libertine" = tl."libertine"; 6810 - deps."libertinegc" = tl."libertinegc"; 6811 - deps."libertinus" = tl."libertinus"; 6812 - deps."libertinus-fonts" = tl."libertinus-fonts"; 6813 - deps."libertinus-otf" = tl."libertinus-otf"; 6814 - deps."libertinus-type1" = tl."libertinus-type1"; 6815 - deps."libertinust1math" = tl."libertinust1math"; 6816 - deps."librebaskerville" = tl."librebaskerville"; 6817 - deps."librebodoni" = tl."librebodoni"; 6818 - deps."librecaslon" = tl."librecaslon"; 6819 - deps."librefranklin" = tl."librefranklin"; 6820 - deps."libris" = tl."libris"; 6821 - deps."lineara" = tl."lineara"; 6822 - deps."linguisticspro" = tl."linguisticspro"; 6823 - deps."lobster2" = tl."lobster2"; 6824 - deps."logix" = tl."logix"; 6825 - deps."lxfonts" = tl."lxfonts"; 6826 - deps."ly1" = tl."ly1"; 6827 - deps."magra" = tl."magra"; 6828 - deps."marcellus" = tl."marcellus"; 6829 - deps."mathabx" = tl."mathabx"; 6830 - deps."mathabx-type1" = tl."mathabx-type1"; 6831 - deps."mathdesign" = tl."mathdesign"; 6832 - deps."mdputu" = tl."mdputu"; 6833 - deps."mdsymbol" = tl."mdsymbol"; 6834 - deps."merriweather" = tl."merriweather"; 6835 - deps."miama" = tl."miama"; 6836 - deps."mintspirit" = tl."mintspirit"; 6837 - deps."missaali" = tl."missaali"; 6838 - deps."mlmodern" = tl."mlmodern"; 6839 - deps."mnsymbol" = tl."mnsymbol"; 6840 - deps."montserrat" = tl."montserrat"; 6841 - deps."mpfonts" = tl."mpfonts"; 6842 - deps."mweights" = tl."mweights"; 6843 - deps."newcomputermodern" = tl."newcomputermodern"; 6844 - deps."newpx" = tl."newpx"; 6845 - deps."newtx" = tl."newtx"; 6846 - deps."newtxsf" = tl."newtxsf"; 6847 - deps."newtxtt" = tl."newtxtt"; 6848 - deps."niceframe-type1" = tl."niceframe-type1"; 6849 - deps."nimbus15" = tl."nimbus15"; 6850 - deps."nkarta" = tl."nkarta"; 6851 - deps."noto" = tl."noto"; 6852 - deps."noto-emoji" = tl."noto-emoji"; 6853 - deps."notomath" = tl."notomath"; 6854 - deps."nunito" = tl."nunito"; 6855 - deps."obnov" = tl."obnov"; 6856 - deps."ocherokee" = tl."ocherokee"; 6857 - deps."ocr-b" = tl."ocr-b"; 6858 - deps."ocr-b-outline" = tl."ocr-b-outline"; 6859 - deps."ogham" = tl."ogham"; 6860 - deps."oinuit" = tl."oinuit"; 6861 - deps."old-arrows" = tl."old-arrows"; 6862 - deps."oldlatin" = tl."oldlatin"; 6863 - deps."oldstandard" = tl."oldstandard"; 6864 - deps."opensans" = tl."opensans"; 6865 - deps."orkhun" = tl."orkhun"; 6866 - deps."oswald" = tl."oswald"; 6867 - deps."overlock" = tl."overlock"; 6868 - deps."pacioli" = tl."pacioli"; 6869 - deps."pagella-otf" = tl."pagella-otf"; 6870 - deps."paratype" = tl."paratype"; 6871 - deps."phaistos" = tl."phaistos"; 6872 - deps."phonetic" = tl."phonetic"; 6873 - deps."pigpen" = tl."pigpen"; 6874 - deps."playfair" = tl."playfair"; 6875 - deps."plex" = tl."plex"; 6876 - deps."plex-otf" = tl."plex-otf"; 6877 - deps."plimsoll" = tl."plimsoll"; 6878 - deps."poiretone" = tl."poiretone"; 6879 - deps."poltawski" = tl."poltawski"; 6880 - deps."prodint" = tl."prodint"; 6881 - deps."punk" = tl."punk"; 6882 - deps."punk-latex" = tl."punk-latex"; 6883 - deps."punknova" = tl."punknova"; 6884 - deps."pxtxalfa" = tl."pxtxalfa"; 6885 - deps."qualitype" = tl."qualitype"; 6886 - deps."quattrocento" = tl."quattrocento"; 6887 - deps."raleway" = tl."raleway"; 6888 - deps."recycle" = tl."recycle"; 6889 - deps."roboto" = tl."roboto"; 6890 - deps."romande" = tl."romande"; 6891 - deps."rosario" = tl."rosario"; 6892 - deps."rsfso" = tl."rsfso"; 6893 - deps."sansmathaccent" = tl."sansmathaccent"; 6894 - deps."sansmathfonts" = tl."sansmathfonts"; 6895 - deps."sauter" = tl."sauter"; 6896 - deps."sauterfonts" = tl."sauterfonts"; 6897 - deps."schola-otf" = tl."schola-otf"; 6898 - deps."scholax" = tl."scholax"; 6899 - deps."schulschriften" = tl."schulschriften"; 6900 - deps."semaphor" = tl."semaphor"; 6901 - deps."shobhika" = tl."shobhika"; 6902 - deps."simpleicons" = tl."simpleicons"; 6903 - deps."skull" = tl."skull"; 6904 - deps."sourcecodepro" = tl."sourcecodepro"; 6905 - deps."sourcesanspro" = tl."sourcesanspro"; 6906 - deps."sourceserifpro" = tl."sourceserifpro"; 6907 - deps."spectral" = tl."spectral"; 6908 - deps."srbtiks" = tl."srbtiks"; 6909 - deps."starfont" = tl."starfont"; 6910 - deps."staves" = tl."staves"; 6911 - deps."step" = tl."step"; 6912 - deps."stepgreek" = tl."stepgreek"; 6913 - deps."stickstoo" = tl."stickstoo"; 6914 - deps."stix" = tl."stix"; 6915 - deps."stix2-otf" = tl."stix2-otf"; 6916 - deps."stix2-type1" = tl."stix2-type1"; 6917 - deps."superiors" = tl."superiors"; 6918 - deps."svrsymbols" = tl."svrsymbols"; 6919 - deps."symbats3" = tl."symbats3"; 6920 - deps."tapir" = tl."tapir"; 6921 - deps."tempora" = tl."tempora"; 6922 - deps."tengwarscript" = tl."tengwarscript"; 6923 - deps."termes-otf" = tl."termes-otf"; 6924 - deps."tfrupee" = tl."tfrupee"; 6925 - deps."theanodidot" = tl."theanodidot"; 6926 - deps."theanomodern" = tl."theanomodern"; 6927 - deps."theanooldstyle" = tl."theanooldstyle"; 6928 - deps."tinos" = tl."tinos"; 6929 - deps."tpslifonts" = tl."tpslifonts"; 6930 - deps."trajan" = tl."trajan"; 6931 - deps."twemoji-colr" = tl."twemoji-colr"; 6932 - deps."txfontsb" = tl."txfontsb"; 6933 - deps."txuprcal" = tl."txuprcal"; 6934 - deps."typicons" = tl."typicons"; 6935 - deps."umtypewriter" = tl."umtypewriter"; 6936 - deps."universa" = tl."universa"; 6937 - deps."universalis" = tl."universalis"; 6938 - deps."uppunctlm" = tl."uppunctlm"; 6939 - deps."urwchancal" = tl."urwchancal"; 6940 - deps."venturisadf" = tl."venturisadf"; 6941 - deps."wsuipa" = tl."wsuipa"; 6942 - deps."xcharter" = tl."xcharter"; 6943 - deps."xcharter-math" = tl."xcharter-math"; 6944 - deps."xits" = tl."xits"; 6945 - deps."yfonts" = tl."yfonts"; 6946 - deps."yfonts-otf" = tl."yfonts-otf"; 6947 - deps."yfonts-t1" = tl."yfonts-t1"; 6948 - deps."yinit-otf" = tl."yinit-otf"; 6949 - deps."zlmtt" = tl."zlmtt"; 6655 + deps = [ 6656 + "aboensis" 6657 + "academicons" 6658 + "accanthis" 6659 + "adforn" 6660 + "adfsymbols" 6661 + "aesupp" 6662 + "alegreya" 6663 + "alfaslabone" 6664 + "algolrevived" 6665 + "allrunes" 6666 + "almendra" 6667 + "almfixed" 6668 + "andika" 6669 + "anonymouspro" 6670 + "antiqua" 6671 + "antt" 6672 + "archaic" 6673 + "archivo" 6674 + "arev" 6675 + "arimo" 6676 + "arvo" 6677 + "asana-math" 6678 + "asapsym" 6679 + "ascii-font" 6680 + "aspectratio" 6681 + "astro" 6682 + "atkinson" 6683 + "augie" 6684 + "auncial-new" 6685 + "aurical" 6686 + "b1encoding" 6687 + "barcodes" 6688 + "baskervald" 6689 + "baskervaldx" 6690 + "baskervillef" 6691 + "bbding" 6692 + "bbm" 6693 + "bbm-macros" 6694 + "bbold" 6695 + "bbold-type1" 6696 + "bboldx" 6697 + "belleek" 6698 + "bera" 6699 + "berenisadf" 6700 + "beuron" 6701 + "bguq" 6702 + "bitter" 6703 + "blacklettert1" 6704 + "boisik" 6705 + "bookhands" 6706 + "boondox" 6707 + "braille" 6708 + "brushscr" 6709 + "cabin" 6710 + "caladea" 6711 + "calligra" 6712 + "calligra-type1" 6713 + "cantarell" 6714 + "carlito" 6715 + "carolmin-ps" 6716 + "cascadia-code" 6717 + "ccicons" 6718 + "cfr-initials" 6719 + "cfr-lm" 6720 + "charissil" 6721 + "cherokee" 6722 + "chivo" 6723 + "cinzel" 6724 + "clara" 6725 + "clearsans" 6726 + "cm-lgc" 6727 + "cm-mf-extra-bold" 6728 + "cm-unicode" 6729 + "cmathbb" 6730 + "cmbright" 6731 + "cmexb" 6732 + "cmll" 6733 + "cmpica" 6734 + "cmsrb" 6735 + "cmtiup" 6736 + "cmupint" 6737 + "cochineal" 6738 + "coelacanth" 6739 + "collection-basic" 6740 + "comfortaa" 6741 + "comicneue" 6742 + "concmath-fonts" 6743 + "concmath-otf" 6744 + "cookingsymbols" 6745 + "cooperhewitt" 6746 + "cormorantgaramond" 6747 + "countriesofeurope" 6748 + "courier-scaled" 6749 + "courierten" 6750 + "crimson" 6751 + "crimsonpro" 6752 + "cryst" 6753 + "cuprum" 6754 + "cyklop" 6755 + "dancers" 6756 + "dantelogo" 6757 + "dejavu" 6758 + "dejavu-otf" 6759 + "dice" 6760 + "dictsym" 6761 + "dingbat" 6762 + "domitian" 6763 + "doublestroke" 6764 + "doulossil" 6765 + "dozenal" 6766 + "drm" 6767 + "droid" 6768 + "dsserif" 6769 + "duerer" 6770 + "duerer-latex" 6771 + "dutchcal" 6772 + "ean" 6773 + "ebgaramond" 6774 + "ebgaramond-maths" 6775 + "ecc" 6776 + "eco" 6777 + "eczar" 6778 + "eiad" 6779 + "eiad-ltx" 6780 + "ektype-tanka" 6781 + "electrum" 6782 + "elvish" 6783 + "epigrafica" 6784 + "epsdice" 6785 + "erewhon" 6786 + "erewhon-math" 6787 + "esrelation" 6788 + "esstix" 6789 + "esvect" 6790 + "etbb" 6791 + "euler-math" 6792 + "eulervm" 6793 + "euxm" 6794 + "fbb" 6795 + "fdsymbol" 6796 + "fetamont" 6797 + "feyn" 6798 + "fge" 6799 + "fira" 6800 + "firamath" 6801 + "firamath-otf" 6802 + "foekfont" 6803 + "fonetika" 6804 + "fontawesome" 6805 + "fontawesome5" 6806 + "fontmfizz" 6807 + "fonts-churchslavonic" 6808 + "forum" 6809 + "fourier" 6810 + "fouriernc" 6811 + "frcursive" 6812 + "frederika2016" 6813 + "frimurer" 6814 + "garamond-libre" 6815 + "garamond-math" 6816 + "genealogy" 6817 + "gentium-tug" 6818 + "gfsartemisia" 6819 + "gfsbodoni" 6820 + "gfscomplutum" 6821 + "gfsdidot" 6822 + "gfsdidotclassic" 6823 + "gfsneohellenic" 6824 + "gfsneohellenicmath" 6825 + "gfssolomos" 6826 + "gillcm" 6827 + "gillius" 6828 + "gnu-freefont" 6829 + "gofonts" 6830 + "gothic" 6831 + "greenpoint" 6832 + "grotesq" 6833 + "gudea" 6834 + "hacm" 6835 + "hamnosys" 6836 + "hands" 6837 + "hep-font" 6838 + "hep-math-font" 6839 + "heros-otf" 6840 + "heuristica" 6841 + "hfbright" 6842 + "hfoldsty" 6843 + "hindmadurai" 6844 + "ibarra" 6845 + "ifsym" 6846 + "imfellenglish" 6847 + "inconsolata" 6848 + "initials" 6849 + "inriafonts" 6850 + "inter" 6851 + "ipaex-type1" 6852 + "iwona" 6853 + "jablantile" 6854 + "jamtimes" 6855 + "josefin" 6856 + "junicode" 6857 + "kixfont" 6858 + "kpfonts" 6859 + "kpfonts-otf" 6860 + "kurier" 6861 + "lato" 6862 + "lexend" 6863 + "lfb" 6864 + "libertine" 6865 + "libertinegc" 6866 + "libertinus" 6867 + "libertinus-fonts" 6868 + "libertinus-otf" 6869 + "libertinus-type1" 6870 + "libertinust1math" 6871 + "librebaskerville" 6872 + "librebodoni" 6873 + "librecaslon" 6874 + "librefranklin" 6875 + "libris" 6876 + "lineara" 6877 + "linguisticspro" 6878 + "lobster2" 6879 + "logix" 6880 + "lxfonts" 6881 + "ly1" 6882 + "magra" 6883 + "marcellus" 6884 + "mathabx" 6885 + "mathabx-type1" 6886 + "mathdesign" 6887 + "mdputu" 6888 + "mdsymbol" 6889 + "merriweather" 6890 + "miama" 6891 + "mintspirit" 6892 + "missaali" 6893 + "mlmodern" 6894 + "mnsymbol" 6895 + "montserrat" 6896 + "mpfonts" 6897 + "mweights" 6898 + "newcomputermodern" 6899 + "newpx" 6900 + "newtx" 6901 + "newtxsf" 6902 + "newtxtt" 6903 + "niceframe-type1" 6904 + "nimbus15" 6905 + "nkarta" 6906 + "noto" 6907 + "noto-emoji" 6908 + "notomath" 6909 + "nunito" 6910 + "obnov" 6911 + "ocherokee" 6912 + "ocr-b" 6913 + "ocr-b-outline" 6914 + "ogham" 6915 + "oinuit" 6916 + "old-arrows" 6917 + "oldlatin" 6918 + "oldstandard" 6919 + "opensans" 6920 + "orkhun" 6921 + "oswald" 6922 + "overlock" 6923 + "pacioli" 6924 + "pagella-otf" 6925 + "paratype" 6926 + "phaistos" 6927 + "phonetic" 6928 + "pigpen" 6929 + "playfair" 6930 + "plex" 6931 + "plex-otf" 6932 + "plimsoll" 6933 + "poiretone" 6934 + "poltawski" 6935 + "prodint" 6936 + "punk" 6937 + "punk-latex" 6938 + "punknova" 6939 + "pxtxalfa" 6940 + "qualitype" 6941 + "quattrocento" 6942 + "raleway" 6943 + "recycle" 6944 + "roboto" 6945 + "romande" 6946 + "rosario" 6947 + "rsfso" 6948 + "sansmathaccent" 6949 + "sansmathfonts" 6950 + "sauter" 6951 + "sauterfonts" 6952 + "schola-otf" 6953 + "scholax" 6954 + "schulschriften" 6955 + "semaphor" 6956 + "shobhika" 6957 + "simpleicons" 6958 + "skull" 6959 + "sourcecodepro" 6960 + "sourcesanspro" 6961 + "sourceserifpro" 6962 + "spectral" 6963 + "srbtiks" 6964 + "starfont" 6965 + "staves" 6966 + "step" 6967 + "stepgreek" 6968 + "stickstoo" 6969 + "stix" 6970 + "stix2-otf" 6971 + "stix2-type1" 6972 + "superiors" 6973 + "svrsymbols" 6974 + "symbats3" 6975 + "tapir" 6976 + "tempora" 6977 + "tengwarscript" 6978 + "termes-otf" 6979 + "tfrupee" 6980 + "theanodidot" 6981 + "theanomodern" 6982 + "theanooldstyle" 6983 + "tinos" 6984 + "tpslifonts" 6985 + "trajan" 6986 + "twemoji-colr" 6987 + "txfontsb" 6988 + "txuprcal" 6989 + "typicons" 6990 + "umtypewriter" 6991 + "universa" 6992 + "universalis" 6993 + "uppunctlm" 6994 + "urwchancal" 6995 + "venturisadf" 6996 + "wsuipa" 6997 + "xcharter" 6998 + "xcharter-math" 6999 + "xits" 7000 + "yfonts" 7001 + "yfonts-otf" 7002 + "yfonts-t1" 7003 + "yinit-otf" 7004 + "zlmtt" 7005 + ]; 6950 7006 sha512.run = "e0c3a3142ca8dcdcdc0d7c5328e1624736f20bfe9e3757bad95d0e361b73ecdf3bc53e9d19f42ef5d91b74cbdf4fca1ee62b79f53d4d5a5f8aed47f51553d77e"; 6951 7007 }; 6952 7008 "collection-fontsrecommended" = { 6953 7009 revision = 54074; 6954 7010 stripPrefix = 0; 6955 - deps."avantgar" = tl."avantgar"; 6956 - deps."bookman" = tl."bookman"; 6957 - deps."charter" = tl."charter"; 6958 - deps."cm-super" = tl."cm-super"; 6959 - deps."cmextra" = tl."cmextra"; 6960 - deps."collection-basic" = tl."collection-basic"; 6961 - deps."courier" = tl."courier"; 6962 - deps."euro" = tl."euro"; 6963 - deps."euro-ce" = tl."euro-ce"; 6964 - deps."eurosym" = tl."eurosym"; 6965 - deps."fpl" = tl."fpl"; 6966 - deps."helvetic" = tl."helvetic"; 6967 - deps."lm" = tl."lm"; 6968 - deps."lm-math" = tl."lm-math"; 6969 - deps."manfnt-font" = tl."manfnt-font"; 6970 - deps."marvosym" = tl."marvosym"; 6971 - deps."mathpazo" = tl."mathpazo"; 6972 - deps."mflogo-font" = tl."mflogo-font"; 6973 - deps."ncntrsbk" = tl."ncntrsbk"; 6974 - deps."palatino" = tl."palatino"; 6975 - deps."pxfonts" = tl."pxfonts"; 6976 - deps."rsfs" = tl."rsfs"; 6977 - deps."symbol" = tl."symbol"; 6978 - deps."tex-gyre" = tl."tex-gyre"; 6979 - deps."tex-gyre-math" = tl."tex-gyre-math"; 6980 - deps."times" = tl."times"; 6981 - deps."tipa" = tl."tipa"; 6982 - deps."txfonts" = tl."txfonts"; 6983 - deps."utopia" = tl."utopia"; 6984 - deps."wasy" = tl."wasy"; 6985 - deps."wasy-type1" = tl."wasy-type1"; 6986 - deps."wasysym" = tl."wasysym"; 6987 - deps."zapfchan" = tl."zapfchan"; 6988 - deps."zapfding" = tl."zapfding"; 7011 + deps = [ 7012 + "avantgar" 7013 + "bookman" 7014 + "charter" 7015 + "cm-super" 7016 + "cmextra" 7017 + "collection-basic" 7018 + "courier" 7019 + "euro" 7020 + "euro-ce" 7021 + "eurosym" 7022 + "fpl" 7023 + "helvetic" 7024 + "lm" 7025 + "lm-math" 7026 + "manfnt-font" 7027 + "marvosym" 7028 + "mathpazo" 7029 + "mflogo-font" 7030 + "ncntrsbk" 7031 + "palatino" 7032 + "pxfonts" 7033 + "rsfs" 7034 + "symbol" 7035 + "tex-gyre" 7036 + "tex-gyre-math" 7037 + "times" 7038 + "tipa" 7039 + "txfonts" 7040 + "utopia" 7041 + "wasy" 7042 + "wasy-type1" 7043 + "wasysym" 7044 + "zapfchan" 7045 + "zapfding" 7046 + ]; 6989 7047 sha512.run = "eaa6e54780a0813a88102258ee3bd7a4640787be0b89eff4ba2c9cc19298bf3e2799ffab4e03e49f20131d07fbac9f601a7223fc1b47257dd0feeb04797c56a8"; 6990 7048 }; 6991 7049 "collection-fontutils" = { 6992 7050 revision = 61207; 6993 7051 stripPrefix = 0; 6994 - deps."accfonts" = tl."accfonts"; 6995 - deps."afm2pl" = tl."afm2pl"; 6996 - deps."albatross" = tl."albatross"; 6997 - deps."collection-basic" = tl."collection-basic"; 6998 - deps."dosepsbin" = tl."dosepsbin"; 6999 - deps."dvipsconfig" = tl."dvipsconfig"; 7000 - deps."epstopdf" = tl."epstopdf"; 7001 - deps."fontinst" = tl."fontinst"; 7002 - deps."fontools" = tl."fontools"; 7003 - deps."fontware" = tl."fontware"; 7004 - deps."lcdftypetools" = tl."lcdftypetools"; 7005 - deps."luafindfont" = tl."luafindfont"; 7006 - deps."metatype1" = tl."metatype1"; 7007 - deps."mf2pt1" = tl."mf2pt1"; 7008 - deps."ps2eps" = tl."ps2eps"; 7009 - deps."ps2pk" = tl."ps2pk"; 7010 - deps."psutils" = tl."psutils"; 7011 - deps."t1utils" = tl."t1utils"; 7012 - deps."ttfutils" = tl."ttfutils"; 7052 + deps = [ 7053 + "accfonts" 7054 + "afm2pl" 7055 + "albatross" 7056 + "collection-basic" 7057 + "dosepsbin" 7058 + "dvipsconfig" 7059 + "epstopdf" 7060 + "fontinst" 7061 + "fontools" 7062 + "fontware" 7063 + "lcdftypetools" 7064 + "luafindfont" 7065 + "metatype1" 7066 + "mf2pt1" 7067 + "ps2eps" 7068 + "ps2pk" 7069 + "psutils" 7070 + "t1utils" 7071 + "ttfutils" 7072 + ]; 7013 7073 sha512.run = "430c95b7e104cb837b7424ebb17ab7ee1aefd99d70aaceefff8a1924fa949329aebe0d5a28b939fabf28d3c5dfc2dcb466147e1396514d5dcf4f64af231db8a7"; 7014 7074 }; 7015 7075 "collection-formatsextra" = { 7016 7076 revision = 62226; 7017 7077 stripPrefix = 0; 7018 - deps."aleph" = tl."aleph"; 7019 - deps."antomega" = tl."antomega"; 7020 - deps."collection-basic" = tl."collection-basic"; 7021 - deps."collection-latex" = tl."collection-latex"; 7022 - deps."edmac" = tl."edmac"; 7023 - deps."eplain" = tl."eplain"; 7024 - deps."hitex" = tl."hitex"; 7025 - deps."jadetex" = tl."jadetex"; 7026 - deps."lambda" = tl."lambda"; 7027 - deps."lollipop" = tl."lollipop"; 7028 - deps."mltex" = tl."mltex"; 7029 - deps."mxedruli" = tl."mxedruli"; 7030 - deps."omega" = tl."omega"; 7031 - deps."omegaware" = tl."omegaware"; 7032 - deps."otibet" = tl."otibet"; 7033 - deps."passivetex" = tl."passivetex"; 7034 - deps."psizzl" = tl."psizzl"; 7035 - deps."startex" = tl."startex"; 7036 - deps."texsis" = tl."texsis"; 7037 - deps."xmltex" = tl."xmltex"; 7038 - deps."xmltexconfig" = tl."xmltexconfig"; 7078 + deps = [ 7079 + "aleph" 7080 + "antomega" 7081 + "collection-basic" 7082 + "collection-latex" 7083 + "edmac" 7084 + "eplain" 7085 + "hitex" 7086 + "jadetex" 7087 + "lambda" 7088 + "lollipop" 7089 + "mltex" 7090 + "mxedruli" 7091 + "omega" 7092 + "omegaware" 7093 + "otibet" 7094 + "passivetex" 7095 + "psizzl" 7096 + "startex" 7097 + "texsis" 7098 + "xmltex" 7099 + "xmltexconfig" 7100 + ]; 7039 7101 sha512.run = "6c7f0a1829789edea6a42d45f13f482abc0aa1ecc66b0ba4b70197efff349df75c9a89a98f21537cf6f3751b608fc3ee10ac842613deaf2aa21005374a23bab2"; 7040 7102 }; 7041 7103 "collection-games" = { 7042 7104 revision = 64827; 7043 7105 stripPrefix = 0; 7044 - deps."bartel-chess-fonts" = tl."bartel-chess-fonts"; 7045 - deps."chess" = tl."chess"; 7046 - deps."chess-problem-diagrams" = tl."chess-problem-diagrams"; 7047 - deps."chessboard" = tl."chessboard"; 7048 - deps."chessfss" = tl."chessfss"; 7049 - deps."chinesechess" = tl."chinesechess"; 7050 - deps."collection-latex" = tl."collection-latex"; 7051 - deps."crossword" = tl."crossword"; 7052 - deps."crosswrd" = tl."crosswrd"; 7053 - deps."customdice" = tl."customdice"; 7054 - deps."egameps" = tl."egameps"; 7055 - deps."gamebook" = tl."gamebook"; 7056 - deps."gamebooklib" = tl."gamebooklib"; 7057 - deps."go" = tl."go"; 7058 - deps."hanoi" = tl."hanoi"; 7059 - deps."havannah" = tl."havannah"; 7060 - deps."hexboard" = tl."hexboard"; 7061 - deps."hexgame" = tl."hexgame"; 7062 - deps."hmtrump" = tl."hmtrump"; 7063 - deps."horoscop" = tl."horoscop"; 7064 - deps."jeuxcartes" = tl."jeuxcartes"; 7065 - deps."jigsaw" = tl."jigsaw"; 7066 - deps."labyrinth" = tl."labyrinth"; 7067 - deps."logicpuzzle" = tl."logicpuzzle"; 7068 - deps."mahjong" = tl."mahjong"; 7069 - deps."musikui" = tl."musikui"; 7070 - deps."nimsticks" = tl."nimsticks"; 7071 - deps."onedown" = tl."onedown"; 7072 - deps."othello" = tl."othello"; 7073 - deps."othelloboard" = tl."othelloboard"; 7074 - deps."pas-crosswords" = tl."pas-crosswords"; 7075 - deps."psgo" = tl."psgo"; 7076 - deps."realtranspose" = tl."realtranspose"; 7077 - deps."reverxii" = tl."reverxii"; 7078 - deps."rubik" = tl."rubik"; 7079 - deps."schwalbe-chess" = tl."schwalbe-chess"; 7080 - deps."sgame" = tl."sgame"; 7081 - deps."skak" = tl."skak"; 7082 - deps."skaknew" = tl."skaknew"; 7083 - deps."soup" = tl."soup"; 7084 - deps."sudoku" = tl."sudoku"; 7085 - deps."sudokubundle" = tl."sudokubundle"; 7086 - deps."wargame" = tl."wargame"; 7087 - deps."xq" = tl."xq"; 7088 - deps."xskak" = tl."xskak"; 7106 + deps = [ 7107 + "bartel-chess-fonts" 7108 + "chess" 7109 + "chess-problem-diagrams" 7110 + "chessboard" 7111 + "chessfss" 7112 + "chinesechess" 7113 + "collection-latex" 7114 + "crossword" 7115 + "crosswrd" 7116 + "customdice" 7117 + "egameps" 7118 + "gamebook" 7119 + "gamebooklib" 7120 + "go" 7121 + "hanoi" 7122 + "havannah" 7123 + "hexboard" 7124 + "hexgame" 7125 + "hmtrump" 7126 + "horoscop" 7127 + "jeuxcartes" 7128 + "jigsaw" 7129 + "labyrinth" 7130 + "logicpuzzle" 7131 + "mahjong" 7132 + "musikui" 7133 + "nimsticks" 7134 + "onedown" 7135 + "othello" 7136 + "othelloboard" 7137 + "pas-crosswords" 7138 + "psgo" 7139 + "realtranspose" 7140 + "reverxii" 7141 + "rubik" 7142 + "schwalbe-chess" 7143 + "sgame" 7144 + "skak" 7145 + "skaknew" 7146 + "soup" 7147 + "sudoku" 7148 + "sudokubundle" 7149 + "wargame" 7150 + "xq" 7151 + "xskak" 7152 + ]; 7089 7153 sha512.run = "0ea226457c553c3db93d7415f1a9e33721b7a41ac17ef049aa52aaeb27a91169769f12532443c34664ccaf4cc76a26761a5d5d0b0a7fa1ccbd2f0142e8d29d67"; 7090 7154 }; 7091 7155 "collection-humanities" = { 7092 7156 revision = 65216; 7093 7157 stripPrefix = 0; 7094 - deps."adtrees" = tl."adtrees"; 7095 - deps."bibleref" = tl."bibleref"; 7096 - deps."bibleref-lds" = tl."bibleref-lds"; 7097 - deps."bibleref-mouth" = tl."bibleref-mouth"; 7098 - deps."bibleref-parse" = tl."bibleref-parse"; 7099 - deps."collection-latex" = tl."collection-latex"; 7100 - deps."covington" = tl."covington"; 7101 - deps."diadia" = tl."diadia"; 7102 - deps."dramatist" = tl."dramatist"; 7103 - deps."dvgloss" = tl."dvgloss"; 7104 - deps."ecltree" = tl."ecltree"; 7105 - deps."edfnotes" = tl."edfnotes"; 7106 - deps."eledform" = tl."eledform"; 7107 - deps."eledmac" = tl."eledmac"; 7108 - deps."expex" = tl."expex"; 7109 - deps."gb4e" = tl."gb4e"; 7110 - deps."gmverse" = tl."gmverse"; 7111 - deps."jura" = tl."jura"; 7112 - deps."juraabbrev" = tl."juraabbrev"; 7113 - deps."juramisc" = tl."juramisc"; 7114 - deps."jurarsp" = tl."jurarsp"; 7115 - deps."langnames" = tl."langnames"; 7116 - deps."ledmac" = tl."ledmac"; 7117 - deps."lexikon" = tl."lexikon"; 7118 - deps."lexref" = tl."lexref"; 7119 - deps."ling-macros" = tl."ling-macros"; 7120 - deps."linguex" = tl."linguex"; 7121 - deps."liturg" = tl."liturg"; 7122 - deps."metrix" = tl."metrix"; 7123 - deps."nnext" = tl."nnext"; 7124 - deps."parallel" = tl."parallel"; 7125 - deps."parrun" = tl."parrun"; 7126 - deps."phonrule" = tl."phonrule"; 7127 - deps."plari" = tl."plari"; 7128 - deps."play" = tl."play"; 7129 - deps."poemscol" = tl."poemscol"; 7130 - deps."poetry" = tl."poetry"; 7131 - deps."poetrytex" = tl."poetrytex"; 7132 - deps."qobitree" = tl."qobitree"; 7133 - deps."qtree" = tl."qtree"; 7134 - deps."reledmac" = tl."reledmac"; 7135 - deps."rrgtrees" = tl."rrgtrees"; 7136 - deps."rtklage" = tl."rtklage"; 7137 - deps."screenplay" = tl."screenplay"; 7138 - deps."screenplay-pkg" = tl."screenplay-pkg"; 7139 - deps."sides" = tl."sides"; 7140 - deps."stage" = tl."stage"; 7141 - deps."textglos" = tl."textglos"; 7142 - deps."thalie" = tl."thalie"; 7143 - deps."theatre" = tl."theatre"; 7144 - deps."tree-dvips" = tl."tree-dvips"; 7145 - deps."verse" = tl."verse"; 7146 - deps."xyling" = tl."xyling"; 7158 + deps = [ 7159 + "adtrees" 7160 + "bibleref" 7161 + "bibleref-lds" 7162 + "bibleref-mouth" 7163 + "bibleref-parse" 7164 + "collection-latex" 7165 + "covington" 7166 + "diadia" 7167 + "dramatist" 7168 + "dvgloss" 7169 + "ecltree" 7170 + "edfnotes" 7171 + "eledform" 7172 + "eledmac" 7173 + "expex" 7174 + "gb4e" 7175 + "gmverse" 7176 + "jura" 7177 + "juraabbrev" 7178 + "juramisc" 7179 + "jurarsp" 7180 + "langnames" 7181 + "ledmac" 7182 + "lexikon" 7183 + "lexref" 7184 + "ling-macros" 7185 + "linguex" 7186 + "liturg" 7187 + "metrix" 7188 + "nnext" 7189 + "parallel" 7190 + "parrun" 7191 + "phonrule" 7192 + "plari" 7193 + "play" 7194 + "poemscol" 7195 + "poetry" 7196 + "poetrytex" 7197 + "qobitree" 7198 + "qtree" 7199 + "reledmac" 7200 + "rrgtrees" 7201 + "rtklage" 7202 + "screenplay" 7203 + "screenplay-pkg" 7204 + "sides" 7205 + "stage" 7206 + "textglos" 7207 + "thalie" 7208 + "theatre" 7209 + "tree-dvips" 7210 + "verse" 7211 + "xyling" 7212 + ]; 7147 7213 sha512.run = "d2ae12a0b914be72772dadc60021220990f037f40a2ef4f95038cdd603c80e039f94009910aed38513b4a7938ec99ecf2f035a0dbe221b9e166ccd8aa977c30b"; 7148 7214 }; 7149 7215 "collection-langarabic" = { 7150 7216 revision = 59594; 7151 7217 stripPrefix = 0; 7152 - deps."alkalami" = tl."alkalami"; 7153 - deps."alpha-persian" = tl."alpha-persian"; 7154 - deps."amiri" = tl."amiri"; 7155 - deps."arabi" = tl."arabi"; 7156 - deps."arabi-add" = tl."arabi-add"; 7157 - deps."arabic-book" = tl."arabic-book"; 7158 - deps."arabluatex" = tl."arabluatex"; 7159 - deps."arabtex" = tl."arabtex"; 7160 - deps."bidi" = tl."bidi"; 7161 - deps."bidihl" = tl."bidihl"; 7162 - deps."collection-basic" = tl."collection-basic"; 7163 - deps."dad" = tl."dad"; 7164 - deps."ghab" = tl."ghab"; 7165 - deps."hvarabic" = tl."hvarabic"; 7166 - deps."hyphen-arabic" = tl."hyphen-arabic"; 7167 - deps."hyphen-farsi" = tl."hyphen-farsi"; 7168 - deps."imsproc" = tl."imsproc"; 7169 - deps."kurdishlipsum" = tl."kurdishlipsum"; 7170 - deps."lshort-persian" = tl."lshort-persian"; 7171 - deps."luabidi" = tl."luabidi"; 7172 - deps."na-box" = tl."na-box"; 7173 - deps."persian-bib" = tl."persian-bib"; 7174 - deps."quran" = tl."quran"; 7175 - deps."sexam" = tl."sexam"; 7176 - deps."simurgh" = tl."simurgh"; 7177 - deps."texnegar" = tl."texnegar"; 7178 - deps."tram" = tl."tram"; 7179 - deps."xepersian" = tl."xepersian"; 7180 - deps."xepersian-hm" = tl."xepersian-hm"; 7181 - deps."xindy-persian" = tl."xindy-persian"; 7218 + deps = [ 7219 + "alkalami" 7220 + "alpha-persian" 7221 + "amiri" 7222 + "arabi" 7223 + "arabi-add" 7224 + "arabic-book" 7225 + "arabluatex" 7226 + "arabtex" 7227 + "bidi" 7228 + "bidihl" 7229 + "collection-basic" 7230 + "dad" 7231 + "ghab" 7232 + "hvarabic" 7233 + "hyphen-arabic" 7234 + "hyphen-farsi" 7235 + "imsproc" 7236 + "kurdishlipsum" 7237 + "lshort-persian" 7238 + "luabidi" 7239 + "na-box" 7240 + "persian-bib" 7241 + "quran" 7242 + "sexam" 7243 + "simurgh" 7244 + "texnegar" 7245 + "tram" 7246 + "xepersian" 7247 + "xepersian-hm" 7248 + "xindy-persian" 7249 + ]; 7182 7250 sha512.run = "3fdcf41fafd94373254281f3f7ee9f2a2e136cfa1adc1dd38e4b5cd6f90d0364e6a20d3284fcf255f245158352421e28cfb794c673b8b96399a20343ed991fc2"; 7183 7251 }; 7184 7252 "collection-langchinese" = { 7185 7253 revision = 63995; 7186 7254 stripPrefix = 0; 7187 - deps."arphic" = tl."arphic"; 7188 - deps."arphic-ttf" = tl."arphic-ttf"; 7189 - deps."asymptote-by-example-zh-cn" = tl."asymptote-by-example-zh-cn"; 7190 - deps."asymptote-faq-zh-cn" = tl."asymptote-faq-zh-cn"; 7191 - deps."asymptote-manual-zh-cn" = tl."asymptote-manual-zh-cn"; 7192 - deps."cns" = tl."cns"; 7193 - deps."collection-langcjk" = tl."collection-langcjk"; 7194 - deps."ctex" = tl."ctex"; 7195 - deps."ctex-faq" = tl."ctex-faq"; 7196 - deps."exam-zh" = tl."exam-zh"; 7197 - deps."fandol" = tl."fandol"; 7198 - deps."fduthesis" = tl."fduthesis"; 7199 - deps."hanzibox" = tl."hanzibox"; 7200 - deps."hyphen-chinese" = tl."hyphen-chinese"; 7201 - deps."impatient-cn" = tl."impatient-cn"; 7202 - deps."install-latex-guide-zh-cn" = tl."install-latex-guide-zh-cn"; 7203 - deps."latex-notes-zh-cn" = tl."latex-notes-zh-cn"; 7204 - deps."lshort-chinese" = tl."lshort-chinese"; 7205 - deps."nanicolle" = tl."nanicolle"; 7206 - deps."njurepo" = tl."njurepo"; 7207 - deps."pgfornament-han" = tl."pgfornament-han"; 7208 - deps."qyxf-book" = tl."qyxf-book"; 7209 - deps."texlive-zh-cn" = tl."texlive-zh-cn"; 7210 - deps."texproposal" = tl."texproposal"; 7211 - deps."tlmgr-intro-zh-cn" = tl."tlmgr-intro-zh-cn"; 7212 - deps."upzhkinsoku" = tl."upzhkinsoku"; 7213 - deps."xpinyin" = tl."xpinyin"; 7214 - deps."xtuthesis" = tl."xtuthesis"; 7215 - deps."zhlineskip" = tl."zhlineskip"; 7216 - deps."zhlipsum" = tl."zhlipsum"; 7217 - deps."zhmetrics" = tl."zhmetrics"; 7218 - deps."zhmetrics-uptex" = tl."zhmetrics-uptex"; 7219 - deps."zhnumber" = tl."zhnumber"; 7220 - deps."zhspacing" = tl."zhspacing"; 7255 + deps = [ 7256 + "arphic" 7257 + "arphic-ttf" 7258 + "asymptote-by-example-zh-cn" 7259 + "asymptote-faq-zh-cn" 7260 + "asymptote-manual-zh-cn" 7261 + "cns" 7262 + "collection-langcjk" 7263 + "ctex" 7264 + "ctex-faq" 7265 + "exam-zh" 7266 + "fandol" 7267 + "fduthesis" 7268 + "hanzibox" 7269 + "hyphen-chinese" 7270 + "impatient-cn" 7271 + "install-latex-guide-zh-cn" 7272 + "latex-notes-zh-cn" 7273 + "lshort-chinese" 7274 + "nanicolle" 7275 + "njurepo" 7276 + "pgfornament-han" 7277 + "qyxf-book" 7278 + "texlive-zh-cn" 7279 + "texproposal" 7280 + "tlmgr-intro-zh-cn" 7281 + "upzhkinsoku" 7282 + "xpinyin" 7283 + "xtuthesis" 7284 + "zhlineskip" 7285 + "zhlipsum" 7286 + "zhmetrics" 7287 + "zhmetrics-uptex" 7288 + "zhnumber" 7289 + "zhspacing" 7290 + ]; 7221 7291 sha512.run = "d10096b2d83dc0378361184a64c347918e75dd51f48d962893371534c375dd8880e8febb1aaf1207e5ce04e59860f629f10c99bbf6304239e1147a5072194137"; 7222 7292 }; 7223 7293 "collection-langcjk" = { 7224 7294 revision = 61912; 7225 7295 stripPrefix = 0; 7226 - deps."adobemapping" = tl."adobemapping"; 7227 - deps."c90" = tl."c90"; 7228 - deps."cjk" = tl."cjk"; 7229 - deps."cjk-gs-integrate" = tl."cjk-gs-integrate"; 7230 - deps."cjkpunct" = tl."cjkpunct"; 7231 - deps."cjkutils" = tl."cjkutils"; 7232 - deps."collection-basic" = tl."collection-basic"; 7233 - deps."dnp" = tl."dnp"; 7234 - deps."fixjfm" = tl."fixjfm"; 7235 - deps."garuda-c90" = tl."garuda-c90"; 7236 - deps."jfmutil" = tl."jfmutil"; 7237 - deps."norasi-c90" = tl."norasi-c90"; 7238 - deps."pxtatescale" = tl."pxtatescale"; 7239 - deps."xcjk2uni" = tl."xcjk2uni"; 7240 - deps."xecjk" = tl."xecjk"; 7241 - deps."zitie" = tl."zitie"; 7242 - deps."zxjafont" = tl."zxjafont"; 7296 + deps = [ 7297 + "adobemapping" 7298 + "c90" 7299 + "cjk" 7300 + "cjk-gs-integrate" 7301 + "cjkpunct" 7302 + "cjkutils" 7303 + "collection-basic" 7304 + "dnp" 7305 + "fixjfm" 7306 + "garuda-c90" 7307 + "jfmutil" 7308 + "norasi-c90" 7309 + "pxtatescale" 7310 + "xcjk2uni" 7311 + "xecjk" 7312 + "zitie" 7313 + "zxjafont" 7314 + ]; 7243 7315 sha512.run = "6b00955359e063df2a7c02f2d44f88e6190d65834b8e5c77e9c67e44b8c9de9cee612cd298e79fe3cd598fd58996ace0829d3a5463cdc25b543e7565b1455e31"; 7244 7316 }; 7245 7317 "collection-langcyrillic" = { 7246 7318 revision = 54074; 7247 7319 stripPrefix = 0; 7248 - deps."babel-belarusian" = tl."babel-belarusian"; 7249 - deps."babel-bulgarian" = tl."babel-bulgarian"; 7250 - deps."babel-russian" = tl."babel-russian"; 7251 - deps."babel-serbian" = tl."babel-serbian"; 7252 - deps."babel-serbianc" = tl."babel-serbianc"; 7253 - deps."babel-ukrainian" = tl."babel-ukrainian"; 7254 - deps."churchslavonic" = tl."churchslavonic"; 7255 - deps."cmcyr" = tl."cmcyr"; 7256 - deps."collection-basic" = tl."collection-basic"; 7257 - deps."collection-latex" = tl."collection-latex"; 7258 - deps."cyrillic" = tl."cyrillic"; 7259 - deps."cyrillic-bin" = tl."cyrillic-bin"; 7260 - deps."cyrplain" = tl."cyrplain"; 7261 - deps."disser" = tl."disser"; 7262 - deps."eskd" = tl."eskd"; 7263 - deps."eskdx" = tl."eskdx"; 7264 - deps."gost" = tl."gost"; 7265 - deps."hyphen-belarusian" = tl."hyphen-belarusian"; 7266 - deps."hyphen-bulgarian" = tl."hyphen-bulgarian"; 7267 - deps."hyphen-churchslavonic" = tl."hyphen-churchslavonic"; 7268 - deps."hyphen-mongolian" = tl."hyphen-mongolian"; 7269 - deps."hyphen-russian" = tl."hyphen-russian"; 7270 - deps."hyphen-serbian" = tl."hyphen-serbian"; 7271 - deps."hyphen-ukrainian" = tl."hyphen-ukrainian"; 7272 - deps."lcyw" = tl."lcyw"; 7273 - deps."lh" = tl."lh"; 7274 - deps."lhcyr" = tl."lhcyr"; 7275 - deps."lshort-bulgarian" = tl."lshort-bulgarian"; 7276 - deps."lshort-mongol" = tl."lshort-mongol"; 7277 - deps."lshort-russian" = tl."lshort-russian"; 7278 - deps."lshort-ukr" = tl."lshort-ukr"; 7279 - deps."mongolian-babel" = tl."mongolian-babel"; 7280 - deps."montex" = tl."montex"; 7281 - deps."mpman-ru" = tl."mpman-ru"; 7282 - deps."numnameru" = tl."numnameru"; 7283 - deps."pst-eucl-translation-bg" = tl."pst-eucl-translation-bg"; 7284 - deps."ruhyphen" = tl."ruhyphen"; 7285 - deps."russ" = tl."russ"; 7286 - deps."serbian-apostrophe" = tl."serbian-apostrophe"; 7287 - deps."serbian-date-lat" = tl."serbian-date-lat"; 7288 - deps."serbian-def-cyr" = tl."serbian-def-cyr"; 7289 - deps."serbian-lig" = tl."serbian-lig"; 7290 - deps."t2" = tl."t2"; 7291 - deps."texlive-ru" = tl."texlive-ru"; 7292 - deps."texlive-sr" = tl."texlive-sr"; 7293 - deps."ukrhyph" = tl."ukrhyph"; 7294 - deps."xecyrmongolian" = tl."xecyrmongolian"; 7320 + deps = [ 7321 + "babel-belarusian" 7322 + "babel-bulgarian" 7323 + "babel-russian" 7324 + "babel-serbian" 7325 + "babel-serbianc" 7326 + "babel-ukrainian" 7327 + "churchslavonic" 7328 + "cmcyr" 7329 + "collection-basic" 7330 + "collection-latex" 7331 + "cyrillic" 7332 + "cyrillic-bin" 7333 + "cyrplain" 7334 + "disser" 7335 + "eskd" 7336 + "eskdx" 7337 + "gost" 7338 + "hyphen-belarusian" 7339 + "hyphen-bulgarian" 7340 + "hyphen-churchslavonic" 7341 + "hyphen-mongolian" 7342 + "hyphen-russian" 7343 + "hyphen-serbian" 7344 + "hyphen-ukrainian" 7345 + "lcyw" 7346 + "lh" 7347 + "lhcyr" 7348 + "lshort-bulgarian" 7349 + "lshort-mongol" 7350 + "lshort-russian" 7351 + "lshort-ukr" 7352 + "mongolian-babel" 7353 + "montex" 7354 + "mpman-ru" 7355 + "numnameru" 7356 + "pst-eucl-translation-bg" 7357 + "ruhyphen" 7358 + "russ" 7359 + "serbian-apostrophe" 7360 + "serbian-date-lat" 7361 + "serbian-def-cyr" 7362 + "serbian-lig" 7363 + "t2" 7364 + "texlive-ru" 7365 + "texlive-sr" 7366 + "ukrhyph" 7367 + "xecyrmongolian" 7368 + ]; 7295 7369 sha512.run = "43ba5d0f21162fbdb6fd0e9dc7c990fa845918704020da8ca5c6770139370be55f4b707f98708c28b472f9500ee25ea734bdd96c5541a22e66b69c03ae777ad0"; 7296 7370 }; 7297 7371 "collection-langczechslovak" = { 7298 7372 revision = 54074; 7299 7373 stripPrefix = 0; 7300 - deps."babel-czech" = tl."babel-czech"; 7301 - deps."babel-slovak" = tl."babel-slovak"; 7302 - deps."cnbwp" = tl."cnbwp"; 7303 - deps."collection-basic" = tl."collection-basic"; 7304 - deps."collection-latex" = tl."collection-latex"; 7305 - deps."cs" = tl."cs"; 7306 - deps."csbulletin" = tl."csbulletin"; 7307 - deps."cslatex" = tl."cslatex"; 7308 - deps."csplain" = tl."csplain"; 7309 - deps."cstex" = tl."cstex"; 7310 - deps."hyphen-czech" = tl."hyphen-czech"; 7311 - deps."hyphen-slovak" = tl."hyphen-slovak"; 7312 - deps."lshort-czech" = tl."lshort-czech"; 7313 - deps."lshort-slovak" = tl."lshort-slovak"; 7314 - deps."texlive-cz" = tl."texlive-cz"; 7315 - deps."vlna" = tl."vlna"; 7374 + deps = [ 7375 + "babel-czech" 7376 + "babel-slovak" 7377 + "cnbwp" 7378 + "collection-basic" 7379 + "collection-latex" 7380 + "cs" 7381 + "csbulletin" 7382 + "cslatex" 7383 + "csplain" 7384 + "cstex" 7385 + "hyphen-czech" 7386 + "hyphen-slovak" 7387 + "lshort-czech" 7388 + "lshort-slovak" 7389 + "texlive-cz" 7390 + "vlna" 7391 + ]; 7316 7392 sha512.run = "719c321173ca12660891080dae509080934f72d13a9417b2c40a22add963c7c5a1ee95d3b306f0d6c26b0db97d69979c27fbb15d1690849aa03b06d4b0193a67"; 7317 7393 }; 7318 7394 "collection-langenglish" = { 7319 7395 revision = 63184; 7320 7396 stripPrefix = 0; 7321 - deps."amiweb2c-guide" = tl."amiweb2c-guide"; 7322 - deps."amscls-doc" = tl."amscls-doc"; 7323 - deps."amslatex-primer" = tl."amslatex-primer"; 7324 - deps."around-the-bend" = tl."around-the-bend"; 7325 - deps."ascii-chart" = tl."ascii-chart"; 7326 - deps."biblatex-cheatsheet" = tl."biblatex-cheatsheet"; 7327 - deps."collection-basic" = tl."collection-basic"; 7328 - deps."components" = tl."components"; 7329 - deps."comprehensive" = tl."comprehensive"; 7330 - deps."dickimaw" = tl."dickimaw"; 7331 - deps."docsurvey" = tl."docsurvey"; 7332 - deps."dtxtut" = tl."dtxtut"; 7333 - deps."first-latex-doc" = tl."first-latex-doc"; 7334 - deps."fontinstallationguide" = tl."fontinstallationguide"; 7335 - deps."forest-quickstart" = tl."forest-quickstart"; 7336 - deps."gentle" = tl."gentle"; 7337 - deps."guide-to-latex" = tl."guide-to-latex"; 7338 - deps."happy4th" = tl."happy4th"; 7339 - deps."hyphen-english" = tl."hyphen-english"; 7340 - deps."impatient" = tl."impatient"; 7341 - deps."intro-scientific" = tl."intro-scientific"; 7342 - deps."knuth-errata" = tl."knuth-errata"; 7343 - deps."knuth-hint" = tl."knuth-hint"; 7344 - deps."knuth-pdf" = tl."knuth-pdf"; 7345 - deps."l2tabu-english" = tl."l2tabu-english"; 7346 - deps."latex-brochure" = tl."latex-brochure"; 7347 - deps."latex-course" = tl."latex-course"; 7348 - deps."latex-doc-ptr" = tl."latex-doc-ptr"; 7349 - deps."latex-for-undergraduates" = tl."latex-for-undergraduates"; 7350 - deps."latex-graphics-companion" = tl."latex-graphics-companion"; 7351 - deps."latex-refsheet" = tl."latex-refsheet"; 7352 - deps."latex-veryshortguide" = tl."latex-veryshortguide"; 7353 - deps."latex-web-companion" = tl."latex-web-companion"; 7354 - deps."latex2e-help-texinfo" = tl."latex2e-help-texinfo"; 7355 - deps."latex4wp" = tl."latex4wp"; 7356 - deps."latexcheat" = tl."latexcheat"; 7357 - deps."latexcourse-rug" = tl."latexcourse-rug"; 7358 - deps."latexfileinfo-pkgs" = tl."latexfileinfo-pkgs"; 7359 - deps."lshort-english" = tl."lshort-english"; 7360 - deps."macros2e" = tl."macros2e"; 7361 - deps."math-into-latex-4" = tl."math-into-latex-4"; 7362 - deps."maths-symbols" = tl."maths-symbols"; 7363 - deps."memdesign" = tl."memdesign"; 7364 - deps."memoirchapterstyles" = tl."memoirchapterstyles"; 7365 - deps."metafont-beginners" = tl."metafont-beginners"; 7366 - deps."metapost-examples" = tl."metapost-examples"; 7367 - deps."patgen2-tutorial" = tl."patgen2-tutorial"; 7368 - deps."pictexsum" = tl."pictexsum"; 7369 - deps."plain-doc" = tl."plain-doc"; 7370 - deps."short-math-guide" = tl."short-math-guide"; 7371 - deps."simplified-latex" = tl."simplified-latex"; 7372 - deps."svg-inkscape" = tl."svg-inkscape"; 7373 - deps."tamethebeast" = tl."tamethebeast"; 7374 - deps."tds" = tl."tds"; 7375 - deps."tex-font-errors-cheatsheet" = tl."tex-font-errors-cheatsheet"; 7376 - deps."tex-nutshell" = tl."tex-nutshell"; 7377 - deps."tex-overview" = tl."tex-overview"; 7378 - deps."tex-refs" = tl."tex-refs"; 7379 - deps."tex-vpat" = tl."tex-vpat"; 7380 - deps."texbytopic" = tl."texbytopic"; 7381 - deps."texonly" = tl."texonly"; 7382 - deps."titlepages" = tl."titlepages"; 7383 - deps."tlc2" = tl."tlc2"; 7384 - deps."tlmgrbasics" = tl."tlmgrbasics"; 7385 - deps."undergradmath" = tl."undergradmath"; 7386 - deps."visualfaq" = tl."visualfaq"; 7387 - deps."webguide" = tl."webguide"; 7388 - deps."xetexref" = tl."xetexref"; 7389 - deps."yet-another-guide-latex2e" = tl."yet-another-guide-latex2e"; 7397 + deps = [ 7398 + "amiweb2c-guide" 7399 + "amscls-doc" 7400 + "amslatex-primer" 7401 + "around-the-bend" 7402 + "ascii-chart" 7403 + "biblatex-cheatsheet" 7404 + "collection-basic" 7405 + "components" 7406 + "comprehensive" 7407 + "dickimaw" 7408 + "docsurvey" 7409 + "dtxtut" 7410 + "first-latex-doc" 7411 + "fontinstallationguide" 7412 + "forest-quickstart" 7413 + "gentle" 7414 + "guide-to-latex" 7415 + "happy4th" 7416 + "hyphen-english" 7417 + "impatient" 7418 + "intro-scientific" 7419 + "knuth-errata" 7420 + "knuth-hint" 7421 + "knuth-pdf" 7422 + "l2tabu-english" 7423 + "latex-brochure" 7424 + "latex-course" 7425 + "latex-doc-ptr" 7426 + "latex-for-undergraduates" 7427 + "latex-graphics-companion" 7428 + "latex-refsheet" 7429 + "latex-veryshortguide" 7430 + "latex-web-companion" 7431 + "latex2e-help-texinfo" 7432 + "latex4wp" 7433 + "latexcheat" 7434 + "latexcourse-rug" 7435 + "latexfileinfo-pkgs" 7436 + "lshort-english" 7437 + "macros2e" 7438 + "math-into-latex-4" 7439 + "maths-symbols" 7440 + "memdesign" 7441 + "memoirchapterstyles" 7442 + "metafont-beginners" 7443 + "metapost-examples" 7444 + "patgen2-tutorial" 7445 + "pictexsum" 7446 + "plain-doc" 7447 + "short-math-guide" 7448 + "simplified-latex" 7449 + "svg-inkscape" 7450 + "tamethebeast" 7451 + "tds" 7452 + "tex-font-errors-cheatsheet" 7453 + "tex-nutshell" 7454 + "tex-overview" 7455 + "tex-refs" 7456 + "tex-vpat" 7457 + "texbytopic" 7458 + "texonly" 7459 + "titlepages" 7460 + "tlc2" 7461 + "tlmgrbasics" 7462 + "undergradmath" 7463 + "visualfaq" 7464 + "webguide" 7465 + "xetexref" 7466 + "yet-another-guide-latex2e" 7467 + ]; 7390 7468 sha512.run = "94b1ee572454d4a791ab0637cf272f97a35dc5284c8a97a68715fcef36887eaa92ddb78f95722a6281d35c70fa6e5e4b6548ba8ca79fb69d9734c480383bdec2"; 7391 7469 }; 7392 7470 "collection-langeuropean" = { 7393 7471 revision = 64723; 7394 7472 stripPrefix = 0; 7395 - deps."armtex" = tl."armtex"; 7396 - deps."babel-albanian" = tl."babel-albanian"; 7397 - deps."babel-bosnian" = tl."babel-bosnian"; 7398 - deps."babel-breton" = tl."babel-breton"; 7399 - deps."babel-croatian" = tl."babel-croatian"; 7400 - deps."babel-danish" = tl."babel-danish"; 7401 - deps."babel-dutch" = tl."babel-dutch"; 7402 - deps."babel-estonian" = tl."babel-estonian"; 7403 - deps."babel-finnish" = tl."babel-finnish"; 7404 - deps."babel-friulan" = tl."babel-friulan"; 7405 - deps."babel-hungarian" = tl."babel-hungarian"; 7406 - deps."babel-icelandic" = tl."babel-icelandic"; 7407 - deps."babel-irish" = tl."babel-irish"; 7408 - deps."babel-kurmanji" = tl."babel-kurmanji"; 7409 - deps."babel-latin" = tl."babel-latin"; 7410 - deps."babel-latvian" = tl."babel-latvian"; 7411 - deps."babel-macedonian" = tl."babel-macedonian"; 7412 - deps."babel-norsk" = tl."babel-norsk"; 7413 - deps."babel-occitan" = tl."babel-occitan"; 7414 - deps."babel-piedmontese" = tl."babel-piedmontese"; 7415 - deps."babel-romanian" = tl."babel-romanian"; 7416 - deps."babel-romansh" = tl."babel-romansh"; 7417 - deps."babel-samin" = tl."babel-samin"; 7418 - deps."babel-scottish" = tl."babel-scottish"; 7419 - deps."babel-slovenian" = tl."babel-slovenian"; 7420 - deps."babel-swedish" = tl."babel-swedish"; 7421 - deps."babel-turkish" = tl."babel-turkish"; 7422 - deps."babel-welsh" = tl."babel-welsh"; 7423 - deps."collection-basic" = tl."collection-basic"; 7424 - deps."finbib" = tl."finbib"; 7425 - deps."gloss-occitan" = tl."gloss-occitan"; 7426 - deps."hrlatex" = tl."hrlatex"; 7427 - deps."huaz" = tl."huaz"; 7428 - deps."hulipsum" = tl."hulipsum"; 7429 - deps."hyphen-croatian" = tl."hyphen-croatian"; 7430 - deps."hyphen-danish" = tl."hyphen-danish"; 7431 - deps."hyphen-dutch" = tl."hyphen-dutch"; 7432 - deps."hyphen-estonian" = tl."hyphen-estonian"; 7433 - deps."hyphen-finnish" = tl."hyphen-finnish"; 7434 - deps."hyphen-friulan" = tl."hyphen-friulan"; 7435 - deps."hyphen-hungarian" = tl."hyphen-hungarian"; 7436 - deps."hyphen-icelandic" = tl."hyphen-icelandic"; 7437 - deps."hyphen-irish" = tl."hyphen-irish"; 7438 - deps."hyphen-kurmanji" = tl."hyphen-kurmanji"; 7439 - deps."hyphen-latin" = tl."hyphen-latin"; 7440 - deps."hyphen-latvian" = tl."hyphen-latvian"; 7441 - deps."hyphen-lithuanian" = tl."hyphen-lithuanian"; 7442 - deps."hyphen-macedonian" = tl."hyphen-macedonian"; 7443 - deps."hyphen-norwegian" = tl."hyphen-norwegian"; 7444 - deps."hyphen-occitan" = tl."hyphen-occitan"; 7445 - deps."hyphen-piedmontese" = tl."hyphen-piedmontese"; 7446 - deps."hyphen-romanian" = tl."hyphen-romanian"; 7447 - deps."hyphen-romansh" = tl."hyphen-romansh"; 7448 - deps."hyphen-slovenian" = tl."hyphen-slovenian"; 7449 - deps."hyphen-swedish" = tl."hyphen-swedish"; 7450 - deps."hyphen-turkish" = tl."hyphen-turkish"; 7451 - deps."hyphen-uppersorbian" = tl."hyphen-uppersorbian"; 7452 - deps."hyphen-welsh" = tl."hyphen-welsh"; 7453 - deps."kaytannollista-latexia" = tl."kaytannollista-latexia"; 7454 - deps."lithuanian" = tl."lithuanian"; 7455 - deps."lshort-dutch" = tl."lshort-dutch"; 7456 - deps."lshort-estonian" = tl."lshort-estonian"; 7457 - deps."lshort-finnish" = tl."lshort-finnish"; 7458 - deps."lshort-slovenian" = tl."lshort-slovenian"; 7459 - deps."lshort-turkish" = tl."lshort-turkish"; 7460 - deps."nevelok" = tl."nevelok"; 7461 - deps."rojud" = tl."rojud"; 7462 - deps."swebib" = tl."swebib"; 7463 - deps."turkmen" = tl."turkmen"; 7473 + deps = [ 7474 + "armtex" 7475 + "babel-albanian" 7476 + "babel-bosnian" 7477 + "babel-breton" 7478 + "babel-croatian" 7479 + "babel-danish" 7480 + "babel-dutch" 7481 + "babel-estonian" 7482 + "babel-finnish" 7483 + "babel-friulan" 7484 + "babel-hungarian" 7485 + "babel-icelandic" 7486 + "babel-irish" 7487 + "babel-kurmanji" 7488 + "babel-latin" 7489 + "babel-latvian" 7490 + "babel-macedonian" 7491 + "babel-norsk" 7492 + "babel-occitan" 7493 + "babel-piedmontese" 7494 + "babel-romanian" 7495 + "babel-romansh" 7496 + "babel-samin" 7497 + "babel-scottish" 7498 + "babel-slovenian" 7499 + "babel-swedish" 7500 + "babel-turkish" 7501 + "babel-welsh" 7502 + "collection-basic" 7503 + "finbib" 7504 + "gloss-occitan" 7505 + "hrlatex" 7506 + "huaz" 7507 + "hulipsum" 7508 + "hyphen-croatian" 7509 + "hyphen-danish" 7510 + "hyphen-dutch" 7511 + "hyphen-estonian" 7512 + "hyphen-finnish" 7513 + "hyphen-friulan" 7514 + "hyphen-hungarian" 7515 + "hyphen-icelandic" 7516 + "hyphen-irish" 7517 + "hyphen-kurmanji" 7518 + "hyphen-latin" 7519 + "hyphen-latvian" 7520 + "hyphen-lithuanian" 7521 + "hyphen-macedonian" 7522 + "hyphen-norwegian" 7523 + "hyphen-occitan" 7524 + "hyphen-piedmontese" 7525 + "hyphen-romanian" 7526 + "hyphen-romansh" 7527 + "hyphen-slovenian" 7528 + "hyphen-swedish" 7529 + "hyphen-turkish" 7530 + "hyphen-uppersorbian" 7531 + "hyphen-welsh" 7532 + "kaytannollista-latexia" 7533 + "lithuanian" 7534 + "lshort-dutch" 7535 + "lshort-estonian" 7536 + "lshort-finnish" 7537 + "lshort-slovenian" 7538 + "lshort-turkish" 7539 + "nevelok" 7540 + "rojud" 7541 + "swebib" 7542 + "turkmen" 7543 + ]; 7464 7544 sha512.run = "4a234c1f9b66d04df7f897ad38e6af56666917106e1a299e00dbccd6a5ba55c635beee78550c410cd4c631c3e91ea250adc79e8e3b29bc473d3e721c5adf75e4"; 7465 7545 }; 7466 7546 "collection-langfrench" = { 7467 7547 revision = 63147; 7468 7548 stripPrefix = 0; 7469 - deps."aeguill" = tl."aeguill"; 7470 - deps."annee-scolaire" = tl."annee-scolaire"; 7471 - deps."apprendre-a-programmer-en-tex" = tl."apprendre-a-programmer-en-tex"; 7472 - deps."apprends-latex" = tl."apprends-latex"; 7473 - deps."babel-basque" = tl."babel-basque"; 7474 - deps."babel-french" = tl."babel-french"; 7475 - deps."basque-book" = tl."basque-book"; 7476 - deps."basque-date" = tl."basque-date"; 7477 - deps."bib-fr" = tl."bib-fr"; 7478 - deps."bibleref-french" = tl."bibleref-french"; 7479 - deps."booktabs-fr" = tl."booktabs-fr"; 7480 - deps."collection-basic" = tl."collection-basic"; 7481 - deps."droit-fr" = tl."droit-fr"; 7482 - deps."e-french" = tl."e-french"; 7483 - deps."epslatex-fr" = tl."epslatex-fr"; 7484 - deps."expose-expl3-dunkerque-2019" = tl."expose-expl3-dunkerque-2019"; 7485 - deps."facture" = tl."facture"; 7486 - deps."formation-latex-ul" = tl."formation-latex-ul"; 7487 - deps."frenchmath" = tl."frenchmath"; 7488 - deps."frletter" = tl."frletter"; 7489 - deps."frpseudocode" = tl."frpseudocode"; 7490 - deps."hyphen-basque" = tl."hyphen-basque"; 7491 - deps."hyphen-french" = tl."hyphen-french"; 7492 - deps."impatient-fr" = tl."impatient-fr"; 7493 - deps."impnattypo" = tl."impnattypo"; 7494 - deps."l2tabu-french" = tl."l2tabu-french"; 7495 - deps."latex2e-help-texinfo-fr" = tl."latex2e-help-texinfo-fr"; 7496 - deps."letgut" = tl."letgut"; 7497 - deps."lshort-french" = tl."lshort-french"; 7498 - deps."mafr" = tl."mafr"; 7499 - deps."matapli" = tl."matapli"; 7500 - deps."profcollege" = tl."profcollege"; 7501 - deps."proflabo" = tl."proflabo"; 7502 - deps."proflycee" = tl."proflycee"; 7503 - deps."tabvar" = tl."tabvar"; 7504 - deps."tdsfrmath" = tl."tdsfrmath"; 7505 - deps."texlive-fr" = tl."texlive-fr"; 7506 - deps."translation-array-fr" = tl."translation-array-fr"; 7507 - deps."translation-dcolumn-fr" = tl."translation-dcolumn-fr"; 7508 - deps."translation-natbib-fr" = tl."translation-natbib-fr"; 7509 - deps."translation-tabbing-fr" = tl."translation-tabbing-fr"; 7510 - deps."variations" = tl."variations"; 7511 - deps."visualfaq-fr" = tl."visualfaq-fr"; 7512 - deps."visualtikz" = tl."visualtikz"; 7549 + deps = [ 7550 + "aeguill" 7551 + "annee-scolaire" 7552 + "apprendre-a-programmer-en-tex" 7553 + "apprends-latex" 7554 + "babel-basque" 7555 + "babel-french" 7556 + "basque-book" 7557 + "basque-date" 7558 + "bib-fr" 7559 + "bibleref-french" 7560 + "booktabs-fr" 7561 + "collection-basic" 7562 + "droit-fr" 7563 + "e-french" 7564 + "epslatex-fr" 7565 + "expose-expl3-dunkerque-2019" 7566 + "facture" 7567 + "formation-latex-ul" 7568 + "frenchmath" 7569 + "frletter" 7570 + "frpseudocode" 7571 + "hyphen-basque" 7572 + "hyphen-french" 7573 + "impatient-fr" 7574 + "impnattypo" 7575 + "l2tabu-french" 7576 + "latex2e-help-texinfo-fr" 7577 + "letgut" 7578 + "lshort-french" 7579 + "mafr" 7580 + "matapli" 7581 + "profcollege" 7582 + "proflabo" 7583 + "proflycee" 7584 + "tabvar" 7585 + "tdsfrmath" 7586 + "texlive-fr" 7587 + "translation-array-fr" 7588 + "translation-dcolumn-fr" 7589 + "translation-natbib-fr" 7590 + "translation-tabbing-fr" 7591 + "variations" 7592 + "visualfaq-fr" 7593 + "visualtikz" 7594 + ]; 7513 7595 sha512.run = "baec84c93e0b9313b29f807831da39da40902afdbc2305e193e9d4805c631a1e44695c0bc148e973d9021146cc25da9b22b0130b29fe4ff9834667ec83dff9b6"; 7514 7596 }; 7515 7597 "collection-langgerman" = { 7516 7598 revision = 55706; 7517 7599 stripPrefix = 0; 7518 - deps."apalike-german" = tl."apalike-german"; 7519 - deps."babel-german" = tl."babel-german"; 7520 - deps."bibleref-german" = tl."bibleref-german"; 7521 - deps."booktabs-de" = tl."booktabs-de"; 7522 - deps."collection-basic" = tl."collection-basic"; 7523 - deps."csquotes-de" = tl."csquotes-de"; 7524 - deps."dehyph" = tl."dehyph"; 7525 - deps."dehyph-exptl" = tl."dehyph-exptl"; 7526 - deps."dhua" = tl."dhua"; 7527 - deps."dtk-bibliography" = tl."dtk-bibliography"; 7528 - deps."etdipa" = tl."etdipa"; 7529 - deps."etoolbox-de" = tl."etoolbox-de"; 7530 - deps."fifinddo-info" = tl."fifinddo-info"; 7531 - deps."german" = tl."german"; 7532 - deps."germbib" = tl."germbib"; 7533 - deps."germkorr" = tl."germkorr"; 7534 - deps."hausarbeit-jura" = tl."hausarbeit-jura"; 7535 - deps."hyphen-german" = tl."hyphen-german"; 7536 - deps."koma-script-examples" = tl."koma-script-examples"; 7537 - deps."l2picfaq" = tl."l2picfaq"; 7538 - deps."l2tabu" = tl."l2tabu"; 7539 - deps."latexcheat-de" = tl."latexcheat-de"; 7540 - deps."lshort-german" = tl."lshort-german"; 7541 - deps."lualatex-doc-de" = tl."lualatex-doc-de"; 7542 - deps."microtype-de" = tl."microtype-de"; 7543 - deps."milog" = tl."milog"; 7544 - deps."quran-de" = tl."quran-de"; 7545 - deps."r_und_s" = tl."r_und_s"; 7546 - deps."schulmathematik" = tl."schulmathematik"; 7547 - deps."templates-fenn" = tl."templates-fenn"; 7548 - deps."templates-sommer" = tl."templates-sommer"; 7549 - deps."termcal-de" = tl."termcal-de"; 7550 - deps."texlive-de" = tl."texlive-de"; 7551 - deps."tipa-de" = tl."tipa-de"; 7552 - deps."translation-arsclassica-de" = tl."translation-arsclassica-de"; 7553 - deps."translation-biblatex-de" = tl."translation-biblatex-de"; 7554 - deps."translation-chemsym-de" = tl."translation-chemsym-de"; 7555 - deps."translation-ecv-de" = tl."translation-ecv-de"; 7556 - deps."translation-enumitem-de" = tl."translation-enumitem-de"; 7557 - deps."translation-europecv-de" = tl."translation-europecv-de"; 7558 - deps."translation-filecontents-de" = tl."translation-filecontents-de"; 7559 - deps."translation-moreverb-de" = tl."translation-moreverb-de"; 7560 - deps."udesoftec" = tl."udesoftec"; 7561 - deps."uhrzeit" = tl."uhrzeit"; 7562 - deps."umlaute" = tl."umlaute"; 7563 - deps."voss-mathcol" = tl."voss-mathcol"; 7600 + deps = [ 7601 + "apalike-german" 7602 + "babel-german" 7603 + "bibleref-german" 7604 + "booktabs-de" 7605 + "collection-basic" 7606 + "csquotes-de" 7607 + "dehyph" 7608 + "dehyph-exptl" 7609 + "dhua" 7610 + "dtk-bibliography" 7611 + "etdipa" 7612 + "etoolbox-de" 7613 + "fifinddo-info" 7614 + "german" 7615 + "germbib" 7616 + "germkorr" 7617 + "hausarbeit-jura" 7618 + "hyphen-german" 7619 + "koma-script-examples" 7620 + "l2picfaq" 7621 + "l2tabu" 7622 + "latexcheat-de" 7623 + "lshort-german" 7624 + "lualatex-doc-de" 7625 + "microtype-de" 7626 + "milog" 7627 + "quran-de" 7628 + "r_und_s" 7629 + "schulmathematik" 7630 + "templates-fenn" 7631 + "templates-sommer" 7632 + "termcal-de" 7633 + "texlive-de" 7634 + "tipa-de" 7635 + "translation-arsclassica-de" 7636 + "translation-biblatex-de" 7637 + "translation-chemsym-de" 7638 + "translation-ecv-de" 7639 + "translation-enumitem-de" 7640 + "translation-europecv-de" 7641 + "translation-filecontents-de" 7642 + "translation-moreverb-de" 7643 + "udesoftec" 7644 + "uhrzeit" 7645 + "umlaute" 7646 + "voss-mathcol" 7647 + ]; 7564 7648 sha512.run = "19b9f47b68ca6068900c413d8216e13c20d25ab084cdcbd500694a18a10cbaa35ba5681be09392e0b20873788519a436c28c1ea89a728e3f546083ce0883c15c"; 7565 7649 }; 7566 7650 "collection-langgreek" = { 7567 7651 revision = 65038; 7568 7652 stripPrefix = 0; 7569 - deps."babel-greek" = tl."babel-greek"; 7570 - deps."begingreek" = tl."begingreek"; 7571 - deps."betababel" = tl."betababel"; 7572 - deps."cbfonts" = tl."cbfonts"; 7573 - deps."cbfonts-fd" = tl."cbfonts-fd"; 7574 - deps."collection-basic" = tl."collection-basic"; 7575 - deps."gfsbaskerville" = tl."gfsbaskerville"; 7576 - deps."gfsporson" = tl."gfsporson"; 7577 - deps."greek-fontenc" = tl."greek-fontenc"; 7578 - deps."greek-inputenc" = tl."greek-inputenc"; 7579 - deps."greekdates" = tl."greekdates"; 7580 - deps."greektex" = tl."greektex"; 7581 - deps."greektonoi" = tl."greektonoi"; 7582 - deps."hyphen-ancientgreek" = tl."hyphen-ancientgreek"; 7583 - deps."hyphen-greek" = tl."hyphen-greek"; 7584 - deps."ibycus-babel" = tl."ibycus-babel"; 7585 - deps."ibygrk" = tl."ibygrk"; 7586 - deps."kerkis" = tl."kerkis"; 7587 - deps."levy" = tl."levy"; 7588 - deps."lgreek" = tl."lgreek"; 7589 - deps."lgrmath" = tl."lgrmath"; 7590 - deps."mkgrkindex" = tl."mkgrkindex"; 7591 - deps."talos" = tl."talos"; 7592 - deps."teubner" = tl."teubner"; 7593 - deps."xgreek" = tl."xgreek"; 7594 - deps."yannisgr" = tl."yannisgr"; 7653 + deps = [ 7654 + "babel-greek" 7655 + "begingreek" 7656 + "betababel" 7657 + "cbfonts" 7658 + "cbfonts-fd" 7659 + "collection-basic" 7660 + "gfsbaskerville" 7661 + "gfsporson" 7662 + "greek-fontenc" 7663 + "greek-inputenc" 7664 + "greekdates" 7665 + "greektex" 7666 + "greektonoi" 7667 + "hyphen-ancientgreek" 7668 + "hyphen-greek" 7669 + "ibycus-babel" 7670 + "ibygrk" 7671 + "kerkis" 7672 + "levy" 7673 + "lgreek" 7674 + "lgrmath" 7675 + "mkgrkindex" 7676 + "talos" 7677 + "teubner" 7678 + "xgreek" 7679 + "yannisgr" 7680 + ]; 7595 7681 sha512.run = "800991b6bb8ac7772ad030ad665b812abd9b294498f7b7678be721ccc87d54607e267bd189a0591ebead2c6ecb64047e5b5581c374f067c3b1575b6d442cc6c9"; 7596 7682 }; 7597 7683 "collection-langitalian" = { 7598 7684 revision = 55129; 7599 7685 stripPrefix = 0; 7600 - deps."amsldoc-it" = tl."amsldoc-it"; 7601 - deps."amsmath-it" = tl."amsmath-it"; 7602 - deps."amsthdoc-it" = tl."amsthdoc-it"; 7603 - deps."antanilipsum" = tl."antanilipsum"; 7604 - deps."babel-italian" = tl."babel-italian"; 7605 - deps."codicefiscaleitaliano" = tl."codicefiscaleitaliano"; 7606 - deps."collection-basic" = tl."collection-basic"; 7607 - deps."fancyhdr-it" = tl."fancyhdr-it"; 7608 - deps."fixltxhyph" = tl."fixltxhyph"; 7609 - deps."frontespizio" = tl."frontespizio"; 7610 - deps."hyphen-italian" = tl."hyphen-italian"; 7611 - deps."itnumpar" = tl."itnumpar"; 7612 - deps."l2tabu-italian" = tl."l2tabu-italian"; 7613 - deps."latex4wp-it" = tl."latex4wp-it"; 7614 - deps."layaureo" = tl."layaureo"; 7615 - deps."lshort-italian" = tl."lshort-italian"; 7616 - deps."psfrag-italian" = tl."psfrag-italian"; 7617 - deps."texlive-it" = tl."texlive-it"; 7618 - deps."verifica" = tl."verifica"; 7686 + deps = [ 7687 + "amsldoc-it" 7688 + "amsmath-it" 7689 + "amsthdoc-it" 7690 + "antanilipsum" 7691 + "babel-italian" 7692 + "codicefiscaleitaliano" 7693 + "collection-basic" 7694 + "fancyhdr-it" 7695 + "fixltxhyph" 7696 + "frontespizio" 7697 + "hyphen-italian" 7698 + "itnumpar" 7699 + "l2tabu-italian" 7700 + "latex4wp-it" 7701 + "layaureo" 7702 + "lshort-italian" 7703 + "psfrag-italian" 7704 + "texlive-it" 7705 + "verifica" 7706 + ]; 7619 7707 sha512.run = "6ec5e8a62e3c1ed8e3c23542381091d38c77af507af7088a55e44f1e34b85d01ec19342db4541d9d6cd712c0929d54a3fc663e1d8fde3c53fef0d6fc43be4994"; 7620 7708 }; 7621 7709 "collection-langjapanese" = { 7622 7710 revision = 64603; 7623 7711 stripPrefix = 0; 7624 - deps."ascmac" = tl."ascmac"; 7625 - deps."asternote" = tl."asternote"; 7626 - deps."babel-japanese" = tl."babel-japanese"; 7627 - deps."bxbase" = tl."bxbase"; 7628 - deps."bxcjkjatype" = tl."bxcjkjatype"; 7629 - deps."bxghost" = tl."bxghost"; 7630 - deps."bxjaholiday" = tl."bxjaholiday"; 7631 - deps."bxjalipsum" = tl."bxjalipsum"; 7632 - deps."bxjaprnind" = tl."bxjaprnind"; 7633 - deps."bxjatoucs" = tl."bxjatoucs"; 7634 - deps."bxjscls" = tl."bxjscls"; 7635 - deps."bxorigcapt" = tl."bxorigcapt"; 7636 - deps."bxwareki" = tl."bxwareki"; 7637 - deps."collection-langcjk" = tl."collection-langcjk"; 7638 - deps."convbkmk" = tl."convbkmk"; 7639 - deps."endnotesj" = tl."endnotesj"; 7640 - deps."gckanbun" = tl."gckanbun"; 7641 - deps."gentombow" = tl."gentombow"; 7642 - deps."haranoaji" = tl."haranoaji"; 7643 - deps."haranoaji-extra" = tl."haranoaji-extra"; 7644 - deps."ieejtran" = tl."ieejtran"; 7645 - deps."ifptex" = tl."ifptex"; 7646 - deps."ifxptex" = tl."ifxptex"; 7647 - deps."ipaex" = tl."ipaex"; 7648 - deps."japanese-mathformulas" = tl."japanese-mathformulas"; 7649 - deps."japanese-otf" = tl."japanese-otf"; 7650 - deps."jieeetran" = tl."jieeetran"; 7651 - deps."jlreq" = tl."jlreq"; 7652 - deps."jlreq-deluxe" = tl."jlreq-deluxe"; 7653 - deps."jpneduenumerate" = tl."jpneduenumerate"; 7654 - deps."jpnedumathsymbols" = tl."jpnedumathsymbols"; 7655 - deps."jsclasses" = tl."jsclasses"; 7656 - deps."kanbun" = tl."kanbun"; 7657 - deps."lshort-japanese" = tl."lshort-japanese"; 7658 - deps."luatexja" = tl."luatexja"; 7659 - deps."mendex-doc" = tl."mendex-doc"; 7660 - deps."morisawa" = tl."morisawa"; 7661 - deps."pbibtex-base" = tl."pbibtex-base"; 7662 - deps."pbibtex-manual" = tl."pbibtex-manual"; 7663 - deps."platex" = tl."platex"; 7664 - deps."platex-tools" = tl."platex-tools"; 7665 - deps."platexcheat" = tl."platexcheat"; 7666 - deps."plautopatch" = tl."plautopatch"; 7667 - deps."ptex" = tl."ptex"; 7668 - deps."ptex-base" = tl."ptex-base"; 7669 - deps."ptex-fontmaps" = tl."ptex-fontmaps"; 7670 - deps."ptex-fonts" = tl."ptex-fonts"; 7671 - deps."ptex-manual" = tl."ptex-manual"; 7672 - deps."ptex2pdf" = tl."ptex2pdf"; 7673 - deps."pxbase" = tl."pxbase"; 7674 - deps."pxchfon" = tl."pxchfon"; 7675 - deps."pxcjkcat" = tl."pxcjkcat"; 7676 - deps."pxjahyper" = tl."pxjahyper"; 7677 - deps."pxjodel" = tl."pxjodel"; 7678 - deps."pxrubrica" = tl."pxrubrica"; 7679 - deps."pxufont" = tl."pxufont"; 7680 - deps."texlive-ja" = tl."texlive-ja"; 7681 - deps."uplatex" = tl."uplatex"; 7682 - deps."uptex" = tl."uptex"; 7683 - deps."uptex-base" = tl."uptex-base"; 7684 - deps."uptex-fonts" = tl."uptex-fonts"; 7685 - deps."wadalab" = tl."wadalab"; 7686 - deps."zxjafbfont" = tl."zxjafbfont"; 7687 - deps."zxjatype" = tl."zxjatype"; 7712 + deps = [ 7713 + "ascmac" 7714 + "asternote" 7715 + "babel-japanese" 7716 + "bxbase" 7717 + "bxcjkjatype" 7718 + "bxghost" 7719 + "bxjaholiday" 7720 + "bxjalipsum" 7721 + "bxjaprnind" 7722 + "bxjatoucs" 7723 + "bxjscls" 7724 + "bxorigcapt" 7725 + "bxwareki" 7726 + "collection-langcjk" 7727 + "convbkmk" 7728 + "endnotesj" 7729 + "gckanbun" 7730 + "gentombow" 7731 + "haranoaji" 7732 + "haranoaji-extra" 7733 + "ieejtran" 7734 + "ifptex" 7735 + "ifxptex" 7736 + "ipaex" 7737 + "japanese-mathformulas" 7738 + "japanese-otf" 7739 + "jieeetran" 7740 + "jlreq" 7741 + "jlreq-deluxe" 7742 + "jpneduenumerate" 7743 + "jpnedumathsymbols" 7744 + "jsclasses" 7745 + "kanbun" 7746 + "lshort-japanese" 7747 + "luatexja" 7748 + "mendex-doc" 7749 + "morisawa" 7750 + "pbibtex-base" 7751 + "pbibtex-manual" 7752 + "platex" 7753 + "platex-tools" 7754 + "platexcheat" 7755 + "plautopatch" 7756 + "ptex" 7757 + "ptex-base" 7758 + "ptex-fontmaps" 7759 + "ptex-fonts" 7760 + "ptex-manual" 7761 + "ptex2pdf" 7762 + "pxbase" 7763 + "pxchfon" 7764 + "pxcjkcat" 7765 + "pxjahyper" 7766 + "pxjodel" 7767 + "pxrubrica" 7768 + "pxufont" 7769 + "texlive-ja" 7770 + "uplatex" 7771 + "uptex" 7772 + "uptex-base" 7773 + "uptex-fonts" 7774 + "wadalab" 7775 + "zxjafbfont" 7776 + "zxjatype" 7777 + ]; 7688 7778 sha512.run = "d9f73ff10afe2c91f9f6ad0e92ddcf8425ed7f51c7f08d291451775bcfcf3421d8d2afd78c7dbdceef995ac5a4262df89afce2b35e6c2dd064e8a310e1025f67"; 7689 7779 }; 7690 7780 "collection-langkorean" = { 7691 7781 revision = 54074; 7692 7782 stripPrefix = 0; 7693 - deps."baekmuk" = tl."baekmuk"; 7694 - deps."cjk-ko" = tl."cjk-ko"; 7695 - deps."collection-langcjk" = tl."collection-langcjk"; 7696 - deps."kotex-oblivoir" = tl."kotex-oblivoir"; 7697 - deps."kotex-plain" = tl."kotex-plain"; 7698 - deps."kotex-utf" = tl."kotex-utf"; 7699 - deps."kotex-utils" = tl."kotex-utils"; 7700 - deps."lshort-korean" = tl."lshort-korean"; 7701 - deps."nanumtype1" = tl."nanumtype1"; 7702 - deps."pmhanguljamo" = tl."pmhanguljamo"; 7703 - deps."uhc" = tl."uhc"; 7704 - deps."unfonts-core" = tl."unfonts-core"; 7705 - deps."unfonts-extra" = tl."unfonts-extra"; 7783 + deps = [ 7784 + "baekmuk" 7785 + "cjk-ko" 7786 + "collection-langcjk" 7787 + "kotex-oblivoir" 7788 + "kotex-plain" 7789 + "kotex-utf" 7790 + "kotex-utils" 7791 + "lshort-korean" 7792 + "nanumtype1" 7793 + "pmhanguljamo" 7794 + "uhc" 7795 + "unfonts-core" 7796 + "unfonts-extra" 7797 + ]; 7706 7798 sha512.run = "2d93df728d34137c8f9a884aa2871a2980e806672006f2c5f0c5f79412d5789c6f94958363cfc9a78b5a97a7d76bbb6cb157b2cb2a8a283f7afdfd838fa24883"; 7707 7799 }; 7708 7800 "collection-langother" = { 7709 7801 revision = 59564; 7710 7802 stripPrefix = 0; 7711 - deps."aalok" = tl."aalok"; 7712 - deps."akshar" = tl."akshar"; 7713 - deps."amsldoc-vn" = tl."amsldoc-vn"; 7714 - deps."aramaic-serto" = tl."aramaic-serto"; 7715 - deps."babel-azerbaijani" = tl."babel-azerbaijani"; 7716 - deps."babel-esperanto" = tl."babel-esperanto"; 7717 - deps."babel-georgian" = tl."babel-georgian"; 7718 - deps."babel-hebrew" = tl."babel-hebrew"; 7719 - deps."babel-indonesian" = tl."babel-indonesian"; 7720 - deps."babel-interlingua" = tl."babel-interlingua"; 7721 - deps."babel-malay" = tl."babel-malay"; 7722 - deps."babel-sorbian" = tl."babel-sorbian"; 7723 - deps."babel-thai" = tl."babel-thai"; 7724 - deps."babel-vietnamese" = tl."babel-vietnamese"; 7725 - deps."bangla" = tl."bangla"; 7726 - deps."bangtex" = tl."bangtex"; 7727 - deps."bengali" = tl."bengali"; 7728 - deps."burmese" = tl."burmese"; 7729 - deps."chhaya" = tl."chhaya"; 7730 - deps."cjhebrew" = tl."cjhebrew"; 7731 - deps."collection-basic" = tl."collection-basic"; 7732 - deps."ctib" = tl."ctib"; 7733 - deps."ebong" = tl."ebong"; 7734 - deps."ethiop" = tl."ethiop"; 7735 - deps."ethiop-t1" = tl."ethiop-t1"; 7736 - deps."fc" = tl."fc"; 7737 - deps."fonts-tlwg" = tl."fonts-tlwg"; 7738 - deps."hindawi-latex-template" = tl."hindawi-latex-template"; 7739 - deps."hyphen-afrikaans" = tl."hyphen-afrikaans"; 7740 - deps."hyphen-armenian" = tl."hyphen-armenian"; 7741 - deps."hyphen-coptic" = tl."hyphen-coptic"; 7742 - deps."hyphen-esperanto" = tl."hyphen-esperanto"; 7743 - deps."hyphen-ethiopic" = tl."hyphen-ethiopic"; 7744 - deps."hyphen-georgian" = tl."hyphen-georgian"; 7745 - deps."hyphen-indic" = tl."hyphen-indic"; 7746 - deps."hyphen-indonesian" = tl."hyphen-indonesian"; 7747 - deps."hyphen-interlingua" = tl."hyphen-interlingua"; 7748 - deps."hyphen-sanskrit" = tl."hyphen-sanskrit"; 7749 - deps."hyphen-thai" = tl."hyphen-thai"; 7750 - deps."hyphen-turkmen" = tl."hyphen-turkmen"; 7751 - deps."latex-mr" = tl."latex-mr"; 7752 - deps."latexbangla" = tl."latexbangla"; 7753 - deps."latino-sine-flexione" = tl."latino-sine-flexione"; 7754 - deps."lshort-thai" = tl."lshort-thai"; 7755 - deps."lshort-vietnamese" = tl."lshort-vietnamese"; 7756 - deps."marathi" = tl."marathi"; 7757 - deps."ntheorem-vn" = tl."ntheorem-vn"; 7758 - deps."padauk" = tl."padauk"; 7759 - deps."quran-bn" = tl."quran-bn"; 7760 - deps."quran-ur" = tl."quran-ur"; 7761 - deps."sanskrit" = tl."sanskrit"; 7762 - deps."sanskrit-t1" = tl."sanskrit-t1"; 7763 - deps."thaienum" = tl."thaienum"; 7764 - deps."thaispec" = tl."thaispec"; 7765 - deps."unicode-alphabets" = tl."unicode-alphabets"; 7766 - deps."velthuis" = tl."velthuis"; 7767 - deps."vntex" = tl."vntex"; 7768 - deps."wnri" = tl."wnri"; 7769 - deps."wnri-latex" = tl."wnri-latex"; 7770 - deps."xetex-devanagari" = tl."xetex-devanagari"; 7803 + deps = [ 7804 + "aalok" 7805 + "akshar" 7806 + "amsldoc-vn" 7807 + "aramaic-serto" 7808 + "babel-azerbaijani" 7809 + "babel-esperanto" 7810 + "babel-georgian" 7811 + "babel-hebrew" 7812 + "babel-indonesian" 7813 + "babel-interlingua" 7814 + "babel-malay" 7815 + "babel-sorbian" 7816 + "babel-thai" 7817 + "babel-vietnamese" 7818 + "bangla" 7819 + "bangtex" 7820 + "bengali" 7821 + "burmese" 7822 + "chhaya" 7823 + "cjhebrew" 7824 + "collection-basic" 7825 + "ctib" 7826 + "ebong" 7827 + "ethiop" 7828 + "ethiop-t1" 7829 + "fc" 7830 + "fonts-tlwg" 7831 + "hindawi-latex-template" 7832 + "hyphen-afrikaans" 7833 + "hyphen-armenian" 7834 + "hyphen-coptic" 7835 + "hyphen-esperanto" 7836 + "hyphen-ethiopic" 7837 + "hyphen-georgian" 7838 + "hyphen-indic" 7839 + "hyphen-indonesian" 7840 + "hyphen-interlingua" 7841 + "hyphen-sanskrit" 7842 + "hyphen-thai" 7843 + "hyphen-turkmen" 7844 + "latex-mr" 7845 + "latexbangla" 7846 + "latino-sine-flexione" 7847 + "lshort-thai" 7848 + "lshort-vietnamese" 7849 + "marathi" 7850 + "ntheorem-vn" 7851 + "padauk" 7852 + "quran-bn" 7853 + "quran-ur" 7854 + "sanskrit" 7855 + "sanskrit-t1" 7856 + "thaienum" 7857 + "thaispec" 7858 + "unicode-alphabets" 7859 + "velthuis" 7860 + "vntex" 7861 + "wnri" 7862 + "wnri-latex" 7863 + "xetex-devanagari" 7864 + ]; 7771 7865 sha512.run = "3db7709c3545df3713dc0a7df73f676f9f34df5fdc157c6a2d6a124a5bbd14f6f5f1f2938092e76be19417f9dd5ff4f84513c84beddafbe5c9747abd7fa597c0"; 7772 7866 }; 7773 7867 "collection-langpolish" = { 7774 7868 revision = 54074; 7775 7869 stripPrefix = 0; 7776 - deps."babel-polish" = tl."babel-polish"; 7777 - deps."bredzenie" = tl."bredzenie"; 7778 - deps."cc-pl" = tl."cc-pl"; 7779 - deps."collection-basic" = tl."collection-basic"; 7780 - deps."collection-latex" = tl."collection-latex"; 7781 - deps."gustlib" = tl."gustlib"; 7782 - deps."gustprog" = tl."gustprog"; 7783 - deps."hyphen-polish" = tl."hyphen-polish"; 7784 - deps."lshort-polish" = tl."lshort-polish"; 7785 - deps."mex" = tl."mex"; 7786 - deps."mwcls" = tl."mwcls"; 7787 - deps."pl" = tl."pl"; 7788 - deps."polski" = tl."polski"; 7789 - deps."przechlewski-book" = tl."przechlewski-book"; 7790 - deps."qpxqtx" = tl."qpxqtx"; 7791 - deps."tap" = tl."tap"; 7792 - deps."tex-virtual-academy-pl" = tl."tex-virtual-academy-pl"; 7793 - deps."texlive-pl" = tl."texlive-pl"; 7794 - deps."utf8mex" = tl."utf8mex"; 7870 + deps = [ 7871 + "babel-polish" 7872 + "bredzenie" 7873 + "cc-pl" 7874 + "collection-basic" 7875 + "collection-latex" 7876 + "gustlib" 7877 + "gustprog" 7878 + "hyphen-polish" 7879 + "lshort-polish" 7880 + "mex" 7881 + "mwcls" 7882 + "pl" 7883 + "polski" 7884 + "przechlewski-book" 7885 + "qpxqtx" 7886 + "tap" 7887 + "tex-virtual-academy-pl" 7888 + "texlive-pl" 7889 + "utf8mex" 7890 + ]; 7795 7891 sha512.run = "fc0d08f70aeb83869109290e6d1585d513097dcd4e17791752ecd3d26ac202838afb5931f78ceaeeaf72c63b18fe9183edd650c075d03188f24cb2caded178de"; 7796 7892 }; 7797 7893 "collection-langportuguese" = { 7798 7894 revision = 54074; 7799 7895 stripPrefix = 0; 7800 - deps."babel-portuges" = tl."babel-portuges"; 7801 - deps."beamer-tut-pt" = tl."beamer-tut-pt"; 7802 - deps."collection-basic" = tl."collection-basic"; 7803 - deps."cursolatex" = tl."cursolatex"; 7804 - deps."feupphdteses" = tl."feupphdteses"; 7805 - deps."hyphen-portuguese" = tl."hyphen-portuguese"; 7806 - deps."latex-via-exemplos" = tl."latex-via-exemplos"; 7807 - deps."latexcheat-ptbr" = tl."latexcheat-ptbr"; 7808 - deps."lshort-portuguese" = tl."lshort-portuguese"; 7809 - deps."numberpt" = tl."numberpt"; 7810 - deps."ordinalpt" = tl."ordinalpt"; 7811 - deps."xypic-tut-pt" = tl."xypic-tut-pt"; 7896 + deps = [ 7897 + "babel-portuges" 7898 + "beamer-tut-pt" 7899 + "collection-basic" 7900 + "cursolatex" 7901 + "feupphdteses" 7902 + "hyphen-portuguese" 7903 + "latex-via-exemplos" 7904 + "latexcheat-ptbr" 7905 + "lshort-portuguese" 7906 + "numberpt" 7907 + "ordinalpt" 7908 + "xypic-tut-pt" 7909 + ]; 7812 7910 sha512.run = "16d67d288fb702807b43dcf8da044a45206c27c5cf0d953688fc341966fb166db8cec69b727b1de079b9bf434f024f7338eaf34529510cab7881147d1635b43d"; 7813 7911 }; 7814 7912 "collection-langspanish" = { 7815 7913 revision = 54141; 7816 7914 stripPrefix = 0; 7817 - deps."babel-catalan" = tl."babel-catalan"; 7818 - deps."babel-galician" = tl."babel-galician"; 7819 - deps."babel-spanish" = tl."babel-spanish"; 7820 - deps."collection-basic" = tl."collection-basic"; 7821 - deps."es-tex-faq" = tl."es-tex-faq"; 7822 - deps."hyphen-catalan" = tl."hyphen-catalan"; 7823 - deps."hyphen-galician" = tl."hyphen-galician"; 7824 - deps."hyphen-spanish" = tl."hyphen-spanish"; 7825 - deps."l2tabu-spanish" = tl."l2tabu-spanish"; 7826 - deps."latex2e-help-texinfo-spanish" = tl."latex2e-help-texinfo-spanish"; 7827 - deps."latexcheat-esmx" = tl."latexcheat-esmx"; 7828 - deps."lshort-spanish" = tl."lshort-spanish"; 7829 - deps."texlive-es" = tl."texlive-es"; 7915 + deps = [ 7916 + "babel-catalan" 7917 + "babel-galician" 7918 + "babel-spanish" 7919 + "collection-basic" 7920 + "es-tex-faq" 7921 + "hyphen-catalan" 7922 + "hyphen-galician" 7923 + "hyphen-spanish" 7924 + "l2tabu-spanish" 7925 + "latex2e-help-texinfo-spanish" 7926 + "latexcheat-esmx" 7927 + "lshort-spanish" 7928 + "texlive-es" 7929 + ]; 7830 7930 sha512.run = "88bdc5cefd5519bc80e50e2d808abf32aae8f7c730023afab3babb82ab817dc034c78d42b4143135df187343de7164a8fd94dc95c5ec8909e317a2f5628de15e"; 7831 7931 }; 7832 7932 "collection-latex" = { 7833 7933 revision = 63515; 7834 7934 stripPrefix = 0; 7835 - deps."ae" = tl."ae"; 7836 - deps."amscls" = tl."amscls"; 7837 - deps."amsmath" = tl."amsmath"; 7838 - deps."atbegshi" = tl."atbegshi"; 7839 - deps."atveryend" = tl."atveryend"; 7840 - deps."auxhook" = tl."auxhook"; 7841 - deps."babel" = tl."babel"; 7842 - deps."babel-english" = tl."babel-english"; 7843 - deps."babelbib" = tl."babelbib"; 7844 - deps."bigintcalc" = tl."bigintcalc"; 7845 - deps."bitset" = tl."bitset"; 7846 - deps."bookmark" = tl."bookmark"; 7847 - deps."carlisle" = tl."carlisle"; 7848 - deps."collection-basic" = tl."collection-basic"; 7849 - deps."colortbl" = tl."colortbl"; 7850 - deps."epstopdf-pkg" = tl."epstopdf-pkg"; 7851 - deps."etexcmds" = tl."etexcmds"; 7852 - deps."fancyhdr" = tl."fancyhdr"; 7853 - deps."firstaid" = tl."firstaid"; 7854 - deps."fix2col" = tl."fix2col"; 7855 - deps."geometry" = tl."geometry"; 7856 - deps."gettitlestring" = tl."gettitlestring"; 7857 - deps."graphics" = tl."graphics"; 7858 - deps."graphics-cfg" = tl."graphics-cfg"; 7859 - deps."grfext" = tl."grfext"; 7860 - deps."hopatch" = tl."hopatch"; 7861 - deps."hycolor" = tl."hycolor"; 7862 - deps."hyperref" = tl."hyperref"; 7863 - deps."intcalc" = tl."intcalc"; 7864 - deps."kvdefinekeys" = tl."kvdefinekeys"; 7865 - deps."kvoptions" = tl."kvoptions"; 7866 - deps."kvsetkeys" = tl."kvsetkeys"; 7867 - deps."l3backend" = tl."l3backend"; 7868 - deps."l3kernel" = tl."l3kernel"; 7869 - deps."l3packages" = tl."l3packages"; 7870 - deps."latex" = tl."latex"; 7871 - deps."latex-bin" = tl."latex-bin"; 7872 - deps."latex-fonts" = tl."latex-fonts"; 7873 - deps."latex-lab" = tl."latex-lab"; 7874 - deps."latexconfig" = tl."latexconfig"; 7875 - deps."letltxmacro" = tl."letltxmacro"; 7876 - deps."ltxcmds" = tl."ltxcmds"; 7877 - deps."ltxmisc" = tl."ltxmisc"; 7878 - deps."mfnfss" = tl."mfnfss"; 7879 - deps."mptopdf" = tl."mptopdf"; 7880 - deps."natbib" = tl."natbib"; 7881 - deps."oberdiek" = tl."oberdiek"; 7882 - deps."pagesel" = tl."pagesel"; 7883 - deps."pdfescape" = tl."pdfescape"; 7884 - deps."pslatex" = tl."pslatex"; 7885 - deps."psnfss" = tl."psnfss"; 7886 - deps."pspicture" = tl."pspicture"; 7887 - deps."refcount" = tl."refcount"; 7888 - deps."rerunfilecheck" = tl."rerunfilecheck"; 7889 - deps."stringenc" = tl."stringenc"; 7890 - deps."tools" = tl."tools"; 7891 - deps."uniquecounter" = tl."uniquecounter"; 7892 - deps."url" = tl."url"; 7935 + deps = [ 7936 + "ae" 7937 + "amscls" 7938 + "amsmath" 7939 + "atbegshi" 7940 + "atveryend" 7941 + "auxhook" 7942 + "babel" 7943 + "babel-english" 7944 + "babelbib" 7945 + "bigintcalc" 7946 + "bitset" 7947 + "bookmark" 7948 + "carlisle" 7949 + "collection-basic" 7950 + "colortbl" 7951 + "epstopdf-pkg" 7952 + "etexcmds" 7953 + "fancyhdr" 7954 + "firstaid" 7955 + "fix2col" 7956 + "geometry" 7957 + "gettitlestring" 7958 + "graphics" 7959 + "graphics-cfg" 7960 + "grfext" 7961 + "hopatch" 7962 + "hycolor" 7963 + "hyperref" 7964 + "intcalc" 7965 + "kvdefinekeys" 7966 + "kvoptions" 7967 + "kvsetkeys" 7968 + "l3backend" 7969 + "l3kernel" 7970 + "l3packages" 7971 + "latex" 7972 + "latex-bin" 7973 + "latex-fonts" 7974 + "latex-lab" 7975 + "latexconfig" 7976 + "letltxmacro" 7977 + "ltxcmds" 7978 + "ltxmisc" 7979 + "mfnfss" 7980 + "mptopdf" 7981 + "natbib" 7982 + "oberdiek" 7983 + "pagesel" 7984 + "pdfescape" 7985 + "pslatex" 7986 + "psnfss" 7987 + "pspicture" 7988 + "refcount" 7989 + "rerunfilecheck" 7990 + "stringenc" 7991 + "tools" 7992 + "uniquecounter" 7993 + "url" 7994 + ]; 7893 7995 sha512.run = "c73220abd1545907a1d8de37cb534d2c6bd2534f1b55f03c069f39f535c326d4b1852f8415d9876ca52645db939ad7a11c55f550a2096ccd4b8dd8be6a4114d6"; 7894 7996 }; 7895 7997 "collection-latexextra" = { 7896 7998 revision = 65353; 7897 7999 stripPrefix = 0; 7898 - deps."2up" = tl."2up"; 7899 - deps."a0poster" = tl."a0poster"; 7900 - deps."a4wide" = tl."a4wide"; 7901 - deps."a5comb" = tl."a5comb"; 7902 - deps."abraces" = tl."abraces"; 7903 - deps."abspos" = tl."abspos"; 7904 - deps."abstract" = tl."abstract"; 7905 - deps."accessibility" = tl."accessibility"; 7906 - deps."accsupp" = tl."accsupp"; 7907 - deps."achemso" = tl."achemso"; 7908 - deps."acro" = tl."acro"; 7909 - deps."acronym" = tl."acronym"; 7910 - deps."acroterm" = tl."acroterm"; 7911 - deps."actuarialangle" = tl."actuarialangle"; 7912 - deps."actuarialsymbol" = tl."actuarialsymbol"; 7913 - deps."addfont" = tl."addfont"; 7914 - deps."addlines" = tl."addlines"; 7915 - deps."adjmulticol" = tl."adjmulticol"; 7916 - deps."adjustbox" = tl."adjustbox"; 7917 - deps."adrconv" = tl."adrconv"; 7918 - deps."advdate" = tl."advdate"; 7919 - deps."akktex" = tl."akktex"; 7920 - deps."akletter" = tl."akletter"; 7921 - deps."alertmessage" = tl."alertmessage"; 7922 - deps."alnumsec" = tl."alnumsec"; 7923 - deps."alphalph" = tl."alphalph"; 7924 - deps."alterqcm" = tl."alterqcm"; 7925 - deps."altfont" = tl."altfont"; 7926 - deps."altsubsup" = tl."altsubsup"; 7927 - deps."amsaddr" = tl."amsaddr"; 7928 - deps."animate" = tl."animate"; 7929 - deps."anonchap" = tl."anonchap"; 7930 - deps."answers" = tl."answers"; 7931 - deps."anyfontsize" = tl."anyfontsize"; 7932 - deps."appendix" = tl."appendix"; 7933 - deps."appendixnumberbeamer" = tl."appendixnumberbeamer"; 7934 - deps."apptools" = tl."apptools"; 7935 - deps."arabicfront" = tl."arabicfront"; 7936 - deps."arcs" = tl."arcs"; 7937 - deps."arraycols" = tl."arraycols"; 7938 - deps."arrayjobx" = tl."arrayjobx"; 7939 - deps."arraysort" = tl."arraysort"; 7940 - deps."arydshln" = tl."arydshln"; 7941 - deps."asciilist" = tl."asciilist"; 7942 - deps."askinclude" = tl."askinclude"; 7943 - deps."assignment" = tl."assignment"; 7944 - deps."assoccnt" = tl."assoccnt"; 7945 - deps."association-matrix" = tl."association-matrix"; 7946 - deps."atenddvi" = tl."atenddvi"; 7947 - deps."atendofenv" = tl."atendofenv"; 7948 - deps."attachfile" = tl."attachfile"; 7949 - deps."aurl" = tl."aurl"; 7950 - deps."authoraftertitle" = tl."authoraftertitle"; 7951 - deps."authorarchive" = tl."authorarchive"; 7952 - deps."authorindex" = tl."authorindex"; 7953 - deps."autofancyhdr" = tl."autofancyhdr"; 7954 - deps."autonum" = tl."autonum"; 7955 - deps."autopdf" = tl."autopdf"; 7956 - deps."autopuncitems" = tl."autopuncitems"; 7957 - deps."avremu" = tl."avremu"; 7958 - deps."axessibility" = tl."axessibility"; 7959 - deps."background" = tl."background"; 7960 - deps."bankstatement" = tl."bankstatement"; 7961 - deps."bashful" = tl."bashful"; 7962 - deps."basicarith" = tl."basicarith"; 7963 - deps."bchart" = tl."bchart"; 7964 - deps."beamer-rl" = tl."beamer-rl"; 7965 - deps."beamer2thesis" = tl."beamer2thesis"; 7966 - deps."beamerappendixnote" = tl."beamerappendixnote"; 7967 - deps."beameraudience" = tl."beameraudience"; 7968 - deps."beamerauxtheme" = tl."beamerauxtheme"; 7969 - deps."beamercolorthemeowl" = tl."beamercolorthemeowl"; 7970 - deps."beamerdarkthemes" = tl."beamerdarkthemes"; 7971 - deps."beamerposter" = tl."beamerposter"; 7972 - deps."beamersubframe" = tl."beamersubframe"; 7973 - deps."beamertheme-arguelles" = tl."beamertheme-arguelles"; 7974 - deps."beamertheme-cuerna" = tl."beamertheme-cuerna"; 7975 - deps."beamertheme-detlevcm" = tl."beamertheme-detlevcm"; 7976 - deps."beamertheme-epyt" = tl."beamertheme-epyt"; 7977 - deps."beamertheme-focus" = tl."beamertheme-focus"; 7978 - deps."beamertheme-light" = tl."beamertheme-light"; 7979 - deps."beamertheme-metropolis" = tl."beamertheme-metropolis"; 7980 - deps."beamertheme-npbt" = tl."beamertheme-npbt"; 7981 - deps."beamertheme-phnompenh" = tl."beamertheme-phnompenh"; 7982 - deps."beamertheme-pure-minimalistic" = tl."beamertheme-pure-minimalistic"; 7983 - deps."beamertheme-saintpetersburg" = tl."beamertheme-saintpetersburg"; 7984 - deps."beamertheme-simpledarkblue" = tl."beamertheme-simpledarkblue"; 7985 - deps."beamertheme-simpleplus" = tl."beamertheme-simpleplus"; 7986 - deps."beamertheme-tcolorbox" = tl."beamertheme-tcolorbox"; 7987 - deps."beamertheme-trigon" = tl."beamertheme-trigon"; 7988 - deps."beamertheme-upenn-bc" = tl."beamertheme-upenn-bc"; 7989 - deps."beamerthemeamurmaple" = tl."beamerthemeamurmaple"; 7990 - deps."beamerthemejltree" = tl."beamerthemejltree"; 7991 - deps."beamerthemelalic" = tl."beamerthemelalic"; 7992 - deps."beamerthemenirma" = tl."beamerthemenirma"; 7993 - deps."beamerthemenord" = tl."beamerthemenord"; 7994 - deps."bearwear" = tl."bearwear"; 7995 - deps."beaulivre" = tl."beaulivre"; 7996 - deps."beton" = tl."beton"; 7997 - deps."bewerbung" = tl."bewerbung"; 7998 - deps."bez123" = tl."bez123"; 7999 - deps."bhcexam" = tl."bhcexam"; 8000 - deps."bibletext" = tl."bibletext"; 8001 - deps."bigfoot" = tl."bigfoot"; 8002 - deps."bigints" = tl."bigints"; 8003 - deps."bilingualpages" = tl."bilingualpages"; 8004 - deps."biochemistry-colors" = tl."biochemistry-colors"; 8005 - deps."bithesis" = tl."bithesis"; 8006 - deps."bizcard" = tl."bizcard"; 8007 - deps."blindtext" = tl."blindtext"; 8008 - deps."blkarray" = tl."blkarray"; 8009 - deps."block" = tl."block"; 8010 - deps."blowup" = tl."blowup"; 8011 - deps."bnumexpr" = tl."bnumexpr"; 8012 - deps."boites" = tl."boites"; 8013 - deps."bold-extra" = tl."bold-extra"; 8014 - deps."book-of-common-prayer" = tl."book-of-common-prayer"; 8015 - deps."bookcover" = tl."bookcover"; 8016 - deps."bookest" = tl."bookest"; 8017 - deps."booklet" = tl."booklet"; 8018 - deps."bookshelf" = tl."bookshelf"; 8019 - deps."boolexpr" = tl."boolexpr"; 8020 - deps."bophook" = tl."bophook"; 8021 - deps."boxedminipage" = tl."boxedminipage"; 8022 - deps."boxhandler" = tl."boxhandler"; 8023 - deps."bracketkey" = tl."bracketkey"; 8024 - deps."braket" = tl."braket"; 8025 - deps."breakurl" = tl."breakurl"; 8026 - deps."bubblesort" = tl."bubblesort"; 8027 - deps."bullcntr" = tl."bullcntr"; 8028 - deps."bxcalc" = tl."bxcalc"; 8029 - deps."bxdpx-beamer" = tl."bxdpx-beamer"; 8030 - deps."bxdvidriver" = tl."bxdvidriver"; 8031 - deps."bxenclose" = tl."bxenclose"; 8032 - deps."bxnewfont" = tl."bxnewfont"; 8033 - deps."bxpapersize" = tl."bxpapersize"; 8034 - deps."bxpdfver" = tl."bxpdfver"; 8035 - deps."bxtexlogo" = tl."bxtexlogo"; 8036 - deps."calcage" = tl."calcage"; 8037 - deps."calctab" = tl."calctab"; 8038 - deps."calculator" = tl."calculator"; 8039 - deps."calrsfs" = tl."calrsfs"; 8040 - deps."cals" = tl."cals"; 8041 - deps."calxxxx-yyyy" = tl."calxxxx-yyyy"; 8042 - deps."cancel" = tl."cancel"; 8043 - deps."canoniclayout" = tl."canoniclayout"; 8044 - deps."capt-of" = tl."capt-of"; 8045 - deps."captcont" = tl."captcont"; 8046 - deps."captdef" = tl."captdef"; 8047 - deps."carbohydrates" = tl."carbohydrates"; 8048 - deps."cases" = tl."cases"; 8049 - deps."casyl" = tl."casyl"; 8050 - deps."catchfile" = tl."catchfile"; 8051 - deps."catchfilebetweentags" = tl."catchfilebetweentags"; 8052 - deps."catechis" = tl."catechis"; 8053 - deps."catoptions" = tl."catoptions"; 8054 - deps."cbcoptic" = tl."cbcoptic"; 8055 - deps."ccaption" = tl."ccaption"; 8056 - deps."cclicenses" = tl."cclicenses"; 8057 - deps."cd" = tl."cd"; 8058 - deps."cd-cover" = tl."cd-cover"; 8059 - deps."cdcmd" = tl."cdcmd"; 8060 - deps."cdpbundl" = tl."cdpbundl"; 8061 - deps."cellprops" = tl."cellprops"; 8062 - deps."cellspace" = tl."cellspace"; 8063 - deps."censor" = tl."censor"; 8064 - deps."centeredline" = tl."centeredline"; 8065 - deps."centerlastline" = tl."centerlastline"; 8066 - deps."changebar" = tl."changebar"; 8067 - deps."changelayout" = tl."changelayout"; 8068 - deps."changelog" = tl."changelog"; 8069 - deps."changepage" = tl."changepage"; 8070 - deps."changes" = tl."changes"; 8071 - deps."chappg" = tl."chappg"; 8072 - deps."chapterfolder" = tl."chapterfolder"; 8073 - deps."cheatsheet" = tl."cheatsheet"; 8074 - deps."checkend" = tl."checkend"; 8075 - deps."chet" = tl."chet"; 8076 - deps."chextras" = tl."chextras"; 8077 - deps."childdoc" = tl."childdoc"; 8078 - deps."chkfloat" = tl."chkfloat"; 8079 - deps."chletter" = tl."chletter"; 8080 - deps."chngcntr" = tl."chngcntr"; 8081 - deps."chronology" = tl."chronology"; 8082 - deps."circ" = tl."circ"; 8083 - deps."circledsteps" = tl."circledsteps"; 8084 - deps."circledtext" = tl."circledtext"; 8085 - deps."classics" = tl."classics"; 8086 - deps."classpack" = tl."classpack"; 8087 - deps."clefval" = tl."clefval"; 8088 - deps."cleveref" = tl."cleveref"; 8089 - deps."clicks" = tl."clicks"; 8090 - deps."clipboard" = tl."clipboard"; 8091 - deps."clistmap" = tl."clistmap"; 8092 - deps."clock" = tl."clock"; 8093 - deps."clrdblpg" = tl."clrdblpg"; 8094 - deps."clrstrip" = tl."clrstrip"; 8095 - deps."cmdstring" = tl."cmdstring"; 8096 - deps."cmdtrack" = tl."cmdtrack"; 8097 - deps."cmsd" = tl."cmsd"; 8098 - deps."cnltx" = tl."cnltx"; 8099 - deps."cntformats" = tl."cntformats"; 8100 - deps."cntperchap" = tl."cntperchap"; 8101 - deps."codebox" = tl."codebox"; 8102 - deps."codedoc" = tl."codedoc"; 8103 - deps."codehigh" = tl."codehigh"; 8104 - deps."codepage" = tl."codepage"; 8105 - deps."codesection" = tl."codesection"; 8106 - deps."collcell" = tl."collcell"; 8107 - deps."collectbox" = tl."collectbox"; 8108 - deps."collection-latexrecommended" = tl."collection-latexrecommended"; 8109 - deps."collection-pictures" = tl."collection-pictures"; 8110 - deps."colophon" = tl."colophon"; 8111 - deps."color-edits" = tl."color-edits"; 8112 - deps."colordoc" = tl."colordoc"; 8113 - deps."colorframed" = tl."colorframed"; 8114 - deps."colorinfo" = tl."colorinfo"; 8115 - deps."coloring" = tl."coloring"; 8116 - deps."colorist" = tl."colorist"; 8117 - deps."colorspace" = tl."colorspace"; 8118 - deps."colortab" = tl."colortab"; 8119 - deps."colorwav" = tl."colorwav"; 8120 - deps."colorweb" = tl."colorweb"; 8121 - deps."colourchange" = tl."colourchange"; 8122 - deps."combelow" = tl."combelow"; 8123 - deps."combine" = tl."combine"; 8124 - deps."comma" = tl."comma"; 8125 - deps."commado" = tl."commado"; 8126 - deps."commedit" = tl."commedit"; 8127 - deps."comment" = tl."comment"; 8128 - deps."commonunicode" = tl."commonunicode"; 8129 - deps."competences" = tl."competences"; 8130 - deps."concepts" = tl."concepts"; 8131 - deps."concprog" = tl."concprog"; 8132 - deps."conditext" = tl."conditext"; 8133 - deps."constants" = tl."constants"; 8134 - deps."continue" = tl."continue"; 8135 - deps."contour" = tl."contour"; 8136 - deps."contracard" = tl."contracard"; 8137 - deps."conv-xkv" = tl."conv-xkv"; 8138 - deps."cooking" = tl."cooking"; 8139 - deps."cooking-units" = tl."cooking-units"; 8140 - deps."cool" = tl."cool"; 8141 - deps."coolfn" = tl."coolfn"; 8142 - deps."coollist" = tl."coollist"; 8143 - deps."coolstr" = tl."coolstr"; 8144 - deps."coolthms" = tl."coolthms"; 8145 - deps."cooltooltips" = tl."cooltooltips"; 8146 - deps."coop-writing" = tl."coop-writing"; 8147 - deps."coordsys" = tl."coordsys"; 8148 - deps."copyedit" = tl."copyedit"; 8149 - deps."copyrightbox" = tl."copyrightbox"; 8150 - deps."coseoul" = tl."coseoul"; 8151 - deps."counttexruns" = tl."counttexruns"; 8152 - deps."courseoutline" = tl."courseoutline"; 8153 - deps."coursepaper" = tl."coursepaper"; 8154 - deps."coverpage" = tl."coverpage"; 8155 - deps."cprotect" = tl."cprotect"; 8156 - deps."cprotectinside" = tl."cprotectinside"; 8157 - deps."crbox" = tl."crbox"; 8158 - deps."create-theorem" = tl."create-theorem"; 8159 - deps."crefthe" = tl."crefthe"; 8160 - deps."crossreference" = tl."crossreference"; 8161 - deps."crossreftools" = tl."crossreftools"; 8162 - deps."crumbs" = tl."crumbs"; 8163 - deps."csquotes" = tl."csquotes"; 8164 - deps."css-colors" = tl."css-colors"; 8165 - deps."csvmerge" = tl."csvmerge"; 8166 - deps."csvsimple" = tl."csvsimple"; 8167 - deps."cuisine" = tl."cuisine"; 8168 - deps."currency" = tl."currency"; 8169 - deps."currfile" = tl."currfile"; 8170 - deps."currvita" = tl."currvita"; 8171 - deps."cutwin" = tl."cutwin"; 8172 - deps."cv" = tl."cv"; 8173 - deps."cv4tw" = tl."cv4tw"; 8174 - deps."cweb-latex" = tl."cweb-latex"; 8175 - deps."cyber" = tl."cyber"; 8176 - deps."cybercic" = tl."cybercic"; 8177 - deps."darkmode" = tl."darkmode"; 8178 - deps."dashbox" = tl."dashbox"; 8179 - deps."dashrule" = tl."dashrule"; 8180 - deps."dashundergaps" = tl."dashundergaps"; 8181 - deps."dataref" = tl."dataref"; 8182 - deps."datatool" = tl."datatool"; 8183 - deps."datax" = tl."datax"; 8184 - deps."dateiliste" = tl."dateiliste"; 8185 - deps."datenumber" = tl."datenumber"; 8186 - deps."datestamp" = tl."datestamp"; 8187 - deps."datetime" = tl."datetime"; 8188 - deps."datetime2" = tl."datetime2"; 8189 - deps."datetime2-bahasai" = tl."datetime2-bahasai"; 8190 - deps."datetime2-basque" = tl."datetime2-basque"; 8191 - deps."datetime2-breton" = tl."datetime2-breton"; 8192 - deps."datetime2-bulgarian" = tl."datetime2-bulgarian"; 8193 - deps."datetime2-catalan" = tl."datetime2-catalan"; 8194 - deps."datetime2-croatian" = tl."datetime2-croatian"; 8195 - deps."datetime2-czech" = tl."datetime2-czech"; 8196 - deps."datetime2-danish" = tl."datetime2-danish"; 8197 - deps."datetime2-dutch" = tl."datetime2-dutch"; 8198 - deps."datetime2-en-fulltext" = tl."datetime2-en-fulltext"; 8199 - deps."datetime2-english" = tl."datetime2-english"; 8200 - deps."datetime2-esperanto" = tl."datetime2-esperanto"; 8201 - deps."datetime2-estonian" = tl."datetime2-estonian"; 8202 - deps."datetime2-finnish" = tl."datetime2-finnish"; 8203 - deps."datetime2-french" = tl."datetime2-french"; 8204 - deps."datetime2-galician" = tl."datetime2-galician"; 8205 - deps."datetime2-german" = tl."datetime2-german"; 8206 - deps."datetime2-greek" = tl."datetime2-greek"; 8207 - deps."datetime2-hebrew" = tl."datetime2-hebrew"; 8208 - deps."datetime2-icelandic" = tl."datetime2-icelandic"; 8209 - deps."datetime2-irish" = tl."datetime2-irish"; 8210 - deps."datetime2-it-fulltext" = tl."datetime2-it-fulltext"; 8211 - deps."datetime2-italian" = tl."datetime2-italian"; 8212 - deps."datetime2-latin" = tl."datetime2-latin"; 8213 - deps."datetime2-lsorbian" = tl."datetime2-lsorbian"; 8214 - deps."datetime2-magyar" = tl."datetime2-magyar"; 8215 - deps."datetime2-norsk" = tl."datetime2-norsk"; 8216 - deps."datetime2-polish" = tl."datetime2-polish"; 8217 - deps."datetime2-portuges" = tl."datetime2-portuges"; 8218 - deps."datetime2-romanian" = tl."datetime2-romanian"; 8219 - deps."datetime2-russian" = tl."datetime2-russian"; 8220 - deps."datetime2-samin" = tl."datetime2-samin"; 8221 - deps."datetime2-scottish" = tl."datetime2-scottish"; 8222 - deps."datetime2-serbian" = tl."datetime2-serbian"; 8223 - deps."datetime2-slovak" = tl."datetime2-slovak"; 8224 - deps."datetime2-slovene" = tl."datetime2-slovene"; 8225 - deps."datetime2-spanish" = tl."datetime2-spanish"; 8226 - deps."datetime2-swedish" = tl."datetime2-swedish"; 8227 - deps."datetime2-turkish" = tl."datetime2-turkish"; 8228 - deps."datetime2-ukrainian" = tl."datetime2-ukrainian"; 8229 - deps."datetime2-usorbian" = tl."datetime2-usorbian"; 8230 - deps."datetime2-welsh" = tl."datetime2-welsh"; 8231 - deps."dblfloatfix" = tl."dblfloatfix"; 8232 - deps."dbshow" = tl."dbshow"; 8233 - deps."debate" = tl."debate"; 8234 - deps."decimal" = tl."decimal"; 8235 - deps."decorule" = tl."decorule"; 8236 - deps."delimtxt" = tl."delimtxt"; 8237 - deps."democodetools" = tl."democodetools"; 8238 - deps."denisbdoc" = tl."denisbdoc"; 8239 - deps."diabetes-logbook" = tl."diabetes-logbook"; 8240 - deps."diagbox" = tl."diagbox"; 8241 - deps."diagnose" = tl."diagnose"; 8242 - deps."dialogl" = tl."dialogl"; 8243 - deps."dichokey" = tl."dichokey"; 8244 - deps."dimnum" = tl."dimnum"; 8245 - deps."dinbrief" = tl."dinbrief"; 8246 - deps."directory" = tl."directory"; 8247 - deps."dirtytalk" = tl."dirtytalk"; 8248 - deps."dlfltxb" = tl."dlfltxb"; 8249 - deps."dnaseq" = tl."dnaseq"; 8250 - deps."doclicense" = tl."doclicense"; 8251 - deps."docmfp" = tl."docmfp"; 8252 - deps."docmute" = tl."docmute"; 8253 - deps."docshots" = tl."docshots"; 8254 - deps."doctools" = tl."doctools"; 8255 - deps."documentation" = tl."documentation"; 8256 - deps."docutils" = tl."docutils"; 8257 - deps."doi" = tl."doi"; 8258 - deps."dotarrow" = tl."dotarrow"; 8259 - deps."dotlessi" = tl."dotlessi"; 8260 - deps."dotseqn" = tl."dotseqn"; 8261 - deps."download" = tl."download"; 8262 - deps."dox" = tl."dox"; 8263 - deps."dpfloat" = tl."dpfloat"; 8264 - deps."dprogress" = tl."dprogress"; 8265 - deps."drac" = tl."drac"; 8266 - deps."draftcopy" = tl."draftcopy"; 8267 - deps."draftfigure" = tl."draftfigure"; 8268 - deps."draftwatermark" = tl."draftwatermark"; 8269 - deps."dtk" = tl."dtk"; 8270 - deps."dtxdescribe" = tl."dtxdescribe"; 8271 - deps."dtxgallery" = tl."dtxgallery"; 8272 - deps."ducksay" = tl."ducksay"; 8273 - deps."duckuments" = tl."duckuments"; 8274 - deps."dvdcoll" = tl."dvdcoll"; 8275 - deps."dynamicnumber" = tl."dynamicnumber"; 8276 - deps."dynblocks" = tl."dynblocks"; 8277 - deps."ean13isbn" = tl."ean13isbn"; 8278 - deps."easy" = tl."easy"; 8279 - deps."easy-todo" = tl."easy-todo"; 8280 - deps."easybook" = tl."easybook"; 8281 - deps."easyfig" = tl."easyfig"; 8282 - deps."easyfloats" = tl."easyfloats"; 8283 - deps."easyformat" = tl."easyformat"; 8284 - deps."easylist" = tl."easylist"; 8285 - deps."easyreview" = tl."easyreview"; 8286 - deps."ebezier" = tl."ebezier"; 8287 - deps."ecclesiastic" = tl."ecclesiastic"; 8288 - deps."econlipsum" = tl."econlipsum"; 8289 - deps."ecv" = tl."ecv"; 8290 - deps."ed" = tl."ed"; 8291 - deps."edichokey" = tl."edichokey"; 8292 - deps."edmargin" = tl."edmargin"; 8293 - deps."eemeir" = tl."eemeir"; 8294 - deps."efbox" = tl."efbox"; 8295 - deps."egplot" = tl."egplot"; 8296 - deps."ehhline" = tl."ehhline"; 8297 - deps."einfart" = tl."einfart"; 8298 - deps."elegantbook" = tl."elegantbook"; 8299 - deps."elegantnote" = tl."elegantnote"; 8300 - deps."elegantpaper" = tl."elegantpaper"; 8301 - deps."elements" = tl."elements"; 8302 - deps."ellipsis" = tl."ellipsis"; 8303 - deps."elmath" = tl."elmath"; 8304 - deps."elocalloc" = tl."elocalloc"; 8305 - deps."elpres" = tl."elpres"; 8306 - deps."elzcards" = tl."elzcards"; 8307 - deps."emarks" = tl."emarks"; 8308 - deps."embedall" = tl."embedall"; 8309 - deps."embedfile" = tl."embedfile"; 8310 - deps."embrac" = tl."embrac"; 8311 - deps."emptypage" = tl."emptypage"; 8312 - deps."emulateapj" = tl."emulateapj"; 8313 - deps."endfloat" = tl."endfloat"; 8314 - deps."endheads" = tl."endheads"; 8315 - deps."endnotes" = tl."endnotes"; 8316 - deps."endnotes-hy" = tl."endnotes-hy"; 8317 - deps."engpron" = tl."engpron"; 8318 - deps."engrec" = tl."engrec"; 8319 - deps."enotez" = tl."enotez"; 8320 - deps."enumitem" = tl."enumitem"; 8321 - deps."enumitem-zref" = tl."enumitem-zref"; 8322 - deps."envbig" = tl."envbig"; 8323 - deps."environ" = tl."environ"; 8324 - deps."envlab" = tl."envlab"; 8325 - deps."epigraph" = tl."epigraph"; 8326 - deps."epigraph-keys" = tl."epigraph-keys"; 8327 - deps."epiolmec" = tl."epiolmec"; 8328 - deps."eq-pin2corr" = tl."eq-pin2corr"; 8329 - deps."eqell" = tl."eqell"; 8330 - deps."eqlist" = tl."eqlist"; 8331 - deps."eqnalign" = tl."eqnalign"; 8332 - deps."eqname" = tl."eqname"; 8333 - deps."eqparbox" = tl."eqparbox"; 8334 - deps."errata" = tl."errata"; 8335 - deps."erw-l3" = tl."erw-l3"; 8336 - deps."esami" = tl."esami"; 8337 - deps."esdiff" = tl."esdiff"; 8338 - deps."esieecv" = tl."esieecv"; 8339 - deps."esindex" = tl."esindex"; 8340 - deps."esint" = tl."esint"; 8341 - deps."esint-type1" = tl."esint-type1"; 8342 - deps."etaremune" = tl."etaremune"; 8343 - deps."etextools" = tl."etextools"; 8344 - deps."etl" = tl."etl"; 8345 - deps."etoc" = tl."etoc"; 8346 - deps."eukdate" = tl."eukdate"; 8347 - deps."eulerpx" = tl."eulerpx"; 8348 - deps."europasscv" = tl."europasscv"; 8349 - deps."europecv" = tl."europecv"; 8350 - deps."everyhook" = tl."everyhook"; 8351 - deps."everypage" = tl."everypage"; 8352 - deps."exam" = tl."exam"; 8353 - deps."exam-n" = tl."exam-n"; 8354 - deps."exam-randomizechoices" = tl."exam-randomizechoices"; 8355 - deps."examdesign" = tl."examdesign"; 8356 - deps."example" = tl."example"; 8357 - deps."examplep" = tl."examplep"; 8358 - deps."exceltex" = tl."exceltex"; 8359 - deps."excludeonly" = tl."excludeonly"; 8360 - deps."exercise" = tl."exercise"; 8361 - deps."exercisebank" = tl."exercisebank"; 8362 - deps."exercisepoints" = tl."exercisepoints"; 8363 - deps."exercises" = tl."exercises"; 8364 - deps."exesheet" = tl."exesheet"; 8365 - deps."exframe" = tl."exframe"; 8366 - deps."exp-testopt" = tl."exp-testopt"; 8367 - deps."expdlist" = tl."expdlist"; 8368 - deps."export" = tl."export"; 8369 - deps."exsheets" = tl."exsheets"; 8370 - deps."exsol" = tl."exsol"; 8371 - deps."extract" = tl."extract"; 8372 - deps."facsimile" = tl."facsimile"; 8373 - deps."factura" = tl."factura"; 8374 - deps."familytree" = tl."familytree"; 8375 - deps."fancyhandout" = tl."fancyhandout"; 8376 - deps."fancylabel" = tl."fancylabel"; 8377 - deps."fancynum" = tl."fancynum"; 8378 - deps."fancypar" = tl."fancypar"; 8379 - deps."fancyqr" = tl."fancyqr"; 8380 - deps."fancyslides" = tl."fancyslides"; 8381 - deps."fancytabs" = tl."fancytabs"; 8382 - deps."fancytooltips" = tl."fancytooltips"; 8383 - deps."fbox" = tl."fbox"; 8384 - deps."fcolumn" = tl."fcolumn"; 8385 - deps."fetchcls" = tl."fetchcls"; 8386 - deps."fewerfloatpages" = tl."fewerfloatpages"; 8387 - deps."ffcode" = tl."ffcode"; 8388 - deps."ffslides" = tl."ffslides"; 8389 - deps."fgruler" = tl."fgruler"; 8390 - deps."fifo-stack" = tl."fifo-stack"; 8391 - deps."figsize" = tl."figsize"; 8392 - deps."filecontents" = tl."filecontents"; 8393 - deps."filecontentsdef" = tl."filecontentsdef"; 8394 - deps."filedate" = tl."filedate"; 8395 - deps."fileinfo" = tl."fileinfo"; 8396 - deps."filemod" = tl."filemod"; 8397 - deps."fink" = tl."fink"; 8398 - deps."finstrut" = tl."finstrut"; 8399 - deps."fithesis" = tl."fithesis"; 8400 - deps."fixcmex" = tl."fixcmex"; 8401 - deps."fixfoot" = tl."fixfoot"; 8402 - deps."fixme" = tl."fixme"; 8403 - deps."fixmetodonotes" = tl."fixmetodonotes"; 8404 - deps."fjodor" = tl."fjodor"; 8405 - deps."flabels" = tl."flabels"; 8406 - deps."flacards" = tl."flacards"; 8407 - deps."flagderiv" = tl."flagderiv"; 8408 - deps."flashcards" = tl."flashcards"; 8409 - deps."flashmovie" = tl."flashmovie"; 8410 - deps."flexipage" = tl."flexipage"; 8411 - deps."flipbook" = tl."flipbook"; 8412 - deps."flippdf" = tl."flippdf"; 8413 - deps."floatflt" = tl."floatflt"; 8414 - deps."floatrow" = tl."floatrow"; 8415 - deps."flowfram" = tl."flowfram"; 8416 - deps."fmp" = tl."fmp"; 8417 - deps."fmtcount" = tl."fmtcount"; 8418 - deps."fn2end" = tl."fn2end"; 8419 - deps."fnbreak" = tl."fnbreak"; 8420 - deps."fncychap" = tl."fncychap"; 8421 - deps."fncylab" = tl."fncylab"; 8422 - deps."fnpara" = tl."fnpara"; 8423 - deps."fnpct" = tl."fnpct"; 8424 - deps."fnumprint" = tl."fnumprint"; 8425 - deps."foilhtml" = tl."foilhtml"; 8426 - deps."foliono" = tl."foliono"; 8427 - deps."fontaxes" = tl."fontaxes"; 8428 - deps."fontsetup" = tl."fontsetup"; 8429 - deps."fontsize" = tl."fontsize"; 8430 - deps."fonttable" = tl."fonttable"; 8431 - deps."footmisc" = tl."footmisc"; 8432 - deps."footmisx" = tl."footmisx"; 8433 - deps."footnotebackref" = tl."footnotebackref"; 8434 - deps."footnoterange" = tl."footnoterange"; 8435 - deps."footnpag" = tl."footnpag"; 8436 - deps."forarray" = tl."forarray"; 8437 - deps."foreign" = tl."foreign"; 8438 - deps."forloop" = tl."forloop"; 8439 - deps."formlett" = tl."formlett"; 8440 - deps."forms16be" = tl."forms16be"; 8441 - deps."formular" = tl."formular"; 8442 - deps."fragments" = tl."fragments"; 8443 - deps."frame" = tl."frame"; 8444 - deps."framed" = tl."framed"; 8445 - deps."frankenstein" = tl."frankenstein"; 8446 - deps."frege" = tl."frege"; 8447 - deps."froufrou" = tl."froufrou"; 8448 - deps."ftcap" = tl."ftcap"; 8449 - deps."ftnxtra" = tl."ftnxtra"; 8450 - deps."fullblck" = tl."fullblck"; 8451 - deps."fullminipage" = tl."fullminipage"; 8452 - deps."fullwidth" = tl."fullwidth"; 8453 - deps."functional" = tl."functional"; 8454 - deps."fundus-calligra" = tl."fundus-calligra"; 8455 - deps."fundus-cyr" = tl."fundus-cyr"; 8456 - deps."fundus-sueterlin" = tl."fundus-sueterlin"; 8457 - deps."fvextra" = tl."fvextra"; 8458 - deps."fwlw" = tl."fwlw"; 8459 - deps."g-brief" = tl."g-brief"; 8460 - deps."gatherenum" = tl."gatherenum"; 8461 - deps."gauss" = tl."gauss"; 8462 - deps."gcard" = tl."gcard"; 8463 - deps."gcite" = tl."gcite"; 8464 - deps."gender" = tl."gender"; 8465 - deps."genmpage" = tl."genmpage"; 8466 - deps."gensymb" = tl."gensymb"; 8467 - deps."getfiledate" = tl."getfiledate"; 8468 - deps."getitems" = tl."getitems"; 8469 - deps."gindex" = tl."gindex"; 8470 - deps."ginpenc" = tl."ginpenc"; 8471 - deps."gitfile-info" = tl."gitfile-info"; 8472 - deps."gitinfo" = tl."gitinfo"; 8473 - deps."gitinfo2" = tl."gitinfo2"; 8474 - deps."gitlog" = tl."gitlog"; 8475 - deps."gitstatus" = tl."gitstatus"; 8476 - deps."gitver" = tl."gitver"; 8477 - deps."globalvals" = tl."globalvals"; 8478 - deps."gloss" = tl."gloss"; 8479 - deps."glossaries" = tl."glossaries"; 8480 - deps."glossaries-danish" = tl."glossaries-danish"; 8481 - deps."glossaries-dutch" = tl."glossaries-dutch"; 8482 - deps."glossaries-english" = tl."glossaries-english"; 8483 - deps."glossaries-estonian" = tl."glossaries-estonian"; 8484 - deps."glossaries-extra" = tl."glossaries-extra"; 8485 - deps."glossaries-finnish" = tl."glossaries-finnish"; 8486 - deps."glossaries-french" = tl."glossaries-french"; 8487 - deps."glossaries-german" = tl."glossaries-german"; 8488 - deps."glossaries-irish" = tl."glossaries-irish"; 8489 - deps."glossaries-italian" = tl."glossaries-italian"; 8490 - deps."glossaries-magyar" = tl."glossaries-magyar"; 8491 - deps."glossaries-nynorsk" = tl."glossaries-nynorsk"; 8492 - deps."glossaries-polish" = tl."glossaries-polish"; 8493 - deps."glossaries-portuges" = tl."glossaries-portuges"; 8494 - deps."glossaries-serbian" = tl."glossaries-serbian"; 8495 - deps."glossaries-slovene" = tl."glossaries-slovene"; 8496 - deps."glossaries-spanish" = tl."glossaries-spanish"; 8497 - deps."gmdoc" = tl."gmdoc"; 8498 - deps."gmdoc-enhance" = tl."gmdoc-enhance"; 8499 - deps."gmiflink" = tl."gmiflink"; 8500 - deps."gmutils" = tl."gmutils"; 8501 - deps."gmverb" = tl."gmverb"; 8502 - deps."grabbox" = tl."grabbox"; 8503 - deps."gradient-text" = tl."gradient-text"; 8504 - deps."grading-scheme" = tl."grading-scheme"; 8505 - deps."graphbox" = tl."graphbox"; 8506 - deps."graphicscache" = tl."graphicscache"; 8507 - deps."graphicx-psmin" = tl."graphicx-psmin"; 8508 - deps."graphicxbox" = tl."graphicxbox"; 8509 - deps."graphpaper" = tl."graphpaper"; 8510 - deps."grayhints" = tl."grayhints"; 8511 - deps."grfpaste" = tl."grfpaste"; 8512 - deps."grid" = tl."grid"; 8513 - deps."grid-system" = tl."grid-system"; 8514 - deps."gridpapers" = tl."gridpapers"; 8515 - deps."gridset" = tl."gridset"; 8516 - deps."gridslides" = tl."gridslides"; 8517 - deps."gs1" = tl."gs1"; 8518 - deps."guitlogo" = tl."guitlogo"; 8519 - deps."ha-prosper" = tl."ha-prosper"; 8520 - deps."hackthefootline" = tl."hackthefootline"; 8521 - deps."halloweenmath" = tl."halloweenmath"; 8522 - deps."handin" = tl."handin"; 8523 - deps."handout" = tl."handout"; 8524 - deps."handoutwithnotes" = tl."handoutwithnotes"; 8525 - deps."hang" = tl."hang"; 8526 - deps."hanging" = tl."hanging"; 8527 - deps."hardwrap" = tl."hardwrap"; 8528 - deps."harnon-cv" = tl."harnon-cv"; 8529 - deps."harpoon" = tl."harpoon"; 8530 - deps."hc" = tl."hc"; 8531 - deps."he-she" = tl."he-she"; 8532 - deps."hep-acronym" = tl."hep-acronym"; 8533 - deps."hep-float" = tl."hep-float"; 8534 - deps."hep-math" = tl."hep-math"; 8535 - deps."hep-text" = tl."hep-text"; 8536 - deps."hep-title" = tl."hep-title"; 8537 - deps."hereapplies" = tl."hereapplies"; 8538 - deps."hhtensor" = tl."hhtensor"; 8539 - deps."hideanswer" = tl."hideanswer"; 8540 - deps."highlightlatex" = tl."highlightlatex"; 8541 - deps."histogr" = tl."histogr"; 8542 - deps."hitec" = tl."hitec"; 8543 - deps."hitreport" = tl."hitreport"; 8544 - deps."hletter" = tl."hletter"; 8545 - deps."hobsub" = tl."hobsub"; 8546 - deps."hpsdiss" = tl."hpsdiss"; 8547 - deps."href-ul" = tl."href-ul"; 8548 - deps."hrefhide" = tl."hrefhide"; 8549 - deps."huawei" = tl."huawei"; 8550 - deps."hvextern" = tl."hvextern"; 8551 - deps."hvindex" = tl."hvindex"; 8552 - deps."hvlogos" = tl."hvlogos"; 8553 - deps."hvpygmentex" = tl."hvpygmentex"; 8554 - deps."hvqrurl" = tl."hvqrurl"; 8555 - deps."hwemoji" = tl."hwemoji"; 8556 - deps."hypdestopt" = tl."hypdestopt"; 8557 - deps."hypdoc" = tl."hypdoc"; 8558 - deps."hypdvips" = tl."hypdvips"; 8559 - deps."hyper" = tl."hyper"; 8560 - deps."hyperbar" = tl."hyperbar"; 8561 - deps."hypernat" = tl."hypernat"; 8562 - deps."hyperxmp" = tl."hyperxmp"; 8563 - deps."hyphenat" = tl."hyphenat"; 8564 - deps."identkey" = tl."identkey"; 8565 - deps."idxcmds" = tl."idxcmds"; 8566 - deps."idxlayout" = tl."idxlayout"; 8567 - deps."iexec" = tl."iexec"; 8568 - deps."ifallfalse" = tl."ifallfalse"; 8569 - deps."iffont" = tl."iffont"; 8570 - deps."ifmslide" = tl."ifmslide"; 8571 - deps."ifmtarg" = tl."ifmtarg"; 8572 - deps."ifnextok" = tl."ifnextok"; 8573 - deps."ifoddpage" = tl."ifoddpage"; 8574 - deps."ifthenx" = tl."ifthenx"; 8575 - deps."iitem" = tl."iitem"; 8576 - deps."image-gallery" = tl."image-gallery"; 8577 - deps."imakeidx" = tl."imakeidx"; 8578 - deps."import" = tl."import"; 8579 - deps."incgraph" = tl."incgraph"; 8580 - deps."indextools" = tl."indextools"; 8581 - deps."inline-images" = tl."inline-images"; 8582 - deps."inlinedef" = tl."inlinedef"; 8583 - deps."inlinelabel" = tl."inlinelabel"; 8584 - deps."inputenx" = tl."inputenx"; 8585 - deps."inputtrc" = tl."inputtrc"; 8586 - deps."interactiveworkbook" = tl."interactiveworkbook"; 8587 - deps."interfaces" = tl."interfaces"; 8588 - deps."intopdf" = tl."intopdf"; 8589 - deps."inversepath" = tl."inversepath"; 8590 - deps."invoice" = tl."invoice"; 8591 - deps."invoice-class" = tl."invoice-class"; 8592 - deps."invoice2" = tl."invoice2"; 8593 - deps."iso" = tl."iso"; 8594 - deps."iso10303" = tl."iso10303"; 8595 - deps."isodate" = tl."isodate"; 8596 - deps."isodoc" = tl."isodoc"; 8597 - deps."isonums" = tl."isonums"; 8598 - deps."isopt" = tl."isopt"; 8599 - deps."isorot" = tl."isorot"; 8600 - deps."isotope" = tl."isotope"; 8601 - deps."issuulinks" = tl."issuulinks"; 8602 - deps."iwhdp" = tl."iwhdp"; 8603 - deps."jlabels" = tl."jlabels"; 8604 - deps."jmsdelim" = tl."jmsdelim"; 8605 - deps."jobname-suffix" = tl."jobname-suffix"; 8606 - deps."jslectureplanner" = tl."jslectureplanner"; 8607 - deps."jumplines" = tl."jumplines"; 8608 - deps."jvlisting" = tl."jvlisting"; 8609 - deps."kalendarium" = tl."kalendarium"; 8610 - deps."kantlipsum" = tl."kantlipsum"; 8611 - deps."kerntest" = tl."kerntest"; 8612 - deps."keycommand" = tl."keycommand"; 8613 - deps."keyfloat" = tl."keyfloat"; 8614 - deps."keyindex" = tl."keyindex"; 8615 - deps."keyparse" = tl."keyparse"; 8616 - deps."keyreader" = tl."keyreader"; 8617 - deps."keystroke" = tl."keystroke"; 8618 - deps."keyval2e" = tl."keyval2e"; 8619 - deps."keyvaltable" = tl."keyvaltable"; 8620 - deps."kix" = tl."kix"; 8621 - deps."knowledge" = tl."knowledge"; 8622 - deps."koma-moderncvclassic" = tl."koma-moderncvclassic"; 8623 - deps."koma-script-sfs" = tl."koma-script-sfs"; 8624 - deps."komacv" = tl."komacv"; 8625 - deps."komacv-rg" = tl."komacv-rg"; 8626 - deps."ktv-texdata" = tl."ktv-texdata"; 8627 - deps."l3build" = tl."l3build"; 8628 - deps."labbook" = tl."labbook"; 8629 - deps."labels" = tl."labels"; 8630 - deps."labels4easylist" = tl."labels4easylist"; 8631 - deps."labelschanged" = tl."labelschanged"; 8632 - deps."lambdax" = tl."lambdax"; 8633 - deps."lastpackage" = tl."lastpackage"; 8634 - deps."lastpage" = tl."lastpage"; 8635 - deps."latex-amsmath-dev" = tl."latex-amsmath-dev"; 8636 - deps."latex-base-dev" = tl."latex-base-dev"; 8637 - deps."latex-bin-dev" = tl."latex-bin-dev"; 8638 - deps."latex-firstaid-dev" = tl."latex-firstaid-dev"; 8639 - deps."latex-graphics-dev" = tl."latex-graphics-dev"; 8640 - deps."latex-lab-dev" = tl."latex-lab-dev"; 8641 - deps."latex-tools-dev" = tl."latex-tools-dev"; 8642 - deps."latex-uni8" = tl."latex-uni8"; 8643 - deps."latexcolors" = tl."latexcolors"; 8644 - deps."latexdemo" = tl."latexdemo"; 8645 - deps."latexgit" = tl."latexgit"; 8646 - deps."layouts" = tl."layouts"; 8647 - deps."lazylist" = tl."lazylist"; 8648 - deps."lccaps" = tl."lccaps"; 8649 - deps."lcd" = tl."lcd"; 8650 - deps."lcg" = tl."lcg"; 8651 - deps."leading" = tl."leading"; 8652 - deps."leaflet" = tl."leaflet"; 8653 - deps."lebhart" = tl."lebhart"; 8654 - deps."lectures" = tl."lectures"; 8655 - deps."lectureslides" = tl."lectureslides"; 8656 - deps."leftidx" = tl."leftidx"; 8657 - deps."leftindex" = tl."leftindex"; 8658 - deps."leipzig" = tl."leipzig"; 8659 - deps."lengthconvert" = tl."lengthconvert"; 8660 - deps."lettre" = tl."lettre"; 8661 - deps."lettrine" = tl."lettrine"; 8662 - deps."lewis" = tl."lewis"; 8663 - deps."lhelp" = tl."lhelp"; 8664 - deps."libgreek" = tl."libgreek"; 8665 - deps."limap" = tl."limap"; 8666 - deps."linegoal" = tl."linegoal"; 8667 - deps."linop" = tl."linop"; 8668 - deps."lipsum" = tl."lipsum"; 8669 - deps."lisp-on-tex" = tl."lisp-on-tex"; 8670 - deps."listing" = tl."listing"; 8671 - deps."listingsutf8" = tl."listingsutf8"; 8672 - deps."listlbls" = tl."listlbls"; 8673 - deps."listliketab" = tl."listliketab"; 8674 - deps."listofsymbols" = tl."listofsymbols"; 8675 - deps."lkproof" = tl."lkproof"; 8676 - deps."lmake" = tl."lmake"; 8677 - deps."locality" = tl."locality"; 8678 - deps."logbox" = tl."logbox"; 8679 - deps."logical-markup-utils" = tl."logical-markup-utils"; 8680 - deps."logpap" = tl."logpap"; 8681 - deps."longfbox" = tl."longfbox"; 8682 - deps."longfigure" = tl."longfigure"; 8683 - deps."longnamefilelist" = tl."longnamefilelist"; 8684 - deps."loops" = tl."loops"; 8685 - deps."lsc" = tl."lsc"; 8686 - deps."lstaddons" = tl."lstaddons"; 8687 - deps."lstfiracode" = tl."lstfiracode"; 8688 - deps."lt3graph" = tl."lt3graph"; 8689 - deps."lt3rawobjects" = tl."lt3rawobjects"; 8690 - deps."ltablex" = tl."ltablex"; 8691 - deps."ltabptch" = tl."ltabptch"; 8692 - deps."ltxdockit" = tl."ltxdockit"; 8693 - deps."ltxguidex" = tl."ltxguidex"; 8694 - deps."ltxkeys" = tl."ltxkeys"; 8695 - deps."ltxnew" = tl."ltxnew"; 8696 - deps."ltxtools" = tl."ltxtools"; 8697 - deps."lua-check-hyphen" = tl."lua-check-hyphen"; 8698 - deps."lua-physical" = tl."lua-physical"; 8699 - deps."luatodonotes" = tl."luatodonotes"; 8700 - deps."macrolist" = tl."macrolist"; 8701 - deps."macroswap" = tl."macroswap"; 8702 - deps."magaz" = tl."magaz"; 8703 - deps."magicnum" = tl."magicnum"; 8704 - deps."magicwatermark" = tl."magicwatermark"; 8705 - deps."mailing" = tl."mailing"; 8706 - deps."mailmerge" = tl."mailmerge"; 8707 - deps."makebarcode" = tl."makebarcode"; 8708 - deps."makebase" = tl."makebase"; 8709 - deps."makebox" = tl."makebox"; 8710 - deps."makecell" = tl."makecell"; 8711 - deps."makecirc" = tl."makecirc"; 8712 - deps."makecmds" = tl."makecmds"; 8713 - deps."makecookbook" = tl."makecookbook"; 8714 - deps."makedtx" = tl."makedtx"; 8715 - deps."makeglos" = tl."makeglos"; 8716 - deps."makelabels" = tl."makelabels"; 8717 - deps."makerobust" = tl."makerobust"; 8718 - deps."mandi" = tl."mandi"; 8719 - deps."manfnt" = tl."manfnt"; 8720 - deps."manuscript" = tl."manuscript"; 8721 - deps."manyind" = tl."manyind"; 8722 - deps."marginfit" = tl."marginfit"; 8723 - deps."marginfix" = tl."marginfix"; 8724 - deps."marginnote" = tl."marginnote"; 8725 - deps."markdown" = tl."markdown"; 8726 - deps."mathalpha" = tl."mathalpha"; 8727 - deps."mathastext" = tl."mathastext"; 8728 - deps."mathexam" = tl."mathexam"; 8729 - deps."mathfam256" = tl."mathfam256"; 8730 - deps."mathfont" = tl."mathfont"; 8731 - deps."maybemath" = tl."maybemath"; 8732 - deps."mcaption" = tl."mcaption"; 8733 - deps."mceinleger" = tl."mceinleger"; 8734 - deps."mcexam" = tl."mcexam"; 8735 - deps."mcite" = tl."mcite"; 8736 - deps."mciteplus" = tl."mciteplus"; 8737 - deps."mdframed" = tl."mdframed"; 8738 - deps."media4svg" = tl."media4svg"; 8739 - deps."media9" = tl."media9"; 8740 - deps."medstarbeamer" = tl."medstarbeamer"; 8741 - deps."meetingmins" = tl."meetingmins"; 8742 - deps."memexsupp" = tl."memexsupp"; 8743 - deps."memory" = tl."memory"; 8744 - deps."mensa-tex" = tl."mensa-tex"; 8745 - deps."menu" = tl."menu"; 8746 - deps."menucard" = tl."menucard"; 8747 - deps."menukeys" = tl."menukeys"; 8748 - deps."metalogox" = tl."metalogox"; 8749 - deps."metanorma" = tl."metanorma"; 8750 - deps."metastr" = tl."metastr"; 8751 - deps."method" = tl."method"; 8752 - deps."metre" = tl."metre"; 8753 - deps."mfirstuc" = tl."mfirstuc"; 8754 - deps."mftinc" = tl."mftinc"; 8755 - deps."mi-solns" = tl."mi-solns"; 8756 - deps."midpage" = tl."midpage"; 8757 - deps."mindflow" = tl."mindflow"; 8758 - deps."minibox" = tl."minibox"; 8759 - deps."minidocument" = tl."minidocument"; 8760 - deps."minifp" = tl."minifp"; 8761 - deps."minimalist" = tl."minimalist"; 8762 - deps."minipage-marginpar" = tl."minipage-marginpar"; 8763 - deps."minitoc" = tl."minitoc"; 8764 - deps."minorrevision" = tl."minorrevision"; 8765 - deps."minted" = tl."minted"; 8766 - deps."minutes" = tl."minutes"; 8767 - deps."mla-paper" = tl."mla-paper"; 8768 - deps."mleftright" = tl."mleftright"; 8769 - deps."mlist" = tl."mlist"; 8770 - deps."mmap" = tl."mmap"; 8771 - deps."mnotes" = tl."mnotes"; 8772 - deps."moderncv" = tl."moderncv"; 8773 - deps."modernposter" = tl."modernposter"; 8774 - deps."moderntimeline" = tl."moderntimeline"; 8775 - deps."modref" = tl."modref"; 8776 - deps."modroman" = tl."modroman"; 8777 - deps."modular" = tl."modular"; 8778 - deps."monofill" = tl."monofill"; 8779 - deps."moodle" = tl."moodle"; 8780 - deps."moreenum" = tl."moreenum"; 8781 - deps."morefloats" = tl."morefloats"; 8782 - deps."morehype" = tl."morehype"; 8783 - deps."moresize" = tl."moresize"; 8784 - deps."moreverb" = tl."moreverb"; 8785 - deps."morewrites" = tl."morewrites"; 8786 - deps."movie15" = tl."movie15"; 8787 - deps."mparhack" = tl."mparhack"; 8788 - deps."mpostinl" = tl."mpostinl"; 8789 - deps."msc" = tl."msc"; 8790 - deps."msg" = tl."msg"; 8791 - deps."mslapa" = tl."mslapa"; 8792 - deps."mtgreek" = tl."mtgreek"; 8793 - deps."multenum" = tl."multenum"; 8794 - deps."multiaudience" = tl."multiaudience"; 8795 - deps."multibbl" = tl."multibbl"; 8796 - deps."multicap" = tl."multicap"; 8797 - deps."multicolrule" = tl."multicolrule"; 8798 - deps."multidef" = tl."multidef"; 8799 - deps."multienv" = tl."multienv"; 8800 - deps."multiexpand" = tl."multiexpand"; 8801 - deps."multifootnote" = tl."multifootnote"; 8802 - deps."multilang" = tl."multilang"; 8803 - deps."multiple-choice" = tl."multiple-choice"; 8804 - deps."multirow" = tl."multirow"; 8805 - deps."mversion" = tl."mversion"; 8806 - deps."mwe" = tl."mwe"; 8807 - deps."mycv" = tl."mycv"; 8808 - deps."mylatex" = tl."mylatex"; 8809 - deps."mylatexformat" = tl."mylatexformat"; 8810 - deps."nag" = tl."nag"; 8811 - deps."nameauth" = tl."nameauth"; 8812 - deps."namespc" = tl."namespc"; 8813 - deps."ncclatex" = tl."ncclatex"; 8814 - deps."ncctools" = tl."ncctools"; 8815 - deps."needspace" = tl."needspace"; 8816 - deps."nestquot" = tl."nestquot"; 8817 - deps."newcommand" = tl."newcommand"; 8818 - deps."newenviron" = tl."newenviron"; 8819 - deps."newfile" = tl."newfile"; 8820 - deps."newlfm" = tl."newlfm"; 8821 - deps."newspaper" = tl."newspaper"; 8822 - deps."newunicodechar" = tl."newunicodechar"; 8823 - deps."newvbtm" = tl."newvbtm"; 8824 - deps."newverbs" = tl."newverbs"; 8825 - deps."nextpage" = tl."nextpage"; 8826 - deps."nfssext-cfr" = tl."nfssext-cfr"; 8827 - deps."nicefilelist" = tl."nicefilelist"; 8828 - deps."niceframe" = tl."niceframe"; 8829 - deps."nicetext" = tl."nicetext"; 8830 - deps."nidanfloat" = tl."nidanfloat"; 8831 - deps."ninecolors" = tl."ninecolors"; 8832 - deps."nlctdoc" = tl."nlctdoc"; 8833 - deps."noconflict" = tl."noconflict"; 8834 - deps."noindentafter" = tl."noindentafter"; 8835 - deps."noitcrul" = tl."noitcrul"; 8836 - deps."nolbreaks" = tl."nolbreaks"; 8837 - deps."nomencl" = tl."nomencl"; 8838 - deps."nomentbl" = tl."nomentbl"; 8839 - deps."nonfloat" = tl."nonfloat"; 8840 - deps."nonumonpart" = tl."nonumonpart"; 8841 - deps."nopageno" = tl."nopageno"; 8842 - deps."normalcolor" = tl."normalcolor"; 8843 - deps."notes" = tl."notes"; 8844 - deps."notespages" = tl."notespages"; 8845 - deps."notestex" = tl."notestex"; 8846 - deps."notoccite" = tl."notoccite"; 8847 - deps."nowidow" = tl."nowidow"; 8848 - deps."nox" = tl."nox"; 8849 - deps."ntheorem" = tl."ntheorem"; 8850 - deps."numberedblock" = tl."numberedblock"; 8851 - deps."numname" = tl."numname"; 8852 - deps."numprint" = tl."numprint"; 8853 - deps."numspell" = tl."numspell"; 8854 - deps."ocg-p" = tl."ocg-p"; 8855 - deps."ocgx" = tl."ocgx"; 8856 - deps."ocgx2" = tl."ocgx2"; 8857 - deps."ocr-latex" = tl."ocr-latex"; 8858 - deps."octavo" = tl."octavo"; 8859 - deps."oldstyle" = tl."oldstyle"; 8860 - deps."onlyamsmath" = tl."onlyamsmath"; 8861 - deps."opcit" = tl."opcit"; 8862 - deps."opencolor" = tl."opencolor"; 8863 - deps."optidef" = tl."optidef"; 8864 - deps."optional" = tl."optional"; 8865 - deps."options" = tl."options"; 8866 - deps."orcidlink" = tl."orcidlink"; 8867 - deps."orientation" = tl."orientation"; 8868 - deps."outline" = tl."outline"; 8869 - deps."outliner" = tl."outliner"; 8870 - deps."outlines" = tl."outlines"; 8871 - deps."outlining" = tl."outlining"; 8872 - deps."overlays" = tl."overlays"; 8873 - deps."overpic" = tl."overpic"; 8874 - deps."padcount" = tl."padcount"; 8875 - deps."pagecolor" = tl."pagecolor"; 8876 - deps."pagecont" = tl."pagecont"; 8877 - deps."pagegrid" = tl."pagegrid"; 8878 - deps."pagenote" = tl."pagenote"; 8879 - deps."pagerange" = tl."pagerange"; 8880 - deps."pageslts" = tl."pageslts"; 8881 - deps."palette" = tl."palette"; 8882 - deps."pangram" = tl."pangram"; 8883 - deps."paper" = tl."paper"; 8884 - deps."papercdcase" = tl."papercdcase"; 8885 - deps."papermas" = tl."papermas"; 8886 - deps."papertex" = tl."papertex"; 8887 - deps."paracol" = tl."paracol"; 8888 - deps."parades" = tl."parades"; 8889 - deps."paralist" = tl."paralist"; 8890 - deps."paresse" = tl."paresse"; 8891 - deps."parnotes" = tl."parnotes"; 8892 - deps."parsa" = tl."parsa"; 8893 - deps."parselines" = tl."parselines"; 8894 - deps."pas-cours" = tl."pas-cours"; 8895 - deps."pas-cv" = tl."pas-cv"; 8896 - deps."pas-tableur" = tl."pas-tableur"; 8897 - deps."patch" = tl."patch"; 8898 - deps."patchcmd" = tl."patchcmd"; 8899 - deps."pauldoc" = tl."pauldoc"; 8900 - deps."pawpict" = tl."pawpict"; 8901 - deps."pax" = tl."pax"; 8902 - deps."pbalance" = tl."pbalance"; 8903 - deps."pbox" = tl."pbox"; 8904 - deps."pbsheet" = tl."pbsheet"; 8905 - deps."pdf14" = tl."pdf14"; 8906 - deps."pdfcol" = tl."pdfcol"; 8907 - deps."pdfcolmk" = tl."pdfcolmk"; 8908 - deps."pdfcomment" = tl."pdfcomment"; 8909 - deps."pdfcprot" = tl."pdfcprot"; 8910 - deps."pdfmarginpar" = tl."pdfmarginpar"; 8911 - deps."pdfoverlay" = tl."pdfoverlay"; 8912 - deps."pdfpagediff" = tl."pdfpagediff"; 8913 - deps."pdfpc" = tl."pdfpc"; 8914 - deps."pdfpc-movie" = tl."pdfpc-movie"; 8915 - deps."pdfprivacy" = tl."pdfprivacy"; 8916 - deps."pdfreview" = tl."pdfreview"; 8917 - deps."pdfscreen" = tl."pdfscreen"; 8918 - deps."pdfslide" = tl."pdfslide"; 8919 - deps."pdfsync" = tl."pdfsync"; 8920 - deps."pdfwin" = tl."pdfwin"; 8921 - deps."pdfx" = tl."pdfx"; 8922 - deps."pecha" = tl."pecha"; 8923 - deps."perltex" = tl."perltex"; 8924 - deps."permute" = tl."permute"; 8925 - deps."petiteannonce" = tl."petiteannonce"; 8926 - deps."pgfmath-xfp" = tl."pgfmath-xfp"; 8927 - deps."phfcc" = tl."phfcc"; 8928 - deps."phfextendedabstract" = tl."phfextendedabstract"; 8929 - deps."phffullpagefigure" = tl."phffullpagefigure"; 8930 - deps."phfnote" = tl."phfnote"; 8931 - deps."phfparen" = tl."phfparen"; 8932 - deps."phfqit" = tl."phfqit"; 8933 - deps."phfquotetext" = tl."phfquotetext"; 8934 - deps."phfsvnwatermark" = tl."phfsvnwatermark"; 8935 - deps."phfthm" = tl."phfthm"; 8936 - deps."philex" = tl."philex"; 8937 - deps."phonenumbers" = tl."phonenumbers"; 8938 - deps."photo" = tl."photo"; 8939 - deps."photobook" = tl."photobook"; 8940 - deps."picture" = tl."picture"; 8941 - deps."piff" = tl."piff"; 8942 - deps."pkgloader" = tl."pkgloader"; 8943 - deps."placeins" = tl."placeins"; 8944 - deps."plantslabels" = tl."plantslabels"; 8945 - deps."plates" = tl."plates"; 8946 - deps."plweb" = tl."plweb"; 8947 - deps."pmboxdraw" = tl."pmboxdraw"; 8948 - deps."polynom" = tl."polynom"; 8949 - deps."polynomial" = tl."polynomial"; 8950 - deps."polytable" = tl."polytable"; 8951 - deps."postcards" = tl."postcards"; 8952 - deps."poster-mac" = tl."poster-mac"; 8953 - deps."postnotes" = tl."postnotes"; 8954 - deps."powerdot" = tl."powerdot"; 8955 - deps."ppr-prv" = tl."ppr-prv"; 8956 - deps."ppt-slides" = tl."ppt-slides"; 8957 - deps."practicalreports" = tl."practicalreports"; 8958 - deps."precattl" = tl."precattl"; 8959 - deps."prelim2e" = tl."prelim2e"; 8960 - deps."preprint" = tl."preprint"; 8961 - deps."pressrelease" = tl."pressrelease"; 8962 - deps."prettyref" = tl."prettyref"; 8963 - deps."prettytok" = tl."prettytok"; 8964 - deps."preview" = tl."preview"; 8965 - deps."printlen" = tl."printlen"; 8966 - deps."probsoln" = tl."probsoln"; 8967 - deps."program" = tl."program"; 8968 - deps."progress" = tl."progress"; 8969 - deps."progressbar" = tl."progressbar"; 8970 - deps."projlib" = tl."projlib"; 8971 - deps."proofread" = tl."proofread"; 8972 - deps."properties" = tl."properties"; 8973 - deps."prosper" = tl."prosper"; 8974 - deps."protex" = tl."protex"; 8975 - deps."protocol" = tl."protocol"; 8976 - deps."psfragx" = tl."psfragx"; 8977 - deps."pstool" = tl."pstool"; 8978 - deps."pstring" = tl."pstring"; 8979 - deps."pxgreeks" = tl."pxgreeks"; 8980 - deps."pygmentex" = tl."pygmentex"; 8981 - deps."python" = tl."python"; 8982 - deps."pythonimmediate" = tl."pythonimmediate"; 8983 - deps."qcm" = tl."qcm"; 8984 - deps."qstest" = tl."qstest"; 8985 - deps."qsymbols" = tl."qsymbols"; 8986 - deps."quicktype" = tl."quicktype"; 8987 - deps."quiz2socrative" = tl."quiz2socrative"; 8988 - deps."quotchap" = tl."quotchap"; 8989 - deps."quoting" = tl."quoting"; 8990 - deps."quotmark" = tl."quotmark"; 8991 - deps."ran_toks" = tl."ran_toks"; 8992 - deps."randtext" = tl."randtext"; 8993 - deps."rccol" = tl."rccol"; 8994 - deps."rcs-multi" = tl."rcs-multi"; 8995 - deps."rcsinfo" = tl."rcsinfo"; 8996 - deps."readablecv" = tl."readablecv"; 8997 - deps."readarray" = tl."readarray"; 8998 - deps."realboxes" = tl."realboxes"; 8999 - deps."recipe" = tl."recipe"; 9000 - deps."recipebook" = tl."recipebook"; 9001 - deps."recipecard" = tl."recipecard"; 9002 - deps."rectopma" = tl."rectopma"; 9003 - deps."refcheck" = tl."refcheck"; 9004 - deps."refenums" = tl."refenums"; 9005 - deps."reflectgraphics" = tl."reflectgraphics"; 9006 - deps."refman" = tl."refman"; 9007 - deps."refstyle" = tl."refstyle"; 9008 - deps."regcount" = tl."regcount"; 9009 - deps."regexpatch" = tl."regexpatch"; 9010 - deps."register" = tl."register"; 9011 - deps."regstats" = tl."regstats"; 9012 - deps."relenc" = tl."relenc"; 9013 - deps."relsize" = tl."relsize"; 9014 - deps."repeatindex" = tl."repeatindex"; 9015 - deps."repltext" = tl."repltext"; 9016 - deps."rescansync" = tl."rescansync"; 9017 - deps."returntogrid" = tl."returntogrid"; 9018 - deps."rgltxdoc" = tl."rgltxdoc"; 9019 - deps."rjlparshap" = tl."rjlparshap"; 9020 - deps."rlepsf" = tl."rlepsf"; 9021 - deps."rmpage" = tl."rmpage"; 9022 - deps."robustcommand" = tl."robustcommand"; 9023 - deps."robustindex" = tl."robustindex"; 9024 - deps."romanbar" = tl."romanbar"; 9025 - deps."romanbarpagenumber" = tl."romanbarpagenumber"; 9026 - deps."romanneg" = tl."romanneg"; 9027 - deps."romannum" = tl."romannum"; 9028 - deps."rotfloat" = tl."rotfloat"; 9029 - deps."rotpages" = tl."rotpages"; 9030 - deps."roundbox" = tl."roundbox"; 9031 - deps."rterface" = tl."rterface"; 9032 - deps."rtkinenc" = tl."rtkinenc"; 9033 - deps."rulerbox" = tl."rulerbox"; 9034 - deps."rulercompass" = tl."rulercompass"; 9035 - deps."runcode" = tl."runcode"; 9036 - deps."rvwrite" = tl."rvwrite"; 9037 - deps."sanitize-umlaut" = tl."sanitize-umlaut"; 9038 - deps."sauerj" = tl."sauerj"; 9039 - deps."saveenv" = tl."saveenv"; 9040 - deps."savefnmark" = tl."savefnmark"; 9041 - deps."savesym" = tl."savesym"; 9042 - deps."savetrees" = tl."savetrees"; 9043 - deps."scale" = tl."scale"; 9044 - deps."scalebar" = tl."scalebar"; 9045 - deps."scalerel" = tl."scalerel"; 9046 - deps."scanpages" = tl."scanpages"; 9047 - deps."schedule" = tl."schedule"; 9048 - deps."schooldocs" = tl."schooldocs"; 9049 - deps."scontents" = tl."scontents"; 9050 - deps."scrambledenvs" = tl."scrambledenvs"; 9051 - deps."scrlayer-fancyhdr" = tl."scrlayer-fancyhdr"; 9052 - deps."scrlttr2copy" = tl."scrlttr2copy"; 9053 - deps."sdaps" = tl."sdaps"; 9054 - deps."sdrt" = tl."sdrt"; 9055 - deps."secdot" = tl."secdot"; 9056 - deps."secnum" = tl."secnum"; 9057 - deps."sectionbox" = tl."sectionbox"; 9058 - deps."sectionbreak" = tl."sectionbreak"; 9059 - deps."sectsty" = tl."sectsty"; 9060 - deps."seealso" = tl."seealso"; 9061 - deps."selectp" = tl."selectp"; 9062 - deps."selinput" = tl."selinput"; 9063 - deps."semantex" = tl."semantex"; 9064 - deps."semantic" = tl."semantic"; 9065 - deps."semantic-markup" = tl."semantic-markup"; 9066 - deps."semesterplanner" = tl."semesterplanner"; 9067 - deps."semioneside" = tl."semioneside"; 9068 - deps."semproc" = tl."semproc"; 9069 - deps."semtex" = tl."semtex"; 9070 - deps."sepfootnotes" = tl."sepfootnotes"; 9071 - deps."seqsplit" = tl."seqsplit"; 9072 - deps."sesstime" = tl."sesstime"; 9073 - deps."sf298" = tl."sf298"; 9074 - deps."sffms" = tl."sffms"; 9075 - deps."sfmath" = tl."sfmath"; 9076 - deps."shadethm" = tl."shadethm"; 9077 - deps."shadow" = tl."shadow"; 9078 - deps."shadowtext" = tl."shadowtext"; 9079 - deps."shapepar" = tl."shapepar"; 9080 - deps."shdoc" = tl."shdoc"; 9081 - deps."shipunov" = tl."shipunov"; 9082 - deps."shorttoc" = tl."shorttoc"; 9083 - deps."show2e" = tl."show2e"; 9084 - deps."showcharinbox" = tl."showcharinbox"; 9085 - deps."showdim" = tl."showdim"; 9086 - deps."showexpl" = tl."showexpl"; 9087 - deps."showlabels" = tl."showlabels"; 9088 - deps."sidecap" = tl."sidecap"; 9089 - deps."sidenotes" = tl."sidenotes"; 9090 - deps."sidenotesplus" = tl."sidenotesplus"; 9091 - deps."silence" = tl."silence"; 9092 - deps."sillypage" = tl."sillypage"; 9093 - deps."simplecd" = tl."simplecd"; 9094 - deps."simplecv" = tl."simplecv"; 9095 - deps."simpleinvoice" = tl."simpleinvoice"; 9096 - deps."simplivre" = tl."simplivre"; 9097 - deps."sitem" = tl."sitem"; 9098 - deps."skb" = tl."skb"; 9099 - deps."skdoc" = tl."skdoc"; 9100 - deps."skeldoc" = tl."skeldoc"; 9101 - deps."skeycommand" = tl."skeycommand"; 9102 - deps."skeyval" = tl."skeyval"; 9103 - deps."skills" = tl."skills"; 9104 - deps."skrapport" = tl."skrapport"; 9105 - deps."slantsc" = tl."slantsc"; 9106 - deps."smalltableof" = tl."smalltableof"; 9107 - deps."smart-eqn" = tl."smart-eqn"; 9108 - deps."smartref" = tl."smartref"; 9109 - deps."smartunits" = tl."smartunits"; 9110 - deps."snapshot" = tl."snapshot"; 9111 - deps."snaptodo" = tl."snaptodo"; 9112 - deps."snotez" = tl."snotez"; 9113 - deps."soulpos" = tl."soulpos"; 9114 - deps."soulutf8" = tl."soulutf8"; 9115 - deps."spacingtricks" = tl."spacingtricks"; 9116 - deps."spark-otf" = tl."spark-otf"; 9117 - deps."sparklines" = tl."sparklines"; 9118 - deps."sphack" = tl."sphack"; 9119 - deps."splitindex" = tl."splitindex"; 9120 - deps."spot" = tl."spot"; 9121 - deps."spotcolor" = tl."spotcolor"; 9122 - deps."spreadtab" = tl."spreadtab"; 9123 - deps."spverbatim" = tl."spverbatim"; 9124 - deps."srbook-mem" = tl."srbook-mem"; 9125 - deps."srcltx" = tl."srcltx"; 9126 - deps."sseq" = tl."sseq"; 9127 - deps."sslides" = tl."sslides"; 9128 - deps."stack" = tl."stack"; 9129 - deps."stackengine" = tl."stackengine"; 9130 - deps."standalone" = tl."standalone"; 9131 - deps."stdclsdv" = tl."stdclsdv"; 9132 - deps."stdpage" = tl."stdpage"; 9133 - deps."stealcaps" = tl."stealcaps"; 9134 - deps."stex" = tl."stex"; 9135 - deps."storebox" = tl."storebox"; 9136 - deps."storecmd" = tl."storecmd"; 9137 - deps."stringstrings" = tl."stringstrings"; 9138 - deps."sttools" = tl."sttools"; 9139 - deps."stubs" = tl."stubs"; 9140 - deps."studenthandouts" = tl."studenthandouts"; 9141 - deps."styledcmd" = tl."styledcmd"; 9142 - deps."subdepth" = tl."subdepth"; 9143 - deps."subdocs" = tl."subdocs"; 9144 - deps."subeqn" = tl."subeqn"; 9145 - deps."subeqnarray" = tl."subeqnarray"; 9146 - deps."subfigmat" = tl."subfigmat"; 9147 - deps."subfigure" = tl."subfigure"; 9148 - deps."subfiles" = tl."subfiles"; 9149 - deps."subfloat" = tl."subfloat"; 9150 - deps."substitutefont" = tl."substitutefont"; 9151 - deps."substr" = tl."substr"; 9152 - deps."supertabular" = tl."supertabular"; 9153 - deps."suppose" = tl."suppose"; 9154 - deps."svg" = tl."svg"; 9155 - deps."svgcolor" = tl."svgcolor"; 9156 - deps."svn" = tl."svn"; 9157 - deps."svn-multi" = tl."svn-multi"; 9158 - deps."svn-prov" = tl."svn-prov"; 9159 - deps."svninfo" = tl."svninfo"; 9160 - deps."swfigure" = tl."swfigure"; 9161 - deps."swungdash" = tl."swungdash"; 9162 - deps."syntax" = tl."syntax"; 9163 - deps."syntrace" = tl."syntrace"; 9164 - deps."synttree" = tl."synttree"; 9165 - deps."tabbing" = tl."tabbing"; 9166 - deps."tabfigures" = tl."tabfigures"; 9167 - deps."tableaux" = tl."tableaux"; 9168 - deps."tablefootnote" = tl."tablefootnote"; 9169 - deps."tableof" = tl."tableof"; 9170 - deps."tablestyles" = tl."tablestyles"; 9171 - deps."tablists" = tl."tablists"; 9172 - deps."tabls" = tl."tabls"; 9173 - deps."tablvar" = tl."tablvar"; 9174 - deps."tabstackengine" = tl."tabstackengine"; 9175 - deps."tabto-ltx" = tl."tabto-ltx"; 9176 - deps."tabu" = tl."tabu"; 9177 - deps."tabularborder" = tl."tabularborder"; 9178 - deps."tabularcalc" = tl."tabularcalc"; 9179 - deps."tabularew" = tl."tabularew"; 9180 - deps."tabularray" = tl."tabularray"; 9181 - deps."tabulary" = tl."tabulary"; 9182 - deps."tagging" = tl."tagging"; 9183 - deps."tagpair" = tl."tagpair"; 9184 - deps."tagpdf" = tl."tagpdf"; 9185 - deps."talk" = tl."talk"; 9186 - deps."tamefloats" = tl."tamefloats"; 9187 - deps."tasks" = tl."tasks"; 9188 - deps."tcldoc" = tl."tcldoc"; 9189 - deps."tcolorbox" = tl."tcolorbox"; 9190 - deps."tdclock" = tl."tdclock"; 9191 - deps."technics" = tl."technics"; 9192 - deps."ted" = tl."ted"; 9193 - deps."templatetools" = tl."templatetools"; 9194 - deps."termcal" = tl."termcal"; 9195 - deps."termlist" = tl."termlist"; 9196 - deps."termsim" = tl."termsim"; 9197 - deps."testhyphens" = tl."testhyphens"; 9198 - deps."testidx" = tl."testidx"; 9199 - deps."tex-label" = tl."tex-label"; 9200 - deps."tex-locale" = tl."tex-locale"; 9201 - deps."texlogos" = tl."texlogos"; 9202 - deps."texmate" = tl."texmate"; 9203 - deps."texments" = tl."texments"; 9204 - deps."texpower" = tl."texpower"; 9205 - deps."texshade" = tl."texshade"; 9206 - deps."texsurgery" = tl."texsurgery"; 9207 - deps."textcsc" = tl."textcsc"; 9208 - deps."textfit" = tl."textfit"; 9209 - deps."textmerg" = tl."textmerg"; 9210 - deps."textpos" = tl."textpos"; 9211 - deps."textualicomma" = tl."textualicomma"; 9212 - deps."texvc" = tl."texvc"; 9213 - deps."theoremref" = tl."theoremref"; 9214 - deps."thinsp" = tl."thinsp"; 9215 - deps."thmtools" = tl."thmtools"; 9216 - deps."threadcol" = tl."threadcol"; 9217 - deps."threeparttable" = tl."threeparttable"; 9218 - deps."threeparttablex" = tl."threeparttablex"; 9219 - deps."thumb" = tl."thumb"; 9220 - deps."thumbs" = tl."thumbs"; 9221 - deps."thumby" = tl."thumby"; 9222 - deps."ticket" = tl."ticket"; 9223 - deps."tipauni" = tl."tipauni"; 9224 - deps."titlecaps" = tl."titlecaps"; 9225 - deps."titlefoot" = tl."titlefoot"; 9226 - deps."titlepic" = tl."titlepic"; 9227 - deps."titleref" = tl."titleref"; 9228 - deps."titlesec" = tl."titlesec"; 9229 - deps."titling" = tl."titling"; 9230 - deps."to-be-determined" = tl."to-be-determined"; 9231 - deps."tocbibind" = tl."tocbibind"; 9232 - deps."tocdata" = tl."tocdata"; 9233 - deps."tocloft" = tl."tocloft"; 9234 - deps."tocvsec2" = tl."tocvsec2"; 9235 - deps."todo" = tl."todo"; 9236 - deps."todonotes" = tl."todonotes"; 9237 - deps."tokcycle" = tl."tokcycle"; 9238 - deps."tokenizer" = tl."tokenizer"; 9239 - deps."toolbox" = tl."toolbox"; 9240 - deps."topfloat" = tl."topfloat"; 9241 - deps."topiclongtable" = tl."topiclongtable"; 9242 - deps."totalcount" = tl."totalcount"; 9243 - deps."totcount" = tl."totcount"; 9244 - deps."totpages" = tl."totpages"; 9245 - deps."translations" = tl."translations"; 9246 - deps."transparent" = tl."transparent"; 9247 - deps."trfsigns" = tl."trfsigns"; 9248 - deps."trimspaces" = tl."trimspaces"; 9249 - deps."trivfloat" = tl."trivfloat"; 9250 - deps."trsym" = tl."trsym"; 9251 - deps."truncate" = tl."truncate"; 9252 - deps."tucv" = tl."tucv"; 9253 - deps."turnthepage" = tl."turnthepage"; 9254 - deps."twoinone" = tl."twoinone"; 9255 - deps."twoup" = tl."twoup"; 9256 - deps."txgreeks" = tl."txgreeks"; 9257 - deps."type1cm" = tl."type1cm"; 9258 - deps."typed-checklist" = tl."typed-checklist"; 9259 - deps."typeface" = tl."typeface"; 9260 - deps."typoaid" = tl."typoaid"; 9261 - deps."typogrid" = tl."typogrid"; 9262 - deps."uassign" = tl."uassign"; 9263 - deps."ucs" = tl."ucs"; 9264 - deps."uebungsblatt" = tl."uebungsblatt"; 9265 - deps."umoline" = tl."umoline"; 9266 - deps."underlin" = tl."underlin"; 9267 - deps."underoverlap" = tl."underoverlap"; 9268 - deps."undolabl" = tl."undolabl"; 9269 - deps."uni-titlepage" = tl."uni-titlepage"; 9270 - deps."unicodefonttable" = tl."unicodefonttable"; 9271 - deps."unisc" = tl."unisc"; 9272 - deps."unitconv" = tl."unitconv"; 9273 - deps."units" = tl."units"; 9274 - deps."unravel" = tl."unravel"; 9275 - deps."upmethodology" = tl."upmethodology"; 9276 - deps."upquote" = tl."upquote"; 9277 - deps."uri" = tl."uri"; 9278 - deps."ushort" = tl."ushort"; 9279 - deps."uspace" = tl."uspace"; 9280 - deps."utf8add" = tl."utf8add"; 9281 - deps."uwmslide" = tl."uwmslide"; 9282 - deps."variablelm" = tl."variablelm"; 9283 - deps."varindex" = tl."varindex"; 9284 - deps."varsfromjobname" = tl."varsfromjobname"; 9285 - deps."varwidth" = tl."varwidth"; 9286 - deps."vcell" = tl."vcell"; 9287 - deps."vdmlisting" = tl."vdmlisting"; 9288 - deps."verbasef" = tl."verbasef"; 9289 - deps."verbatimbox" = tl."verbatimbox"; 9290 - deps."verbatimcopy" = tl."verbatimcopy"; 9291 - deps."verbdef" = tl."verbdef"; 9292 - deps."verbments" = tl."verbments"; 9293 - deps."verifiche" = tl."verifiche"; 9294 - deps."version" = tl."version"; 9295 - deps."versions" = tl."versions"; 9296 - deps."versonotes" = tl."versonotes"; 9297 - deps."vertbars" = tl."vertbars"; 9298 - deps."vgrid" = tl."vgrid"; 9299 - deps."vhistory" = tl."vhistory"; 9300 - deps."vmargin" = tl."vmargin"; 9301 - deps."volumes" = tl."volumes"; 9302 - deps."vpe" = tl."vpe"; 9303 - deps."vruler" = tl."vruler"; 9304 - deps."vtable" = tl."vtable"; 9305 - deps."vwcol" = tl."vwcol"; 9306 - deps."wallcalendar" = tl."wallcalendar"; 9307 - deps."wallpaper" = tl."wallpaper"; 9308 - deps."warning" = tl."warning"; 9309 - deps."warpcol" = tl."warpcol"; 9310 - deps."was" = tl."was"; 9311 - deps."webquiz" = tl."webquiz"; 9312 - deps."widetable" = tl."widetable"; 9313 - deps."widows-and-orphans" = tl."widows-and-orphans"; 9314 - deps."williams" = tl."williams"; 9315 - deps."willowtreebook" = tl."willowtreebook"; 9316 - deps."withargs" = tl."withargs"; 9317 - deps."wordcount" = tl."wordcount"; 9318 - deps."wordlike" = tl."wordlike"; 9319 - deps."worksheet" = tl."worksheet"; 9320 - deps."wrapfig" = tl."wrapfig"; 9321 - deps."wrapfig2" = tl."wrapfig2"; 9322 - deps."wrapstuff" = tl."wrapstuff"; 9323 - deps."wtref" = tl."wtref"; 9324 - deps."xargs" = tl."xargs"; 9325 - deps."xassoccnt" = tl."xassoccnt"; 9326 - deps."xbmks" = tl."xbmks"; 9327 - deps."xcntperchap" = tl."xcntperchap"; 9328 - deps."xcolor-material" = tl."xcolor-material"; 9329 - deps."xcolor-solarized" = tl."xcolor-solarized"; 9330 - deps."xcomment" = tl."xcomment"; 9331 - deps."xcookybooky" = tl."xcookybooky"; 9332 - deps."xcpdftips" = tl."xcpdftips"; 9333 - deps."xdoc" = tl."xdoc"; 9334 - deps."xellipsis" = tl."xellipsis"; 9335 - deps."xfakebold" = tl."xfakebold"; 9336 - deps."xfor" = tl."xfor"; 9337 - deps."xhfill" = tl."xhfill"; 9338 - deps."xifthen" = tl."xifthen"; 9339 - deps."xint" = tl."xint"; 9340 - deps."xkcdcolors" = tl."xkcdcolors"; 9341 - deps."xltabular" = tl."xltabular"; 9342 - deps."xmpincl" = tl."xmpincl"; 9343 - deps."xnewcommand" = tl."xnewcommand"; 9344 - deps."xoptarg" = tl."xoptarg"; 9345 - deps."xpatch" = tl."xpatch"; 9346 - deps."xpeek" = tl."xpeek"; 9347 - deps."xprintlen" = tl."xprintlen"; 9348 - deps."xpunctuate" = tl."xpunctuate"; 9349 - deps."xsavebox" = tl."xsavebox"; 9350 - deps."xsim" = tl."xsim"; 9351 - deps."xstring" = tl."xstring"; 9352 - deps."xtab" = tl."xtab"; 9353 - deps."xurl" = tl."xurl"; 9354 - deps."xwatermark" = tl."xwatermark"; 9355 - deps."xytree" = tl."xytree"; 9356 - deps."yafoot" = tl."yafoot"; 9357 - deps."yagusylo" = tl."yagusylo"; 9358 - deps."yaletter" = tl."yaletter"; 9359 - deps."ycbook" = tl."ycbook"; 9360 - deps."ydoc" = tl."ydoc"; 9361 - deps."yplan" = tl."yplan"; 9362 - deps."zebra-goodies" = tl."zebra-goodies"; 9363 - deps."zed-csp" = tl."zed-csp"; 9364 - deps."ziffer" = tl."ziffer"; 9365 - deps."zref" = tl."zref"; 9366 - deps."zref-check" = tl."zref-check"; 9367 - deps."zref-clever" = tl."zref-clever"; 9368 - deps."zref-vario" = tl."zref-vario"; 9369 - deps."zwgetfdate" = tl."zwgetfdate"; 9370 - deps."zwpagelayout" = tl."zwpagelayout"; 8000 + deps = [ 8001 + "2up" 8002 + "a0poster" 8003 + "a4wide" 8004 + "a5comb" 8005 + "abraces" 8006 + "abspos" 8007 + "abstract" 8008 + "accessibility" 8009 + "accsupp" 8010 + "achemso" 8011 + "acro" 8012 + "acronym" 8013 + "acroterm" 8014 + "actuarialangle" 8015 + "actuarialsymbol" 8016 + "addfont" 8017 + "addlines" 8018 + "adjmulticol" 8019 + "adjustbox" 8020 + "adrconv" 8021 + "advdate" 8022 + "akktex" 8023 + "akletter" 8024 + "alertmessage" 8025 + "alnumsec" 8026 + "alphalph" 8027 + "alterqcm" 8028 + "altfont" 8029 + "altsubsup" 8030 + "amsaddr" 8031 + "animate" 8032 + "anonchap" 8033 + "answers" 8034 + "anyfontsize" 8035 + "appendix" 8036 + "appendixnumberbeamer" 8037 + "apptools" 8038 + "arabicfront" 8039 + "arcs" 8040 + "arraycols" 8041 + "arrayjobx" 8042 + "arraysort" 8043 + "arydshln" 8044 + "asciilist" 8045 + "askinclude" 8046 + "assignment" 8047 + "assoccnt" 8048 + "association-matrix" 8049 + "atenddvi" 8050 + "atendofenv" 8051 + "attachfile" 8052 + "aurl" 8053 + "authoraftertitle" 8054 + "authorarchive" 8055 + "authorindex" 8056 + "autofancyhdr" 8057 + "autonum" 8058 + "autopdf" 8059 + "autopuncitems" 8060 + "avremu" 8061 + "axessibility" 8062 + "background" 8063 + "bankstatement" 8064 + "bashful" 8065 + "basicarith" 8066 + "bchart" 8067 + "beamer-rl" 8068 + "beamer2thesis" 8069 + "beamerappendixnote" 8070 + "beameraudience" 8071 + "beamerauxtheme" 8072 + "beamercolorthemeowl" 8073 + "beamerdarkthemes" 8074 + "beamerposter" 8075 + "beamersubframe" 8076 + "beamertheme-arguelles" 8077 + "beamertheme-cuerna" 8078 + "beamertheme-detlevcm" 8079 + "beamertheme-epyt" 8080 + "beamertheme-focus" 8081 + "beamertheme-light" 8082 + "beamertheme-metropolis" 8083 + "beamertheme-npbt" 8084 + "beamertheme-phnompenh" 8085 + "beamertheme-pure-minimalistic" 8086 + "beamertheme-saintpetersburg" 8087 + "beamertheme-simpledarkblue" 8088 + "beamertheme-simpleplus" 8089 + "beamertheme-tcolorbox" 8090 + "beamertheme-trigon" 8091 + "beamertheme-upenn-bc" 8092 + "beamerthemeamurmaple" 8093 + "beamerthemejltree" 8094 + "beamerthemelalic" 8095 + "beamerthemenirma" 8096 + "beamerthemenord" 8097 + "bearwear" 8098 + "beaulivre" 8099 + "beton" 8100 + "bewerbung" 8101 + "bez123" 8102 + "bhcexam" 8103 + "bibletext" 8104 + "bigfoot" 8105 + "bigints" 8106 + "bilingualpages" 8107 + "biochemistry-colors" 8108 + "bithesis" 8109 + "bizcard" 8110 + "blindtext" 8111 + "blkarray" 8112 + "block" 8113 + "blowup" 8114 + "bnumexpr" 8115 + "boites" 8116 + "bold-extra" 8117 + "book-of-common-prayer" 8118 + "bookcover" 8119 + "bookest" 8120 + "booklet" 8121 + "bookshelf" 8122 + "boolexpr" 8123 + "bophook" 8124 + "boxedminipage" 8125 + "boxhandler" 8126 + "bracketkey" 8127 + "braket" 8128 + "breakurl" 8129 + "bubblesort" 8130 + "bullcntr" 8131 + "bxcalc" 8132 + "bxdpx-beamer" 8133 + "bxdvidriver" 8134 + "bxenclose" 8135 + "bxnewfont" 8136 + "bxpapersize" 8137 + "bxpdfver" 8138 + "bxtexlogo" 8139 + "calcage" 8140 + "calctab" 8141 + "calculator" 8142 + "calrsfs" 8143 + "cals" 8144 + "calxxxx-yyyy" 8145 + "cancel" 8146 + "canoniclayout" 8147 + "capt-of" 8148 + "captcont" 8149 + "captdef" 8150 + "carbohydrates" 8151 + "cases" 8152 + "casyl" 8153 + "catchfile" 8154 + "catchfilebetweentags" 8155 + "catechis" 8156 + "catoptions" 8157 + "cbcoptic" 8158 + "ccaption" 8159 + "cclicenses" 8160 + "cd" 8161 + "cd-cover" 8162 + "cdcmd" 8163 + "cdpbundl" 8164 + "cellprops" 8165 + "cellspace" 8166 + "censor" 8167 + "centeredline" 8168 + "centerlastline" 8169 + "changebar" 8170 + "changelayout" 8171 + "changelog" 8172 + "changepage" 8173 + "changes" 8174 + "chappg" 8175 + "chapterfolder" 8176 + "cheatsheet" 8177 + "checkend" 8178 + "chet" 8179 + "chextras" 8180 + "childdoc" 8181 + "chkfloat" 8182 + "chletter" 8183 + "chngcntr" 8184 + "chronology" 8185 + "circ" 8186 + "circledsteps" 8187 + "circledtext" 8188 + "classics" 8189 + "classpack" 8190 + "clefval" 8191 + "cleveref" 8192 + "clicks" 8193 + "clipboard" 8194 + "clistmap" 8195 + "clock" 8196 + "clrdblpg" 8197 + "clrstrip" 8198 + "cmdstring" 8199 + "cmdtrack" 8200 + "cmsd" 8201 + "cnltx" 8202 + "cntformats" 8203 + "cntperchap" 8204 + "codebox" 8205 + "codedoc" 8206 + "codehigh" 8207 + "codepage" 8208 + "codesection" 8209 + "collcell" 8210 + "collectbox" 8211 + "collection-latexrecommended" 8212 + "collection-pictures" 8213 + "colophon" 8214 + "color-edits" 8215 + "colordoc" 8216 + "colorframed" 8217 + "colorinfo" 8218 + "coloring" 8219 + "colorist" 8220 + "colorspace" 8221 + "colortab" 8222 + "colorwav" 8223 + "colorweb" 8224 + "colourchange" 8225 + "combelow" 8226 + "combine" 8227 + "comma" 8228 + "commado" 8229 + "commedit" 8230 + "comment" 8231 + "commonunicode" 8232 + "competences" 8233 + "concepts" 8234 + "concprog" 8235 + "conditext" 8236 + "constants" 8237 + "continue" 8238 + "contour" 8239 + "contracard" 8240 + "conv-xkv" 8241 + "cooking" 8242 + "cooking-units" 8243 + "cool" 8244 + "coolfn" 8245 + "coollist" 8246 + "coolstr" 8247 + "coolthms" 8248 + "cooltooltips" 8249 + "coop-writing" 8250 + "coordsys" 8251 + "copyedit" 8252 + "copyrightbox" 8253 + "coseoul" 8254 + "counttexruns" 8255 + "courseoutline" 8256 + "coursepaper" 8257 + "coverpage" 8258 + "cprotect" 8259 + "cprotectinside" 8260 + "crbox" 8261 + "create-theorem" 8262 + "crefthe" 8263 + "crossreference" 8264 + "crossreftools" 8265 + "crumbs" 8266 + "csquotes" 8267 + "css-colors" 8268 + "csvmerge" 8269 + "csvsimple" 8270 + "cuisine" 8271 + "currency" 8272 + "currfile" 8273 + "currvita" 8274 + "cutwin" 8275 + "cv" 8276 + "cv4tw" 8277 + "cweb-latex" 8278 + "cyber" 8279 + "cybercic" 8280 + "darkmode" 8281 + "dashbox" 8282 + "dashrule" 8283 + "dashundergaps" 8284 + "dataref" 8285 + "datatool" 8286 + "datax" 8287 + "dateiliste" 8288 + "datenumber" 8289 + "datestamp" 8290 + "datetime" 8291 + "datetime2" 8292 + "datetime2-bahasai" 8293 + "datetime2-basque" 8294 + "datetime2-breton" 8295 + "datetime2-bulgarian" 8296 + "datetime2-catalan" 8297 + "datetime2-croatian" 8298 + "datetime2-czech" 8299 + "datetime2-danish" 8300 + "datetime2-dutch" 8301 + "datetime2-en-fulltext" 8302 + "datetime2-english" 8303 + "datetime2-esperanto" 8304 + "datetime2-estonian" 8305 + "datetime2-finnish" 8306 + "datetime2-french" 8307 + "datetime2-galician" 8308 + "datetime2-german" 8309 + "datetime2-greek" 8310 + "datetime2-hebrew" 8311 + "datetime2-icelandic" 8312 + "datetime2-irish" 8313 + "datetime2-it-fulltext" 8314 + "datetime2-italian" 8315 + "datetime2-latin" 8316 + "datetime2-lsorbian" 8317 + "datetime2-magyar" 8318 + "datetime2-norsk" 8319 + "datetime2-polish" 8320 + "datetime2-portuges" 8321 + "datetime2-romanian" 8322 + "datetime2-russian" 8323 + "datetime2-samin" 8324 + "datetime2-scottish" 8325 + "datetime2-serbian" 8326 + "datetime2-slovak" 8327 + "datetime2-slovene" 8328 + "datetime2-spanish" 8329 + "datetime2-swedish" 8330 + "datetime2-turkish" 8331 + "datetime2-ukrainian" 8332 + "datetime2-usorbian" 8333 + "datetime2-welsh" 8334 + "dblfloatfix" 8335 + "dbshow" 8336 + "debate" 8337 + "decimal" 8338 + "decorule" 8339 + "delimtxt" 8340 + "democodetools" 8341 + "denisbdoc" 8342 + "diabetes-logbook" 8343 + "diagbox" 8344 + "diagnose" 8345 + "dialogl" 8346 + "dichokey" 8347 + "dimnum" 8348 + "dinbrief" 8349 + "directory" 8350 + "dirtytalk" 8351 + "dlfltxb" 8352 + "dnaseq" 8353 + "doclicense" 8354 + "docmfp" 8355 + "docmute" 8356 + "docshots" 8357 + "doctools" 8358 + "documentation" 8359 + "docutils" 8360 + "doi" 8361 + "dotarrow" 8362 + "dotlessi" 8363 + "dotseqn" 8364 + "download" 8365 + "dox" 8366 + "dpfloat" 8367 + "dprogress" 8368 + "drac" 8369 + "draftcopy" 8370 + "draftfigure" 8371 + "draftwatermark" 8372 + "dtk" 8373 + "dtxdescribe" 8374 + "dtxgallery" 8375 + "ducksay" 8376 + "duckuments" 8377 + "dvdcoll" 8378 + "dynamicnumber" 8379 + "dynblocks" 8380 + "ean13isbn" 8381 + "easy" 8382 + "easy-todo" 8383 + "easybook" 8384 + "easyfig" 8385 + "easyfloats" 8386 + "easyformat" 8387 + "easylist" 8388 + "easyreview" 8389 + "ebezier" 8390 + "ecclesiastic" 8391 + "econlipsum" 8392 + "ecv" 8393 + "ed" 8394 + "edichokey" 8395 + "edmargin" 8396 + "eemeir" 8397 + "efbox" 8398 + "egplot" 8399 + "ehhline" 8400 + "einfart" 8401 + "elegantbook" 8402 + "elegantnote" 8403 + "elegantpaper" 8404 + "elements" 8405 + "ellipsis" 8406 + "elmath" 8407 + "elocalloc" 8408 + "elpres" 8409 + "elzcards" 8410 + "emarks" 8411 + "embedall" 8412 + "embedfile" 8413 + "embrac" 8414 + "emptypage" 8415 + "emulateapj" 8416 + "endfloat" 8417 + "endheads" 8418 + "endnotes" 8419 + "endnotes-hy" 8420 + "engpron" 8421 + "engrec" 8422 + "enotez" 8423 + "enumitem" 8424 + "enumitem-zref" 8425 + "envbig" 8426 + "environ" 8427 + "envlab" 8428 + "epigraph" 8429 + "epigraph-keys" 8430 + "epiolmec" 8431 + "eq-pin2corr" 8432 + "eqell" 8433 + "eqlist" 8434 + "eqnalign" 8435 + "eqname" 8436 + "eqparbox" 8437 + "errata" 8438 + "erw-l3" 8439 + "esami" 8440 + "esdiff" 8441 + "esieecv" 8442 + "esindex" 8443 + "esint" 8444 + "esint-type1" 8445 + "etaremune" 8446 + "etextools" 8447 + "etl" 8448 + "etoc" 8449 + "eukdate" 8450 + "eulerpx" 8451 + "europasscv" 8452 + "europecv" 8453 + "everyhook" 8454 + "everypage" 8455 + "exam" 8456 + "exam-n" 8457 + "exam-randomizechoices" 8458 + "examdesign" 8459 + "example" 8460 + "examplep" 8461 + "exceltex" 8462 + "excludeonly" 8463 + "exercise" 8464 + "exercisebank" 8465 + "exercisepoints" 8466 + "exercises" 8467 + "exesheet" 8468 + "exframe" 8469 + "exp-testopt" 8470 + "expdlist" 8471 + "export" 8472 + "exsheets" 8473 + "exsol" 8474 + "extract" 8475 + "facsimile" 8476 + "factura" 8477 + "familytree" 8478 + "fancyhandout" 8479 + "fancylabel" 8480 + "fancynum" 8481 + "fancypar" 8482 + "fancyqr" 8483 + "fancyslides" 8484 + "fancytabs" 8485 + "fancytooltips" 8486 + "fbox" 8487 + "fcolumn" 8488 + "fetchcls" 8489 + "fewerfloatpages" 8490 + "ffcode" 8491 + "ffslides" 8492 + "fgruler" 8493 + "fifo-stack" 8494 + "figsize" 8495 + "filecontents" 8496 + "filecontentsdef" 8497 + "filedate" 8498 + "fileinfo" 8499 + "filemod" 8500 + "fink" 8501 + "finstrut" 8502 + "fithesis" 8503 + "fixcmex" 8504 + "fixfoot" 8505 + "fixme" 8506 + "fixmetodonotes" 8507 + "fjodor" 8508 + "flabels" 8509 + "flacards" 8510 + "flagderiv" 8511 + "flashcards" 8512 + "flashmovie" 8513 + "flexipage" 8514 + "flipbook" 8515 + "flippdf" 8516 + "floatflt" 8517 + "floatrow" 8518 + "flowfram" 8519 + "fmp" 8520 + "fmtcount" 8521 + "fn2end" 8522 + "fnbreak" 8523 + "fncychap" 8524 + "fncylab" 8525 + "fnpara" 8526 + "fnpct" 8527 + "fnumprint" 8528 + "foilhtml" 8529 + "foliono" 8530 + "fontaxes" 8531 + "fontsetup" 8532 + "fontsize" 8533 + "fonttable" 8534 + "footmisc" 8535 + "footmisx" 8536 + "footnotebackref" 8537 + "footnoterange" 8538 + "footnpag" 8539 + "forarray" 8540 + "foreign" 8541 + "forloop" 8542 + "formlett" 8543 + "forms16be" 8544 + "formular" 8545 + "fragments" 8546 + "frame" 8547 + "framed" 8548 + "frankenstein" 8549 + "frege" 8550 + "froufrou" 8551 + "ftcap" 8552 + "ftnxtra" 8553 + "fullblck" 8554 + "fullminipage" 8555 + "fullwidth" 8556 + "functional" 8557 + "fundus-calligra" 8558 + "fundus-cyr" 8559 + "fundus-sueterlin" 8560 + "fvextra" 8561 + "fwlw" 8562 + "g-brief" 8563 + "gatherenum" 8564 + "gauss" 8565 + "gcard" 8566 + "gcite" 8567 + "gender" 8568 + "genmpage" 8569 + "gensymb" 8570 + "getfiledate" 8571 + "getitems" 8572 + "gindex" 8573 + "ginpenc" 8574 + "gitfile-info" 8575 + "gitinfo" 8576 + "gitinfo2" 8577 + "gitlog" 8578 + "gitstatus" 8579 + "gitver" 8580 + "globalvals" 8581 + "gloss" 8582 + "glossaries" 8583 + "glossaries-danish" 8584 + "glossaries-dutch" 8585 + "glossaries-english" 8586 + "glossaries-estonian" 8587 + "glossaries-extra" 8588 + "glossaries-finnish" 8589 + "glossaries-french" 8590 + "glossaries-german" 8591 + "glossaries-irish" 8592 + "glossaries-italian" 8593 + "glossaries-magyar" 8594 + "glossaries-nynorsk" 8595 + "glossaries-polish" 8596 + "glossaries-portuges" 8597 + "glossaries-serbian" 8598 + "glossaries-slovene" 8599 + "glossaries-spanish" 8600 + "gmdoc" 8601 + "gmdoc-enhance" 8602 + "gmiflink" 8603 + "gmutils" 8604 + "gmverb" 8605 + "grabbox" 8606 + "gradient-text" 8607 + "grading-scheme" 8608 + "graphbox" 8609 + "graphicscache" 8610 + "graphicx-psmin" 8611 + "graphicxbox" 8612 + "graphpaper" 8613 + "grayhints" 8614 + "grfpaste" 8615 + "grid" 8616 + "grid-system" 8617 + "gridpapers" 8618 + "gridset" 8619 + "gridslides" 8620 + "gs1" 8621 + "guitlogo" 8622 + "ha-prosper" 8623 + "hackthefootline" 8624 + "halloweenmath" 8625 + "handin" 8626 + "handout" 8627 + "handoutwithnotes" 8628 + "hang" 8629 + "hanging" 8630 + "hardwrap" 8631 + "harnon-cv" 8632 + "harpoon" 8633 + "hc" 8634 + "he-she" 8635 + "hep-acronym" 8636 + "hep-float" 8637 + "hep-math" 8638 + "hep-text" 8639 + "hep-title" 8640 + "hereapplies" 8641 + "hhtensor" 8642 + "hideanswer" 8643 + "highlightlatex" 8644 + "histogr" 8645 + "hitec" 8646 + "hitreport" 8647 + "hletter" 8648 + "hobsub" 8649 + "hpsdiss" 8650 + "href-ul" 8651 + "hrefhide" 8652 + "huawei" 8653 + "hvextern" 8654 + "hvindex" 8655 + "hvlogos" 8656 + "hvpygmentex" 8657 + "hvqrurl" 8658 + "hwemoji" 8659 + "hypdestopt" 8660 + "hypdoc" 8661 + "hypdvips" 8662 + "hyper" 8663 + "hyperbar" 8664 + "hypernat" 8665 + "hyperxmp" 8666 + "hyphenat" 8667 + "identkey" 8668 + "idxcmds" 8669 + "idxlayout" 8670 + "iexec" 8671 + "ifallfalse" 8672 + "iffont" 8673 + "ifmslide" 8674 + "ifmtarg" 8675 + "ifnextok" 8676 + "ifoddpage" 8677 + "ifthenx" 8678 + "iitem" 8679 + "image-gallery" 8680 + "imakeidx" 8681 + "import" 8682 + "incgraph" 8683 + "indextools" 8684 + "inline-images" 8685 + "inlinedef" 8686 + "inlinelabel" 8687 + "inputenx" 8688 + "inputtrc" 8689 + "interactiveworkbook" 8690 + "interfaces" 8691 + "intopdf" 8692 + "inversepath" 8693 + "invoice" 8694 + "invoice-class" 8695 + "invoice2" 8696 + "iso" 8697 + "iso10303" 8698 + "isodate" 8699 + "isodoc" 8700 + "isonums" 8701 + "isopt" 8702 + "isorot" 8703 + "isotope" 8704 + "issuulinks" 8705 + "iwhdp" 8706 + "jlabels" 8707 + "jmsdelim" 8708 + "jobname-suffix" 8709 + "jslectureplanner" 8710 + "jumplines" 8711 + "jvlisting" 8712 + "kalendarium" 8713 + "kantlipsum" 8714 + "kerntest" 8715 + "keycommand" 8716 + "keyfloat" 8717 + "keyindex" 8718 + "keyparse" 8719 + "keyreader" 8720 + "keystroke" 8721 + "keyval2e" 8722 + "keyvaltable" 8723 + "kix" 8724 + "knowledge" 8725 + "koma-moderncvclassic" 8726 + "koma-script-sfs" 8727 + "komacv" 8728 + "komacv-rg" 8729 + "ktv-texdata" 8730 + "l3build" 8731 + "labbook" 8732 + "labels" 8733 + "labels4easylist" 8734 + "labelschanged" 8735 + "lambdax" 8736 + "lastpackage" 8737 + "lastpage" 8738 + "latex-amsmath-dev" 8739 + "latex-base-dev" 8740 + "latex-bin-dev" 8741 + "latex-firstaid-dev" 8742 + "latex-graphics-dev" 8743 + "latex-lab-dev" 8744 + "latex-tools-dev" 8745 + "latex-uni8" 8746 + "latexcolors" 8747 + "latexdemo" 8748 + "latexgit" 8749 + "layouts" 8750 + "lazylist" 8751 + "lccaps" 8752 + "lcd" 8753 + "lcg" 8754 + "leading" 8755 + "leaflet" 8756 + "lebhart" 8757 + "lectures" 8758 + "lectureslides" 8759 + "leftidx" 8760 + "leftindex" 8761 + "leipzig" 8762 + "lengthconvert" 8763 + "lettre" 8764 + "lettrine" 8765 + "lewis" 8766 + "lhelp" 8767 + "libgreek" 8768 + "limap" 8769 + "linegoal" 8770 + "linop" 8771 + "lipsum" 8772 + "lisp-on-tex" 8773 + "listing" 8774 + "listingsutf8" 8775 + "listlbls" 8776 + "listliketab" 8777 + "listofsymbols" 8778 + "lkproof" 8779 + "lmake" 8780 + "locality" 8781 + "logbox" 8782 + "logical-markup-utils" 8783 + "logpap" 8784 + "longfbox" 8785 + "longfigure" 8786 + "longnamefilelist" 8787 + "loops" 8788 + "lsc" 8789 + "lstaddons" 8790 + "lstfiracode" 8791 + "lt3graph" 8792 + "lt3rawobjects" 8793 + "ltablex" 8794 + "ltabptch" 8795 + "ltxdockit" 8796 + "ltxguidex" 8797 + "ltxkeys" 8798 + "ltxnew" 8799 + "ltxtools" 8800 + "lua-check-hyphen" 8801 + "lua-physical" 8802 + "luatodonotes" 8803 + "macrolist" 8804 + "macroswap" 8805 + "magaz" 8806 + "magicnum" 8807 + "magicwatermark" 8808 + "mailing" 8809 + "mailmerge" 8810 + "makebarcode" 8811 + "makebase" 8812 + "makebox" 8813 + "makecell" 8814 + "makecirc" 8815 + "makecmds" 8816 + "makecookbook" 8817 + "makedtx" 8818 + "makeglos" 8819 + "makelabels" 8820 + "makerobust" 8821 + "mandi" 8822 + "manfnt" 8823 + "manuscript" 8824 + "manyind" 8825 + "marginfit" 8826 + "marginfix" 8827 + "marginnote" 8828 + "markdown" 8829 + "mathalpha" 8830 + "mathastext" 8831 + "mathexam" 8832 + "mathfam256" 8833 + "mathfont" 8834 + "maybemath" 8835 + "mcaption" 8836 + "mceinleger" 8837 + "mcexam" 8838 + "mcite" 8839 + "mciteplus" 8840 + "mdframed" 8841 + "media4svg" 8842 + "media9" 8843 + "medstarbeamer" 8844 + "meetingmins" 8845 + "memexsupp" 8846 + "memory" 8847 + "mensa-tex" 8848 + "menu" 8849 + "menucard" 8850 + "menukeys" 8851 + "metalogox" 8852 + "metanorma" 8853 + "metastr" 8854 + "method" 8855 + "metre" 8856 + "mfirstuc" 8857 + "mftinc" 8858 + "mi-solns" 8859 + "midpage" 8860 + "mindflow" 8861 + "minibox" 8862 + "minidocument" 8863 + "minifp" 8864 + "minimalist" 8865 + "minipage-marginpar" 8866 + "minitoc" 8867 + "minorrevision" 8868 + "minted" 8869 + "minutes" 8870 + "mla-paper" 8871 + "mleftright" 8872 + "mlist" 8873 + "mmap" 8874 + "mnotes" 8875 + "moderncv" 8876 + "modernposter" 8877 + "moderntimeline" 8878 + "modref" 8879 + "modroman" 8880 + "modular" 8881 + "monofill" 8882 + "moodle" 8883 + "moreenum" 8884 + "morefloats" 8885 + "morehype" 8886 + "moresize" 8887 + "moreverb" 8888 + "morewrites" 8889 + "movie15" 8890 + "mparhack" 8891 + "mpostinl" 8892 + "msc" 8893 + "msg" 8894 + "mslapa" 8895 + "mtgreek" 8896 + "multenum" 8897 + "multiaudience" 8898 + "multibbl" 8899 + "multicap" 8900 + "multicolrule" 8901 + "multidef" 8902 + "multienv" 8903 + "multiexpand" 8904 + "multifootnote" 8905 + "multilang" 8906 + "multiple-choice" 8907 + "multirow" 8908 + "mversion" 8909 + "mwe" 8910 + "mycv" 8911 + "mylatex" 8912 + "mylatexformat" 8913 + "nag" 8914 + "nameauth" 8915 + "namespc" 8916 + "ncclatex" 8917 + "ncctools" 8918 + "needspace" 8919 + "nestquot" 8920 + "newcommand" 8921 + "newenviron" 8922 + "newfile" 8923 + "newlfm" 8924 + "newspaper" 8925 + "newunicodechar" 8926 + "newvbtm" 8927 + "newverbs" 8928 + "nextpage" 8929 + "nfssext-cfr" 8930 + "nicefilelist" 8931 + "niceframe" 8932 + "nicetext" 8933 + "nidanfloat" 8934 + "ninecolors" 8935 + "nlctdoc" 8936 + "noconflict" 8937 + "noindentafter" 8938 + "noitcrul" 8939 + "nolbreaks" 8940 + "nomencl" 8941 + "nomentbl" 8942 + "nonfloat" 8943 + "nonumonpart" 8944 + "nopageno" 8945 + "normalcolor" 8946 + "notes" 8947 + "notespages" 8948 + "notestex" 8949 + "notoccite" 8950 + "nowidow" 8951 + "nox" 8952 + "ntheorem" 8953 + "numberedblock" 8954 + "numname" 8955 + "numprint" 8956 + "numspell" 8957 + "ocg-p" 8958 + "ocgx" 8959 + "ocgx2" 8960 + "ocr-latex" 8961 + "octavo" 8962 + "oldstyle" 8963 + "onlyamsmath" 8964 + "opcit" 8965 + "opencolor" 8966 + "optidef" 8967 + "optional" 8968 + "options" 8969 + "orcidlink" 8970 + "orientation" 8971 + "outline" 8972 + "outliner" 8973 + "outlines" 8974 + "outlining" 8975 + "overlays" 8976 + "overpic" 8977 + "padcount" 8978 + "pagecolor" 8979 + "pagecont" 8980 + "pagegrid" 8981 + "pagenote" 8982 + "pagerange" 8983 + "pageslts" 8984 + "palette" 8985 + "pangram" 8986 + "paper" 8987 + "papercdcase" 8988 + "papermas" 8989 + "papertex" 8990 + "paracol" 8991 + "parades" 8992 + "paralist" 8993 + "paresse" 8994 + "parnotes" 8995 + "parsa" 8996 + "parselines" 8997 + "pas-cours" 8998 + "pas-cv" 8999 + "pas-tableur" 9000 + "patch" 9001 + "patchcmd" 9002 + "pauldoc" 9003 + "pawpict" 9004 + "pax" 9005 + "pbalance" 9006 + "pbox" 9007 + "pbsheet" 9008 + "pdf14" 9009 + "pdfcol" 9010 + "pdfcolmk" 9011 + "pdfcomment" 9012 + "pdfcprot" 9013 + "pdfmarginpar" 9014 + "pdfoverlay" 9015 + "pdfpagediff" 9016 + "pdfpc" 9017 + "pdfpc-movie" 9018 + "pdfprivacy" 9019 + "pdfreview" 9020 + "pdfscreen" 9021 + "pdfslide" 9022 + "pdfsync" 9023 + "pdfwin" 9024 + "pdfx" 9025 + "pecha" 9026 + "perltex" 9027 + "permute" 9028 + "petiteannonce" 9029 + "pgfmath-xfp" 9030 + "phfcc" 9031 + "phfextendedabstract" 9032 + "phffullpagefigure" 9033 + "phfnote" 9034 + "phfparen" 9035 + "phfqit" 9036 + "phfquotetext" 9037 + "phfsvnwatermark" 9038 + "phfthm" 9039 + "philex" 9040 + "phonenumbers" 9041 + "photo" 9042 + "photobook" 9043 + "picture" 9044 + "piff" 9045 + "pkgloader" 9046 + "placeins" 9047 + "plantslabels" 9048 + "plates" 9049 + "plweb" 9050 + "pmboxdraw" 9051 + "polynom" 9052 + "polynomial" 9053 + "polytable" 9054 + "postcards" 9055 + "poster-mac" 9056 + "postnotes" 9057 + "powerdot" 9058 + "ppr-prv" 9059 + "ppt-slides" 9060 + "practicalreports" 9061 + "precattl" 9062 + "prelim2e" 9063 + "preprint" 9064 + "pressrelease" 9065 + "prettyref" 9066 + "prettytok" 9067 + "preview" 9068 + "printlen" 9069 + "probsoln" 9070 + "program" 9071 + "progress" 9072 + "progressbar" 9073 + "projlib" 9074 + "proofread" 9075 + "properties" 9076 + "prosper" 9077 + "protex" 9078 + "protocol" 9079 + "psfragx" 9080 + "pstool" 9081 + "pstring" 9082 + "pxgreeks" 9083 + "pygmentex" 9084 + "python" 9085 + "pythonimmediate" 9086 + "qcm" 9087 + "qstest" 9088 + "qsymbols" 9089 + "quicktype" 9090 + "quiz2socrative" 9091 + "quotchap" 9092 + "quoting" 9093 + "quotmark" 9094 + "ran_toks" 9095 + "randtext" 9096 + "rccol" 9097 + "rcs-multi" 9098 + "rcsinfo" 9099 + "readablecv" 9100 + "readarray" 9101 + "realboxes" 9102 + "recipe" 9103 + "recipebook" 9104 + "recipecard" 9105 + "rectopma" 9106 + "refcheck" 9107 + "refenums" 9108 + "reflectgraphics" 9109 + "refman" 9110 + "refstyle" 9111 + "regcount" 9112 + "regexpatch" 9113 + "register" 9114 + "regstats" 9115 + "relenc" 9116 + "relsize" 9117 + "repeatindex" 9118 + "repltext" 9119 + "rescansync" 9120 + "returntogrid" 9121 + "rgltxdoc" 9122 + "rjlparshap" 9123 + "rlepsf" 9124 + "rmpage" 9125 + "robustcommand" 9126 + "robustindex" 9127 + "romanbar" 9128 + "romanbarpagenumber" 9129 + "romanneg" 9130 + "romannum" 9131 + "rotfloat" 9132 + "rotpages" 9133 + "roundbox" 9134 + "rterface" 9135 + "rtkinenc" 9136 + "rulerbox" 9137 + "rulercompass" 9138 + "runcode" 9139 + "rvwrite" 9140 + "sanitize-umlaut" 9141 + "sauerj" 9142 + "saveenv" 9143 + "savefnmark" 9144 + "savesym" 9145 + "savetrees" 9146 + "scale" 9147 + "scalebar" 9148 + "scalerel" 9149 + "scanpages" 9150 + "schedule" 9151 + "schooldocs" 9152 + "scontents" 9153 + "scrambledenvs" 9154 + "scrlayer-fancyhdr" 9155 + "scrlttr2copy" 9156 + "sdaps" 9157 + "sdrt" 9158 + "secdot" 9159 + "secnum" 9160 + "sectionbox" 9161 + "sectionbreak" 9162 + "sectsty" 9163 + "seealso" 9164 + "selectp" 9165 + "selinput" 9166 + "semantex" 9167 + "semantic" 9168 + "semantic-markup" 9169 + "semesterplanner" 9170 + "semioneside" 9171 + "semproc" 9172 + "semtex" 9173 + "sepfootnotes" 9174 + "seqsplit" 9175 + "sesstime" 9176 + "sf298" 9177 + "sffms" 9178 + "sfmath" 9179 + "shadethm" 9180 + "shadow" 9181 + "shadowtext" 9182 + "shapepar" 9183 + "shdoc" 9184 + "shipunov" 9185 + "shorttoc" 9186 + "show2e" 9187 + "showcharinbox" 9188 + "showdim" 9189 + "showexpl" 9190 + "showlabels" 9191 + "sidecap" 9192 + "sidenotes" 9193 + "sidenotesplus" 9194 + "silence" 9195 + "sillypage" 9196 + "simplecd" 9197 + "simplecv" 9198 + "simpleinvoice" 9199 + "simplivre" 9200 + "sitem" 9201 + "skb" 9202 + "skdoc" 9203 + "skeldoc" 9204 + "skeycommand" 9205 + "skeyval" 9206 + "skills" 9207 + "skrapport" 9208 + "slantsc" 9209 + "smalltableof" 9210 + "smart-eqn" 9211 + "smartref" 9212 + "smartunits" 9213 + "snapshot" 9214 + "snaptodo" 9215 + "snotez" 9216 + "soulpos" 9217 + "soulutf8" 9218 + "spacingtricks" 9219 + "spark-otf" 9220 + "sparklines" 9221 + "sphack" 9222 + "splitindex" 9223 + "spot" 9224 + "spotcolor" 9225 + "spreadtab" 9226 + "spverbatim" 9227 + "srbook-mem" 9228 + "srcltx" 9229 + "sseq" 9230 + "sslides" 9231 + "stack" 9232 + "stackengine" 9233 + "standalone" 9234 + "stdclsdv" 9235 + "stdpage" 9236 + "stealcaps" 9237 + "stex" 9238 + "storebox" 9239 + "storecmd" 9240 + "stringstrings" 9241 + "sttools" 9242 + "stubs" 9243 + "studenthandouts" 9244 + "styledcmd" 9245 + "subdepth" 9246 + "subdocs" 9247 + "subeqn" 9248 + "subeqnarray" 9249 + "subfigmat" 9250 + "subfigure" 9251 + "subfiles" 9252 + "subfloat" 9253 + "substitutefont" 9254 + "substr" 9255 + "supertabular" 9256 + "suppose" 9257 + "svg" 9258 + "svgcolor" 9259 + "svn" 9260 + "svn-multi" 9261 + "svn-prov" 9262 + "svninfo" 9263 + "swfigure" 9264 + "swungdash" 9265 + "syntax" 9266 + "syntrace" 9267 + "synttree" 9268 + "tabbing" 9269 + "tabfigures" 9270 + "tableaux" 9271 + "tablefootnote" 9272 + "tableof" 9273 + "tablestyles" 9274 + "tablists" 9275 + "tabls" 9276 + "tablvar" 9277 + "tabstackengine" 9278 + "tabto-ltx" 9279 + "tabu" 9280 + "tabularborder" 9281 + "tabularcalc" 9282 + "tabularew" 9283 + "tabularray" 9284 + "tabulary" 9285 + "tagging" 9286 + "tagpair" 9287 + "tagpdf" 9288 + "talk" 9289 + "tamefloats" 9290 + "tasks" 9291 + "tcldoc" 9292 + "tcolorbox" 9293 + "tdclock" 9294 + "technics" 9295 + "ted" 9296 + "templatetools" 9297 + "termcal" 9298 + "termlist" 9299 + "termsim" 9300 + "testhyphens" 9301 + "testidx" 9302 + "tex-label" 9303 + "tex-locale" 9304 + "texlogos" 9305 + "texmate" 9306 + "texments" 9307 + "texpower" 9308 + "texshade" 9309 + "texsurgery" 9310 + "textcsc" 9311 + "textfit" 9312 + "textmerg" 9313 + "textpos" 9314 + "textualicomma" 9315 + "texvc" 9316 + "theoremref" 9317 + "thinsp" 9318 + "thmtools" 9319 + "threadcol" 9320 + "threeparttable" 9321 + "threeparttablex" 9322 + "thumb" 9323 + "thumbs" 9324 + "thumby" 9325 + "ticket" 9326 + "tipauni" 9327 + "titlecaps" 9328 + "titlefoot" 9329 + "titlepic" 9330 + "titleref" 9331 + "titlesec" 9332 + "titling" 9333 + "to-be-determined" 9334 + "tocbibind" 9335 + "tocdata" 9336 + "tocloft" 9337 + "tocvsec2" 9338 + "todo" 9339 + "todonotes" 9340 + "tokcycle" 9341 + "tokenizer" 9342 + "toolbox" 9343 + "topfloat" 9344 + "topiclongtable" 9345 + "totalcount" 9346 + "totcount" 9347 + "totpages" 9348 + "translations" 9349 + "transparent" 9350 + "trfsigns" 9351 + "trimspaces" 9352 + "trivfloat" 9353 + "trsym" 9354 + "truncate" 9355 + "tucv" 9356 + "turnthepage" 9357 + "twoinone" 9358 + "twoup" 9359 + "txgreeks" 9360 + "type1cm" 9361 + "typed-checklist" 9362 + "typeface" 9363 + "typoaid" 9364 + "typogrid" 9365 + "uassign" 9366 + "ucs" 9367 + "uebungsblatt" 9368 + "umoline" 9369 + "underlin" 9370 + "underoverlap" 9371 + "undolabl" 9372 + "uni-titlepage" 9373 + "unicodefonttable" 9374 + "unisc" 9375 + "unitconv" 9376 + "units" 9377 + "unravel" 9378 + "upmethodology" 9379 + "upquote" 9380 + "uri" 9381 + "ushort" 9382 + "uspace" 9383 + "utf8add" 9384 + "uwmslide" 9385 + "variablelm" 9386 + "varindex" 9387 + "varsfromjobname" 9388 + "varwidth" 9389 + "vcell" 9390 + "vdmlisting" 9391 + "verbasef" 9392 + "verbatimbox" 9393 + "verbatimcopy" 9394 + "verbdef" 9395 + "verbments" 9396 + "verifiche" 9397 + "version" 9398 + "versions" 9399 + "versonotes" 9400 + "vertbars" 9401 + "vgrid" 9402 + "vhistory" 9403 + "vmargin" 9404 + "volumes" 9405 + "vpe" 9406 + "vruler" 9407 + "vtable" 9408 + "vwcol" 9409 + "wallcalendar" 9410 + "wallpaper" 9411 + "warning" 9412 + "warpcol" 9413 + "was" 9414 + "webquiz" 9415 + "widetable" 9416 + "widows-and-orphans" 9417 + "williams" 9418 + "willowtreebook" 9419 + "withargs" 9420 + "wordcount" 9421 + "wordlike" 9422 + "worksheet" 9423 + "wrapfig" 9424 + "wrapfig2" 9425 + "wrapstuff" 9426 + "wtref" 9427 + "xargs" 9428 + "xassoccnt" 9429 + "xbmks" 9430 + "xcntperchap" 9431 + "xcolor-material" 9432 + "xcolor-solarized" 9433 + "xcomment" 9434 + "xcookybooky" 9435 + "xcpdftips" 9436 + "xdoc" 9437 + "xellipsis" 9438 + "xfakebold" 9439 + "xfor" 9440 + "xhfill" 9441 + "xifthen" 9442 + "xint" 9443 + "xkcdcolors" 9444 + "xltabular" 9445 + "xmpincl" 9446 + "xnewcommand" 9447 + "xoptarg" 9448 + "xpatch" 9449 + "xpeek" 9450 + "xprintlen" 9451 + "xpunctuate" 9452 + "xsavebox" 9453 + "xsim" 9454 + "xstring" 9455 + "xtab" 9456 + "xurl" 9457 + "xwatermark" 9458 + "xytree" 9459 + "yafoot" 9460 + "yagusylo" 9461 + "yaletter" 9462 + "ycbook" 9463 + "ydoc" 9464 + "yplan" 9465 + "zebra-goodies" 9466 + "zed-csp" 9467 + "ziffer" 9468 + "zref" 9469 + "zref-check" 9470 + "zref-clever" 9471 + "zref-vario" 9472 + "zwgetfdate" 9473 + "zwpagelayout" 9474 + ]; 9371 9475 sha512.run = "15a6199c93d8a3b2dbbde8761f9889ea8d8ea3720500a9718e405a6146a8d460828e6c1010a3436c547e1bcb28e98fb7ac964c1facad4ed6c2b843b372e9bd89"; 9372 9476 }; 9373 9477 "collection-latexrecommended" = { 9374 9478 revision = 63547; 9375 9479 stripPrefix = 0; 9376 - deps."anysize" = tl."anysize"; 9377 - deps."attachfile2" = tl."attachfile2"; 9378 - deps."beamer" = tl."beamer"; 9379 - deps."booktabs" = tl."booktabs"; 9380 - deps."breqn" = tl."breqn"; 9381 - deps."caption" = tl."caption"; 9382 - deps."cite" = tl."cite"; 9383 - deps."cmap" = tl."cmap"; 9384 - deps."collection-latex" = tl."collection-latex"; 9385 - deps."crop" = tl."crop"; 9386 - deps."ctable" = tl."ctable"; 9387 - deps."eso-pic" = tl."eso-pic"; 9388 - deps."etoolbox" = tl."etoolbox"; 9389 - deps."euenc" = tl."euenc"; 9390 - deps."euler" = tl."euler"; 9391 - deps."everysel" = tl."everysel"; 9392 - deps."everyshi" = tl."everyshi"; 9393 - deps."extsizes" = tl."extsizes"; 9394 - deps."fancybox" = tl."fancybox"; 9395 - deps."fancyref" = tl."fancyref"; 9396 - deps."fancyvrb" = tl."fancyvrb"; 9397 - deps."filehook" = tl."filehook"; 9398 - deps."float" = tl."float"; 9399 - deps."fontspec" = tl."fontspec"; 9400 - deps."footnotehyper" = tl."footnotehyper"; 9401 - deps."fp" = tl."fp"; 9402 - deps."grffile" = tl."grffile"; 9403 - deps."hologo" = tl."hologo"; 9404 - deps."index" = tl."index"; 9405 - deps."infwarerr" = tl."infwarerr"; 9406 - deps."jknapltx" = tl."jknapltx"; 9407 - deps."koma-script" = tl."koma-script"; 9408 - deps."l3experimental" = tl."l3experimental"; 9409 - deps."latexbug" = tl."latexbug"; 9410 - deps."lineno" = tl."lineno"; 9411 - deps."listings" = tl."listings"; 9412 - deps."lwarp" = tl."lwarp"; 9413 - deps."mathspec" = tl."mathspec"; 9414 - deps."mathtools" = tl."mathtools"; 9415 - deps."mdwtools" = tl."mdwtools"; 9416 - deps."memoir" = tl."memoir"; 9417 - deps."metalogo" = tl."metalogo"; 9418 - deps."microtype" = tl."microtype"; 9419 - deps."ms" = tl."ms"; 9420 - deps."newfloat" = tl."newfloat"; 9421 - deps."ntgclass" = tl."ntgclass"; 9422 - deps."parskip" = tl."parskip"; 9423 - deps."pdflscape" = tl."pdflscape"; 9424 - deps."pdfmanagement-testphase" = tl."pdfmanagement-testphase"; 9425 - deps."pdfpages" = tl."pdfpages"; 9426 - deps."pdftexcmds" = tl."pdftexcmds"; 9427 - deps."polyglossia" = tl."polyglossia"; 9428 - deps."psfrag" = tl."psfrag"; 9429 - deps."ragged2e" = tl."ragged2e"; 9430 - deps."rcs" = tl."rcs"; 9431 - deps."sansmath" = tl."sansmath"; 9432 - deps."section" = tl."section"; 9433 - deps."seminar" = tl."seminar"; 9434 - deps."sepnum" = tl."sepnum"; 9435 - deps."setspace" = tl."setspace"; 9436 - deps."subfig" = tl."subfig"; 9437 - deps."textcase" = tl."textcase"; 9438 - deps."thumbpdf" = tl."thumbpdf"; 9439 - deps."translator" = tl."translator"; 9440 - deps."typehtml" = tl."typehtml"; 9441 - deps."ucharcat" = tl."ucharcat"; 9442 - deps."underscore" = tl."underscore"; 9443 - deps."unicode-math" = tl."unicode-math"; 9444 - deps."xcolor" = tl."xcolor"; 9445 - deps."xkeyval" = tl."xkeyval"; 9446 - deps."xltxtra" = tl."xltxtra"; 9447 - deps."xunicode" = tl."xunicode"; 9480 + deps = [ 9481 + "anysize" 9482 + "attachfile2" 9483 + "beamer" 9484 + "booktabs" 9485 + "breqn" 9486 + "caption" 9487 + "cite" 9488 + "cmap" 9489 + "collection-latex" 9490 + "crop" 9491 + "ctable" 9492 + "eso-pic" 9493 + "etoolbox" 9494 + "euenc" 9495 + "euler" 9496 + "everysel" 9497 + "everyshi" 9498 + "extsizes" 9499 + "fancybox" 9500 + "fancyref" 9501 + "fancyvrb" 9502 + "filehook" 9503 + "float" 9504 + "fontspec" 9505 + "footnotehyper" 9506 + "fp" 9507 + "grffile" 9508 + "hologo" 9509 + "index" 9510 + "infwarerr" 9511 + "jknapltx" 9512 + "koma-script" 9513 + "l3experimental" 9514 + "latexbug" 9515 + "lineno" 9516 + "listings" 9517 + "lwarp" 9518 + "mathspec" 9519 + "mathtools" 9520 + "mdwtools" 9521 + "memoir" 9522 + "metalogo" 9523 + "microtype" 9524 + "ms" 9525 + "newfloat" 9526 + "ntgclass" 9527 + "parskip" 9528 + "pdflscape" 9529 + "pdfmanagement-testphase" 9530 + "pdfpages" 9531 + "pdftexcmds" 9532 + "polyglossia" 9533 + "psfrag" 9534 + "ragged2e" 9535 + "rcs" 9536 + "sansmath" 9537 + "section" 9538 + "seminar" 9539 + "sepnum" 9540 + "setspace" 9541 + "subfig" 9542 + "textcase" 9543 + "thumbpdf" 9544 + "translator" 9545 + "typehtml" 9546 + "ucharcat" 9547 + "underscore" 9548 + "unicode-math" 9549 + "xcolor" 9550 + "xkeyval" 9551 + "xltxtra" 9552 + "xunicode" 9553 + ]; 9448 9554 sha512.run = "4e445e9830476058f6b878f306516de2fdf1b174011dd79e6a7d875adf104f2a15cdceefc7045a8ae404399d3a08d8cd4eda8fc5af317ea043b03e6c648a73b1"; 9449 9555 }; 9450 9556 "collection-luatex" = { 9451 9557 revision = 65354; 9452 9558 stripPrefix = 0; 9453 - deps."addliga" = tl."addliga"; 9454 - deps."auto-pst-pdf-lua" = tl."auto-pst-pdf-lua"; 9455 - deps."barracuda" = tl."barracuda"; 9456 - deps."bezierplot" = tl."bezierplot"; 9457 - deps."checkcites" = tl."checkcites"; 9458 - deps."chickenize" = tl."chickenize"; 9459 - deps."chinese-jfm" = tl."chinese-jfm"; 9460 - deps."cloze" = tl."cloze"; 9461 - deps."collection-basic" = tl."collection-basic"; 9462 - deps."combofont" = tl."combofont"; 9463 - deps."cstypo" = tl."cstypo"; 9464 - deps."ctablestack" = tl."ctablestack"; 9465 - deps."ekdosis" = tl."ekdosis"; 9466 - deps."emoji" = tl."emoji"; 9467 - deps."emojicite" = tl."emojicite"; 9468 - deps."enigma" = tl."enigma"; 9469 - deps."innerscript" = tl."innerscript"; 9470 - deps."interpreter" = tl."interpreter"; 9471 - deps."kanaparser" = tl."kanaparser"; 9472 - deps."ligtype" = tl."ligtype"; 9473 - deps."linebreaker" = tl."linebreaker"; 9474 - deps."lt3luabridge" = tl."lt3luabridge"; 9475 - deps."lua-typo" = tl."lua-typo"; 9476 - deps."lua-uca" = tl."lua-uca"; 9477 - deps."lua-ul" = tl."lua-ul"; 9478 - deps."lua-uni-algos" = tl."lua-uni-algos"; 9479 - deps."lua-visual-debug" = tl."lua-visual-debug"; 9480 - deps."lua-widow-control" = tl."lua-widow-control"; 9481 - deps."luaaddplot" = tl."luaaddplot"; 9482 - deps."luacas" = tl."luacas"; 9483 - deps."luacensor" = tl."luacensor"; 9484 - deps."luacode" = tl."luacode"; 9485 - deps."luacolor" = tl."luacolor"; 9486 - deps."luahyphenrules" = tl."luahyphenrules"; 9487 - deps."luaimageembed" = tl."luaimageembed"; 9488 - deps."luaindex" = tl."luaindex"; 9489 - deps."luainputenc" = tl."luainputenc"; 9490 - deps."luaintro" = tl."luaintro"; 9491 - deps."luakeys" = tl."luakeys"; 9492 - deps."lualatex-doc" = tl."lualatex-doc"; 9493 - deps."lualatex-math" = tl."lualatex-math"; 9494 - deps."lualatex-truncate" = tl."lualatex-truncate"; 9495 - deps."lualibs" = tl."lualibs"; 9496 - deps."luamathalign" = tl."luamathalign"; 9497 - deps."luamodulartables" = tl."luamodulartables"; 9498 - deps."luamplib" = tl."luamplib"; 9499 - deps."luaoptions" = tl."luaoptions"; 9500 - deps."luaotfload" = tl."luaotfload"; 9501 - deps."luapackageloader" = tl."luapackageloader"; 9502 - deps."luaprogtable" = tl."luaprogtable"; 9503 - deps."luaquotes" = tl."luaquotes"; 9504 - deps."luarandom" = tl."luarandom"; 9505 - deps."luatex85" = tl."luatex85"; 9506 - deps."luatexbase" = tl."luatexbase"; 9507 - deps."luatexko" = tl."luatexko"; 9508 - deps."luatextra" = tl."luatextra"; 9509 - deps."luatruthtable" = tl."luatruthtable"; 9510 - deps."luavlna" = tl."luavlna"; 9511 - deps."luaxml" = tl."luaxml"; 9512 - deps."lutabulartools" = tl."lutabulartools"; 9513 - deps."minim" = tl."minim"; 9514 - deps."minim-math" = tl."minim-math"; 9515 - deps."minim-mp" = tl."minim-mp"; 9516 - deps."minim-pdf" = tl."minim-pdf"; 9517 - deps."minim-xmp" = tl."minim-xmp"; 9518 - deps."newpax" = tl."newpax"; 9519 - deps."nodetree" = tl."nodetree"; 9520 - deps."odsfile" = tl."odsfile"; 9521 - deps."optex" = tl."optex"; 9522 - deps."pdfarticle" = tl."pdfarticle"; 9523 - deps."pdfextra" = tl."pdfextra"; 9524 - deps."penlight" = tl."penlight"; 9525 - deps."piton" = tl."piton"; 9526 - deps."placeat" = tl."placeat"; 9527 - deps."plantuml" = tl."plantuml"; 9528 - deps."pyluatex" = tl."pyluatex"; 9529 - deps."scikgtex" = tl."scikgtex"; 9530 - deps."selnolig" = tl."selnolig"; 9531 - deps."showhyphenation" = tl."showhyphenation"; 9532 - deps."showkerning" = tl."showkerning"; 9533 - deps."spacekern" = tl."spacekern"; 9534 - deps."spelling" = tl."spelling"; 9535 - deps."stricttex" = tl."stricttex"; 9536 - deps."truthtable" = tl."truthtable"; 9537 - deps."tsvtemplate" = tl."tsvtemplate"; 9538 - deps."typewriter" = tl."typewriter"; 9539 - deps."uninormalize" = tl."uninormalize"; 9540 - deps."yamlvars" = tl."yamlvars"; 9559 + deps = [ 9560 + "addliga" 9561 + "auto-pst-pdf-lua" 9562 + "barracuda" 9563 + "bezierplot" 9564 + "checkcites" 9565 + "chickenize" 9566 + "chinese-jfm" 9567 + "cloze" 9568 + "collection-basic" 9569 + "combofont" 9570 + "cstypo" 9571 + "ctablestack" 9572 + "ekdosis" 9573 + "emoji" 9574 + "emojicite" 9575 + "enigma" 9576 + "innerscript" 9577 + "interpreter" 9578 + "kanaparser" 9579 + "ligtype" 9580 + "linebreaker" 9581 + "lt3luabridge" 9582 + "lua-typo" 9583 + "lua-uca" 9584 + "lua-ul" 9585 + "lua-uni-algos" 9586 + "lua-visual-debug" 9587 + "lua-widow-control" 9588 + "luaaddplot" 9589 + "luacas" 9590 + "luacensor" 9591 + "luacode" 9592 + "luacolor" 9593 + "luahyphenrules" 9594 + "luaimageembed" 9595 + "luaindex" 9596 + "luainputenc" 9597 + "luaintro" 9598 + "luakeys" 9599 + "lualatex-doc" 9600 + "lualatex-math" 9601 + "lualatex-truncate" 9602 + "lualibs" 9603 + "luamathalign" 9604 + "luamodulartables" 9605 + "luamplib" 9606 + "luaoptions" 9607 + "luaotfload" 9608 + "luapackageloader" 9609 + "luaprogtable" 9610 + "luaquotes" 9611 + "luarandom" 9612 + "luatex85" 9613 + "luatexbase" 9614 + "luatexko" 9615 + "luatextra" 9616 + "luatruthtable" 9617 + "luavlna" 9618 + "luaxml" 9619 + "lutabulartools" 9620 + "minim" 9621 + "minim-math" 9622 + "minim-mp" 9623 + "minim-pdf" 9624 + "minim-xmp" 9625 + "newpax" 9626 + "nodetree" 9627 + "odsfile" 9628 + "optex" 9629 + "pdfarticle" 9630 + "pdfextra" 9631 + "penlight" 9632 + "piton" 9633 + "placeat" 9634 + "plantuml" 9635 + "pyluatex" 9636 + "scikgtex" 9637 + "selnolig" 9638 + "showhyphenation" 9639 + "showkerning" 9640 + "spacekern" 9641 + "spelling" 9642 + "stricttex" 9643 + "truthtable" 9644 + "tsvtemplate" 9645 + "typewriter" 9646 + "uninormalize" 9647 + "yamlvars" 9648 + ]; 9541 9649 sha512.run = "44e1041adf14954f5da71342247dd8863057ff52db1a05525c01caa87a4f27084580aab0b375c96bdb05e4ab718afebfdd2254146ed1cd69b2abccfa975e0330"; 9542 9650 }; 9543 9651 "collection-mathscience" = { 9544 9652 revision = 65312; 9545 9653 stripPrefix = 0; 9546 - deps."12many" = tl."12many"; 9547 - deps."accents" = tl."accents"; 9548 - deps."alg" = tl."alg"; 9549 - deps."algobox" = tl."algobox"; 9550 - deps."algorithm2e" = tl."algorithm2e"; 9551 - deps."algorithmicx" = tl."algorithmicx"; 9552 - deps."algorithms" = tl."algorithms"; 9553 - deps."algpseudocodex" = tl."algpseudocodex"; 9554 - deps."algxpar" = tl."algxpar"; 9555 - deps."aligned-overset" = tl."aligned-overset"; 9556 - deps."amscdx" = tl."amscdx"; 9557 - deps."amstex" = tl."amstex"; 9558 - deps."annotate-equations" = tl."annotate-equations"; 9559 - deps."apxproof" = tl."apxproof"; 9560 - deps."autobreak" = tl."autobreak"; 9561 - deps."axodraw2" = tl."axodraw2"; 9562 - deps."backnaur" = tl."backnaur"; 9563 - deps."begriff" = tl."begriff"; 9564 - deps."binomexp" = tl."binomexp"; 9565 - deps."biocon" = tl."biocon"; 9566 - deps."bitpattern" = tl."bitpattern"; 9567 - deps."bodeplot" = tl."bodeplot"; 9568 - deps."bohr" = tl."bohr"; 9569 - deps."boldtensors" = tl."boldtensors"; 9570 - deps."bosisio" = tl."bosisio"; 9571 - deps."bpchem" = tl."bpchem"; 9572 - deps."bropd" = tl."bropd"; 9573 - deps."bussproofs" = tl."bussproofs"; 9574 - deps."bussproofs-extra" = tl."bussproofs-extra"; 9575 - deps."bytefield" = tl."bytefield"; 9576 - deps."calculation" = tl."calculation"; 9577 - deps."cartonaugh" = tl."cartonaugh"; 9578 - deps."cascade" = tl."cascade"; 9579 - deps."causets" = tl."causets"; 9580 - deps."ccfonts" = tl."ccfonts"; 9581 - deps."ccool" = tl."ccool"; 9582 - deps."chemarrow" = tl."chemarrow"; 9583 - deps."chemcompounds" = tl."chemcompounds"; 9584 - deps."chemcono" = tl."chemcono"; 9585 - deps."chemexec" = tl."chemexec"; 9586 - deps."chemformula" = tl."chemformula"; 9587 - deps."chemgreek" = tl."chemgreek"; 9588 - deps."chemmacros" = tl."chemmacros"; 9589 - deps."chemnum" = tl."chemnum"; 9590 - deps."chemobabel" = tl."chemobabel"; 9591 - deps."chemplants" = tl."chemplants"; 9592 - deps."chemschemex" = tl."chemschemex"; 9593 - deps."chemsec" = tl."chemsec"; 9594 - deps."chemstyle" = tl."chemstyle"; 9595 - deps."clrscode" = tl."clrscode"; 9596 - deps."clrscode3e" = tl."clrscode3e"; 9597 - deps."codeanatomy" = tl."codeanatomy"; 9598 - deps."collection-fontsrecommended" = tl."collection-fontsrecommended"; 9599 - deps."collection-latex" = tl."collection-latex"; 9600 - deps."commath" = tl."commath"; 9601 - deps."commutative-diagrams" = tl."commutative-diagrams"; 9602 - deps."complexity" = tl."complexity"; 9603 - deps."computational-complexity" = tl."computational-complexity"; 9604 - deps."concmath" = tl."concmath"; 9605 - deps."concrete" = tl."concrete"; 9606 - deps."conteq" = tl."conteq"; 9607 - deps."correctmathalign" = tl."correctmathalign"; 9608 - deps."cryptocode" = tl."cryptocode"; 9609 - deps."csassignments" = tl."csassignments"; 9610 - deps."cvss" = tl."cvss"; 9611 - deps."decision-table" = tl."decision-table"; 9612 - deps."delim" = tl."delim"; 9613 - deps."delimseasy" = tl."delimseasy"; 9614 - deps."delimset" = tl."delimset"; 9615 - deps."derivative" = tl."derivative"; 9616 - deps."diffcoeff" = tl."diffcoeff"; 9617 - deps."digiconfigs" = tl."digiconfigs"; 9618 - deps."dijkstra" = tl."dijkstra"; 9619 - deps."drawmatrix" = tl."drawmatrix"; 9620 - deps."drawstack" = tl."drawstack"; 9621 - deps."dyntree" = tl."dyntree"; 9622 - deps."easing" = tl."easing"; 9623 - deps."ebproof" = tl."ebproof"; 9624 - deps."econometrics" = tl."econometrics"; 9625 - deps."eltex" = tl."eltex"; 9626 - deps."emf" = tl."emf"; 9627 - deps."endiagram" = tl."endiagram"; 9628 - deps."engtlc" = tl."engtlc"; 9629 - deps."eolang" = tl."eolang"; 9630 - deps."eqexpl" = tl."eqexpl"; 9631 - deps."eqnarray" = tl."eqnarray"; 9632 - deps."eqnnumwarn" = tl."eqnnumwarn"; 9633 - deps."euclideangeometry" = tl."euclideangeometry"; 9634 - deps."extarrows" = tl."extarrows"; 9635 - deps."extpfeil" = tl."extpfeil"; 9636 - deps."faktor" = tl."faktor"; 9637 - deps."fascicules" = tl."fascicules"; 9638 - deps."fixdif" = tl."fixdif"; 9639 - deps."fixmath" = tl."fixmath"; 9640 - deps."fnspe" = tl."fnspe"; 9641 - deps."formal-grammar" = tl."formal-grammar"; 9642 - deps."fouridx" = tl."fouridx"; 9643 - deps."functan" = tl."functan"; 9644 - deps."galois" = tl."galois"; 9645 - deps."gastex" = tl."gastex"; 9646 - deps."gene-logic" = tl."gene-logic"; 9647 - deps."ghsystem" = tl."ghsystem"; 9648 - deps."glosmathtools" = tl."glosmathtools"; 9649 - deps."gotoh" = tl."gotoh"; 9650 - deps."grundgesetze" = tl."grundgesetze"; 9651 - deps."gu" = tl."gu"; 9652 - deps."helmholtz-ellis-ji-notation" = tl."helmholtz-ellis-ji-notation"; 9653 - deps."hep" = tl."hep"; 9654 - deps."hep-reference" = tl."hep-reference"; 9655 - deps."hepnames" = tl."hepnames"; 9656 - deps."hepparticles" = tl."hepparticles"; 9657 - deps."hepthesis" = tl."hepthesis"; 9658 - deps."hepunits" = tl."hepunits"; 9659 - deps."ibrackets" = tl."ibrackets"; 9660 - deps."includernw" = tl."includernw"; 9661 - deps."interval" = tl."interval"; 9662 - deps."ionumbers" = tl."ionumbers"; 9663 - deps."isomath" = tl."isomath"; 9664 - deps."jkmath" = tl."jkmath"; 9665 - deps."jupynotex" = tl."jupynotex"; 9666 - deps."karnaugh" = tl."karnaugh"; 9667 - deps."karnaugh-map" = tl."karnaugh-map"; 9668 - deps."karnaughmap" = tl."karnaughmap"; 9669 - deps."kvmap" = tl."kvmap"; 9670 - deps."letterswitharrows" = tl."letterswitharrows"; 9671 - deps."lie-hasse" = tl."lie-hasse"; 9672 - deps."logicproof" = tl."logicproof"; 9673 - deps."longdivision" = tl."longdivision"; 9674 - deps."lpform" = tl."lpform"; 9675 - deps."lplfitch" = tl."lplfitch"; 9676 - deps."lstbayes" = tl."lstbayes"; 9677 - deps."mathcommand" = tl."mathcommand"; 9678 - deps."mathcomp" = tl."mathcomp"; 9679 - deps."mathfixs" = tl."mathfixs"; 9680 - deps."mathlig" = tl."mathlig"; 9681 - deps."mathpartir" = tl."mathpartir"; 9682 - deps."mathpunctspace" = tl."mathpunctspace"; 9683 - deps."mathsemantics" = tl."mathsemantics"; 9684 - deps."matlab-prettifier" = tl."matlab-prettifier"; 9685 - deps."matrix-skeleton" = tl."matrix-skeleton"; 9686 - deps."mattens" = tl."mattens"; 9687 - deps."mecaso" = tl."mecaso"; 9688 - deps."membranecomputing" = tl."membranecomputing"; 9689 - deps."memorygraphs" = tl."memorygraphs"; 9690 - deps."messagepassing" = tl."messagepassing"; 9691 - deps."mgltex" = tl."mgltex"; 9692 - deps."mhchem" = tl."mhchem"; 9693 - deps."mhequ" = tl."mhequ"; 9694 - deps."miller" = tl."miller"; 9695 - deps."mismath" = tl."mismath"; 9696 - deps."multiobjective" = tl."multiobjective"; 9697 - deps."namedtensor" = tl."namedtensor"; 9698 - deps."natded" = tl."natded"; 9699 - deps."nath" = tl."nath"; 9700 - deps."nchairx" = tl."nchairx"; 9701 - deps."nicematrix" = tl."nicematrix"; 9702 - deps."nuc" = tl."nuc"; 9703 - deps."nucleardata" = tl."nucleardata"; 9704 - deps."numerica" = tl."numerica"; 9705 - deps."numerica-plus" = tl."numerica-plus"; 9706 - deps."numerica-tables" = tl."numerica-tables"; 9707 - deps."objectz" = tl."objectz"; 9708 - deps."oplotsymbl" = tl."oplotsymbl"; 9709 - deps."ot-tableau" = tl."ot-tableau"; 9710 - deps."oubraces" = tl."oubraces"; 9711 - deps."pascaltriangle" = tl."pascaltriangle"; 9712 - deps."perfectcut" = tl."perfectcut"; 9713 - deps."pfdicons" = tl."pfdicons"; 9714 - deps."physconst" = tl."physconst"; 9715 - deps."physics" = tl."physics"; 9716 - deps."physunits" = tl."physunits"; 9717 - deps."pinoutikz" = tl."pinoutikz"; 9718 - deps."pm-isomath" = tl."pm-isomath"; 9719 - deps."polexpr" = tl."polexpr"; 9720 - deps."prftree" = tl."prftree"; 9721 - deps."principia" = tl."principia"; 9722 - deps."proba" = tl."proba"; 9723 - deps."proof-at-the-end" = tl."proof-at-the-end"; 9724 - deps."prooftrees" = tl."prooftrees"; 9725 - deps."pseudo" = tl."pseudo"; 9726 - deps."pseudocode" = tl."pseudocode"; 9727 - deps."pythonhighlight" = tl."pythonhighlight"; 9728 - deps."qsharp" = tl."qsharp"; 9729 - deps."rank-2-roots" = tl."rank-2-roots"; 9730 - deps."rbt-mathnotes" = tl."rbt-mathnotes"; 9731 - deps."rec-thy" = tl."rec-thy"; 9732 - deps."rest-api" = tl."rest-api"; 9733 - deps."revquantum" = tl."revquantum"; 9734 - deps."ribbonproofs" = tl."ribbonproofs"; 9735 - deps."rmathbr" = tl."rmathbr"; 9736 - deps."sankey" = tl."sankey"; 9737 - deps."sasnrdisplay" = tl."sasnrdisplay"; 9738 - deps."sciposter" = tl."sciposter"; 9739 - deps."sclang-prettifier" = tl."sclang-prettifier"; 9740 - deps."scratchx" = tl."scratchx"; 9741 - deps."sesamanuel" = tl."sesamanuel"; 9742 - deps."sfg" = tl."sfg"; 9743 - deps."shuffle" = tl."shuffle"; 9744 - deps."simplebnf" = tl."simplebnf"; 9745 - deps."simpler-wick" = tl."simpler-wick"; 9746 - deps."simples-matrices" = tl."simples-matrices"; 9747 - deps."simplewick" = tl."simplewick"; 9748 - deps."sistyle" = tl."sistyle"; 9749 - deps."siunits" = tl."siunits"; 9750 - deps."siunitx" = tl."siunitx"; 9751 - deps."skmath" = tl."skmath"; 9752 - deps."spalign" = tl."spalign"; 9753 - deps."spbmark" = tl."spbmark"; 9754 - deps."stanli" = tl."stanli"; 9755 - deps."statex" = tl."statex"; 9756 - deps."statex2" = tl."statex2"; 9757 - deps."statistics" = tl."statistics"; 9758 - deps."statistik" = tl."statistik"; 9759 - deps."statmath" = tl."statmath"; 9760 - deps."steinmetz" = tl."steinmetz"; 9761 - deps."stmaryrd" = tl."stmaryrd"; 9762 - deps."structmech" = tl."structmech"; 9763 - deps."struktex" = tl."struktex"; 9764 - deps."substances" = tl."substances"; 9765 - deps."subsupscripts" = tl."subsupscripts"; 9766 - deps."subtext" = tl."subtext"; 9767 - deps."susy" = tl."susy"; 9768 - deps."syllogism" = tl."syllogism"; 9769 - deps."sympytexpackage" = tl."sympytexpackage"; 9770 - deps."synproof" = tl."synproof"; 9771 - deps."t-angles" = tl."t-angles"; 9772 - deps."tablor" = tl."tablor"; 9773 - deps."tensind" = tl."tensind"; 9774 - deps."tensor" = tl."tensor"; 9775 - deps."tex-ewd" = tl."tex-ewd"; 9776 - deps."textgreek" = tl."textgreek"; 9777 - deps."textopo" = tl."textopo"; 9778 - deps."thermodynamics" = tl."thermodynamics"; 9779 - deps."thmbox" = tl."thmbox"; 9780 - deps."tiscreen" = tl."tiscreen"; 9781 - deps."turnstile" = tl."turnstile"; 9782 - deps."ulqda" = tl."ulqda"; 9783 - deps."unitsdef" = tl."unitsdef"; 9784 - deps."venn" = tl."venn"; 9785 - deps."witharrows" = tl."witharrows"; 9786 - deps."xymtex" = tl."xymtex"; 9787 - deps."yhmath" = tl."yhmath"; 9788 - deps."youngtab" = tl."youngtab"; 9789 - deps."yquant" = tl."yquant"; 9790 - deps."ytableau" = tl."ytableau"; 9791 - deps."zx-calculus" = tl."zx-calculus"; 9654 + deps = [ 9655 + "12many" 9656 + "accents" 9657 + "alg" 9658 + "algobox" 9659 + "algorithm2e" 9660 + "algorithmicx" 9661 + "algorithms" 9662 + "algpseudocodex" 9663 + "algxpar" 9664 + "aligned-overset" 9665 + "amscdx" 9666 + "amstex" 9667 + "annotate-equations" 9668 + "apxproof" 9669 + "autobreak" 9670 + "axodraw2" 9671 + "backnaur" 9672 + "begriff" 9673 + "binomexp" 9674 + "biocon" 9675 + "bitpattern" 9676 + "bodeplot" 9677 + "bohr" 9678 + "boldtensors" 9679 + "bosisio" 9680 + "bpchem" 9681 + "bropd" 9682 + "bussproofs" 9683 + "bussproofs-extra" 9684 + "bytefield" 9685 + "calculation" 9686 + "cartonaugh" 9687 + "cascade" 9688 + "causets" 9689 + "ccfonts" 9690 + "ccool" 9691 + "chemarrow" 9692 + "chemcompounds" 9693 + "chemcono" 9694 + "chemexec" 9695 + "chemformula" 9696 + "chemgreek" 9697 + "chemmacros" 9698 + "chemnum" 9699 + "chemobabel" 9700 + "chemplants" 9701 + "chemschemex" 9702 + "chemsec" 9703 + "chemstyle" 9704 + "clrscode" 9705 + "clrscode3e" 9706 + "codeanatomy" 9707 + "collection-fontsrecommended" 9708 + "collection-latex" 9709 + "commath" 9710 + "commutative-diagrams" 9711 + "complexity" 9712 + "computational-complexity" 9713 + "concmath" 9714 + "concrete" 9715 + "conteq" 9716 + "correctmathalign" 9717 + "cryptocode" 9718 + "csassignments" 9719 + "cvss" 9720 + "decision-table" 9721 + "delim" 9722 + "delimseasy" 9723 + "delimset" 9724 + "derivative" 9725 + "diffcoeff" 9726 + "digiconfigs" 9727 + "dijkstra" 9728 + "drawmatrix" 9729 + "drawstack" 9730 + "dyntree" 9731 + "easing" 9732 + "ebproof" 9733 + "econometrics" 9734 + "eltex" 9735 + "emf" 9736 + "endiagram" 9737 + "engtlc" 9738 + "eolang" 9739 + "eqexpl" 9740 + "eqnarray" 9741 + "eqnnumwarn" 9742 + "euclideangeometry" 9743 + "extarrows" 9744 + "extpfeil" 9745 + "faktor" 9746 + "fascicules" 9747 + "fixdif" 9748 + "fixmath" 9749 + "fnspe" 9750 + "formal-grammar" 9751 + "fouridx" 9752 + "functan" 9753 + "galois" 9754 + "gastex" 9755 + "gene-logic" 9756 + "ghsystem" 9757 + "glosmathtools" 9758 + "gotoh" 9759 + "grundgesetze" 9760 + "gu" 9761 + "helmholtz-ellis-ji-notation" 9762 + "hep" 9763 + "hep-reference" 9764 + "hepnames" 9765 + "hepparticles" 9766 + "hepthesis" 9767 + "hepunits" 9768 + "ibrackets" 9769 + "includernw" 9770 + "interval" 9771 + "ionumbers" 9772 + "isomath" 9773 + "jkmath" 9774 + "jupynotex" 9775 + "karnaugh" 9776 + "karnaugh-map" 9777 + "karnaughmap" 9778 + "kvmap" 9779 + "letterswitharrows" 9780 + "lie-hasse" 9781 + "logicproof" 9782 + "longdivision" 9783 + "lpform" 9784 + "lplfitch" 9785 + "lstbayes" 9786 + "mathcommand" 9787 + "mathcomp" 9788 + "mathfixs" 9789 + "mathlig" 9790 + "mathpartir" 9791 + "mathpunctspace" 9792 + "mathsemantics" 9793 + "matlab-prettifier" 9794 + "matrix-skeleton" 9795 + "mattens" 9796 + "mecaso" 9797 + "membranecomputing" 9798 + "memorygraphs" 9799 + "messagepassing" 9800 + "mgltex" 9801 + "mhchem" 9802 + "mhequ" 9803 + "miller" 9804 + "mismath" 9805 + "multiobjective" 9806 + "namedtensor" 9807 + "natded" 9808 + "nath" 9809 + "nchairx" 9810 + "nicematrix" 9811 + "nuc" 9812 + "nucleardata" 9813 + "numerica" 9814 + "numerica-plus" 9815 + "numerica-tables" 9816 + "objectz" 9817 + "oplotsymbl" 9818 + "ot-tableau" 9819 + "oubraces" 9820 + "pascaltriangle" 9821 + "perfectcut" 9822 + "pfdicons" 9823 + "physconst" 9824 + "physics" 9825 + "physunits" 9826 + "pinoutikz" 9827 + "pm-isomath" 9828 + "polexpr" 9829 + "prftree" 9830 + "principia" 9831 + "proba" 9832 + "proof-at-the-end" 9833 + "prooftrees" 9834 + "pseudo" 9835 + "pseudocode" 9836 + "pythonhighlight" 9837 + "qsharp" 9838 + "rank-2-roots" 9839 + "rbt-mathnotes" 9840 + "rec-thy" 9841 + "rest-api" 9842 + "revquantum" 9843 + "ribbonproofs" 9844 + "rmathbr" 9845 + "sankey" 9846 + "sasnrdisplay" 9847 + "sciposter" 9848 + "sclang-prettifier" 9849 + "scratchx" 9850 + "sesamanuel" 9851 + "sfg" 9852 + "shuffle" 9853 + "simplebnf" 9854 + "simpler-wick" 9855 + "simples-matrices" 9856 + "simplewick" 9857 + "sistyle" 9858 + "siunits" 9859 + "siunitx" 9860 + "skmath" 9861 + "spalign" 9862 + "spbmark" 9863 + "stanli" 9864 + "statex" 9865 + "statex2" 9866 + "statistics" 9867 + "statistik" 9868 + "statmath" 9869 + "steinmetz" 9870 + "stmaryrd" 9871 + "structmech" 9872 + "struktex" 9873 + "substances" 9874 + "subsupscripts" 9875 + "subtext" 9876 + "susy" 9877 + "syllogism" 9878 + "sympytexpackage" 9879 + "synproof" 9880 + "t-angles" 9881 + "tablor" 9882 + "tensind" 9883 + "tensor" 9884 + "tex-ewd" 9885 + "textgreek" 9886 + "textopo" 9887 + "thermodynamics" 9888 + "thmbox" 9889 + "tiscreen" 9890 + "turnstile" 9891 + "ulqda" 9892 + "unitsdef" 9893 + "venn" 9894 + "witharrows" 9895 + "xymtex" 9896 + "yhmath" 9897 + "youngtab" 9898 + "yquant" 9899 + "ytableau" 9900 + "zx-calculus" 9901 + ]; 9792 9902 sha512.run = "30620c4a12471f0b880cb45857c52e2540984852c5f17753ef5dde259e92224fcad2f1c3dcae357c8475aacf4552b6704a67e99331edc073ffbd595e47a533b1"; 9793 9903 }; 9794 9904 "collection-metapost" = { 9795 9905 revision = 64878; 9796 9906 stripPrefix = 0; 9797 - deps."automata" = tl."automata"; 9798 - deps."bbcard" = tl."bbcard"; 9799 - deps."blockdraw_mp" = tl."blockdraw_mp"; 9800 - deps."bpolynomial" = tl."bpolynomial"; 9801 - deps."cmarrows" = tl."cmarrows"; 9802 - deps."collection-basic" = tl."collection-basic"; 9803 - deps."drv" = tl."drv"; 9804 - deps."dviincl" = tl."dviincl"; 9805 - deps."emp" = tl."emp"; 9806 - deps."epsincl" = tl."epsincl"; 9807 - deps."expressg" = tl."expressg"; 9808 - deps."exteps" = tl."exteps"; 9809 - deps."featpost" = tl."featpost"; 9810 - deps."feynmf" = tl."feynmf"; 9811 - deps."feynmp-auto" = tl."feynmp-auto"; 9812 - deps."fiziko" = tl."fiziko"; 9813 - deps."garrigues" = tl."garrigues"; 9814 - deps."gmp" = tl."gmp"; 9815 - deps."hatching" = tl."hatching"; 9816 - deps."hershey-mp" = tl."hershey-mp"; 9817 - deps."latexmp" = tl."latexmp"; 9818 - deps."mcf2graph" = tl."mcf2graph"; 9819 - deps."metago" = tl."metago"; 9820 - deps."metaobj" = tl."metaobj"; 9821 - deps."metaplot" = tl."metaplot"; 9822 - deps."metapost" = tl."metapost"; 9823 - deps."metapost-colorbrewer" = tl."metapost-colorbrewer"; 9824 - deps."metauml" = tl."metauml"; 9825 - deps."mfpic" = tl."mfpic"; 9826 - deps."mfpic4ode" = tl."mfpic4ode"; 9827 - deps."minim-hatching" = tl."minim-hatching"; 9828 - deps."mp3d" = tl."mp3d"; 9829 - deps."mparrows" = tl."mparrows"; 9830 - deps."mpattern" = tl."mpattern"; 9831 - deps."mpcolornames" = tl."mpcolornames"; 9832 - deps."mpgraphics" = tl."mpgraphics"; 9833 - deps."mptrees" = tl."mptrees"; 9834 - deps."piechartmp" = tl."piechartmp"; 9835 - deps."repere" = tl."repere"; 9836 - deps."roex" = tl."roex"; 9837 - deps."roundrect" = tl."roundrect"; 9838 - deps."shapes" = tl."shapes"; 9839 - deps."slideshow" = tl."slideshow"; 9840 - deps."splines" = tl."splines"; 9841 - deps."suanpan" = tl."suanpan"; 9842 - deps."textpath" = tl."textpath"; 9843 - deps."threeddice" = tl."threeddice"; 9907 + deps = [ 9908 + "automata" 9909 + "bbcard" 9910 + "blockdraw_mp" 9911 + "bpolynomial" 9912 + "cmarrows" 9913 + "collection-basic" 9914 + "drv" 9915 + "dviincl" 9916 + "emp" 9917 + "epsincl" 9918 + "expressg" 9919 + "exteps" 9920 + "featpost" 9921 + "feynmf" 9922 + "feynmp-auto" 9923 + "fiziko" 9924 + "garrigues" 9925 + "gmp" 9926 + "hatching" 9927 + "hershey-mp" 9928 + "latexmp" 9929 + "mcf2graph" 9930 + "metago" 9931 + "metaobj" 9932 + "metaplot" 9933 + "metapost" 9934 + "metapost-colorbrewer" 9935 + "metauml" 9936 + "mfpic" 9937 + "mfpic4ode" 9938 + "minim-hatching" 9939 + "mp3d" 9940 + "mparrows" 9941 + "mpattern" 9942 + "mpcolornames" 9943 + "mpgraphics" 9944 + "mptrees" 9945 + "piechartmp" 9946 + "repere" 9947 + "roex" 9948 + "roundrect" 9949 + "shapes" 9950 + "slideshow" 9951 + "splines" 9952 + "suanpan" 9953 + "textpath" 9954 + "threeddice" 9955 + ]; 9844 9956 sha512.run = "c17510f676b4aec1887893083e00438be77d879e44e52aedeb040ae1eb593d1d688fefc8eaa48939db0f83e8d1743cea3030490e73d8c3d65689b3e4db21f016"; 9845 9957 }; 9846 9958 "collection-music" = { 9847 9959 revision = 64966; 9848 9960 stripPrefix = 0; 9849 - deps."abc" = tl."abc"; 9850 - deps."autosp" = tl."autosp"; 9851 - deps."bagpipe" = tl."bagpipe"; 9852 - deps."chordbars" = tl."chordbars"; 9853 - deps."chordbox" = tl."chordbox"; 9854 - deps."collection-latex" = tl."collection-latex"; 9855 - deps."ddphonism" = tl."ddphonism"; 9856 - deps."figbas" = tl."figbas"; 9857 - deps."gchords" = tl."gchords"; 9858 - deps."gregoriotex" = tl."gregoriotex"; 9859 - deps."gtrcrd" = tl."gtrcrd"; 9860 - deps."guitar" = tl."guitar"; 9861 - deps."guitarchordschemes" = tl."guitarchordschemes"; 9862 - deps."guitartabs" = tl."guitartabs"; 9863 - deps."harmony" = tl."harmony"; 9864 - deps."latex4musicians" = tl."latex4musicians"; 9865 - deps."leadsheets" = tl."leadsheets"; 9866 - deps."lilyglyphs" = tl."lilyglyphs"; 9867 - deps."lyluatex" = tl."lyluatex"; 9868 - deps."m-tx" = tl."m-tx"; 9869 - deps."musical" = tl."musical"; 9870 - deps."musicography" = tl."musicography"; 9871 - deps."musixguit" = tl."musixguit"; 9872 - deps."musixtex" = tl."musixtex"; 9873 - deps."musixtex-fonts" = tl."musixtex-fonts"; 9874 - deps."musixtnt" = tl."musixtnt"; 9875 - deps."octave" = tl."octave"; 9876 - deps."piano" = tl."piano"; 9877 - deps."pmx" = tl."pmx"; 9878 - deps."pmxchords" = tl."pmxchords"; 9879 - deps."songbook" = tl."songbook"; 9880 - deps."songproj" = tl."songproj"; 9881 - deps."songs" = tl."songs"; 9882 - deps."xml2pmx" = tl."xml2pmx"; 9883 - deps."xpiano" = tl."xpiano"; 9961 + deps = [ 9962 + "abc" 9963 + "autosp" 9964 + "bagpipe" 9965 + "chordbars" 9966 + "chordbox" 9967 + "collection-latex" 9968 + "ddphonism" 9969 + "figbas" 9970 + "gchords" 9971 + "gregoriotex" 9972 + "gtrcrd" 9973 + "guitar" 9974 + "guitarchordschemes" 9975 + "guitartabs" 9976 + "harmony" 9977 + "latex4musicians" 9978 + "leadsheets" 9979 + "lilyglyphs" 9980 + "lyluatex" 9981 + "m-tx" 9982 + "musical" 9983 + "musicography" 9984 + "musixguit" 9985 + "musixtex" 9986 + "musixtex-fonts" 9987 + "musixtnt" 9988 + "octave" 9989 + "piano" 9990 + "pmx" 9991 + "pmxchords" 9992 + "songbook" 9993 + "songproj" 9994 + "songs" 9995 + "xml2pmx" 9996 + "xpiano" 9997 + ]; 9884 9998 sha512.run = "5d416eca3382c36a869959d850de6ffb4606c1a15c5adeae2ed0f8800c4a95cb068b4fbacb8d835ba4b0b4880b05f603b4e0ba36b98e357ec5ba637d0fb59100"; 9885 9999 }; 9886 10000 "collection-pictures" = { 9887 10001 revision = 65359; 9888 10002 stripPrefix = 0; 9889 - deps."adigraph" = tl."adigraph"; 9890 - deps."aobs-tikz" = tl."aobs-tikz"; 9891 - deps."askmaps" = tl."askmaps"; 9892 - deps."asyfig" = tl."asyfig"; 9893 - deps."asypictureb" = tl."asypictureb"; 9894 - deps."autoarea" = tl."autoarea"; 9895 - deps."bardiag" = tl."bardiag"; 9896 - deps."beamerswitch" = tl."beamerswitch"; 9897 - deps."binarytree" = tl."binarytree"; 9898 - deps."blochsphere" = tl."blochsphere"; 9899 - deps."bloques" = tl."bloques"; 9900 - deps."blox" = tl."blox"; 9901 - deps."bodegraph" = tl."bodegraph"; 9902 - deps."bondgraph" = tl."bondgraph"; 9903 - deps."bondgraphs" = tl."bondgraphs"; 9904 - deps."braids" = tl."braids"; 9905 - deps."bxeepic" = tl."bxeepic"; 9906 - deps."byo-twemojis" = tl."byo-twemojis"; 9907 - deps."byrne" = tl."byrne"; 9908 - deps."cachepic" = tl."cachepic"; 9909 - deps."callouts" = tl."callouts"; 9910 - deps."celtic" = tl."celtic"; 9911 - deps."chemfig" = tl."chemfig"; 9912 - deps."circuit-macros" = tl."circuit-macros"; 9913 - deps."circuitikz" = tl."circuitikz"; 9914 - deps."coffeestains" = tl."coffeestains"; 9915 - deps."collection-basic" = tl."collection-basic"; 9916 - deps."combinedgraphics" = tl."combinedgraphics"; 9917 - deps."curve" = tl."curve"; 9918 - deps."curve2e" = tl."curve2e"; 9919 - deps."curves" = tl."curves"; 9920 - deps."dcpic" = tl."dcpic"; 9921 - deps."diagmac2" = tl."diagmac2"; 9922 - deps."ditaa" = tl."ditaa"; 9923 - deps."doc-pictex" = tl."doc-pictex"; 9924 - deps."dot2texi" = tl."dot2texi"; 9925 - deps."dottex" = tl."dottex"; 9926 - deps."dpcircling" = tl."dpcircling"; 9927 - deps."dratex" = tl."dratex"; 9928 - deps."drs" = tl."drs"; 9929 - deps."duotenzor" = tl."duotenzor"; 9930 - deps."dynkin-diagrams" = tl."dynkin-diagrams"; 9931 - deps."ecgdraw" = tl."ecgdraw"; 9932 - deps."eepic" = tl."eepic"; 9933 - deps."ellipse" = tl."ellipse"; 9934 - deps."endofproofwd" = tl."endofproofwd"; 9935 - deps."epspdf" = tl."epspdf"; 9936 - deps."epspdfconversion" = tl."epspdfconversion"; 9937 - deps."esk" = tl."esk"; 9938 - deps."euflag" = tl."euflag"; 9939 - deps."fast-diagram" = tl."fast-diagram"; 9940 - deps."fig4latex" = tl."fig4latex"; 9941 - deps."figchild" = tl."figchild"; 9942 - deps."figput" = tl."figput"; 9943 - deps."fitbox" = tl."fitbox"; 9944 - deps."flowchart" = tl."flowchart"; 9945 - deps."forest" = tl."forest"; 9946 - deps."genealogytree" = tl."genealogytree"; 9947 - deps."getmap" = tl."getmap"; 9948 - deps."gincltex" = tl."gincltex"; 9949 - deps."gnuplottex" = tl."gnuplottex"; 9950 - deps."gradientframe" = tl."gradientframe"; 9951 - deps."grafcet" = tl."grafcet"; 9952 - deps."graph35" = tl."graph35"; 9953 - deps."graphicxpsd" = tl."graphicxpsd"; 9954 - deps."graphviz" = tl."graphviz"; 9955 - deps."gtrlib-largetrees" = tl."gtrlib-largetrees"; 9956 - deps."harveyballs" = tl."harveyballs"; 9957 - deps."here" = tl."here"; 9958 - deps."hf-tikz" = tl."hf-tikz"; 9959 - deps."hobby" = tl."hobby"; 9960 - deps."hvfloat" = tl."hvfloat"; 9961 - deps."istgame" = tl."istgame"; 9962 - deps."kblocks" = tl."kblocks"; 9963 - deps."kinematikz" = tl."kinematikz"; 9964 - deps."knitting" = tl."knitting"; 9965 - deps."knittingpattern" = tl."knittingpattern"; 9966 - deps."ladder" = tl."ladder"; 9967 - deps."lapdf" = tl."lapdf"; 9968 - deps."latex-make" = tl."latex-make"; 9969 - deps."liftarm" = tl."liftarm"; 9970 - deps."lpic" = tl."lpic"; 9971 - deps."lroundrect" = tl."lroundrect"; 9972 - deps."luamesh" = tl."luamesh"; 9973 - deps."luasseq" = tl."luasseq"; 9974 - deps."maker" = tl."maker"; 9975 - deps."makeshape" = tl."makeshape"; 9976 - deps."mathspic" = tl."mathspic"; 9977 - deps."mercatormap" = tl."mercatormap"; 9978 - deps."milsymb" = tl."milsymb"; 9979 - deps."miniplot" = tl."miniplot"; 9980 - deps."mkpic" = tl."mkpic"; 9981 - deps."modiagram" = tl."modiagram"; 9982 - deps."neuralnetwork" = tl."neuralnetwork"; 9983 - deps."nl-interval" = tl."nl-interval"; 9984 - deps."nndraw" = tl."nndraw"; 9985 - deps."numericplots" = tl."numericplots"; 9986 - deps."pb-diagram" = tl."pb-diagram"; 9987 - deps."penrose" = tl."penrose"; 9988 - deps."petri-nets" = tl."petri-nets"; 9989 - deps."pgf" = tl."pgf"; 9990 - deps."pgf-blur" = tl."pgf-blur"; 9991 - deps."pgf-cmykshadings" = tl."pgf-cmykshadings"; 9992 - deps."pgf-interference" = tl."pgf-interference"; 9993 - deps."pgf-periodictable" = tl."pgf-periodictable"; 9994 - deps."pgf-pie" = tl."pgf-pie"; 9995 - deps."pgf-soroban" = tl."pgf-soroban"; 9996 - deps."pgf-spectra" = tl."pgf-spectra"; 9997 - deps."pgf-umlcd" = tl."pgf-umlcd"; 9998 - deps."pgf-umlsd" = tl."pgf-umlsd"; 9999 - deps."pgfgantt" = tl."pgfgantt"; 10000 - deps."pgfkeyx" = tl."pgfkeyx"; 10001 - deps."pgfmolbio" = tl."pgfmolbio"; 10002 - deps."pgfmorepages" = tl."pgfmorepages"; 10003 - deps."pgfopts" = tl."pgfopts"; 10004 - deps."pgfornament" = tl."pgfornament"; 10005 - deps."pgfplots" = tl."pgfplots"; 10006 - deps."picinpar" = tl."picinpar"; 10007 - deps."pict2e" = tl."pict2e"; 10008 - deps."pictex" = tl."pictex"; 10009 - deps."pictex2" = tl."pictex2"; 10010 - deps."pinlabel" = tl."pinlabel"; 10011 - deps."pixelart" = tl."pixelart"; 10012 - deps."pmgraph" = tl."pmgraph"; 10013 - deps."postage" = tl."postage"; 10014 - deps."prerex" = tl."prerex"; 10015 - deps."productbox" = tl."productbox"; 10016 - deps."ptolemaicastronomy" = tl."ptolemaicastronomy"; 10017 - deps."puyotikz" = tl."puyotikz"; 10018 - deps."pxpgfmark" = tl."pxpgfmark"; 10019 - deps."pxpic" = tl."pxpic"; 10020 - deps."qcircuit" = tl."qcircuit"; 10021 - deps."qrcode" = tl."qrcode"; 10022 - deps."quantikz" = tl."quantikz"; 10023 - deps."randbild" = tl."randbild"; 10024 - deps."randomwalk" = tl."randomwalk"; 10025 - deps."realhats" = tl."realhats"; 10026 - deps."reotex" = tl."reotex"; 10027 - deps."robotarm" = tl."robotarm"; 10028 - deps."rviewport" = tl."rviewport"; 10029 - deps."sa-tikz" = tl."sa-tikz"; 10030 - deps."schemabloc" = tl."schemabloc"; 10031 - deps."scratch" = tl."scratch"; 10032 - deps."scratch3" = tl."scratch3"; 10033 - deps."scsnowman" = tl."scsnowman"; 10034 - deps."setdeck" = tl."setdeck"; 10035 - deps."signchart" = tl."signchart"; 10036 - deps."simplenodes" = tl."simplenodes"; 10037 - deps."simpleoptics" = tl."simpleoptics"; 10038 - deps."smartdiagram" = tl."smartdiagram"; 10039 - deps."spath3" = tl."spath3"; 10040 - deps."spectralsequences" = tl."spectralsequences"; 10041 - deps."strands" = tl."strands"; 10042 - deps."swimgraf" = tl."swimgraf"; 10043 - deps."syntaxdi" = tl."syntaxdi"; 10044 - deps."table-fct" = tl."table-fct"; 10045 - deps."texdraw" = tl."texdraw"; 10046 - deps."ticollege" = tl."ticollege"; 10047 - deps."tikz-3dplot" = tl."tikz-3dplot"; 10048 - deps."tikz-among-us" = tl."tikz-among-us"; 10049 - deps."tikz-bagua" = tl."tikz-bagua"; 10050 - deps."tikz-bayesnet" = tl."tikz-bayesnet"; 10051 - deps."tikz-bbox" = tl."tikz-bbox"; 10052 - deps."tikz-cd" = tl."tikz-cd"; 10053 - deps."tikz-dependency" = tl."tikz-dependency"; 10054 - deps."tikz-dimline" = tl."tikz-dimline"; 10055 - deps."tikz-ext" = tl."tikz-ext"; 10056 - deps."tikz-feynhand" = tl."tikz-feynhand"; 10057 - deps."tikz-feynman" = tl."tikz-feynman"; 10058 - deps."tikz-imagelabels" = tl."tikz-imagelabels"; 10059 - deps."tikz-inet" = tl."tikz-inet"; 10060 - deps."tikz-kalender" = tl."tikz-kalender"; 10061 - deps."tikz-karnaugh" = tl."tikz-karnaugh"; 10062 - deps."tikz-ladder" = tl."tikz-ladder"; 10063 - deps."tikz-lake-fig" = tl."tikz-lake-fig"; 10064 - deps."tikz-layers" = tl."tikz-layers"; 10065 - deps."tikz-mirror-lens" = tl."tikz-mirror-lens"; 10066 - deps."tikz-nef" = tl."tikz-nef"; 10067 - deps."tikz-network" = tl."tikz-network"; 10068 - deps."tikz-opm" = tl."tikz-opm"; 10069 - deps."tikz-optics" = tl."tikz-optics"; 10070 - deps."tikz-page" = tl."tikz-page"; 10071 - deps."tikz-palattice" = tl."tikz-palattice"; 10072 - deps."tikz-planets" = tl."tikz-planets"; 10073 - deps."tikz-qtree" = tl."tikz-qtree"; 10074 - deps."tikz-relay" = tl."tikz-relay"; 10075 - deps."tikz-sfc" = tl."tikz-sfc"; 10076 - deps."tikz-swigs" = tl."tikz-swigs"; 10077 - deps."tikz-timing" = tl."tikz-timing"; 10078 - deps."tikz-trackschematic" = tl."tikz-trackschematic"; 10079 - deps."tikz-truchet" = tl."tikz-truchet"; 10080 - deps."tikzbricks" = tl."tikzbricks"; 10081 - deps."tikzcodeblocks" = tl."tikzcodeblocks"; 10082 - deps."tikzducks" = tl."tikzducks"; 10083 - deps."tikzfill" = tl."tikzfill"; 10084 - deps."tikzinclude" = tl."tikzinclude"; 10085 - deps."tikzlings" = tl."tikzlings"; 10086 - deps."tikzmark" = tl."tikzmark"; 10087 - deps."tikzmarmots" = tl."tikzmarmots"; 10088 - deps."tikzorbital" = tl."tikzorbital"; 10089 - deps."tikzpackets" = tl."tikzpackets"; 10090 - deps."tikzpagenodes" = tl."tikzpagenodes"; 10091 - deps."tikzpeople" = tl."tikzpeople"; 10092 - deps."tikzpfeile" = tl."tikzpfeile"; 10093 - deps."tikzpingus" = tl."tikzpingus"; 10094 - deps."tikzposter" = tl."tikzposter"; 10095 - deps."tikzscale" = tl."tikzscale"; 10096 - deps."tikzsymbols" = tl."tikzsymbols"; 10097 - deps."tikztosvg" = tl."tikztosvg"; 10098 - deps."tile-graphic" = tl."tile-graphic"; 10099 - deps."timing-diagrams" = tl."timing-diagrams"; 10100 - deps."tipfr" = tl."tipfr"; 10101 - deps."tkz-base" = tl."tkz-base"; 10102 - deps."tkz-berge" = tl."tkz-berge"; 10103 - deps."tkz-doc" = tl."tkz-doc"; 10104 - deps."tkz-euclide" = tl."tkz-euclide"; 10105 - deps."tkz-fct" = tl."tkz-fct"; 10106 - deps."tkz-graph" = tl."tkz-graph"; 10107 - deps."tkz-orm" = tl."tkz-orm"; 10108 - deps."tkz-tab" = tl."tkz-tab"; 10109 - deps."tkzexample" = tl."tkzexample"; 10110 - deps."tonevalue" = tl."tonevalue"; 10111 - deps."tqft" = tl."tqft"; 10112 - deps."tsemlines" = tl."tsemlines"; 10113 - deps."tufte-latex" = tl."tufte-latex"; 10114 - deps."twemojis" = tl."twemojis"; 10115 - deps."tzplot" = tl."tzplot"; 10116 - deps."utfsym" = tl."utfsym"; 10117 - deps."venndiagram" = tl."venndiagram"; 10118 - deps."visualpstricks" = tl."visualpstricks"; 10119 - deps."wheelchart" = tl."wheelchart"; 10120 - deps."worldflags" = tl."worldflags"; 10121 - deps."xistercian" = tl."xistercian"; 10122 - deps."xpicture" = tl."xpicture"; 10123 - deps."xput" = tl."xput"; 10124 - deps."xypic" = tl."xypic"; 10003 + deps = [ 10004 + "adigraph" 10005 + "aobs-tikz" 10006 + "askmaps" 10007 + "asyfig" 10008 + "asypictureb" 10009 + "autoarea" 10010 + "bardiag" 10011 + "beamerswitch" 10012 + "binarytree" 10013 + "blochsphere" 10014 + "bloques" 10015 + "blox" 10016 + "bodegraph" 10017 + "bondgraph" 10018 + "bondgraphs" 10019 + "braids" 10020 + "bxeepic" 10021 + "byo-twemojis" 10022 + "byrne" 10023 + "cachepic" 10024 + "callouts" 10025 + "celtic" 10026 + "chemfig" 10027 + "circuit-macros" 10028 + "circuitikz" 10029 + "coffeestains" 10030 + "collection-basic" 10031 + "combinedgraphics" 10032 + "curve" 10033 + "curve2e" 10034 + "curves" 10035 + "dcpic" 10036 + "diagmac2" 10037 + "ditaa" 10038 + "doc-pictex" 10039 + "dot2texi" 10040 + "dottex" 10041 + "dpcircling" 10042 + "dratex" 10043 + "drs" 10044 + "duotenzor" 10045 + "dynkin-diagrams" 10046 + "ecgdraw" 10047 + "eepic" 10048 + "ellipse" 10049 + "endofproofwd" 10050 + "epspdf" 10051 + "epspdfconversion" 10052 + "esk" 10053 + "euflag" 10054 + "fast-diagram" 10055 + "fig4latex" 10056 + "figchild" 10057 + "figput" 10058 + "fitbox" 10059 + "flowchart" 10060 + "forest" 10061 + "genealogytree" 10062 + "getmap" 10063 + "gincltex" 10064 + "gnuplottex" 10065 + "gradientframe" 10066 + "grafcet" 10067 + "graph35" 10068 + "graphicxpsd" 10069 + "graphviz" 10070 + "gtrlib-largetrees" 10071 + "harveyballs" 10072 + "here" 10073 + "hf-tikz" 10074 + "hobby" 10075 + "hvfloat" 10076 + "istgame" 10077 + "kblocks" 10078 + "kinematikz" 10079 + "knitting" 10080 + "knittingpattern" 10081 + "ladder" 10082 + "lapdf" 10083 + "latex-make" 10084 + "liftarm" 10085 + "lpic" 10086 + "lroundrect" 10087 + "luamesh" 10088 + "luasseq" 10089 + "maker" 10090 + "makeshape" 10091 + "mathspic" 10092 + "mercatormap" 10093 + "milsymb" 10094 + "miniplot" 10095 + "mkpic" 10096 + "modiagram" 10097 + "neuralnetwork" 10098 + "nl-interval" 10099 + "nndraw" 10100 + "numericplots" 10101 + "pb-diagram" 10102 + "penrose" 10103 + "petri-nets" 10104 + "pgf" 10105 + "pgf-blur" 10106 + "pgf-cmykshadings" 10107 + "pgf-interference" 10108 + "pgf-periodictable" 10109 + "pgf-pie" 10110 + "pgf-soroban" 10111 + "pgf-spectra" 10112 + "pgf-umlcd" 10113 + "pgf-umlsd" 10114 + "pgfgantt" 10115 + "pgfkeyx" 10116 + "pgfmolbio" 10117 + "pgfmorepages" 10118 + "pgfopts" 10119 + "pgfornament" 10120 + "pgfplots" 10121 + "picinpar" 10122 + "pict2e" 10123 + "pictex" 10124 + "pictex2" 10125 + "pinlabel" 10126 + "pixelart" 10127 + "pmgraph" 10128 + "postage" 10129 + "prerex" 10130 + "productbox" 10131 + "ptolemaicastronomy" 10132 + "puyotikz" 10133 + "pxpgfmark" 10134 + "pxpic" 10135 + "qcircuit" 10136 + "qrcode" 10137 + "quantikz" 10138 + "randbild" 10139 + "randomwalk" 10140 + "realhats" 10141 + "reotex" 10142 + "robotarm" 10143 + "rviewport" 10144 + "sa-tikz" 10145 + "schemabloc" 10146 + "scratch" 10147 + "scratch3" 10148 + "scsnowman" 10149 + "setdeck" 10150 + "signchart" 10151 + "simplenodes" 10152 + "simpleoptics" 10153 + "smartdiagram" 10154 + "spath3" 10155 + "spectralsequences" 10156 + "strands" 10157 + "swimgraf" 10158 + "syntaxdi" 10159 + "table-fct" 10160 + "texdraw" 10161 + "ticollege" 10162 + "tikz-3dplot" 10163 + "tikz-among-us" 10164 + "tikz-bagua" 10165 + "tikz-bayesnet" 10166 + "tikz-bbox" 10167 + "tikz-cd" 10168 + "tikz-dependency" 10169 + "tikz-dimline" 10170 + "tikz-ext" 10171 + "tikz-feynhand" 10172 + "tikz-feynman" 10173 + "tikz-imagelabels" 10174 + "tikz-inet" 10175 + "tikz-kalender" 10176 + "tikz-karnaugh" 10177 + "tikz-ladder" 10178 + "tikz-lake-fig" 10179 + "tikz-layers" 10180 + "tikz-mirror-lens" 10181 + "tikz-nef" 10182 + "tikz-network" 10183 + "tikz-opm" 10184 + "tikz-optics" 10185 + "tikz-page" 10186 + "tikz-palattice" 10187 + "tikz-planets" 10188 + "tikz-qtree" 10189 + "tikz-relay" 10190 + "tikz-sfc" 10191 + "tikz-swigs" 10192 + "tikz-timing" 10193 + "tikz-trackschematic" 10194 + "tikz-truchet" 10195 + "tikzbricks" 10196 + "tikzcodeblocks" 10197 + "tikzducks" 10198 + "tikzfill" 10199 + "tikzinclude" 10200 + "tikzlings" 10201 + "tikzmark" 10202 + "tikzmarmots" 10203 + "tikzorbital" 10204 + "tikzpackets" 10205 + "tikzpagenodes" 10206 + "tikzpeople" 10207 + "tikzpfeile" 10208 + "tikzpingus" 10209 + "tikzposter" 10210 + "tikzscale" 10211 + "tikzsymbols" 10212 + "tikztosvg" 10213 + "tile-graphic" 10214 + "timing-diagrams" 10215 + "tipfr" 10216 + "tkz-base" 10217 + "tkz-berge" 10218 + "tkz-doc" 10219 + "tkz-euclide" 10220 + "tkz-fct" 10221 + "tkz-graph" 10222 + "tkz-orm" 10223 + "tkz-tab" 10224 + "tkzexample" 10225 + "tonevalue" 10226 + "tqft" 10227 + "tsemlines" 10228 + "tufte-latex" 10229 + "twemojis" 10230 + "tzplot" 10231 + "utfsym" 10232 + "venndiagram" 10233 + "visualpstricks" 10234 + "wheelchart" 10235 + "worldflags" 10236 + "xistercian" 10237 + "xpicture" 10238 + "xput" 10239 + "xypic" 10240 + ]; 10125 10241 sha512.run = "cad55c99deb26ad1a6f12c60d5a7a0b35f250bad69f982e74163b9bbf027483104914989540c8169a05cdf0f5a853259c00c816ccddf858d0a970fc8b3eca9f9"; 10126 10242 }; 10127 10243 "collection-plaingeneric" = { 10128 10244 revision = 65277; 10129 10245 stripPrefix = 0; 10130 - deps."abbr" = tl."abbr"; 10131 - deps."abstyles" = tl."abstyles"; 10132 - deps."apnum" = tl."apnum"; 10133 - deps."autoaligne" = tl."autoaligne"; 10134 - deps."barr" = tl."barr"; 10135 - deps."bitelist" = tl."bitelist"; 10136 - deps."borceux" = tl."borceux"; 10137 - deps."c-pascal" = tl."c-pascal"; 10138 - deps."catcodes" = tl."catcodes"; 10139 - deps."chronosys" = tl."chronosys"; 10140 - deps."collection-basic" = tl."collection-basic"; 10141 - deps."colorsep" = tl."colorsep"; 10142 - deps."compare" = tl."compare"; 10143 - deps."crossrefenum" = tl."crossrefenum"; 10144 - deps."cweb-old" = tl."cweb-old"; 10145 - deps."dinat" = tl."dinat"; 10146 - deps."dirtree" = tl."dirtree"; 10147 - deps."docbytex" = tl."docbytex"; 10148 - deps."dowith" = tl."dowith"; 10149 - deps."eijkhout" = tl."eijkhout"; 10150 - deps."encxvlna" = tl."encxvlna"; 10151 - deps."epigram" = tl."epigram"; 10152 - deps."epsf" = tl."epsf"; 10153 - deps."epsf-dvipdfmx" = tl."epsf-dvipdfmx"; 10154 - deps."expex-acro" = tl."expex-acro"; 10155 - deps."expkv" = tl."expkv"; 10156 - deps."expkv-cs" = tl."expkv-cs"; 10157 - deps."expkv-def" = tl."expkv-def"; 10158 - deps."expkv-opt" = tl."expkv-opt"; 10159 - deps."fenixpar" = tl."fenixpar"; 10160 - deps."figflow" = tl."figflow"; 10161 - deps."fixpdfmag" = tl."fixpdfmag"; 10162 - deps."fltpoint" = tl."fltpoint"; 10163 - deps."fntproof" = tl."fntproof"; 10164 - deps."font-change" = tl."font-change"; 10165 - deps."fontch" = tl."fontch"; 10166 - deps."fontname" = tl."fontname"; 10167 - deps."gates" = tl."gates"; 10168 - deps."getoptk" = tl."getoptk"; 10169 - deps."gfnotation" = tl."gfnotation"; 10170 - deps."gobble" = tl."gobble"; 10171 - deps."graphics-pln" = tl."graphics-pln"; 10172 - deps."gtl" = tl."gtl"; 10173 - deps."hlist" = tl."hlist"; 10174 - deps."hyplain" = tl."hyplain"; 10175 - deps."inputnormalization" = tl."inputnormalization"; 10176 - deps."insbox" = tl."insbox"; 10177 - deps."js-misc" = tl."js-misc"; 10178 - deps."kastrup" = tl."kastrup"; 10179 - deps."lambda-lists" = tl."lambda-lists"; 10180 - deps."langcode" = tl."langcode"; 10181 - deps."lecturer" = tl."lecturer"; 10182 - deps."letterspacing" = tl."letterspacing"; 10183 - deps."librarian" = tl."librarian"; 10184 - deps."listofitems" = tl."listofitems"; 10185 - deps."localloc" = tl."localloc"; 10186 - deps."mathdots" = tl."mathdots"; 10187 - deps."metatex" = tl."metatex"; 10188 - deps."midnight" = tl."midnight"; 10189 - deps."mkpattern" = tl."mkpattern"; 10190 - deps."modulus" = tl."modulus"; 10191 - deps."multido" = tl."multido"; 10192 - deps."namedef" = tl."namedef"; 10193 - deps."navigator" = tl."navigator"; 10194 - deps."newsletr" = tl."newsletr"; 10195 - deps."nth" = tl."nth"; 10196 - deps."ofs" = tl."ofs"; 10197 - deps."olsak-misc" = tl."olsak-misc"; 10198 - deps."outerhbox" = tl."outerhbox"; 10199 - deps."path" = tl."path"; 10200 - deps."pdf-trans" = tl."pdf-trans"; 10201 - deps."pdfmsym" = tl."pdfmsym"; 10202 - deps."pitex" = tl."pitex"; 10203 - deps."placeins-plain" = tl."placeins-plain"; 10204 - deps."plainpkg" = tl."plainpkg"; 10205 - deps."plipsum" = tl."plipsum"; 10206 - deps."plnfss" = tl."plnfss"; 10207 - deps."plstmary" = tl."plstmary"; 10208 - deps."poormanlog" = tl."poormanlog"; 10209 - deps."present" = tl."present"; 10210 - deps."pwebmac" = tl."pwebmac"; 10211 - deps."random" = tl."random"; 10212 - deps."randomlist" = tl."randomlist"; 10213 - deps."resumemac" = tl."resumemac"; 10214 - deps."ruler" = tl."ruler"; 10215 - deps."schemata" = tl."schemata"; 10216 - deps."shade" = tl."shade"; 10217 - deps."simplekv" = tl."simplekv"; 10218 - deps."soul" = tl."soul"; 10219 - deps."swrule" = tl."swrule"; 10220 - deps."systeme" = tl."systeme"; 10221 - deps."tabto-generic" = tl."tabto-generic"; 10222 - deps."termmenu" = tl."termmenu"; 10223 - deps."tex-ps" = tl."tex-ps"; 10224 - deps."tex4ht" = tl."tex4ht"; 10225 - deps."texapi" = tl."texapi"; 10226 - deps."texdate" = tl."texdate"; 10227 - deps."texdimens" = tl."texdimens"; 10228 - deps."texinfo" = tl."texinfo"; 10229 - deps."timetable" = tl."timetable"; 10230 - deps."tracklang" = tl."tracklang"; 10231 - deps."transparent-io" = tl."transparent-io"; 10232 - deps."treetex" = tl."treetex"; 10233 - deps."trigonometry" = tl."trigonometry"; 10234 - deps."ulem" = tl."ulem"; 10235 - deps."upca" = tl."upca"; 10236 - deps."varisize" = tl."varisize"; 10237 - deps."xii" = tl."xii"; 10238 - deps."xii-lat" = tl."xii-lat"; 10239 - deps."xintsession" = tl."xintsession"; 10240 - deps."xlop" = tl."xlop"; 10241 - deps."yax" = tl."yax"; 10242 - deps."zztex" = tl."zztex"; 10246 + deps = [ 10247 + "abbr" 10248 + "abstyles" 10249 + "apnum" 10250 + "autoaligne" 10251 + "barr" 10252 + "bitelist" 10253 + "borceux" 10254 + "c-pascal" 10255 + "catcodes" 10256 + "chronosys" 10257 + "collection-basic" 10258 + "colorsep" 10259 + "compare" 10260 + "crossrefenum" 10261 + "cweb-old" 10262 + "dinat" 10263 + "dirtree" 10264 + "docbytex" 10265 + "dowith" 10266 + "eijkhout" 10267 + "encxvlna" 10268 + "epigram" 10269 + "epsf" 10270 + "epsf-dvipdfmx" 10271 + "expex-acro" 10272 + "expkv" 10273 + "expkv-cs" 10274 + "expkv-def" 10275 + "expkv-opt" 10276 + "fenixpar" 10277 + "figflow" 10278 + "fixpdfmag" 10279 + "fltpoint" 10280 + "fntproof" 10281 + "font-change" 10282 + "fontch" 10283 + "fontname" 10284 + "gates" 10285 + "getoptk" 10286 + "gfnotation" 10287 + "gobble" 10288 + "graphics-pln" 10289 + "gtl" 10290 + "hlist" 10291 + "hyplain" 10292 + "inputnormalization" 10293 + "insbox" 10294 + "js-misc" 10295 + "kastrup" 10296 + "lambda-lists" 10297 + "langcode" 10298 + "lecturer" 10299 + "letterspacing" 10300 + "librarian" 10301 + "listofitems" 10302 + "localloc" 10303 + "mathdots" 10304 + "metatex" 10305 + "midnight" 10306 + "mkpattern" 10307 + "modulus" 10308 + "multido" 10309 + "namedef" 10310 + "navigator" 10311 + "newsletr" 10312 + "nth" 10313 + "ofs" 10314 + "olsak-misc" 10315 + "outerhbox" 10316 + "path" 10317 + "pdf-trans" 10318 + "pdfmsym" 10319 + "pitex" 10320 + "placeins-plain" 10321 + "plainpkg" 10322 + "plipsum" 10323 + "plnfss" 10324 + "plstmary" 10325 + "poormanlog" 10326 + "present" 10327 + "pwebmac" 10328 + "random" 10329 + "randomlist" 10330 + "resumemac" 10331 + "ruler" 10332 + "schemata" 10333 + "shade" 10334 + "simplekv" 10335 + "soul" 10336 + "swrule" 10337 + "systeme" 10338 + "tabto-generic" 10339 + "termmenu" 10340 + "tex-ps" 10341 + "tex4ht" 10342 + "texapi" 10343 + "texdate" 10344 + "texdimens" 10345 + "texinfo" 10346 + "timetable" 10347 + "tracklang" 10348 + "transparent-io" 10349 + "treetex" 10350 + "trigonometry" 10351 + "ulem" 10352 + "upca" 10353 + "varisize" 10354 + "xii" 10355 + "xii-lat" 10356 + "xintsession" 10357 + "xlop" 10358 + "yax" 10359 + "zztex" 10360 + ]; 10243 10361 sha512.run = "6a6e3140f67c0903ba5a50cb0a127c3e64e0b9d0c55d2e732e5906ca6572f1122d8e79787da7c19326bfb4839782178f937775dc562b39fb9d11c8dac9c3b0bd"; 10244 10362 }; 10245 10363 "collection-pstricks" = { 10246 10364 revision = 65367; 10247 10365 stripPrefix = 0; 10248 - deps."auto-pst-pdf" = tl."auto-pst-pdf"; 10249 - deps."bclogo" = tl."bclogo"; 10250 - deps."collection-basic" = tl."collection-basic"; 10251 - deps."collection-plaingeneric" = tl."collection-plaingeneric"; 10252 - deps."dsptricks" = tl."dsptricks"; 10253 - deps."luapstricks" = tl."luapstricks"; 10254 - deps."makeplot" = tl."makeplot"; 10255 - deps."pdftricks" = tl."pdftricks"; 10256 - deps."pdftricks2" = tl."pdftricks2"; 10257 - deps."pedigree-perl" = tl."pedigree-perl"; 10258 - deps."psbao" = tl."psbao"; 10259 - deps."pst-2dplot" = tl."pst-2dplot"; 10260 - deps."pst-3d" = tl."pst-3d"; 10261 - deps."pst-3dplot" = tl."pst-3dplot"; 10262 - deps."pst-abspos" = tl."pst-abspos"; 10263 - deps."pst-am" = tl."pst-am"; 10264 - deps."pst-antiprism" = tl."pst-antiprism"; 10265 - deps."pst-arrow" = tl."pst-arrow"; 10266 - deps."pst-asr" = tl."pst-asr"; 10267 - deps."pst-bar" = tl."pst-bar"; 10268 - deps."pst-barcode" = tl."pst-barcode"; 10269 - deps."pst-bezier" = tl."pst-bezier"; 10270 - deps."pst-blur" = tl."pst-blur"; 10271 - deps."pst-bspline" = tl."pst-bspline"; 10272 - deps."pst-calculate" = tl."pst-calculate"; 10273 - deps."pst-calendar" = tl."pst-calendar"; 10274 - deps."pst-cie" = tl."pst-cie"; 10275 - deps."pst-circ" = tl."pst-circ"; 10276 - deps."pst-coil" = tl."pst-coil"; 10277 - deps."pst-contourplot" = tl."pst-contourplot"; 10278 - deps."pst-cox" = tl."pst-cox"; 10279 - deps."pst-dart" = tl."pst-dart"; 10280 - deps."pst-dbicons" = tl."pst-dbicons"; 10281 - deps."pst-diffraction" = tl."pst-diffraction"; 10282 - deps."pst-electricfield" = tl."pst-electricfield"; 10283 - deps."pst-eps" = tl."pst-eps"; 10284 - deps."pst-eucl" = tl."pst-eucl"; 10285 - deps."pst-exa" = tl."pst-exa"; 10286 - deps."pst-feyn" = tl."pst-feyn"; 10287 - deps."pst-fill" = tl."pst-fill"; 10288 - deps."pst-fit" = tl."pst-fit"; 10289 - deps."pst-flags" = tl."pst-flags"; 10290 - deps."pst-fr3d" = tl."pst-fr3d"; 10291 - deps."pst-fractal" = tl."pst-fractal"; 10292 - deps."pst-fun" = tl."pst-fun"; 10293 - deps."pst-func" = tl."pst-func"; 10294 - deps."pst-gantt" = tl."pst-gantt"; 10295 - deps."pst-geo" = tl."pst-geo"; 10296 - deps."pst-geometrictools" = tl."pst-geometrictools"; 10297 - deps."pst-gr3d" = tl."pst-gr3d"; 10298 - deps."pst-grad" = tl."pst-grad"; 10299 - deps."pst-graphicx" = tl."pst-graphicx"; 10300 - deps."pst-hsb" = tl."pst-hsb"; 10301 - deps."pst-infixplot" = tl."pst-infixplot"; 10302 - deps."pst-intersect" = tl."pst-intersect"; 10303 - deps."pst-jtree" = tl."pst-jtree"; 10304 - deps."pst-knot" = tl."pst-knot"; 10305 - deps."pst-labo" = tl."pst-labo"; 10306 - deps."pst-layout" = tl."pst-layout"; 10307 - deps."pst-lens" = tl."pst-lens"; 10308 - deps."pst-light3d" = tl."pst-light3d"; 10309 - deps."pst-lsystem" = tl."pst-lsystem"; 10310 - deps."pst-magneticfield" = tl."pst-magneticfield"; 10311 - deps."pst-marble" = tl."pst-marble"; 10312 - deps."pst-math" = tl."pst-math"; 10313 - deps."pst-mirror" = tl."pst-mirror"; 10314 - deps."pst-moire" = tl."pst-moire"; 10315 - deps."pst-node" = tl."pst-node"; 10316 - deps."pst-ob3d" = tl."pst-ob3d"; 10317 - deps."pst-ode" = tl."pst-ode"; 10318 - deps."pst-optexp" = tl."pst-optexp"; 10319 - deps."pst-optic" = tl."pst-optic"; 10320 - deps."pst-osci" = tl."pst-osci"; 10321 - deps."pst-ovl" = tl."pst-ovl"; 10322 - deps."pst-pad" = tl."pst-pad"; 10323 - deps."pst-pdf" = tl."pst-pdf"; 10324 - deps."pst-pdgr" = tl."pst-pdgr"; 10325 - deps."pst-perspective" = tl."pst-perspective"; 10326 - deps."pst-platon" = tl."pst-platon"; 10327 - deps."pst-plot" = tl."pst-plot"; 10328 - deps."pst-poker" = tl."pst-poker"; 10329 - deps."pst-poly" = tl."pst-poly"; 10330 - deps."pst-pulley" = tl."pst-pulley"; 10331 - deps."pst-qtree" = tl."pst-qtree"; 10332 - deps."pst-rputover" = tl."pst-rputover"; 10333 - deps."pst-rubans" = tl."pst-rubans"; 10334 - deps."pst-shell" = tl."pst-shell"; 10335 - deps."pst-sigsys" = tl."pst-sigsys"; 10336 - deps."pst-slpe" = tl."pst-slpe"; 10337 - deps."pst-solarsystem" = tl."pst-solarsystem"; 10338 - deps."pst-solides3d" = tl."pst-solides3d"; 10339 - deps."pst-soroban" = tl."pst-soroban"; 10340 - deps."pst-spectra" = tl."pst-spectra"; 10341 - deps."pst-spinner" = tl."pst-spinner"; 10342 - deps."pst-stru" = tl."pst-stru"; 10343 - deps."pst-support" = tl."pst-support"; 10344 - deps."pst-text" = tl."pst-text"; 10345 - deps."pst-thick" = tl."pst-thick"; 10346 - deps."pst-tools" = tl."pst-tools"; 10347 - deps."pst-tree" = tl."pst-tree"; 10348 - deps."pst-turtle" = tl."pst-turtle"; 10349 - deps."pst-tvz" = tl."pst-tvz"; 10350 - deps."pst-uml" = tl."pst-uml"; 10351 - deps."pst-vectorian" = tl."pst-vectorian"; 10352 - deps."pst-vehicle" = tl."pst-vehicle"; 10353 - deps."pst-venn" = tl."pst-venn"; 10354 - deps."pst-vowel" = tl."pst-vowel"; 10355 - deps."pst2pdf" = tl."pst2pdf"; 10356 - deps."pstricks" = tl."pstricks"; 10357 - deps."pstricks-add" = tl."pstricks-add"; 10358 - deps."pstricks_calcnotes" = tl."pstricks_calcnotes"; 10359 - deps."uml" = tl."uml"; 10360 - deps."vaucanson-g" = tl."vaucanson-g"; 10361 - deps."vocaltract" = tl."vocaltract"; 10366 + deps = [ 10367 + "auto-pst-pdf" 10368 + "bclogo" 10369 + "collection-basic" 10370 + "collection-plaingeneric" 10371 + "dsptricks" 10372 + "luapstricks" 10373 + "makeplot" 10374 + "pdftricks" 10375 + "pdftricks2" 10376 + "pedigree-perl" 10377 + "psbao" 10378 + "pst-2dplot" 10379 + "pst-3d" 10380 + "pst-3dplot" 10381 + "pst-abspos" 10382 + "pst-am" 10383 + "pst-antiprism" 10384 + "pst-arrow" 10385 + "pst-asr" 10386 + "pst-bar" 10387 + "pst-barcode" 10388 + "pst-bezier" 10389 + "pst-blur" 10390 + "pst-bspline" 10391 + "pst-calculate" 10392 + "pst-calendar" 10393 + "pst-cie" 10394 + "pst-circ" 10395 + "pst-coil" 10396 + "pst-contourplot" 10397 + "pst-cox" 10398 + "pst-dart" 10399 + "pst-dbicons" 10400 + "pst-diffraction" 10401 + "pst-electricfield" 10402 + "pst-eps" 10403 + "pst-eucl" 10404 + "pst-exa" 10405 + "pst-feyn" 10406 + "pst-fill" 10407 + "pst-fit" 10408 + "pst-flags" 10409 + "pst-fr3d" 10410 + "pst-fractal" 10411 + "pst-fun" 10412 + "pst-func" 10413 + "pst-gantt" 10414 + "pst-geo" 10415 + "pst-geometrictools" 10416 + "pst-gr3d" 10417 + "pst-grad" 10418 + "pst-graphicx" 10419 + "pst-hsb" 10420 + "pst-infixplot" 10421 + "pst-intersect" 10422 + "pst-jtree" 10423 + "pst-knot" 10424 + "pst-labo" 10425 + "pst-layout" 10426 + "pst-lens" 10427 + "pst-light3d" 10428 + "pst-lsystem" 10429 + "pst-magneticfield" 10430 + "pst-marble" 10431 + "pst-math" 10432 + "pst-mirror" 10433 + "pst-moire" 10434 + "pst-node" 10435 + "pst-ob3d" 10436 + "pst-ode" 10437 + "pst-optexp" 10438 + "pst-optic" 10439 + "pst-osci" 10440 + "pst-ovl" 10441 + "pst-pad" 10442 + "pst-pdf" 10443 + "pst-pdgr" 10444 + "pst-perspective" 10445 + "pst-platon" 10446 + "pst-plot" 10447 + "pst-poker" 10448 + "pst-poly" 10449 + "pst-pulley" 10450 + "pst-qtree" 10451 + "pst-rputover" 10452 + "pst-rubans" 10453 + "pst-shell" 10454 + "pst-sigsys" 10455 + "pst-slpe" 10456 + "pst-solarsystem" 10457 + "pst-solides3d" 10458 + "pst-soroban" 10459 + "pst-spectra" 10460 + "pst-spinner" 10461 + "pst-stru" 10462 + "pst-support" 10463 + "pst-text" 10464 + "pst-thick" 10465 + "pst-tools" 10466 + "pst-tree" 10467 + "pst-turtle" 10468 + "pst-tvz" 10469 + "pst-uml" 10470 + "pst-vectorian" 10471 + "pst-vehicle" 10472 + "pst-venn" 10473 + "pst-vowel" 10474 + "pst2pdf" 10475 + "pstricks" 10476 + "pstricks-add" 10477 + "pstricks_calcnotes" 10478 + "uml" 10479 + "vaucanson-g" 10480 + "vocaltract" 10481 + ]; 10362 10482 sha512.run = "508276fe37018f3d9773fc7cda0cb37edcdd28e9cf8ab54ed5be16b07c2066de4626a561bbe387c7bba0fb82d4102be406efd721a4b5dc90110b8560083d2b07"; 10363 10483 }; 10364 10484 "collection-publishers" = { 10365 10485 revision = 65221; 10366 10486 stripPrefix = 0; 10367 - deps."aastex" = tl."aastex"; 10368 - deps."abnt" = tl."abnt"; 10369 - deps."abntex2" = tl."abntex2"; 10370 - deps."abntexto" = tl."abntexto"; 10371 - deps."acmart" = tl."acmart"; 10372 - deps."acmconf" = tl."acmconf"; 10373 - deps."active-conf" = tl."active-conf"; 10374 - deps."adfathesis" = tl."adfathesis"; 10375 - deps."afparticle" = tl."afparticle"; 10376 - deps."afthesis" = tl."afthesis"; 10377 - deps."aguplus" = tl."aguplus"; 10378 - deps."aiaa" = tl."aiaa"; 10379 - deps."anonymous-acm" = tl."anonymous-acm"; 10380 - deps."anufinalexam" = tl."anufinalexam"; 10381 - deps."aomart" = tl."aomart"; 10382 - deps."apa" = tl."apa"; 10383 - deps."apa6" = tl."apa6"; 10384 - deps."apa6e" = tl."apa6e"; 10385 - deps."apa7" = tl."apa7"; 10386 - deps."arsclassica" = tl."arsclassica"; 10387 - deps."articleingud" = tl."articleingud"; 10388 - deps."asaetr" = tl."asaetr"; 10389 - deps."ascelike" = tl."ascelike"; 10390 - deps."asmeconf" = tl."asmeconf"; 10391 - deps."asmejour" = tl."asmejour"; 10392 - deps."aucklandthesis" = tl."aucklandthesis"; 10393 - deps."bangorcsthesis" = tl."bangorcsthesis"; 10394 - deps."bangorexam" = tl."bangorexam"; 10395 - deps."bath-bst" = tl."bath-bst"; 10396 - deps."beamer-fuberlin" = tl."beamer-fuberlin"; 10397 - deps."beamer-verona" = tl."beamer-verona"; 10398 - deps."beilstein" = tl."beilstein"; 10399 - deps."bfh-ci" = tl."bfh-ci"; 10400 - deps."bgteubner" = tl."bgteubner"; 10401 - deps."bjfuthesis" = tl."bjfuthesis"; 10402 - deps."bmstu" = tl."bmstu"; 10403 - deps."bmstu-iu8" = tl."bmstu-iu8"; 10404 - deps."br-lex" = tl."br-lex"; 10405 - deps."brandeis-dissertation" = tl."brandeis-dissertation"; 10406 - deps."brandeis-problemset" = tl."brandeis-problemset"; 10407 - deps."brandeis-thesis" = tl."brandeis-thesis"; 10408 - deps."buctthesis" = tl."buctthesis"; 10409 - deps."cascadilla" = tl."cascadilla"; 10410 - deps."cesenaexam" = tl."cesenaexam"; 10411 - deps."chem-journal" = tl."chem-journal"; 10412 - deps."chifoot" = tl."chifoot"; 10413 - deps."chs-physics-report" = tl."chs-physics-report"; 10414 - deps."cje" = tl."cje"; 10415 - deps."classicthesis" = tl."classicthesis"; 10416 - deps."cleanthesis" = tl."cleanthesis"; 10417 - deps."cmpj" = tl."cmpj"; 10418 - deps."collection-latex" = tl."collection-latex"; 10419 - deps."confproc" = tl."confproc"; 10420 - deps."cquthesis" = tl."cquthesis"; 10421 - deps."dccpaper" = tl."dccpaper"; 10422 - deps."dithesis" = tl."dithesis"; 10423 - deps."ebook" = tl."ebook"; 10424 - deps."ebsthesis" = tl."ebsthesis"; 10425 - deps."ecothesis" = tl."ecothesis"; 10426 - deps."ejpecp" = tl."ejpecp"; 10427 - deps."ekaia" = tl."ekaia"; 10428 - deps."elbioimp" = tl."elbioimp"; 10429 - deps."els-cas-templates" = tl."els-cas-templates"; 10430 - deps."elsarticle" = tl."elsarticle"; 10431 - deps."elteikthesis" = tl."elteikthesis"; 10432 - deps."emisa" = tl."emisa"; 10433 - deps."erdc" = tl."erdc"; 10434 - deps."estcpmm" = tl."estcpmm"; 10435 - deps."etsvthor" = tl."etsvthor"; 10436 - deps."facture-belge-simple-sans-tva" = tl."facture-belge-simple-sans-tva"; 10437 - deps."fbithesis" = tl."fbithesis"; 10438 - deps."fcavtex" = tl."fcavtex"; 10439 - deps."fcltxdoc" = tl."fcltxdoc"; 10440 - deps."fei" = tl."fei"; 10441 - deps."ftc-notebook" = tl."ftc-notebook"; 10442 - deps."gaceta" = tl."gaceta"; 10443 - deps."gammas" = tl."gammas"; 10444 - deps."geradwp" = tl."geradwp"; 10445 - deps."gradstudentresume" = tl."gradstudentresume"; 10446 - deps."grant" = tl."grant"; 10447 - deps."gsemthesis" = tl."gsemthesis"; 10448 - deps."gzt" = tl."gzt"; 10449 - deps."h2020proposal" = tl."h2020proposal"; 10450 - deps."hagenberg-thesis" = tl."hagenberg-thesis"; 10451 - deps."har2nat" = tl."har2nat"; 10452 - deps."hecthese" = tl."hecthese"; 10453 - deps."hep-paper" = tl."hep-paper"; 10454 - deps."hfutexam" = tl."hfutexam"; 10455 - deps."hfutthesis" = tl."hfutthesis"; 10456 - deps."hithesis" = tl."hithesis"; 10457 - deps."hitszbeamer" = tl."hitszbeamer"; 10458 - deps."hitszthesis" = tl."hitszthesis"; 10459 - deps."hobete" = tl."hobete"; 10460 - deps."hu-berlin-bundle" = tl."hu-berlin-bundle"; 10461 - deps."hustthesis" = tl."hustthesis"; 10462 - deps."icsv" = tl."icsv"; 10463 - deps."ieeeconf" = tl."ieeeconf"; 10464 - deps."ieeepes" = tl."ieeepes"; 10465 - deps."ieeetran" = tl."ieeetran"; 10466 - deps."ijmart" = tl."ijmart"; 10467 - deps."ijsra" = tl."ijsra"; 10468 - deps."imac" = tl."imac"; 10469 - deps."imtekda" = tl."imtekda"; 10470 - deps."inkpaper" = tl."inkpaper"; 10471 - deps."iodhbwm" = tl."iodhbwm"; 10472 - deps."iscram" = tl."iscram"; 10473 - deps."jacow" = tl."jacow"; 10474 - deps."jmlr" = tl."jmlr"; 10475 - deps."jnuexam" = tl."jnuexam"; 10476 - deps."jourcl" = tl."jourcl"; 10477 - deps."jpsj" = tl."jpsj"; 10478 - deps."kdgdocs" = tl."kdgdocs"; 10479 - deps."kdpcover" = tl."kdpcover"; 10480 - deps."kfupm-math-exam" = tl."kfupm-math-exam"; 10481 - deps."kluwer" = tl."kluwer"; 10482 - deps."ksp-thesis" = tl."ksp-thesis"; 10483 - deps."ku-template" = tl."ku-template"; 10484 - deps."langsci" = tl."langsci"; 10485 - deps."langsci-avm" = tl."langsci-avm"; 10486 - deps."limecv" = tl."limecv"; 10487 - deps."lion-msc" = tl."lion-msc"; 10488 - deps."llncs" = tl."llncs"; 10489 - deps."llncsconf" = tl."llncsconf"; 10490 - deps."lni" = tl."lni"; 10491 - deps."lps" = tl."lps"; 10492 - deps."matc3" = tl."matc3"; 10493 - deps."matc3mem" = tl."matc3mem"; 10494 - deps."mcmthesis" = tl."mcmthesis"; 10495 - deps."mentis" = tl."mentis"; 10496 - deps."mlacls" = tl."mlacls"; 10497 - deps."mluexercise" = tl."mluexercise"; 10498 - deps."mnras" = tl."mnras"; 10499 - deps."modeles-factures-belges-assocs" = tl."modeles-factures-belges-assocs"; 10500 - deps."msu-thesis" = tl."msu-thesis"; 10501 - deps."mucproc" = tl."mucproc"; 10502 - deps."mugsthesis" = tl."mugsthesis"; 10503 - deps."muling" = tl."muling"; 10504 - deps."musuos" = tl."musuos"; 10505 - deps."muthesis" = tl."muthesis"; 10506 - deps."mynsfc" = tl."mynsfc"; 10507 - deps."nature" = tl."nature"; 10508 - deps."navydocs" = tl."navydocs"; 10509 - deps."nddiss" = tl."nddiss"; 10510 - deps."ndsu-thesis" = tl."ndsu-thesis"; 10511 - deps."ndsu-thesis-2022" = tl."ndsu-thesis-2022"; 10512 - deps."nih" = tl."nih"; 10513 - deps."nihbiosketch" = tl."nihbiosketch"; 10514 - deps."njustthesis" = tl."njustthesis"; 10515 - deps."njuthesis" = tl."njuthesis"; 10516 - deps."njuvisual" = tl."njuvisual"; 10517 - deps."nostarch" = tl."nostarch"; 10518 - deps."novel" = tl."novel"; 10519 - deps."nrc" = tl."nrc"; 10520 - deps."nwafuthesis" = tl."nwafuthesis"; 10521 - deps."nwejm" = tl."nwejm"; 10522 - deps."onrannual" = tl."onrannual"; 10523 - deps."opteng" = tl."opteng"; 10524 - deps."oup-authoring-template" = tl."oup-authoring-template"; 10525 - deps."philosophersimprint" = tl."philosophersimprint"; 10526 - deps."pittetd" = tl."pittetd"; 10527 - deps."pkuthss" = tl."pkuthss"; 10528 - deps."powerdot-fuberlin" = tl."powerdot-fuberlin"; 10529 - deps."powerdot-tuliplab" = tl."powerdot-tuliplab"; 10530 - deps."pracjourn" = tl."pracjourn"; 10531 - deps."prociagssymp" = tl."prociagssymp"; 10532 - deps."proposal" = tl."proposal"; 10533 - deps."prtec" = tl."prtec"; 10534 - deps."ptptex" = tl."ptptex"; 10535 - deps."qrbill" = tl."qrbill"; 10536 - deps."quantumarticle" = tl."quantumarticle"; 10537 - deps."resphilosophica" = tl."resphilosophica"; 10538 - deps."resumecls" = tl."resumecls"; 10539 - deps."revtex" = tl."revtex"; 10540 - deps."revtex4" = tl."revtex4"; 10541 - deps."revtex4-1" = tl."revtex4-1"; 10542 - deps."rutitlepage" = tl."rutitlepage"; 10543 - deps."ryersonsgsthesis" = tl."ryersonsgsthesis"; 10544 - deps."ryethesis" = tl."ryethesis"; 10545 - deps."sageep" = tl."sageep"; 10546 - deps."sapthesis" = tl."sapthesis"; 10547 - deps."schule" = tl."schule"; 10548 - deps."scientific-thesis-cover" = tl."scientific-thesis-cover"; 10549 - deps."scripture" = tl."scripture"; 10550 - deps."scrjrnl" = tl."scrjrnl"; 10551 - deps."sduthesis" = tl."sduthesis"; 10552 - deps."se2thesis" = tl."se2thesis"; 10553 - deps."seu-ml-assign" = tl."seu-ml-assign"; 10554 - deps."seuthesis" = tl."seuthesis"; 10555 - deps."seuthesix" = tl."seuthesix"; 10556 - deps."shortmathj" = tl."shortmathj"; 10557 - deps."shtthesis" = tl."shtthesis"; 10558 - deps."smflatex" = tl."smflatex"; 10559 - deps."soton" = tl."soton"; 10560 - deps."sphdthesis" = tl."sphdthesis"; 10561 - deps."spie" = tl."spie"; 10562 - deps."sr-vorl" = tl."sr-vorl"; 10563 - deps."srdp-mathematik" = tl."srdp-mathematik"; 10564 - deps."stellenbosch" = tl."stellenbosch"; 10565 - deps."suftesi" = tl."suftesi"; 10566 - deps."sugconf" = tl."sugconf"; 10567 - deps."tabriz-thesis" = tl."tabriz-thesis"; 10568 - deps."technion-thesis-template" = tl."technion-thesis-template"; 10569 - deps."texilikechaps" = tl."texilikechaps"; 10570 - deps."texilikecover" = tl."texilikecover"; 10571 - deps."thesis-ekf" = tl."thesis-ekf"; 10572 - deps."thesis-gwu" = tl."thesis-gwu"; 10573 - deps."thesis-qom" = tl."thesis-qom"; 10574 - deps."thesis-titlepage-fhac" = tl."thesis-titlepage-fhac"; 10575 - deps."thuaslogos" = tl."thuaslogos"; 10576 - deps."thubeamer" = tl."thubeamer"; 10577 - deps."thucoursework" = tl."thucoursework"; 10578 - deps."thuthesis" = tl."thuthesis"; 10579 - deps."timbreicmc" = tl."timbreicmc"; 10580 - deps."tlc-article" = tl."tlc-article"; 10581 - deps."topletter" = tl."topletter"; 10582 - deps."toptesi" = tl."toptesi"; 10583 - deps."tuda-ci" = tl."tuda-ci"; 10584 - deps."tudscr" = tl."tudscr"; 10585 - deps."tugboat" = tl."tugboat"; 10586 - deps."tugboat-plain" = tl."tugboat-plain"; 10587 - deps."tui" = tl."tui"; 10588 - deps."turabian" = tl."turabian"; 10589 - deps."uaclasses" = tl."uaclasses"; 10590 - deps."uafthesis" = tl."uafthesis"; 10591 - deps."uantwerpendocs" = tl."uantwerpendocs"; 10592 - deps."ucalgmthesis" = tl."ucalgmthesis"; 10593 - deps."ucbthesis" = tl."ucbthesis"; 10594 - deps."ucdavisthesis" = tl."ucdavisthesis"; 10595 - deps."ucsmonograph" = tl."ucsmonograph"; 10596 - deps."ucthesis" = tl."ucthesis"; 10597 - deps."udes-genie-these" = tl."udes-genie-these"; 10598 - deps."uestcthesis" = tl."uestcthesis"; 10599 - deps."ufrgscca" = tl."ufrgscca"; 10600 - deps."uhhassignment" = tl."uhhassignment"; 10601 - deps."uiucredborder" = tl."uiucredborder"; 10602 - deps."uiucthesis" = tl."uiucthesis"; 10603 - deps."ukbill" = tl."ukbill"; 10604 - deps."ulthese" = tl."ulthese"; 10605 - deps."umbclegislation" = tl."umbclegislation"; 10606 - deps."umich-thesis" = tl."umich-thesis"; 10607 - deps."umthesis" = tl."umthesis"; 10608 - deps."unam-thesis" = tl."unam-thesis"; 10609 - deps."unamth-template" = tl."unamth-template"; 10610 - deps."unamthesis" = tl."unamthesis"; 10611 - deps."unbtex" = tl."unbtex"; 10612 - deps."unifith" = tl."unifith"; 10613 - deps."unigrazpub" = tl."unigrazpub"; 10614 - deps."unitn-bimrep" = tl."unitn-bimrep"; 10615 - deps."univie-ling" = tl."univie-ling"; 10616 - deps."unizgklasa" = tl."unizgklasa"; 10617 - deps."unswcover" = tl."unswcover"; 10618 - deps."uothesis" = tl."uothesis"; 10619 - deps."uowthesis" = tl."uowthesis"; 10620 - deps."uowthesistitlepage" = tl."uowthesistitlepage"; 10621 - deps."urcls" = tl."urcls"; 10622 - deps."uspatent" = tl."uspatent"; 10623 - deps."ut-thesis" = tl."ut-thesis"; 10624 - deps."utexasthesis" = tl."utexasthesis"; 10625 - deps."uwa-colours" = tl."uwa-colours"; 10626 - deps."uwa-letterhead" = tl."uwa-letterhead"; 10627 - deps."uwa-pcf" = tl."uwa-pcf"; 10628 - deps."uwa-pif" = tl."uwa-pif"; 10629 - deps."uwthesis" = tl."uwthesis"; 10630 - deps."vancouver" = tl."vancouver"; 10631 - deps."wsemclassic" = tl."wsemclassic"; 10632 - deps."xduthesis" = tl."xduthesis"; 10633 - deps."xduts" = tl."xduts"; 10634 - deps."xmuthesis" = tl."xmuthesis"; 10635 - deps."yathesis" = tl."yathesis"; 10636 - deps."yazd-thesis" = tl."yazd-thesis"; 10637 - deps."yb-book" = tl."yb-book"; 10638 - deps."york-thesis" = tl."york-thesis"; 10487 + deps = [ 10488 + "aastex" 10489 + "abnt" 10490 + "abntex2" 10491 + "abntexto" 10492 + "acmart" 10493 + "acmconf" 10494 + "active-conf" 10495 + "adfathesis" 10496 + "afparticle" 10497 + "afthesis" 10498 + "aguplus" 10499 + "aiaa" 10500 + "anonymous-acm" 10501 + "anufinalexam" 10502 + "aomart" 10503 + "apa" 10504 + "apa6" 10505 + "apa6e" 10506 + "apa7" 10507 + "arsclassica" 10508 + "articleingud" 10509 + "asaetr" 10510 + "ascelike" 10511 + "asmeconf" 10512 + "asmejour" 10513 + "aucklandthesis" 10514 + "bangorcsthesis" 10515 + "bangorexam" 10516 + "bath-bst" 10517 + "beamer-fuberlin" 10518 + "beamer-verona" 10519 + "beilstein" 10520 + "bfh-ci" 10521 + "bgteubner" 10522 + "bjfuthesis" 10523 + "bmstu" 10524 + "bmstu-iu8" 10525 + "br-lex" 10526 + "brandeis-dissertation" 10527 + "brandeis-problemset" 10528 + "brandeis-thesis" 10529 + "buctthesis" 10530 + "cascadilla" 10531 + "cesenaexam" 10532 + "chem-journal" 10533 + "chifoot" 10534 + "chs-physics-report" 10535 + "cje" 10536 + "classicthesis" 10537 + "cleanthesis" 10538 + "cmpj" 10539 + "collection-latex" 10540 + "confproc" 10541 + "cquthesis" 10542 + "dccpaper" 10543 + "dithesis" 10544 + "ebook" 10545 + "ebsthesis" 10546 + "ecothesis" 10547 + "ejpecp" 10548 + "ekaia" 10549 + "elbioimp" 10550 + "els-cas-templates" 10551 + "elsarticle" 10552 + "elteikthesis" 10553 + "emisa" 10554 + "erdc" 10555 + "estcpmm" 10556 + "etsvthor" 10557 + "facture-belge-simple-sans-tva" 10558 + "fbithesis" 10559 + "fcavtex" 10560 + "fcltxdoc" 10561 + "fei" 10562 + "ftc-notebook" 10563 + "gaceta" 10564 + "gammas" 10565 + "geradwp" 10566 + "gradstudentresume" 10567 + "grant" 10568 + "gsemthesis" 10569 + "gzt" 10570 + "h2020proposal" 10571 + "hagenberg-thesis" 10572 + "har2nat" 10573 + "hecthese" 10574 + "hep-paper" 10575 + "hfutexam" 10576 + "hfutthesis" 10577 + "hithesis" 10578 + "hitszbeamer" 10579 + "hitszthesis" 10580 + "hobete" 10581 + "hu-berlin-bundle" 10582 + "hustthesis" 10583 + "icsv" 10584 + "ieeeconf" 10585 + "ieeepes" 10586 + "ieeetran" 10587 + "ijmart" 10588 + "ijsra" 10589 + "imac" 10590 + "imtekda" 10591 + "inkpaper" 10592 + "iodhbwm" 10593 + "iscram" 10594 + "jacow" 10595 + "jmlr" 10596 + "jnuexam" 10597 + "jourcl" 10598 + "jpsj" 10599 + "kdgdocs" 10600 + "kdpcover" 10601 + "kfupm-math-exam" 10602 + "kluwer" 10603 + "ksp-thesis" 10604 + "ku-template" 10605 + "langsci" 10606 + "langsci-avm" 10607 + "limecv" 10608 + "lion-msc" 10609 + "llncs" 10610 + "llncsconf" 10611 + "lni" 10612 + "lps" 10613 + "matc3" 10614 + "matc3mem" 10615 + "mcmthesis" 10616 + "mentis" 10617 + "mlacls" 10618 + "mluexercise" 10619 + "mnras" 10620 + "modeles-factures-belges-assocs" 10621 + "msu-thesis" 10622 + "mucproc" 10623 + "mugsthesis" 10624 + "muling" 10625 + "musuos" 10626 + "muthesis" 10627 + "mynsfc" 10628 + "nature" 10629 + "navydocs" 10630 + "nddiss" 10631 + "ndsu-thesis" 10632 + "ndsu-thesis-2022" 10633 + "nih" 10634 + "nihbiosketch" 10635 + "njustthesis" 10636 + "njuthesis" 10637 + "njuvisual" 10638 + "nostarch" 10639 + "novel" 10640 + "nrc" 10641 + "nwafuthesis" 10642 + "nwejm" 10643 + "onrannual" 10644 + "opteng" 10645 + "oup-authoring-template" 10646 + "philosophersimprint" 10647 + "pittetd" 10648 + "pkuthss" 10649 + "powerdot-fuberlin" 10650 + "powerdot-tuliplab" 10651 + "pracjourn" 10652 + "prociagssymp" 10653 + "proposal" 10654 + "prtec" 10655 + "ptptex" 10656 + "qrbill" 10657 + "quantumarticle" 10658 + "resphilosophica" 10659 + "resumecls" 10660 + "revtex" 10661 + "revtex4" 10662 + "revtex4-1" 10663 + "rutitlepage" 10664 + "ryersonsgsthesis" 10665 + "ryethesis" 10666 + "sageep" 10667 + "sapthesis" 10668 + "schule" 10669 + "scientific-thesis-cover" 10670 + "scripture" 10671 + "scrjrnl" 10672 + "sduthesis" 10673 + "se2thesis" 10674 + "seu-ml-assign" 10675 + "seuthesis" 10676 + "seuthesix" 10677 + "shortmathj" 10678 + "shtthesis" 10679 + "smflatex" 10680 + "soton" 10681 + "sphdthesis" 10682 + "spie" 10683 + "sr-vorl" 10684 + "srdp-mathematik" 10685 + "stellenbosch" 10686 + "suftesi" 10687 + "sugconf" 10688 + "tabriz-thesis" 10689 + "technion-thesis-template" 10690 + "texilikechaps" 10691 + "texilikecover" 10692 + "thesis-ekf" 10693 + "thesis-gwu" 10694 + "thesis-qom" 10695 + "thesis-titlepage-fhac" 10696 + "thuaslogos" 10697 + "thubeamer" 10698 + "thucoursework" 10699 + "thuthesis" 10700 + "timbreicmc" 10701 + "tlc-article" 10702 + "topletter" 10703 + "toptesi" 10704 + "tuda-ci" 10705 + "tudscr" 10706 + "tugboat" 10707 + "tugboat-plain" 10708 + "tui" 10709 + "turabian" 10710 + "uaclasses" 10711 + "uafthesis" 10712 + "uantwerpendocs" 10713 + "ucalgmthesis" 10714 + "ucbthesis" 10715 + "ucdavisthesis" 10716 + "ucsmonograph" 10717 + "ucthesis" 10718 + "udes-genie-these" 10719 + "uestcthesis" 10720 + "ufrgscca" 10721 + "uhhassignment" 10722 + "uiucredborder" 10723 + "uiucthesis" 10724 + "ukbill" 10725 + "ulthese" 10726 + "umbclegislation" 10727 + "umich-thesis" 10728 + "umthesis" 10729 + "unam-thesis" 10730 + "unamth-template" 10731 + "unamthesis" 10732 + "unbtex" 10733 + "unifith" 10734 + "unigrazpub" 10735 + "unitn-bimrep" 10736 + "univie-ling" 10737 + "unizgklasa" 10738 + "unswcover" 10739 + "uothesis" 10740 + "uowthesis" 10741 + "uowthesistitlepage" 10742 + "urcls" 10743 + "uspatent" 10744 + "ut-thesis" 10745 + "utexasthesis" 10746 + "uwa-colours" 10747 + "uwa-letterhead" 10748 + "uwa-pcf" 10749 + "uwa-pif" 10750 + "uwthesis" 10751 + "vancouver" 10752 + "wsemclassic" 10753 + "xduthesis" 10754 + "xduts" 10755 + "xmuthesis" 10756 + "yathesis" 10757 + "yazd-thesis" 10758 + "yb-book" 10759 + "york-thesis" 10760 + ]; 10639 10761 sha512.run = "550fb7f9dd937a7ac66772d7a9f733c9ccd07b79a18d5faa333c66db823528848c8d1f7ac726ef97c4d5df3a87ae807646d5b932ddfa82e256ce3c6d1e917d3b"; 10640 10762 }; 10641 10763 "collection-texworks" = { 10642 10764 revision = 54074; 10643 10765 stripPrefix = 0; 10644 - deps."collection-basic" = tl."collection-basic"; 10645 - deps."texworks" = tl."texworks"; 10766 + deps = [ 10767 + "collection-basic" 10768 + "texworks" 10769 + ]; 10646 10770 sha512.run = "b1f38877115fb6efc9b63a5591c399b799f3a258e342d5e198b74b582628461ad67ea7c1ab76e5ae83a3e8e538c62ac3e7c5b3d3f1d29c093331843067cfec57"; 10647 10771 }; 10648 10772 "collection-wintools" = { ··· 10653 10777 "collection-xetex" = { 10654 10778 revision = 64951; 10655 10779 stripPrefix = 0; 10656 - deps."arabxetex" = tl."arabxetex"; 10657 - deps."awesomebox" = tl."awesomebox"; 10658 - deps."bidi-atbegshi" = tl."bidi-atbegshi"; 10659 - deps."bidicontour" = tl."bidicontour"; 10660 - deps."bidipagegrid" = tl."bidipagegrid"; 10661 - deps."bidipresentation" = tl."bidipresentation"; 10662 - deps."bidishadowtext" = tl."bidishadowtext"; 10663 - deps."businesscard-qrcode" = tl."businesscard-qrcode"; 10664 - deps."collection-basic" = tl."collection-basic"; 10665 - deps."cqubeamer" = tl."cqubeamer"; 10666 - deps."fixlatvian" = tl."fixlatvian"; 10667 - deps."font-change-xetex" = tl."font-change-xetex"; 10668 - deps."fontbook" = tl."fontbook"; 10669 - deps."fontwrap" = tl."fontwrap"; 10670 - deps."interchar" = tl."interchar"; 10671 - deps."na-position" = tl."na-position"; 10672 - deps."philokalia" = tl."philokalia"; 10673 - deps."ptext" = tl."ptext"; 10674 - deps."realscripts" = tl."realscripts"; 10675 - deps."simple-resume-cv" = tl."simple-resume-cv"; 10676 - deps."simple-thesis-dissertation" = tl."simple-thesis-dissertation"; 10677 - deps."tetragonos" = tl."tetragonos"; 10678 - deps."ucharclasses" = tl."ucharclasses"; 10679 - deps."unicode-bidi" = tl."unicode-bidi"; 10680 - deps."unimath-plain-xetex" = tl."unimath-plain-xetex"; 10681 - deps."unisugar" = tl."unisugar"; 10682 - deps."xebaposter" = tl."xebaposter"; 10683 - deps."xechangebar" = tl."xechangebar"; 10684 - deps."xecolor" = tl."xecolor"; 10685 - deps."xecyr" = tl."xecyr"; 10686 - deps."xeindex" = tl."xeindex"; 10687 - deps."xelatex-dev" = tl."xelatex-dev"; 10688 - deps."xesearch" = tl."xesearch"; 10689 - deps."xespotcolor" = tl."xespotcolor"; 10690 - deps."xetex" = tl."xetex"; 10691 - deps."xetex-itrans" = tl."xetex-itrans"; 10692 - deps."xetex-pstricks" = tl."xetex-pstricks"; 10693 - deps."xetex-tibetan" = tl."xetex-tibetan"; 10694 - deps."xetexconfig" = tl."xetexconfig"; 10695 - deps."xetexfontinfo" = tl."xetexfontinfo"; 10696 - deps."xetexko" = tl."xetexko"; 10697 - deps."xevlna" = tl."xevlna"; 10698 - deps."zbmath-review-template" = tl."zbmath-review-template"; 10780 + deps = [ 10781 + "arabxetex" 10782 + "awesomebox" 10783 + "bidi-atbegshi" 10784 + "bidicontour" 10785 + "bidipagegrid" 10786 + "bidipresentation" 10787 + "bidishadowtext" 10788 + "businesscard-qrcode" 10789 + "collection-basic" 10790 + "cqubeamer" 10791 + "fixlatvian" 10792 + "font-change-xetex" 10793 + "fontbook" 10794 + "fontwrap" 10795 + "interchar" 10796 + "na-position" 10797 + "philokalia" 10798 + "ptext" 10799 + "realscripts" 10800 + "simple-resume-cv" 10801 + "simple-thesis-dissertation" 10802 + "tetragonos" 10803 + "ucharclasses" 10804 + "unicode-bidi" 10805 + "unimath-plain-xetex" 10806 + "unisugar" 10807 + "xebaposter" 10808 + "xechangebar" 10809 + "xecolor" 10810 + "xecyr" 10811 + "xeindex" 10812 + "xelatex-dev" 10813 + "xesearch" 10814 + "xespotcolor" 10815 + "xetex" 10816 + "xetex-itrans" 10817 + "xetex-pstricks" 10818 + "xetex-tibetan" 10819 + "xetexconfig" 10820 + "xetexfontinfo" 10821 + "xetexko" 10822 + "xevlna" 10823 + "zbmath-review-template" 10824 + ]; 10699 10825 sha512.run = "457c4e7a3e2089adc69173950c5d3fa177c6e03c5936c49328bbd3c276d9940ba5aca974aea4b97c5dd51b6ec1ca9ebe28861e730aef63b1312589e0cb16df1e"; 10700 10826 }; 10701 10827 "collref" = { ··· 11070 11196 }; 11071 11197 "context" = { 11072 11198 revision = 58167; 11073 - deps."amsfonts" = tl."amsfonts"; 11074 - deps."lm" = tl."lm"; 11075 - deps."lm-math" = tl."lm-math"; 11076 - deps."luatex" = tl."luatex"; 11077 - deps."manfnt-font" = tl."manfnt-font"; 11078 - deps."metapost" = tl."metapost"; 11079 - deps."mflogo-font" = tl."mflogo-font"; 11080 - deps."mptopdf" = tl."mptopdf"; 11081 - deps."pdftex" = tl."pdftex"; 11082 - deps."stmaryrd" = tl."stmaryrd"; 11083 - deps."xetex" = tl."xetex"; 11199 + deps = [ 11200 + "amsfonts" 11201 + "lm" 11202 + "lm-math" 11203 + "luatex" 11204 + "manfnt-font" 11205 + "metapost" 11206 + "mflogo-font" 11207 + "mptopdf" 11208 + "pdftex" 11209 + "stmaryrd" 11210 + "xetex" 11211 + ]; 11084 11212 hasFormats = true; 11085 11213 sha512.run = "61fcc778837ecff88bb0e80e39e2acb3ee64e2c26e4069f7634e5dc6c74dc93caab78e4b0088ed58f494d6dcd3a5084bc55cd471baaeb292dc208cf2a241bf69"; 11086 11214 sha512.doc = "ee4458cd6d45a41652ae24b3b82bea5cfa2d8b9c14cf4ba1357f9f07d6572f8ba83e350b74659c471ebf5068f33f5c5762a11669ab2a4f5adb3db41f392956dd"; ··· 11089 11217 "context-account" = { 11090 11218 revision = 47085; 11091 11219 stripPrefix = 0; 11092 - deps."context" = tl."context"; 11220 + deps = [ 11221 + "context" 11222 + ]; 11093 11223 sha512.run = "755ddb4c62a496873d5362df01307163c79d2a6c3fabce6ea01b442c16dad2f23d72909df71dd44eb4fbbf5c57366e20eb49bfce240807c2e2a9a52cbd76680a"; 11094 11224 sha512.doc = "b19f6d0330e5da99a961304f8c022609dedb2dc3a8cc4607cb9b2ca7eda38f9c8b972316bb9fac92cc36166e1c0822afaebda2c5e2d87db1e1efd2781f51956e"; 11095 11225 hasRunfiles = true; ··· 11097 11227 "context-algorithmic" = { 11098 11228 revision = 47085; 11099 11229 stripPrefix = 0; 11100 - deps."context" = tl."context"; 11230 + deps = [ 11231 + "context" 11232 + ]; 11101 11233 sha512.run = "72d4bbfe723b4012f8701c2786f96009bbed3c6b4bd2129f7153306f172e72218920e222f97ee6d5ee4b863e9e915fc38dd92b0c42066385fde35c5c3d0cc42a"; 11102 11234 sha512.doc = "19ba676dc7822bc0a6583d6e9e031f3780977835c10d901e1ae02fca781719a0e015ac79cfc35c908a8de40a19614fcd17a35c604c9311b50972d0706d6f07e1"; 11103 11235 hasRunfiles = true; ··· 11105 11237 "context-animation" = { 11106 11238 revision = 47085; 11107 11239 stripPrefix = 0; 11108 - deps."context" = tl."context"; 11240 + deps = [ 11241 + "context" 11242 + ]; 11109 11243 sha512.run = "19691ca3325b3f72154ac8439e616a128b5f3ba8c9447bb1e92979e175daa902cd756853a2b6e6a34a84fbe96e02771a0c6ef27ed5bbb7eac94f62dd72d571f1"; 11110 11244 sha512.doc = "a06227508c2dc343598fc6878e2b17b56341f5dd86a473957318eb94ecc6e150adaedf7346ffb931eda184651efd00d8f60e36ec6ea50e9ac94e2ed096058293"; 11111 11245 hasRunfiles = true; ··· 11113 11247 "context-annotation" = { 11114 11248 revision = 47085; 11115 11249 stripPrefix = 0; 11116 - deps."context" = tl."context"; 11250 + deps = [ 11251 + "context" 11252 + ]; 11117 11253 sha512.run = "bb66132ed1e4f146c407bb3b2852c451b82d3d06de1dc25ddec6e692d17f4d994d1a67cfd7ff711dc2de7a4ce7259b1768d6efcfb58856321d5ea5b15271cd34"; 11118 11254 sha512.doc = "4491012c8172beb64478b2de5557ed8f97701cfcb3996a8a5ff9990048d79ddce8cc2796dbf4c08812bc8963c0d318f9d79d2d4c2d14bc372f06dbc28e012c3d"; 11119 11255 hasRunfiles = true; ··· 11121 11257 "context-bnf" = { 11122 11258 revision = 47085; 11123 11259 stripPrefix = 0; 11124 - deps."context" = tl."context"; 11260 + deps = [ 11261 + "context" 11262 + ]; 11125 11263 sha512.run = "53e5d3d7c977aab648bb024942263a8aed5da6314506825ace02556db890ea23400c6de714ddf6380235c942dfc02e127736579b6be1c5b0b0ecc65d25fb0d6b"; 11126 11264 sha512.doc = "d7ab60c2f8571ce2e2e96b82c1f97b140c5750324efb73275062a8d301d530279a3f9c19f6a6feebd6d7c72727d94f469d9aad05ad67cde5dbd3de9f695dad31"; 11127 11265 hasRunfiles = true; ··· 11129 11267 "context-chromato" = { 11130 11268 revision = 47085; 11131 11269 stripPrefix = 0; 11132 - deps."context" = tl."context"; 11270 + deps = [ 11271 + "context" 11272 + ]; 11133 11273 sha512.run = "52e11c6953e7c2e2f9a3a20b8885fd12f5abef32d32da5ae5415b0321d37ac5ff8ff5bece3d522e1f785470cef542568cd56abd509d26671da9298c3d0ba27cc"; 11134 11274 sha512.doc = "5c7c7f03050b0a17dadf23a09dced356a036c6b95ca76aeb0fda583dbc490d82222de64299c121224efaccc78b62364a1bc56daf020c177865c29e343529f040"; 11135 11275 hasRunfiles = true; ··· 11137 11277 "context-cmscbf" = { 11138 11278 revision = 47085; 11139 11279 stripPrefix = 0; 11140 - deps."context" = tl."context"; 11280 + deps = [ 11281 + "context" 11282 + ]; 11141 11283 sha512.run = "cb0e5849ac3168a4ecdd1545edd029a1622ecf1c46d29eec97b28a66f65305e6b4d3a9c83e24d78e1596c8009ad5c9a0e25fa7e09448c3e0ea492e62bc933ea8"; 11142 11284 sha512.doc = "8f45989c08f09381ccbf2942a08c0b13792917a18d5b2e92fb45c7ac2f4b4538f5ffd633da0348e12835c03a6f79b0ea7044f1ebea5770365a83d2d097a56df4"; 11143 11285 hasRunfiles = true; ··· 11145 11287 "context-cmttbf" = { 11146 11288 revision = 47085; 11147 11289 stripPrefix = 0; 11148 - deps."context" = tl."context"; 11290 + deps = [ 11291 + "context" 11292 + ]; 11149 11293 sha512.run = "e3bc048c09bfdf114efa25077fa4e6a6c20b4d0e2ba337cefa0a8a82348fd3376f82cae0c85b029b863b7a5db9d9552b4fc5f5487d5ed5f6d88484181ea98ced"; 11150 11294 sha512.doc = "2b55367f236330a07120229902405213a495de2ba455f333bc23e1c1abbe0f0a4be16ee95415f613d41572916722e3d023a71698f74e5e37f34a8de4fdca6e47"; 11151 11295 hasRunfiles = true; ··· 11153 11297 "context-construction-plan" = { 11154 11298 revision = 47085; 11155 11299 stripPrefix = 0; 11156 - deps."context" = tl."context"; 11300 + deps = [ 11301 + "context" 11302 + ]; 11157 11303 sha512.run = "b292f8e271fcac88eaedc376257ae16a401a6c31009eaa3d4faeefba25c33d034f57d30ba4638e85b76ffd0d24ef4d541dfbceb1bc0b5c806a8412d239a32146"; 11158 11304 sha512.doc = "605e09bedb9e2ad1e98a621c0a4842f28592c93507c3da31f8c6437e95e63a47e795b38fa0263d7fa81fa3b8838f21d2426c8705f8e17ac1d827923cf5e88784"; 11159 11305 hasRunfiles = true; ··· 11161 11307 "context-cyrillicnumbers" = { 11162 11308 revision = 47085; 11163 11309 stripPrefix = 0; 11164 - deps."context" = tl."context"; 11310 + deps = [ 11311 + "context" 11312 + ]; 11165 11313 sha512.run = "14a90656d706d68ce441301aa6bccf2033c36f9c8d8605ec9dedeeedb71a5670dae325a5a198b2ca25373eb2b495e57fff31b85089c6c0fb987738c76ac636b2"; 11166 11314 sha512.doc = "d95b1df26033aaff0a9f6759268ac3e68bff02556001e3f9b2bae1db68aa13c839a87047a6ae0a296f8e5817398ba35b7cbacc4f194dd93cf72684904190e7e3"; 11167 11315 hasRunfiles = true; ··· 11169 11317 "context-degrade" = { 11170 11318 revision = 47085; 11171 11319 stripPrefix = 0; 11172 - deps."context" = tl."context"; 11320 + deps = [ 11321 + "context" 11322 + ]; 11173 11323 sha512.run = "b2df5bbee492b7137180bfe7b0b826f4149b8231b78cb839ac9716f02b622e5b3a0eb5964e12625650a224ae463714bb7cafbecae6061a6e3120022d2f545d52"; 11174 11324 sha512.doc = "8f24fd70547ecfcbb163df2e3e4450525f0e56583b6984f61fb04559142bd838287e79c9b9d8cdef2c26a882688074b5010615e6d818a11f2f5812d88e31cd82"; 11175 11325 hasRunfiles = true; ··· 11177 11327 "context-fancybreak" = { 11178 11328 revision = 47085; 11179 11329 stripPrefix = 0; 11180 - deps."context" = tl."context"; 11330 + deps = [ 11331 + "context" 11332 + ]; 11181 11333 sha512.run = "1e8e51de47c67a3287dfa4386f9c09b4dfaa494d9b59fe8d117a3a1b65a5041add24c36227f2d2d7fb3bf2ec34d6a5a8b6658d275b63f55793d05dea08722b10"; 11182 11334 sha512.doc = "6082670766d63da902d2a53f2a6ee89fcdce942fd73439fea8326ef3117e6a5483b86d9d4271d2f3d9546a5fe44277721cd15510a9da392db36356b44ae2f36d"; 11183 11335 hasRunfiles = true; ··· 11185 11337 "context-filter" = { 11186 11338 revision = 62070; 11187 11339 stripPrefix = 0; 11188 - deps."context" = tl."context"; 11340 + deps = [ 11341 + "context" 11342 + ]; 11189 11343 sha512.run = "c2534b543fd5444776a054f43fafa393040af5bcb67f869d61d200a4a1d0355f1d81c64adab683d15a6be806a21dfc9ad661995bbe51da3c0bfb841ade4b077f"; 11190 11344 sha512.doc = "a9c2ea88b0e2514840c368ea7686894dda4b86c93ec8f34989238ffdf5704f1c1898d0ee5e0724035314d2d37803f1a1afdd445dd802a94f5ff4223148f81767"; 11191 11345 hasRunfiles = true; ··· 11193 11347 "context-french" = { 11194 11348 revision = 54215; 11195 11349 stripPrefix = 0; 11196 - deps."context" = tl."context"; 11350 + deps = [ 11351 + "context" 11352 + ]; 11197 11353 sha512.run = "aed7a7f91e909e8b9b7efc5e0b45c67d5ed3e084c5019e1ddd68d8e9e969c0579b1dbbe4e25d74ca22b256324358ed34f3f54a92e2fb3a012a6aa43797e8aaa7"; 11198 11354 sha512.doc = "926a054d12f59d45dbe538eaed4087ed2c9f3321f1051c7006fe651af95d2275788030ee9371ffd39a7f7f8a4022776c19721323ab82871f061dca365c081728"; 11199 11355 hasRunfiles = true; ··· 11201 11357 "context-fullpage" = { 11202 11358 revision = 47085; 11203 11359 stripPrefix = 0; 11204 - deps."context" = tl."context"; 11360 + deps = [ 11361 + "context" 11362 + ]; 11205 11363 sha512.run = "280a16b47e04f3099a2f960435bf1c22ec623553303e339df4d06135b768cee6565e20a0c4e0c080d8c6f621a32d862ba6203daacdbf9ecd03b62829dd0014fd"; 11206 11364 sha512.doc = "1d4ff98bae26e0d6ec1ce1ca58fac82f8592158f8635eeac737546873f1f468b2ad7a82b9f8956b770fdc0c01443a9327c509265cdecb90d83dca15462cfa23b"; 11207 11365 hasRunfiles = true; ··· 11209 11367 "context-gantt" = { 11210 11368 revision = 47085; 11211 11369 stripPrefix = 0; 11212 - deps."context" = tl."context"; 11213 - deps."hatching" = tl."hatching"; 11370 + deps = [ 11371 + "context" 11372 + "hatching" 11373 + ]; 11214 11374 sha512.run = "e0c61179f4ecdf93c13dbfe19f59487fbce55e1a0dece76ac025a88a452e7168c5e3b84e53c01bcae4cc412993be36eb554dc5f7299fc1205f4070aa07a834cf"; 11215 11375 sha512.doc = "a5cc76238f8377dc8d06869bf23a1367c880b57ba62ab8c8331886cbed145427e2819ba92965924fc7a78579d28b7c1cf331acf7f199cf72672ccb64962c9367"; 11216 11376 hasRunfiles = true; ··· 11218 11378 "context-gnuplot" = { 11219 11379 revision = 47085; 11220 11380 stripPrefix = 0; 11221 - deps."context" = tl."context"; 11381 + deps = [ 11382 + "context" 11383 + ]; 11222 11384 sha512.run = "d3d7dce105707bd8fd903038e458cae614ec63da7932231e1f659570ec3a7960ea0fab338a8405f2ca8ce8b03946b58db8255333d2a4ab5a659566f4d272b0b0"; 11223 11385 sha512.doc = "40e471b27d53ced33590792ac62992a220357c6db1c78cba901197362a36817bc14b049f2573ee2e5b5adad5182c5bea2880c4f7a2477bcd1a06ee7ccf88b0b9"; 11224 11386 hasRunfiles = true; ··· 11226 11388 "context-handlecsv" = { 11227 11389 revision = 51306; 11228 11390 stripPrefix = 0; 11229 - deps."context" = tl."context"; 11391 + deps = [ 11392 + "context" 11393 + ]; 11230 11394 sha512.run = "10f862b7152e0efe2a8444fcf847ade2aad2c1499e146b94643a7e08a438359c2f7d1927e7e9773f3dd14475fb4535d17fb4f29ff053e7a29c9463f40c6e5598"; 11231 11395 sha512.doc = "39330dfaf22a83181086343ac9ea7d64025fbe779e55161b33e5a9a9802e0928bb1c16941aeb307da641835aefdfe2e431becbc0cfe40ad8bb33a3816b9b177b"; 11232 11396 hasRunfiles = true; ··· 11234 11398 "context-inifile" = { 11235 11399 revision = 47085; 11236 11400 stripPrefix = 0; 11237 - deps."context" = tl."context"; 11401 + deps = [ 11402 + "context" 11403 + ]; 11238 11404 sha512.run = "9dd9b61cd2b5700b0e2b6e59bf4040de9431820c659f121c2681e454ddb4b34454270eac6c442836c90f8a1819761ce0d7659684a1f0c8876fec1f947a0b16f7"; 11239 11405 sha512.doc = "9635bc80ae7222c6a38004ad5f985004634b7db9596e03a23123ad71bbf177639bb1b028bdfe79d51b75c1c429c327f65c2b5e0720723d8bcdf63f4939312850"; 11240 11406 hasRunfiles = true; ··· 11242 11408 "context-layout" = { 11243 11409 revision = 47085; 11244 11410 stripPrefix = 0; 11245 - deps."context" = tl."context"; 11411 + deps = [ 11412 + "context" 11413 + ]; 11246 11414 sha512.run = "6cad00783d0bc91000ca0e0c8350fe2a2e99f7fefccd375d5bb2f1a144fc04a59f83122dcd490fc0596b1dc9fd0c0a779bfa35932362927ed50ed8df39ec359e"; 11247 11415 sha512.doc = "4ecf7bfe5fbc78453cc116cf7a657f4b6ac7fc21ca7dd6da5beb0ea1af0c1fd48d6a74ab516213f49d1e29cb8bd47fbcc94145157472e3ea22b291f494fc3d1f"; 11248 11416 hasRunfiles = true; ··· 11250 11418 "context-letter" = { 11251 11419 revision = 60787; 11252 11420 stripPrefix = 0; 11253 - deps."context" = tl."context"; 11421 + deps = [ 11422 + "context" 11423 + ]; 11254 11424 sha512.run = "558836a8c95743270f627a18dfe7a29ffc7a2eaeb4cf663d589ef5c07eab4dad6f09db31511379c90a41d1e9e7da5766e8dc3c8bb0902fa06bda4fb33caa97c9"; 11255 11425 sha512.doc = "94e1bf68371f3e8c426cfff5c471f93c86ce51fdd92dfad59669d32cc73d86de606113ece55d13a0f25ac4a26f16916407de9175b84acc79ba107156c20cd20a"; 11256 11426 hasRunfiles = true; ··· 11258 11428 "context-lettrine" = { 11259 11429 revision = 47085; 11260 11430 stripPrefix = 0; 11261 - deps."context" = tl."context"; 11431 + deps = [ 11432 + "context" 11433 + ]; 11262 11434 sha512.run = "79e4e246a7bb0a300db53425e2769a3ef61bc0249ce57840c0b9037805e86eadbd1ef4ab8a110fd806584393feef00f498418732cfd53922aed6df67c561e535"; 11263 11435 sha512.doc = "ab32697b6c309b1099b809c33182ffc48bb3019c8d520269cbb616b61e8f20678cc2cf4e7e971e06cadb22ffcee0d502deedf21aa95d8d372d1840e4fb4a6591"; 11264 11436 hasRunfiles = true; ··· 11266 11438 "context-mathsets" = { 11267 11439 revision = 47085; 11268 11440 stripPrefix = 0; 11269 - deps."context" = tl."context"; 11441 + deps = [ 11442 + "context" 11443 + ]; 11270 11444 sha512.run = "e4c689c745d06c61d6f693a9832001aa8c79d51664c2a5d6d0c6148a95b30870063f50eecca31ac0924193c6dab8c12cd5ccaca16eeaf5f83a99cef1a8889ec3"; 11271 11445 sha512.doc = "f2c33244814da8e8838483038f507fe6b3e146f37691e55a37bb5355985d2af4c5fc423318133c4f13837a3e66a4fe72d5c14f6721bb5ee0417a59691b86d3f1"; 11272 11446 hasRunfiles = true; ··· 11274 11448 "context-notes-zh-cn" = { 11275 11449 revision = 23171; 11276 11450 stripPrefix = 0; 11277 - deps."context" = tl."context"; 11451 + deps = [ 11452 + "context" 11453 + ]; 11278 11454 sha512.run = "a05cd68d609fb9427ca07f64ba1b9ad85762464a3294653c8a790c0a6a41d6af43aab72a1eb7ef0d56a299db2f54af5666dbe974f9fdac014f624350c8bfe50a"; 11279 11455 sha512.doc = "4261b8aeb5b3cbebde2890af1b7039c6f557ce36f4979228f40f9e5e99b19aa5c457ed6842f4501f4dc32f51f58d9fcd0764028b9d5c74fd07d41c8c866220a1"; 11280 11456 }; 11281 11457 "context-rst" = { 11282 11458 revision = 47085; 11283 11459 stripPrefix = 0; 11284 - deps."context" = tl."context"; 11460 + deps = [ 11461 + "context" 11462 + ]; 11285 11463 sha512.run = "f93173c1b27afe538d670c791048f495fa3f236cf75511d43b33172d140ac47fa3b5f11c674db5d515733b8ef9cfa7ac2d3c46b78b624768ee95a21884dae904"; 11286 11464 sha512.doc = "536f63f9fa02e37c38f445974dab1f75b38abf0769379ee1735001972db71be10d51a1782e850ddd75d73f2a6f1375cf043684c0fae1a88b20a1650248870f9a"; 11287 11465 hasRunfiles = true; ··· 11289 11467 "context-ruby" = { 11290 11468 revision = 47085; 11291 11469 stripPrefix = 0; 11292 - deps."context" = tl."context"; 11470 + deps = [ 11471 + "context" 11472 + ]; 11293 11473 sha512.run = "e219c6da61585d88f8e899278d1c85f0903ed32b6c7368cdb6076697230a0e79f5f88f53dd98514394fa09e7580c1c6b7c167d81c010107f3399dffb18b13d95"; 11294 11474 sha512.doc = "179e501b428bd87a49830a68236008ea6e962b80e79ab45a0e75a7b86a7fc11025ac38ad463c459c6d290aa5ac8627da5849d1fd8f7502ea7d97696b53ed2647"; 11295 11475 hasRunfiles = true; ··· 11297 11477 "context-simplefonts" = { 11298 11478 revision = 47085; 11299 11479 stripPrefix = 0; 11300 - deps."context" = tl."context"; 11480 + deps = [ 11481 + "context" 11482 + ]; 11301 11483 sha512.run = "7c817f4a25a8883ce052c9657a3d6117042e8538fadc8d67b4b0194abd69238045c09d365e90e555d5b04d83a1ef82039ca9631aec00eb1f80b56fbefa729cd3"; 11302 11484 sha512.doc = "238babc7694bf85c81e3079b5d72feabc9c9eeea4f3b625a57ecb133d70ac745334ca0426097dccfe53e3ffe108ac0859be4da7625bb6b683abec1101367ac06"; 11303 11485 hasRunfiles = true; ··· 11305 11487 "context-simpleslides" = { 11306 11488 revision = 63903; 11307 11489 stripPrefix = 0; 11308 - deps."context" = tl."context"; 11490 + deps = [ 11491 + "context" 11492 + ]; 11309 11493 sha512.run = "2db8348769d60d38266ad3798264864a0453b38c769db02ddaee072e795596fd48cc201caa5023d980c1a748c41a30e4c560ece68def59deb3c467bec2e60f64"; 11310 11494 sha512.doc = "532a9a142b30c8fe2ff3431d24988ef96e5da63276cd0084fe8b69b3e9cb572a0beab8d7ee4291d00a4b1d725f3d23ed47632811fde7e2aca41998c5d44a0481"; 11311 11495 hasRunfiles = true; ··· 11313 11497 "context-title" = { 11314 11498 revision = 47085; 11315 11499 stripPrefix = 0; 11316 - deps."context" = tl."context"; 11500 + deps = [ 11501 + "context" 11502 + ]; 11317 11503 sha512.run = "bc7d6cbd373cb6d6214489ed97117929ba381626c854a0a5a950bfa44c06214991d7a90290793c825c96e6d22ba1f6807054d4553d1d3980d9d9bc0e6dabafda"; 11318 11504 sha512.doc = "3b910eeca8c8a442939873e082a4025523472b267ed3268e63cbf5fbe0821c9db8d8d183058d139aa02233dfdb6be7e23fb9df360a490f7d551875c59753c7c0"; 11319 11505 hasRunfiles = true; ··· 11321 11507 "context-transliterator" = { 11322 11508 revision = 61127; 11323 11509 stripPrefix = 0; 11324 - deps."context" = tl."context"; 11510 + deps = [ 11511 + "context" 11512 + ]; 11325 11513 sha512.run = "f919d3f9e6ab25932cfaeadfc07f86ebdbe00d84dc21236e4775930fc3866cee69cf9a25d373e13655f4396a3c395ea6ea103a28ffb4f00a4e95b7ceaec155c9"; 11326 11514 sha512.doc = "8473c1ca7b48009055f5c33031ec60f80d84dc43396789b0c0c7e6d65bcf014a237088dca07211beae4bfb80377f55cf12a9f379995cff50f52143fc4bc81295"; 11327 11515 hasRunfiles = true; ··· 11329 11517 "context-typearea" = { 11330 11518 revision = 47085; 11331 11519 stripPrefix = 0; 11332 - deps."context" = tl."context"; 11520 + deps = [ 11521 + "context" 11522 + ]; 11333 11523 sha512.run = "c4a2f2317b146b31102273e9b616d403d4ee836a61fae96bd9315670b0bdd5f9d94ecde00b53d2ea5f7073773bd8af5c322b07c3b05bf7ad5262a9f0e0b623a1"; 11334 11524 sha512.doc = "7171bc5c5e82b3897f75421e745e876c2aea84e9e9cb74badd6dedc75666b8f9ddb8b6d11c523ea64be6b57dca4f84555827afa32a0c90f6df1c31b68b1f6395"; 11335 11525 hasRunfiles = true; ··· 11337 11527 "context-typescripts" = { 11338 11528 revision = 60422; 11339 11529 stripPrefix = 0; 11340 - deps."context" = tl."context"; 11530 + deps = [ 11531 + "context" 11532 + ]; 11341 11533 sha512.run = "a13d06b9a792cbd2352016df508a7860e45b541d04cef1c9d9c8b5a6199120a71dfd69f990700c4a76ac31ec11209caef431a190b9045bdc46cc44f88cbef0a3"; 11342 11534 sha512.doc = "3d948f22da14b1d481817477235657cee714e4a2a69834729c20e18157f1175890ddc7fce992e8f5f27e26cd6d08186ff1521e2186681557cfff1a4778267324"; 11343 11535 hasRunfiles = true; ··· 11345 11537 "context-vim" = { 11346 11538 revision = 62071; 11347 11539 stripPrefix = 0; 11348 - deps."context" = tl."context"; 11349 - deps."context-filter" = tl."context-filter"; 11540 + deps = [ 11541 + "context" 11542 + "context-filter" 11543 + ]; 11350 11544 sha512.run = "12100c7aa3eb555cf9dbe72454a96e63feda52329a8a192ff86ba30477acab4ebaaf84c15a79f16d4e3f95cef02baf8146e5810b8c9e8e94c25ba1317bf4fc2c"; 11351 11545 sha512.doc = "0f49e22b9e1d465f46727a9e952e095eceab55e77a2559fe497cf14690377f77ca42aa23ce7eaca659e9b0983e5a950b36733eef49b0473fd33a8f783edb43b1"; 11352 11546 hasRunfiles = true; ··· 11354 11548 "context-visualcounter" = { 11355 11549 revision = 47085; 11356 11550 stripPrefix = 0; 11357 - deps."context" = tl."context"; 11551 + deps = [ 11552 + "context" 11553 + ]; 11358 11554 sha512.run = "da7799ee31a4298f8e8cb02cb4e480fa49fb4188b776df877648c663c93523636bdd7fa6ca5eb403fc8f3483064bf223fed042c1d27eb0817c224ddf8e21c673"; 11359 11555 sha512.doc = "1788355ea4109e7e2bbaa9bbc3798f60a814d549d082638a59a453cc5fb39b54ff8a00471a28a96a5501e91899874ae19981ae0f8a09b6353d19275b851b9f80"; 11360 11556 sha512.source = "39bba551e9f0bb8d70c0b60a2b0fba3d7cad30555d4052fc6ae722bfd9cb79d5cca784474a9f1847faccccb1618662bc4dd2fadd1fdacaf2f4cc9c035b5501ec"; ··· 11663 11859 "create-theorem" = { 11664 11860 revision = 64104; 11665 11861 stripPrefix = 0; 11666 - deps."crefthe" = tl."crefthe"; 11862 + deps = [ 11863 + "crefthe" 11864 + ]; 11667 11865 sha512.run = "dcb4f947d6d0fed303d53c19e29049070b1c3ca47fb0d78c0c1c3455f6de59ea2aa98640ac88549bb8f00f1b5cd4320a84f92f98d08a0ee788eb47417a86486d"; 11668 11866 sha512.doc = "4c84bebff2a93f8326fb8ce795a9fe2193194f70d49b5448b51d25a98378336bc931a60d762dc12bcfb2fffc362663391347a4b89e69336fb47efd23dcae4499"; 11669 11867 hasRunfiles = true; ··· 11750 11948 "crumbs" = { 11751 11949 revision = 64602; 11752 11950 stripPrefix = 0; 11753 - deps."catchfile" = tl."catchfile"; 11754 - deps."etoolbox" = tl."etoolbox"; 11755 - deps."xkeyval" = tl."xkeyval"; 11951 + deps = [ 11952 + "catchfile" 11953 + "etoolbox" 11954 + "xkeyval" 11955 + ]; 11756 11956 sha512.run = "f4e3e045665c16d02c6b1cf2d43957fcbfe38ceb17b6bed9445803d4134a3ad2c22b552230ed685d42c33864169c782c9ef51ba47669d7a975e699ec532a1f76"; 11757 11957 sha512.doc = "b6e13f1177eace8e349648dd376e3252b34ada5e84c0a676631ef313507064c68624936730fe9780707bced36f05d4103cd9aa33a4bd511cd23836ed2ab38d03"; 11758 11958 sha512.source = "5220b2d854c11d4c0734ec22dded6c1259d470c416c08fec4d4fff35714bd56126f5c4f8785e958454c1a3854541b9d8cb571d4f7a86b636b1c12e739c52072d"; ··· 11778 11978 "cs" = { 11779 11979 revision = 41553; 11780 11980 stripPrefix = 0; 11781 - deps."cmexb" = tl."cmexb"; 11981 + deps = [ 11982 + "cmexb" 11983 + ]; 11782 11984 sha512.run = "bc956c595d4460f35c64c92e7730a7cc9cd3af95301afba56c49bcf8415666863de926733409ce1afd99ba767fe3a3fa45c68f2dcc912b69c6f72b618289fb30"; 11783 11985 hasRunfiles = true; 11784 11986 }; ··· 11800 12002 }; 11801 12003 "cslatex" = { 11802 12004 revision = 62387; 11803 - deps."atbegshi" = tl."atbegshi"; 11804 - deps."atveryend" = tl."atveryend"; 11805 - deps."cm" = tl."cm"; 11806 - deps."csplain" = tl."csplain"; 11807 - deps."everyshi" = tl."everyshi"; 11808 - deps."firstaid" = tl."firstaid"; 11809 - deps."hyphen-base" = tl."hyphen-base"; 11810 - deps."l3kernel" = tl."l3kernel"; 11811 - deps."l3packages" = tl."l3packages"; 11812 - deps."latex" = tl."latex"; 11813 - deps."latex-fonts" = tl."latex-fonts"; 11814 - deps."tex-ini-files" = tl."tex-ini-files"; 11815 - deps."unicode-data" = tl."unicode-data"; 12005 + deps = [ 12006 + "atbegshi" 12007 + "atveryend" 12008 + "cm" 12009 + "csplain" 12010 + "everyshi" 12011 + "firstaid" 12012 + "hyphen-base" 12013 + "l3kernel" 12014 + "l3packages" 12015 + "latex" 12016 + "latex-fonts" 12017 + "tex-ini-files" 12018 + "unicode-data" 12019 + ]; 11816 12020 hasFormats = true; 11817 12021 sha512.run = "a65516275b53ce0e2487193b537759da447137898915f577c66893d6408c664b7cb830941dac2e80b2922c1597719cc879f66d3378216bfa2dc190e1bf502675"; 11818 12022 sha512.doc = "d1be033b7355bb3431193a9a39bdd1e269c7f3a97333c2b753ffdf795ad45a366893267a13472463805ed428760de680aae3377b25ef39bf5522a0186f80f899"; ··· 11821 12025 }; 11822 12026 "csplain" = { 11823 12027 revision = 62771; 11824 - deps."cm" = tl."cm"; 11825 - deps."cs" = tl."cs"; 11826 - deps."enctex" = tl."enctex"; 11827 - deps."hyph-utf8" = tl."hyph-utf8"; 11828 - deps."hyphen-base" = tl."hyphen-base"; 11829 - deps."luatex" = tl."luatex"; 11830 - deps."luatex85" = tl."luatex85"; 11831 - deps."plain" = tl."plain"; 11832 - deps."tex" = tl."tex"; 11833 - deps."tex-ini-files" = tl."tex-ini-files"; 12028 + deps = [ 12029 + "cm" 12030 + "cs" 12031 + "enctex" 12032 + "hyph-utf8" 12033 + "hyphen-base" 12034 + "luatex" 12035 + "luatex85" 12036 + "plain" 12037 + "tex" 12038 + "tex-ini-files" 12039 + ]; 11834 12040 hasFormats = true; 11835 12041 sha512.run = "c4dbe1721fc2281cba7e426f6c75d35671cfeddf77a947f147a33c651090bc90528583445736bc2933c2d3986424e1b3ac4984e93cfae5f0ad1cfe41902f63cb"; 11836 12042 hasRunfiles = true; ··· 11839 12045 "csquotes" = { 11840 12046 revision = 64389; 11841 12047 stripPrefix = 0; 11842 - deps."etoolbox" = tl."etoolbox"; 12048 + deps = [ 12049 + "etoolbox" 12050 + ]; 11843 12051 sha512.run = "68427cbe486f3b53bdb24869a3ad52cf6a006d7872ff9408560d9e4b0f1e8184fcb437d54e10f11d7a3585ff8ff7ad40ab4a95aa66091bb69a75a3e8e60aede8"; 11844 12052 sha512.doc = "ceba04fab9ec257c6bbc2fc903e3888bae9ef6bfa5664c8e01da14ee2b1482005aece22b6bf4fa7fb893c2dc1b0cb7f762eb048e0b2c039be80ef73b0bfef131"; 11845 12053 hasRunfiles = true; ··· 11947 12155 "ctex" = { 11948 12156 revision = 63891; 11949 12157 stripPrefix = 0; 11950 - deps."adobemapping" = tl."adobemapping"; 11951 - deps."atbegshi" = tl."atbegshi"; 11952 - deps."beamer" = tl."beamer"; 11953 - deps."cjk" = tl."cjk"; 11954 - deps."cjkpunct" = tl."cjkpunct"; 11955 - deps."ec" = tl."ec"; 11956 - deps."epstopdf-pkg" = tl."epstopdf-pkg"; 11957 - deps."etoolbox" = tl."etoolbox"; 11958 - deps."everyhook" = tl."everyhook"; 11959 - deps."fandol" = tl."fandol"; 11960 - deps."fontspec" = tl."fontspec"; 11961 - deps."iftex" = tl."iftex"; 11962 - deps."infwarerr" = tl."infwarerr"; 11963 - deps."kvoptions" = tl."kvoptions"; 11964 - deps."kvsetkeys" = tl."kvsetkeys"; 11965 - deps."latex-bin" = tl."latex-bin"; 11966 - deps."ltxcmds" = tl."ltxcmds"; 11967 - deps."luatexja" = tl."luatexja"; 11968 - deps."mptopdf" = tl."mptopdf"; 11969 - deps."ms" = tl."ms"; 11970 - deps."pdftexcmds" = tl."pdftexcmds"; 11971 - deps."platex-tools" = tl."platex-tools"; 11972 - deps."svn-prov" = tl."svn-prov"; 11973 - deps."tipa" = tl."tipa"; 11974 - deps."tools" = tl."tools"; 11975 - deps."ttfutils" = tl."ttfutils"; 11976 - deps."ulem" = tl."ulem"; 11977 - deps."uplatex" = tl."uplatex"; 11978 - deps."xcjk2uni" = tl."xcjk2uni"; 11979 - deps."xecjk" = tl."xecjk"; 11980 - deps."xetex" = tl."xetex"; 11981 - deps."xkeyval" = tl."xkeyval"; 11982 - deps."xpinyin" = tl."xpinyin"; 11983 - deps."xunicode" = tl."xunicode"; 11984 - deps."zhmetrics" = tl."zhmetrics"; 11985 - deps."zhmetrics-uptex" = tl."zhmetrics-uptex"; 11986 - deps."zhnumber" = tl."zhnumber"; 12158 + deps = [ 12159 + "adobemapping" 12160 + "atbegshi" 12161 + "beamer" 12162 + "cjk" 12163 + "cjkpunct" 12164 + "ec" 12165 + "epstopdf-pkg" 12166 + "etoolbox" 12167 + "everyhook" 12168 + "fandol" 12169 + "fontspec" 12170 + "iftex" 12171 + "infwarerr" 12172 + "kvoptions" 12173 + "kvsetkeys" 12174 + "latex-bin" 12175 + "ltxcmds" 12176 + "luatexja" 12177 + "mptopdf" 12178 + "ms" 12179 + "pdftexcmds" 12180 + "platex-tools" 12181 + "svn-prov" 12182 + "tipa" 12183 + "tools" 12184 + "ttfutils" 12185 + "ulem" 12186 + "uplatex" 12187 + "xcjk2uni" 12188 + "xecjk" 12189 + "xetex" 12190 + "xkeyval" 12191 + "xpinyin" 12192 + "xunicode" 12193 + "zhmetrics" 12194 + "zhmetrics-uptex" 12195 + "zhnumber" 12196 + ]; 11987 12197 sha512.run = "eea93d70d6c7768d8157841db4d4aadc3077422dba7b9cfa9bd4235dc547a43f694c9d3e0002fc2aefa3d8b8823f2478bee712a46cf62742bd30b7cffa7edcdf"; 11988 12198 sha512.doc = "9e23c44358c6060f071a5233ec81efa1efad1f280ebfbb025b7d4c5f6070d4480ad34b961591af429637dc2131b2147051a191e7ea20aa52ec6081bbdbe057fc"; 11989 12199 sha512.source = "1c0033fd3ee4585c3f81490e89c24f2224fe49966068b30fea229dd9c84b6d0b54e5ab2abbd6e500d211c9403fdaf418c3c7c04dead4cc2119912ac8c8000d42"; ··· 12006 12216 }; 12007 12217 "ctie" = { 12008 12218 revision = 62387; 12009 - deps."kpathsea" = tl."kpathsea"; 12219 + deps = [ 12220 + "kpathsea" 12221 + ]; 12010 12222 sha512.run = "c1c69127e1157c15086beb269e1925feaf63eebbc45baec018ce97196a2fc42638bb3107a4c1d065e98a08e490d238d2bffe1827f27f9015ffa5be88be53d6bf"; 12011 12223 sha512.doc = "494a3e6569a77b434f66a56f1fa44d4651dc23e7cdcacb101043ed55cc6e32551f148e67976b67b88507da2fe05a0b006c810fb737f9364d47cb010438c7b39e"; 12012 12224 version = "1.1"; ··· 12185 12397 "cyrillic" = { 12186 12398 revision = 63613; 12187 12399 stripPrefix = 0; 12188 - deps."cyrillic-bin" = tl."cyrillic-bin"; 12400 + deps = [ 12401 + "cyrillic-bin" 12402 + ]; 12189 12403 sha512.run = "1b8889d33e5433b32d0b84bd31ef7ea96fe338456ef8e1732ea6c254dfe2f21d3600766b1e51bafa4ddbf0144e8420ad8ba6ad593eaa32c3d45dde99b0b4ec8c"; 12190 12404 sha512.doc = "b0b1d24d3e8887c5b9c251922157de7cf042845009c07e62fd324ba850dff9f39bc6ebad04ab216ad69070da93f77f68693d1be57cd15b038374f0253329c8fa"; 12191 12405 sha512.source = "4dc564f475a883cb75ae0fad6b5aecb936c1ab9cdaae857dc7cdfb3d8f06f6534542c36b053cc7b74f455a2646f081060c670b35f1eda5fa69418b1c1f97e5dd"; ··· 12273 12487 "datatool" = { 12274 12488 revision = 52663; 12275 12489 stripPrefix = 0; 12276 - deps."fp" = tl."fp"; 12277 - deps."substr" = tl."substr"; 12278 - deps."xfor" = tl."xfor"; 12279 - deps."xkeyval" = tl."xkeyval"; 12490 + deps = [ 12491 + "fp" 12492 + "substr" 12493 + "xfor" 12494 + "xkeyval" 12495 + ]; 12280 12496 sha512.run = "323b1526a32eb4e0d81db77278d66ebb6ac91fa357f7f76c8ac1f199efdc4be17ae4f8fb83fe55f3ac9cfb8a18d163a85d6c21cc11c26e4dea0db5f85dc12dd5"; 12281 12497 sha512.doc = "32b5391c7197bc29783bab0c93a5225784fea999f69bdd8b1b5c152ed338716f82dbedfdb6cd19064ee409407c0b808e5f410e6090cda6d1f8ded2ca41f3ace9"; 12282 12498 sha512.source = "e149a3be96ee0161b2bd872ab73e74c36ea638f0a1f0a48e0268093bdff2c2c1cfabe5c0a4d3ca8ef7ee4c02bd03710c5c1b2ff9c1b543ed792a444160814493"; ··· 12331 12547 "datetime2" = { 12332 12548 revision = 63102; 12333 12549 stripPrefix = 0; 12334 - deps."etoolbox" = tl."etoolbox"; 12335 - deps."tracklang" = tl."tracklang"; 12336 - deps."xkeyval" = tl."xkeyval"; 12550 + deps = [ 12551 + "etoolbox" 12552 + "tracklang" 12553 + "xkeyval" 12554 + ]; 12337 12555 sha512.run = "7f2ad65f95e3881e5016647bff85b10138faaa7d26d097bdce0ec7b30cc0d913a43c2a45b0caa69a6669e54725122cf1a86117d0d4f543caba67058423af7f62"; 12338 12556 sha512.doc = "d43970aea6c7971ed6a3564a6681caea0e0f5606607496d9ec51d6c2fa741dd6c28754c9e9f06cde0ad1a79280b53629eb427faf820d00549468a650cbd0eac8"; 12339 12557 sha512.source = "511c10e67c7d77ee10d8d75704628313a1598636ce82a5ce114942854b3a9d2da237ed12fdab986f13b04ce3c2123933db91b850360b309aa52305575a7cf2d4"; ··· 12532 12750 "datetime2-it-fulltext" = { 12533 12751 revision = 54779; 12534 12752 stripPrefix = 0; 12535 - deps."iftex" = tl."iftex"; 12753 + deps = [ 12754 + "iftex" 12755 + ]; 12536 12756 sha512.run = "29a67f9c4414d08adce673ac2b501e92be5822470511b55677b041fa1d89b55760246fea08ba0f4cac7ef6f8e7ff52498f0459d50f94bf2bc6b3e4a944976a99"; 12537 12757 sha512.doc = "24bceb74337abc4ae74bbf9101bd32cc65371d60a0461cec91c8e3ecc3822c848eb8c7f0bc8706ec1b2118294df659b44f3139c3a3ed1c0c243f9654ae1b3d6d"; 12538 12758 sha512.source = "89a91a69a45100324b24c5cca3e0bdedc8dec2a466c414e65044f55a6c1ec3c715946dd5c5ed942fc9dc8f6a597fe5f2075dd7d05c88d241da4bccb27ba9cb3d"; ··· 12771 12991 "debate" = { 12772 12992 revision = 64846; 12773 12993 stripPrefix = 0; 12774 - deps."listings" = tl."listings"; 12775 - deps."listingsutf8" = tl."listingsutf8"; 12776 - deps."pdfcol" = tl."pdfcol"; 12777 - deps."tcolorbox" = tl."tcolorbox"; 12778 - deps."xcolor" = tl."xcolor"; 12779 - deps."xkeyval" = tl."xkeyval"; 12994 + deps = [ 12995 + "listings" 12996 + "listingsutf8" 12997 + "pdfcol" 12998 + "tcolorbox" 12999 + "xcolor" 13000 + "xkeyval" 13001 + ]; 12780 13002 sha512.run = "88f9ff3f473dfbd84509adfe4491d15b7c20229361afde9cbce382be0441378cd6bb7d306c9b0a424dc065f34ab2d86eca8a0334d00fd3a5bae513776c418815"; 12781 13003 sha512.doc = "ba5e90ecc8c1733cdb78233099cdc95e09d02786df11606b3f823f2b1b60934cd2881c873ad7afa192ee1b0ff5ad91121896cb30e7405ee3ae9bc960d26e7f9c"; 12782 13004 sha512.source = "b9c0b94eea82d7b684aa358788a5ee3cb9709738137827b7a4f70ddd0d02ad92b6feecf03d0de7dd08c1ab233f17db3c973cfafef98134be33a41d6a8d7c4da6"; ··· 12818 13040 "dehyph-exptl" = { 12819 13041 revision = 62734; 12820 13042 stripPrefix = 0; 12821 - deps."hyph-utf8" = tl."hyph-utf8"; 12822 - deps."hyphen-base" = tl."hyphen-base"; 13043 + deps = [ 13044 + "hyph-utf8" 13045 + "hyphen-base" 13046 + ]; 12823 13047 hasHyphens = true; 12824 13048 sha512.run = "13c7fe78927fb7e85155284d47fe597e173647efea8d7077e06f55c358b2b851e3b65820829859d4d770b81af836f308a2b9e0e5c3ddb17f1644d1cf803adc63"; 12825 13049 sha512.doc = "812af78620465987b65654b1b0e270ac911a18019106c54d24622b4f146534f9474b691247e8cde140c1101bf48d843fb1238e5713f9a59a79e969b9314ae895"; ··· 13186 13410 "docshots" = { 13187 13411 revision = 65141; 13188 13412 stripPrefix = 0; 13189 - deps."fancyvrb" = tl."fancyvrb"; 13190 - deps."iexec" = tl."iexec"; 13191 - deps."pdfcrop" = tl."pdfcrop"; 13192 - deps."pgf" = tl."pgf"; 13193 - deps."pgf-blur" = tl."pgf-blur"; 13413 + deps = [ 13414 + "fancyvrb" 13415 + "iexec" 13416 + "pdfcrop" 13417 + "pgf" 13418 + "pgf-blur" 13419 + ]; 13194 13420 sha512.run = "1d4ce9b3bd39d12bc4fc2630c3f9116e7030d623700e951fa99e5bd25fcb2965765d5bf32a709eb9ea2ebd39382ef1ef33205ddd24c6cd5e9b75136de0ff18c2"; 13195 13421 sha512.doc = "7ab3122caf188621a0f5045b9d8dff1361b6577c6e80d6f6bf20a9e81703e7060936162356e4c34c44bea6f8611ae8819eafd8abf745a28346ce3d8b065596f8"; 13196 13422 sha512.source = "1913dbf266953cd42e9a840e140b00fc785f12f610d0e5c84f70a1eb3bef06b8a4cd5c612c682a8c6ab2fb8ff355fe416cbbe70ef366e123f13419bcaaa1abbc"; ··· 13672 13898 }; 13673 13899 "dvipdfmx" = { 13674 13900 revision = 61101; 13675 - deps."glyphlist" = tl."glyphlist"; 13901 + deps = [ 13902 + "glyphlist" 13903 + ]; 13676 13904 sha512.run = "6dd78f4b5cabb51c3bd9988fa46bf90a5a79b3d3293257a4c563a8a76a5a03eb167ce3ec0d4ce6ed05412a551eb201f2379a50a97ac5355ebe833f7b34cee4b4"; 13677 13905 sha512.doc = "00dce9b36eefd1788bbe455b2e5104efd9afc8bd891aeafb2cd9bdee406eeb25ab520e42e614e9d2363eb6a7273232bc3c4805bacd82a22099c5ffc438e852cb"; 13678 13906 hasRunfiles = true; ··· 13808 14036 "easyfloats" = { 13809 14037 revision = 57204; 13810 14038 stripPrefix = 0; 13811 - deps."caption" = tl."caption"; 13812 - deps."environ" = tl."environ"; 13813 - deps."etoolbox" = tl."etoolbox"; 13814 - deps."float" = tl."float"; 13815 - deps."pgf" = tl."pgf"; 14039 + deps = [ 14040 + "caption" 14041 + "environ" 14042 + "etoolbox" 14043 + "float" 14044 + "pgf" 14045 + ]; 13816 14046 sha512.run = "2d02a55fc3d50e5fb79ebe8188300db47aaecb42089843033c569ee0508a38f81e9409d872535e1f7fe3b13a067bdabbf8249073b803c8d232d08aa1d5520d48"; 13817 14047 sha512.doc = "d6e96d7af908e83b67b77f0432e6ffcdcc55b64bc63ac360e42291f16adec4ab6655a423f5fc8f31180071afc5645f47b7ecb2c1c80af719b6cb0cc6e77948da"; 13818 14048 sha512.source = "b21681d30b8963127d603bf81b140851b5e8ea17b63d5979bc05bcfa68efd67460b9f0d0419a69c44606a4d569f5840b3c8d6f0ce7b0cf18d86c1fa104776b5a"; ··· 14133 14363 "einfart" = { 14134 14364 revision = 64280; 14135 14365 stripPrefix = 0; 14136 - deps."minimalist" = tl."minimalist"; 14366 + deps = [ 14367 + "minimalist" 14368 + ]; 14137 14369 sha512.run = "0038664f40f0cf5c940d44d618876e98f1419058b7bfe27e741d536743c4ca208bd728aa4a193544956efa30c0e970ffbb04559e751b116037c8760d34a615f6"; 14138 14370 sha512.doc = "89cb6a140802ed0395bbad43c3bdaeca5879e4564d0f9ae15f333f243490788651bdef214d2aafa5c44c0d720e8fbfc66f3dd584b544d80ad3058015cb883553"; 14139 14371 hasRunfiles = true; ··· 14566 14798 "environ" = { 14567 14799 revision = 56615; 14568 14800 stripPrefix = 0; 14569 - deps."trimspaces" = tl."trimspaces"; 14801 + deps = [ 14802 + "trimspaces" 14803 + ]; 14570 14804 sha512.run = "c8dec70e56651a89ae8da15abc0ad81cc2edb4487837469238e2adc0e7c58cae4c5da82b637a3336839b50103e3d846c5cee8c73141488f644469a0f3e9d363f"; 14571 14805 sha512.doc = "78d4d3f570470619c938687a6c9a6925aad901d781e3e893bd731a49bb8eca62bf1870e68d84f7125e10d91d7bec02a323ae42278ff59c04d7e33eefa2261496"; 14572 14806 sha512.source = "b30607d21bbf5ddf1c7d36bd9173a16d91bdfcfa004782be50e50f17bf54d94e943d5e524e2331b75f3ce65e81193ba98e69ab56c38959d632007f5b0a87bd6a"; ··· 14585 14819 "eolang" = { 14586 14820 revision = 65289; 14587 14821 stripPrefix = 0; 14588 - deps."amsfonts" = tl."amsfonts"; 14589 - deps."amsmath" = tl."amsmath"; 14590 - deps."fancyvrb" = tl."fancyvrb"; 14591 - deps."iexec" = tl."iexec"; 14592 - deps."pgf" = tl."pgf"; 14593 - deps."pgfopts" = tl."pgfopts"; 14594 - deps."stmaryrd" = tl."stmaryrd"; 14822 + deps = [ 14823 + "amsfonts" 14824 + "amsmath" 14825 + "fancyvrb" 14826 + "iexec" 14827 + "pgf" 14828 + "pgfopts" 14829 + "stmaryrd" 14830 + ]; 14595 14831 sha512.run = "2c98181e8dccb936d3f87812a5aa7f3bfb1faf5796a790f3d41ecf94f0331a5069341c2843c81f058c4374a0bc4e31b316e7e30045d0e44f729579bea76f1308"; 14596 14832 sha512.doc = "90e0a7e29708b4dcc79e9f7492bd218fa84eb0860bf33651fad77eda0e161cabbba20b1bf57aafbaa1077da3335a78436ee9ab3f33965e5e091eb080058cf2e7"; 14597 14833 sha512.source = "197fefc52cb241227dea65c14d11a427f0190c6ad6fca97ea6a330471d44c736ad40578338d342c3ace689739e861cc380198c5c05f4648dd0ad423e5ac60da2"; ··· 14639 14875 }; 14640 14876 "eplain" = { 14641 14877 revision = 64721; 14642 - deps."atbegshi" = tl."atbegshi"; 14643 - deps."atveryend" = tl."atveryend"; 14644 - deps."babel" = tl."babel"; 14645 - deps."cm" = tl."cm"; 14646 - deps."dehyph" = tl."dehyph"; 14647 - deps."everyshi" = tl."everyshi"; 14648 - deps."firstaid" = tl."firstaid"; 14649 - deps."hyph-utf8" = tl."hyph-utf8"; 14650 - deps."hyphen-base" = tl."hyphen-base"; 14651 - deps."knuth-lib" = tl."knuth-lib"; 14652 - deps."l3backend" = tl."l3backend"; 14653 - deps."l3kernel" = tl."l3kernel"; 14654 - deps."l3packages" = tl."l3packages"; 14655 - deps."latex" = tl."latex"; 14656 - deps."latex-fonts" = tl."latex-fonts"; 14657 - deps."pdftex" = tl."pdftex"; 14658 - deps."plain" = tl."plain"; 14659 - deps."tex-ini-files" = tl."tex-ini-files"; 14660 - deps."unicode-data" = tl."unicode-data"; 14878 + deps = [ 14879 + "atbegshi" 14880 + "atveryend" 14881 + "babel" 14882 + "cm" 14883 + "dehyph" 14884 + "everyshi" 14885 + "firstaid" 14886 + "hyph-utf8" 14887 + "hyphen-base" 14888 + "knuth-lib" 14889 + "l3backend" 14890 + "l3kernel" 14891 + "l3packages" 14892 + "latex" 14893 + "latex-fonts" 14894 + "pdftex" 14895 + "plain" 14896 + "tex-ini-files" 14897 + "unicode-data" 14898 + ]; 14661 14899 hasFormats = true; 14662 14900 sha512.run = "fda8158ae2bdc96187b6e6ace2a94be3e0f68201adbc02553b48a3848481352ac10ddd72babcbc2835e089ce751ade7dfa6cfd1c642c94155c2861db865f5c29"; 14663 14901 sha512.doc = "60902b2422d2f5d7570a19daf7f586df7882505d7c156539699a0aa47a0f3bde5688dcbdc92c8a6a9878f11392bc9b9f147626aad230eecd2740d56f104928ed"; ··· 14903 15141 "esint-type1" = { 14904 15142 revision = 15878; 14905 15143 stripPrefix = 0; 14906 - deps."esint" = tl."esint"; 15144 + deps = [ 15145 + "esint" 15146 + ]; 14907 15147 sha512.run = "5a663d01e9241adf1961c922c588888561f495e6378fdd7aaa90954c3e51c5f0f8e6dc1e1947c9f03ce3472e1aab3dde1b35e6b5f0814f5e2cda564a31a45a1f"; 14908 15148 sha512.doc = "081a225225f503fac403d306fac3ee3b2747341ef5c4ee9420f49a56ca959c7757f154c24f90ed9506041b13464ea216e6edb52f29790d189ea7b33c7c797f8e"; 14909 15149 hasRunfiles = true; ··· 15877 16117 "ffcode" = { 15878 16118 revision = 65170; 15879 16119 stripPrefix = 0; 15880 - deps."environ" = tl."environ"; 15881 - deps."microtype" = tl."microtype"; 15882 - deps."minted" = tl."minted"; 15883 - deps."pgf" = tl."pgf"; 15884 - deps."tcolorbox" = tl."tcolorbox"; 15885 - deps."xkeyval" = tl."xkeyval"; 16120 + deps = [ 16121 + "environ" 16122 + "microtype" 16123 + "minted" 16124 + "pgf" 16125 + "tcolorbox" 16126 + "xkeyval" 16127 + ]; 15886 16128 sha512.run = "e76c0605b8a074d1827a73a3ba4e9fae40ade590b01e90ee10593c4484e0a534cebb556bf49389fa03355424910cc349b73fbae2827153fc717be69d38d007e0"; 15887 16129 sha512.doc = "c5302e1113f5d1a05517c4877efd710bc6931bac62157001ea540f0b40388c95202dd457fb1362f8b30dc313a48d9742fcd5c6c6a7e5f3404755a3eafa01041a"; 15888 16130 sha512.source = "2863c642dddba771bc4507ed2f0e4a3c4ff12ab4291fb397a2e0f8859776bbba7442a85fefe87d655d0c6236b5e40878ba29cfa19f71870f6932f38247657f5f"; ··· 16606 16848 "fontspec" = { 16607 16849 revision = 63386; 16608 16850 stripPrefix = 0; 16609 - deps."euenc" = tl."euenc"; 16610 - deps."iftex" = tl."iftex"; 16611 - deps."l3kernel" = tl."l3kernel"; 16612 - deps."l3packages" = tl."l3packages"; 16613 - deps."lm" = tl."lm"; 16614 - deps."xunicode" = tl."xunicode"; 16851 + deps = [ 16852 + "euenc" 16853 + "iftex" 16854 + "l3kernel" 16855 + "l3packages" 16856 + "lm" 16857 + "xunicode" 16858 + ]; 16615 16859 sha512.run = "fc4516b96eefa9cb896488510f5ac531446acfa7993abc2f361751e06fe95128afbaadad393dd7ce8c22ea731c81ba99cd8182ce8205c55f78f64a69ba815996"; 16616 16860 sha512.doc = "e765756f93f1aeb03acf0f15d3388c3a39156f2bc46e951ab5c2e4596ac9babd975af025c0881078f58caeacc3281d3769a701f112b17f10ac474d12b4eac897"; 16617 16861 sha512.source = "286db8b9c512c02f2333860b5ff2c980b8b5680de92fc896c95611f2cf1587077f47f9c0aa0e520ad0f64c6f031f8a2fb310f67034ebaca286076d7764bfbc99"; ··· 16721 16965 "forest" = { 16722 16966 revision = 57398; 16723 16967 stripPrefix = 0; 16724 - deps."elocalloc" = tl."elocalloc"; 16725 - deps."environ" = tl."environ"; 16726 - deps."etoolbox" = tl."etoolbox"; 16727 - deps."inlinedef" = tl."inlinedef"; 16728 - deps."l3packages" = tl."l3packages"; 16729 - deps."pgf" = tl."pgf"; 16730 - deps."pgfopts" = tl."pgfopts"; 16968 + deps = [ 16969 + "elocalloc" 16970 + "environ" 16971 + "etoolbox" 16972 + "inlinedef" 16973 + "l3packages" 16974 + "pgf" 16975 + "pgfopts" 16976 + ]; 16731 16977 sha512.run = "edc3341b84e7e89fba3bb76004562c0bc889f944ed33474ba9cf5ed5e63a690202e851a30f44158caa8351b874b8e91659bd91c50d59ec43de9460869e4213f1"; 16732 16978 sha512.doc = "fdaec77023176fc2f7510a9e3b4dcc587898e1f96886340222f932c0d93b1002ad35fba8a38a036f713e41814f3dc6b3f75a5657ae485b15ffea43089895bcae"; 16733 16979 sha512.source = "45f912d17d29568e6ee267814d63bc14c20bb0d91c62b39c21301dd611c50db3b5f7de5f16b519da0f2b4d15609727144c34b16a620abb85114a42344cdaf24f"; ··· 17144 17390 "garuda-c90" = { 17145 17391 revision = 60832; 17146 17392 stripPrefix = 0; 17147 - deps."fonts-tlwg" = tl."fonts-tlwg"; 17393 + deps = [ 17394 + "fonts-tlwg" 17395 + ]; 17148 17396 sha512.run = "a806538598cae0365968ab20936631a052dc65f9f6056c39197f7b1c7a5aad717a7a8b72ed2a1af347f8ce91f27d7dcd74b758db8f01fc7810a8d658990bcc28"; 17149 17397 sha512.source = "58f62ec8020489b69743c0591129967730f9ad0729f7cca343ab6e6fa6675122a1e37bf73f090cae050cb695a14dbfb3c52346e3c528e660484d2cb576aaca65"; 17150 17398 hasRunfiles = true; ··· 17191 17439 "gbt7714" = { 17192 17440 revision = 64633; 17193 17441 stripPrefix = 0; 17194 - deps."bibtex" = tl."bibtex"; 17195 - deps."natbib" = tl."natbib"; 17196 - deps."url" = tl."url"; 17442 + deps = [ 17443 + "bibtex" 17444 + "natbib" 17445 + "url" 17446 + ]; 17197 17447 sha512.run = "f2f869bf4d507ac76ee576f1bb739bc5e5681d3f2cb1db64841f90dfb22a9b18aab04c5722e231280cb94f055ab002ed99fc965bdbb3d2bdeb8d953f704e73b2"; 17198 17448 sha512.doc = "17b79fb795d0b2a0f2c696da83ee1196750c1fef15c77d33353d6742443d43287b5bb96c349be8e58b0df538f4585f45b353234bb100318cbbc6de6f14192da9"; 17199 17449 sha512.source = "0d7e44fdd1106800d2dac2cac49dfe4c9154498837e27880f0193fbc8033f2a74fe5670f79c929ce2216fef216288e5e072f1ccddd23cec85b6265ad569d21d0"; ··· 17307 17557 "geometry" = { 17308 17558 revision = 61719; 17309 17559 stripPrefix = 0; 17310 - deps."graphics" = tl."graphics"; 17311 - deps."iftex" = tl."iftex"; 17560 + deps = [ 17561 + "graphics" 17562 + "iftex" 17563 + ]; 17312 17564 sha512.run = "ed64996404299bd8379197b293baed752ff064e04eec87ffafdfd55cf21c2c48174560eb1c3bcdb0b06190badb9d9cc699aaa7a2ac8a5c537b0c818a423770fc"; 17313 17565 sha512.doc = "a58ab22ae6df349d81b5ddf18a4e9b7dbb5804a497bbaff42acde18ca59fe8a19bfee34293debc23e44c690456e6a1b1d87614fbb85dc6cb3b3b7d330fc866d7"; 17314 17566 sha512.source = "f4e1e8c0f5b8f443c8f5e6ad948cb1736ed944384daec20e9402c871872e86248b3167c72e07fc94fe32ef6ab36c17d2f177135ccf99f68d1c892af0a695bcbf"; ··· 17633 17885 }; 17634 17886 "glossaries" = { 17635 17887 revision = 64919; 17636 - deps."amsmath" = tl."amsmath"; 17637 - deps."datatool" = tl."datatool"; 17638 - deps."etoolbox" = tl."etoolbox"; 17639 - deps."mfirstuc" = tl."mfirstuc"; 17640 - deps."tracklang" = tl."tracklang"; 17641 - deps."xfor" = tl."xfor"; 17642 - deps."xkeyval" = tl."xkeyval"; 17888 + deps = [ 17889 + "amsmath" 17890 + "datatool" 17891 + "etoolbox" 17892 + "mfirstuc" 17893 + "tracklang" 17894 + "xfor" 17895 + "xkeyval" 17896 + ]; 17643 17897 sha512.run = "a805158d4c2741c4efc707bfe417032903630d3f235c7431a3767e47592d8b9be2d64f6a14f21a0c7a3f4b37cbcba90d501c0ab1a551fe16357745960f362a1b"; 17644 17898 sha512.doc = "24e43bacdaf3d3680b49460849f2d4eb652f2e2103558edecff0cb78d261d0275e5f416c7fe83857fbe09f7016643849ee5f030e4b3db167f469960d7791489b"; 17645 17899 sha512.source = "5240de5d2c942ec2eba38e76073f230265ce74dda641622acc8aad4c5856c1e8a749d01829ac39fc4b83479d9d24346270507c0f4bc5b957b7f4f3d07c4e898e"; ··· 18010 18264 "graphics" = { 18011 18265 revision = 64892; 18012 18266 stripPrefix = 0; 18013 - deps."graphics-cfg" = tl."graphics-cfg"; 18014 - deps."graphics-def" = tl."graphics-def"; 18267 + deps = [ 18268 + "graphics-cfg" 18269 + "graphics-def" 18270 + ]; 18015 18271 sha512.run = "e123ddcd0af8ddd37519076b86a443ff74af4da4a960446708c344a2fe75b700a4700db71414cfe06470532ef863926e5e45b9292f81dfed07f60323543e92cf"; 18016 18272 sha512.doc = "9ff56bfcb46f79ea455797e6582a04ce4e8539b395c988382359cdc7eff81544861b85f3b9303acf12a3f05b66aa52311d776cf3d12404b976068369f3947e08"; 18017 18273 sha512.source = "a23d65d454559f6f84f3a810357d31153bec5d44c8ccbf142b1ed14eeebda7cb7c385de9b5da7ce225db169f05e6d155263a097421c84af6e845b1acdbe36902"; ··· 18931 19187 }; 18932 19188 "hitex" = { 18933 19189 revision = 65130; 18934 - deps."atbegshi" = tl."atbegshi"; 18935 - deps."atveryend" = tl."atveryend"; 18936 - deps."babel" = tl."babel"; 18937 - deps."cm" = tl."cm"; 18938 - deps."etex" = tl."etex"; 18939 - deps."everyshi" = tl."everyshi"; 18940 - deps."firstaid" = tl."firstaid"; 18941 - deps."hyphen-base" = tl."hyphen-base"; 18942 - deps."knuth-lib" = tl."knuth-lib"; 18943 - deps."l3backend" = tl."l3backend"; 18944 - deps."l3kernel" = tl."l3kernel"; 18945 - deps."l3packages" = tl."l3packages"; 18946 - deps."latex" = tl."latex"; 18947 - deps."latex-fonts" = tl."latex-fonts"; 18948 - deps."plain" = tl."plain"; 18949 - deps."tex-ini-files" = tl."tex-ini-files"; 18950 - deps."unicode-data" = tl."unicode-data"; 19190 + deps = [ 19191 + "atbegshi" 19192 + "atveryend" 19193 + "babel" 19194 + "cm" 19195 + "etex" 19196 + "everyshi" 19197 + "firstaid" 19198 + "hyphen-base" 19199 + "knuth-lib" 19200 + "l3backend" 19201 + "l3kernel" 19202 + "l3packages" 19203 + "latex" 19204 + "latex-fonts" 19205 + "plain" 19206 + "tex-ini-files" 19207 + "unicode-data" 19208 + ]; 18951 19209 hasFormats = true; 18952 19210 sha512.run = "5a88c0f4d7bddc0161ce24bbe17884a93469f9ffb56ea6a2dcd3045cb97e5c9d09941e44e365483bc5126e1c9c6970ad151e19573d93b1472534333a507f1c63"; 18953 19211 sha512.doc = "3016748caa430c75689e27459c002abc8f68d4aa1c2d0be04b1f82981c44f7a3fd748f900aab5e4c37b16a56f884d5c0cf7d42323288c74cb51b72c19e0b08aa"; ··· 19082 19340 "href-ul" = { 19083 19341 revision = 64880; 19084 19342 stripPrefix = 0; 19085 - deps."hyperref" = tl."hyperref"; 19086 - deps."ulem" = tl."ulem"; 19343 + deps = [ 19344 + "hyperref" 19345 + "ulem" 19346 + ]; 19087 19347 sha512.run = "fd3ddb8d494b5b6a80bddf3e28747cb872452d8bf56e0e59cdbd19e811a235683ac0aff7e92e358f7b9f352cfc2b6c03f2263248cc13e147e4dad649fb331381"; 19088 19348 sha512.doc = "9318e6fd357b9705e95db7600dea3b3b1fe2e7bcb0dffec4bf92b5375a8d7feaaf1574188bfeaefa71f05f6aa3728b51d9c7c72908cc66945a3bc8d5391583d9"; 19089 19349 sha512.source = "cea37410dbfd8094c4028b96f03d8ac631a32f349098ad5acdbdd484a789d2da58a21f65745d647e05075226d8ad3e1c2217850a312afe522206e900c0b00eed"; ··· 19120 19380 "huawei" = { 19121 19381 revision = 65264; 19122 19382 stripPrefix = 0; 19123 - deps."biblatex" = tl."biblatex"; 19124 - deps."cjk" = tl."cjk"; 19125 - deps."currfile" = tl."currfile"; 19126 - deps."datetime" = tl."datetime"; 19127 - deps."enumitem" = tl."enumitem"; 19128 - deps."fancyhdr" = tl."fancyhdr"; 19129 - deps."footmisc" = tl."footmisc"; 19130 - deps."geometry" = tl."geometry"; 19131 - deps."graphics" = tl."graphics"; 19132 - deps."hyperref" = tl."hyperref"; 19133 - deps."l3packages" = tl."l3packages"; 19134 - deps."lastpage" = tl."lastpage"; 19135 - deps."libertine" = tl."libertine"; 19136 - deps."makecell" = tl."makecell"; 19137 - deps."microtype" = tl."microtype"; 19138 - deps."minted" = tl."minted"; 19139 - deps."paralist" = tl."paralist"; 19140 - deps."pgf" = tl."pgf"; 19141 - deps."setspace" = tl."setspace"; 19142 - deps."svg" = tl."svg"; 19143 - deps."tcolorbox" = tl."tcolorbox"; 19144 - deps."textpos" = tl."textpos"; 19145 - deps."titling" = tl."titling"; 19146 - deps."tools" = tl."tools"; 19147 - deps."ulem" = tl."ulem"; 19148 - deps."wrapfig" = tl."wrapfig"; 19149 - deps."xcolor" = tl."xcolor"; 19383 + deps = [ 19384 + "biblatex" 19385 + "cjk" 19386 + "currfile" 19387 + "datetime" 19388 + "enumitem" 19389 + "fancyhdr" 19390 + "footmisc" 19391 + "geometry" 19392 + "graphics" 19393 + "hyperref" 19394 + "l3packages" 19395 + "lastpage" 19396 + "libertine" 19397 + "makecell" 19398 + "microtype" 19399 + "minted" 19400 + "paralist" 19401 + "pgf" 19402 + "setspace" 19403 + "svg" 19404 + "tcolorbox" 19405 + "textpos" 19406 + "titling" 19407 + "tools" 19408 + "ulem" 19409 + "wrapfig" 19410 + "xcolor" 19411 + ]; 19150 19412 sha512.run = "d181f45f8211714674697a8e2e203b3169cb1be998687f315418dca664cb09533b5e3b5f7b1cda0db628401d263d7ca816c2ce1c29da48f1550ea9100d9e2523"; 19151 19413 sha512.doc = "3b4112d8b5389ab26034ff126744aa4299cbc5f42630a00a7e7b4245e4355ed0abe42718100439af3cb5b1642db4567b6d16e69ffe852cae0c5c9aa20e8cd7f9"; 19152 19414 sha512.source = "93271d9361e0cbf9fff9890f2617c96a381b631332041a576309a28af77150afc1da99f7596d3b89d0685584115cdbfd46d1b5fa7706b7ae4af88984e8fae8ab"; ··· 19306 19568 "hyperref" = { 19307 19569 revision = 65014; 19308 19570 stripPrefix = 0; 19309 - deps."atbegshi" = tl."atbegshi"; 19310 - deps."auxhook" = tl."auxhook"; 19311 - deps."bitset" = tl."bitset"; 19312 - deps."etexcmds" = tl."etexcmds"; 19313 - deps."gettitlestring" = tl."gettitlestring"; 19314 - deps."hycolor" = tl."hycolor"; 19315 - deps."intcalc" = tl."intcalc"; 19316 - deps."kvdefinekeys" = tl."kvdefinekeys"; 19317 - deps."kvsetkeys" = tl."kvsetkeys"; 19318 - deps."letltxmacro" = tl."letltxmacro"; 19319 - deps."ltxcmds" = tl."ltxcmds"; 19320 - deps."pdfescape" = tl."pdfescape"; 19321 - deps."refcount" = tl."refcount"; 19322 - deps."rerunfilecheck" = tl."rerunfilecheck"; 19323 - deps."stringenc" = tl."stringenc"; 19324 - deps."url" = tl."url"; 19325 - deps."zapfding" = tl."zapfding"; 19571 + deps = [ 19572 + "atbegshi" 19573 + "auxhook" 19574 + "bitset" 19575 + "etexcmds" 19576 + "gettitlestring" 19577 + "hycolor" 19578 + "intcalc" 19579 + "kvdefinekeys" 19580 + "kvsetkeys" 19581 + "letltxmacro" 19582 + "ltxcmds" 19583 + "pdfescape" 19584 + "refcount" 19585 + "rerunfilecheck" 19586 + "stringenc" 19587 + "url" 19588 + "zapfding" 19589 + ]; 19326 19590 sha512.run = "b0e32f4792039b1e48f4deab6b33a53a0bc32549a6fddada1156880c3ad21bf566d69389c4ae626fc1a844f3b0b94f24a4b1331a9e52b89e4619993bc81c5db5"; 19327 19591 sha512.doc = "97bc2f11dc6b023347817fb18ff91ce6ed4d2a9e22ad3f17aea29781a0bacf6173f13e59e64229c6f62a9b2e67f7b1fdf513db11fb6759a5373b7a1d38d703c8"; 19328 19592 sha512.source = "f8d405385e10f1d818c6c97ca7919886e3b520e661e465e0f516a36ed884de8011cf907b72dc49f0437741df096af2f49837af4d31fb46159efe7867466292a6"; ··· 19348 19612 "hyphen-afrikaans" = { 19349 19613 revision = 58609; 19350 19614 stripPrefix = 0; 19351 - deps."hyph-utf8" = tl."hyph-utf8"; 19352 - deps."hyphen-base" = tl."hyphen-base"; 19615 + deps = [ 19616 + "hyph-utf8" 19617 + "hyphen-base" 19618 + ]; 19353 19619 hasHyphens = true; 19354 19620 sha512.run = "0f969847994b3b377c752c23f802e8c51b4076efc2d43ad2560a72b83cea3bf0a64d7df18a59afe4289a4547a9f23cf81b0c365a499be85a2467579941fa9700"; 19355 19621 hasRunfiles = true; ··· 19357 19623 "hyphen-ancientgreek" = { 19358 19624 revision = 58652; 19359 19625 stripPrefix = 0; 19360 - deps."hyph-utf8" = tl."hyph-utf8"; 19361 - deps."hyphen-base" = tl."hyphen-base"; 19626 + deps = [ 19627 + "hyph-utf8" 19628 + "hyphen-base" 19629 + ]; 19362 19630 hasHyphens = true; 19363 19631 sha512.run = "3f91560ecf78c5540fd4f5d9890f6aa7a57bcd3a41095985785505b82e40793b91a5da3a01bdc021b11c32db3dd7030a104686b34b496c9094acfb85509cd007"; 19364 19632 hasRunfiles = true; ··· 19366 19634 "hyphen-arabic" = { 19367 19635 revision = 54568; 19368 19636 stripPrefix = 0; 19369 - deps."hyph-utf8" = tl."hyph-utf8"; 19370 - deps."hyphen-base" = tl."hyphen-base"; 19637 + deps = [ 19638 + "hyph-utf8" 19639 + "hyphen-base" 19640 + ]; 19371 19641 hasHyphens = true; 19372 19642 sha512.run = "85012062097dd4b624cb39c68b293169a25ab3c9cd15b4474c3a3ffbe4b8ab13d6856c6c70a580da45a2d210952df2d9760682da3917cfd24d17772dc2ccce7f"; 19373 19643 }; 19374 19644 "hyphen-armenian" = { 19375 19645 revision = 58652; 19376 19646 stripPrefix = 0; 19377 - deps."hyph-utf8" = tl."hyph-utf8"; 19378 - deps."hyphen-base" = tl."hyphen-base"; 19647 + deps = [ 19648 + "hyph-utf8" 19649 + "hyphen-base" 19650 + ]; 19379 19651 hasHyphens = true; 19380 19652 sha512.run = "59538414bf5a4701199100fbd9d5247999a36bc28c7c6ef2a28deb9024e01605d48839f00f345c848365853ac3a9f1aab7402f44860532d7a5c099d2f27ee189"; 19381 19653 sha512.source = "d25e6347545e00a809db1dc8e48ef3fe67678b9ec93a1f3619d2a5a3d786d6e411c2e9f905120e3c5d01d9489c0a83035ce8025836249c88ee768bf07b8e2ca7"; ··· 19390 19662 "hyphen-basque" = { 19391 19663 revision = 58652; 19392 19664 stripPrefix = 0; 19393 - deps."hyph-utf8" = tl."hyph-utf8"; 19394 - deps."hyphen-base" = tl."hyphen-base"; 19665 + deps = [ 19666 + "hyph-utf8" 19667 + "hyphen-base" 19668 + ]; 19395 19669 hasHyphens = true; 19396 19670 sha512.run = "b90680dc5692824d60ca603e8bdd2fcade7cc772c8c0f9538d579704fb16165db2baf0c466ccaff46d92491b4a678fa86a127c0d106dbef6d640dfd2f887663d"; 19397 19671 sha512.source = "75a20da77fa056c719ecc1f014bb09c67f62f1c4a3abe04b7cadf45c7a4e06e4492cb0d34a8025f19f3ee5e3330e488212885095335d4a7e97baa5b106576223"; ··· 19400 19674 "hyphen-belarusian" = { 19401 19675 revision = 58652; 19402 19676 stripPrefix = 0; 19403 - deps."hyph-utf8" = tl."hyph-utf8"; 19404 - deps."hyphen-base" = tl."hyphen-base"; 19677 + deps = [ 19678 + "hyph-utf8" 19679 + "hyphen-base" 19680 + ]; 19405 19681 hasHyphens = true; 19406 19682 sha512.run = "19b9bd10d2357d0cb6ecc9ddb5e46b65b3c0eec1b2917a78311f255c1609bbb86595ce617d331271a72de934ae4001597f4a04d61b3810e34f3b197b21cab193"; 19407 19683 hasRunfiles = true; ··· 19409 19685 "hyphen-bulgarian" = { 19410 19686 revision = 58685; 19411 19687 stripPrefix = 0; 19412 - deps."hyph-utf8" = tl."hyph-utf8"; 19413 - deps."hyphen-base" = tl."hyphen-base"; 19688 + deps = [ 19689 + "hyph-utf8" 19690 + "hyphen-base" 19691 + ]; 19414 19692 hasHyphens = true; 19415 19693 sha512.run = "9763e6ece053594b01cd9255a8a3551eb6b86ab082f6f9283664e256c55d43b9513b624774a650d83215d656334751f569496030187c1c78e2fe80f2d10f2f1f"; 19416 19694 hasRunfiles = true; ··· 19418 19696 "hyphen-catalan" = { 19419 19697 revision = 58609; 19420 19698 stripPrefix = 0; 19421 - deps."hyph-utf8" = tl."hyph-utf8"; 19422 - deps."hyphen-base" = tl."hyphen-base"; 19699 + deps = [ 19700 + "hyph-utf8" 19701 + "hyphen-base" 19702 + ]; 19423 19703 hasHyphens = true; 19424 19704 sha512.run = "37189e09ee902f2c5145f30180b51211091b07d7d04125c98f1b7c424ad27f6899424b78cd17c559509076eeeb957b4f268fb4130807e7fafb461174fed8200b"; 19425 19705 hasRunfiles = true; ··· 19427 19707 "hyphen-chinese" = { 19428 19708 revision = 58652; 19429 19709 stripPrefix = 0; 19430 - deps."hyph-utf8" = tl."hyph-utf8"; 19431 - deps."hyphen-base" = tl."hyphen-base"; 19710 + deps = [ 19711 + "hyph-utf8" 19712 + "hyphen-base" 19713 + ]; 19432 19714 hasHyphens = true; 19433 19715 sha512.run = "a78b70095fcfe297e2d85a49108affd5d48451ff4740461eed46d395410a665011614c9a89dff37e9477ee3803de6ebaa68595ac39222f2968a4124355ea7fa7"; 19434 19716 hasRunfiles = true; ··· 19436 19718 "hyphen-churchslavonic" = { 19437 19719 revision = 58609; 19438 19720 stripPrefix = 0; 19439 - deps."hyph-utf8" = tl."hyph-utf8"; 19440 - deps."hyphen-base" = tl."hyphen-base"; 19721 + deps = [ 19722 + "hyph-utf8" 19723 + "hyphen-base" 19724 + ]; 19441 19725 hasHyphens = true; 19442 19726 sha512.run = "c44b3f5fec7b44958336dcfb1a43c5b71fd1715262278863f5fcd74d7ec0cc6f1d572b741256d791e6979f15e4b0fcda8058725e27f17e1deb6e5df5fdb007ab"; 19443 19727 hasRunfiles = true; ··· 19445 19729 "hyphen-coptic" = { 19446 19730 revision = 58652; 19447 19731 stripPrefix = 0; 19448 - deps."hyph-utf8" = tl."hyph-utf8"; 19449 - deps."hyphen-base" = tl."hyphen-base"; 19732 + deps = [ 19733 + "hyph-utf8" 19734 + "hyphen-base" 19735 + ]; 19450 19736 hasHyphens = true; 19451 19737 sha512.run = "fe36adfe900e23f2b0c3e9c3a3d96b608c49bf597222537d355d6a68e2f87f587db78a1921ab1c9a80ea175529e353524c35e99b83ef7f5515ab7c0aacd2f680"; 19452 19738 hasRunfiles = true; ··· 19454 19740 "hyphen-croatian" = { 19455 19741 revision = 58652; 19456 19742 stripPrefix = 0; 19457 - deps."hyph-utf8" = tl."hyph-utf8"; 19458 - deps."hyphen-base" = tl."hyphen-base"; 19743 + deps = [ 19744 + "hyph-utf8" 19745 + "hyphen-base" 19746 + ]; 19459 19747 hasHyphens = true; 19460 19748 sha512.run = "8355d0aa95bb2e72bfc45015f9ae9f6a138f94441387a4daadfec5be4060878f6e69d05eab15432d99c256c1a3f68c122d5c915164fe343459d658a4543ddf42"; 19461 19749 hasRunfiles = true; ··· 19463 19751 "hyphen-czech" = { 19464 19752 revision = 58609; 19465 19753 stripPrefix = 0; 19466 - deps."hyph-utf8" = tl."hyph-utf8"; 19467 - deps."hyphen-base" = tl."hyphen-base"; 19754 + deps = [ 19755 + "hyph-utf8" 19756 + "hyphen-base" 19757 + ]; 19468 19758 hasHyphens = true; 19469 19759 sha512.run = "f5c8b08c2db716dfa6d36fcf337b4e18372978d04e28ff2c8ed0a0b3866f4bb3efb7b498fedbfde5052fc504b8677ae553c2dce73701e219632d8c5460d7e826"; 19470 19760 hasRunfiles = true; ··· 19472 19762 "hyphen-danish" = { 19473 19763 revision = 58652; 19474 19764 stripPrefix = 0; 19475 - deps."hyph-utf8" = tl."hyph-utf8"; 19476 - deps."hyphen-base" = tl."hyphen-base"; 19765 + deps = [ 19766 + "hyph-utf8" 19767 + "hyphen-base" 19768 + ]; 19477 19769 hasHyphens = true; 19478 19770 sha512.run = "954543a3fb81ff00d9c58315ba59d7a5e3430217dda6c1453bcb7ffb0516025dea4b877eb9d66c9f80ccc69d3d4895bdc6ae1b611d8394435fa647b8b806559d"; 19479 19771 hasRunfiles = true; ··· 19481 19773 "hyphen-dutch" = { 19482 19774 revision = 58609; 19483 19775 stripPrefix = 0; 19484 - deps."hyph-utf8" = tl."hyph-utf8"; 19485 - deps."hyphen-base" = tl."hyphen-base"; 19776 + deps = [ 19777 + "hyph-utf8" 19778 + "hyphen-base" 19779 + ]; 19486 19780 hasHyphens = true; 19487 19781 sha512.run = "111371e47ca29069a5a9144d694858dd899b19e2b38d0c793b1e4884c69ae2d62398aacb4cd89e23246fc025e42872875bc808c1f327ac1502fac88c962e6c14"; 19488 19782 hasRunfiles = true; ··· 19491 19785 "hyphen-english" = { 19492 19786 revision = 58609; 19493 19787 stripPrefix = 0; 19494 - deps."hyph-utf8" = tl."hyph-utf8"; 19495 - deps."hyphen-base" = tl."hyphen-base"; 19788 + deps = [ 19789 + "hyph-utf8" 19790 + "hyphen-base" 19791 + ]; 19496 19792 hasHyphens = true; 19497 19793 sha512.run = "a305cf89138e4327844d43a7e21773e31ac97a4655e4d58ae9a46dc0df565e432330debf704c37b4ad552561357521eba0b676755544ceb9c4f21ace09d6dd2c"; 19498 19794 hasRunfiles = true; ··· 19500 19796 "hyphen-esperanto" = { 19501 19797 revision = 58652; 19502 19798 stripPrefix = 0; 19503 - deps."hyph-utf8" = tl."hyph-utf8"; 19504 - deps."hyphen-base" = tl."hyphen-base"; 19799 + deps = [ 19800 + "hyph-utf8" 19801 + "hyphen-base" 19802 + ]; 19505 19803 hasHyphens = true; 19506 19804 sha512.run = "ed2976e9fb3eec5d2f0759348b284129e43bf161db571dd21270335388b8aec57e1b8393bc9b246f8a6e9cde22f93a4cb3c1a03dcadd64fdda3d70b576789050"; 19507 19805 hasRunfiles = true; ··· 19509 19807 "hyphen-estonian" = { 19510 19808 revision = 58652; 19511 19809 stripPrefix = 0; 19512 - deps."hyph-utf8" = tl."hyph-utf8"; 19513 - deps."hyphen-base" = tl."hyphen-base"; 19810 + deps = [ 19811 + "hyph-utf8" 19812 + "hyphen-base" 19813 + ]; 19514 19814 hasHyphens = true; 19515 19815 sha512.run = "0eb91153214aaca8c3b5816f5315f9afdeb7c19521c87c79ea2b35e82217bfb23c8bb774baf810206f4413fc663e441ebe6b4962880ca0dbcda9209d2acce3b8"; 19516 19816 hasRunfiles = true; ··· 19518 19818 "hyphen-ethiopic" = { 19519 19819 revision = 58652; 19520 19820 stripPrefix = 0; 19521 - deps."hyph-utf8" = tl."hyph-utf8"; 19522 - deps."hyphen-base" = tl."hyphen-base"; 19821 + deps = [ 19822 + "hyph-utf8" 19823 + "hyphen-base" 19824 + ]; 19523 19825 hasHyphens = true; 19524 19826 sha512.run = "a1532603758e7f774acba7c13ee74f0046ff187598ca86b2e93b91da31317f03fdbab5d4d7c0814978fb2ac159bd6e5a48e6e734c19758da21ad0a031844f52b"; 19525 19827 sha512.source = "9d6c8c1b0ce5c40d388937328461336a97fcf1fe780fa6198e029f12ef118d9d98f6eec03ea217743851f0217217d6548298df9336fcf33e6c4c196bbdb9eef0"; ··· 19528 19830 "hyphen-farsi" = { 19529 19831 revision = 54568; 19530 19832 stripPrefix = 0; 19531 - deps."hyph-utf8" = tl."hyph-utf8"; 19532 - deps."hyphen-base" = tl."hyphen-base"; 19833 + deps = [ 19834 + "hyph-utf8" 19835 + "hyphen-base" 19836 + ]; 19533 19837 hasHyphens = true; 19534 19838 sha512.run = "5b02582769a55bb07d81e748e83170c16aca1c33b0a240cf547fa9c2212f2be52223e258229c760ddc5dd730419bd9e761614cc4fb3b3ba8102841bb779af511"; 19535 19839 }; 19536 19840 "hyphen-finnish" = { 19537 19841 revision = 58652; 19538 19842 stripPrefix = 0; 19539 - deps."hyph-utf8" = tl."hyph-utf8"; 19540 - deps."hyphen-base" = tl."hyphen-base"; 19843 + deps = [ 19844 + "hyph-utf8" 19845 + "hyphen-base" 19846 + ]; 19541 19847 hasHyphens = true; 19542 19848 sha512.run = "6aa171d77952165cdcb1b667885f16dd382124ed70ed1db80a9a89553d972720d8ff5f0da1b36669e02c3030d9ff362ab77ba1fa2ba45cddfb460018f0c0191d"; 19543 19849 hasRunfiles = true; ··· 19545 19851 "hyphen-french" = { 19546 19852 revision = 58652; 19547 19853 stripPrefix = 0; 19548 - deps."hyph-utf8" = tl."hyph-utf8"; 19549 - deps."hyphen-base" = tl."hyphen-base"; 19854 + deps = [ 19855 + "hyph-utf8" 19856 + "hyphen-base" 19857 + ]; 19550 19858 hasHyphens = true; 19551 19859 sha512.run = "b9d2d05311a90f4caa6c4e8aa8a2e80e9c15fc3552f03f0ac6ec70d386610612715deb6e778247248355a3a209fb2413d6d2aee12f18bc35d5a334870b612507"; 19552 19860 hasRunfiles = true; ··· 19554 19862 "hyphen-friulan" = { 19555 19863 revision = 58652; 19556 19864 stripPrefix = 0; 19557 - deps."hyph-utf8" = tl."hyph-utf8"; 19558 - deps."hyphen-base" = tl."hyphen-base"; 19865 + deps = [ 19866 + "hyph-utf8" 19867 + "hyphen-base" 19868 + ]; 19559 19869 hasHyphens = true; 19560 19870 sha512.run = "d1775a9b6e6b7fa155e44c93271e2ccb41bd1ec143ea0cf624841ad48a123db924dd134e6e60b862a808ad2058ed5b86cb34d98e5728b9dccd3997ba2f06932e"; 19561 19871 hasRunfiles = true; ··· 19563 19873 "hyphen-galician" = { 19564 19874 revision = 58652; 19565 19875 stripPrefix = 0; 19566 - deps."hyph-utf8" = tl."hyph-utf8"; 19567 - deps."hyphen-base" = tl."hyphen-base"; 19876 + deps = [ 19877 + "hyph-utf8" 19878 + "hyphen-base" 19879 + ]; 19568 19880 hasHyphens = true; 19569 19881 sha512.run = "2d707542f80dc94ad20c0daa776df23b773a5e6ccb261e11db675e1e89f5f303a4f5cd50d97f491cc7ea8b0f3c0d3f6391707812a95d4e72cca3afa7815e566f"; 19570 19882 sha512.source = "b9925168b1f9ae5139ffc3bd34810cc05a27475cfae31e98fd0d7618575fc994ca95d7479506024abec2c33bb20121811244d69c490df18a29d6c93fe02174c6"; ··· 19573 19885 "hyphen-georgian" = { 19574 19886 revision = 58652; 19575 19887 stripPrefix = 0; 19576 - deps."hyph-utf8" = tl."hyph-utf8"; 19577 - deps."hyphen-base" = tl."hyphen-base"; 19888 + deps = [ 19889 + "hyph-utf8" 19890 + "hyphen-base" 19891 + ]; 19578 19892 hasHyphens = true; 19579 19893 sha512.run = "edaf041a2f92b0f7dbf28042c81838e8fd781cf9c3ad529c314227c94917ce4e8728ca676f8bd42e2a81bae76b11aabc1e22896e3ef9cd38ca4b718bc58fa0cb"; 19580 19894 hasRunfiles = true; ··· 19582 19896 "hyphen-german" = { 19583 19897 revision = 59807; 19584 19898 stripPrefix = 0; 19585 - deps."dehyph" = tl."dehyph"; 19586 - deps."hyph-utf8" = tl."hyph-utf8"; 19587 - deps."hyphen-base" = tl."hyphen-base"; 19899 + deps = [ 19900 + "dehyph" 19901 + "hyph-utf8" 19902 + "hyphen-base" 19903 + ]; 19588 19904 hasHyphens = true; 19589 19905 sha512.run = "c27389dea67ffd0d45419d484b0c72577b2d5b8234266483add078b970d5d994d41f7cf9a1509ad93efe9489501f986127ea717135c5f57588094393e0d7219e"; 19590 19906 hasRunfiles = true; ··· 19592 19908 "hyphen-greek" = { 19593 19909 revision = 58652; 19594 19910 stripPrefix = 0; 19595 - deps."hyph-utf8" = tl."hyph-utf8"; 19596 - deps."hyphen-base" = tl."hyphen-base"; 19911 + deps = [ 19912 + "hyph-utf8" 19913 + "hyphen-base" 19914 + ]; 19597 19915 hasHyphens = true; 19598 19916 sha512.run = "3da84f41aaf7e5d4be0ce609e4d119e65c9189ff6662051cb7e879e9e373d990ef1c59ac7cfead1bdbc6e55b52d4b3ed28d157b22dbec43e5226f16872d5a7de"; 19599 19917 sha512.doc = "865aaf1f9f0fbe130f9006e41ef677713667832745fc24c28cffe805a540a19f7104a3f0fef3258ba0e16c1c456959904887899a4c584338c58de7fcc80c5419"; ··· 19603 19921 "hyphen-hungarian" = { 19604 19922 revision = 58652; 19605 19923 stripPrefix = 0; 19606 - deps."hyph-utf8" = tl."hyph-utf8"; 19607 - deps."hyphen-base" = tl."hyphen-base"; 19924 + deps = [ 19925 + "hyph-utf8" 19926 + "hyphen-base" 19927 + ]; 19608 19928 hasHyphens = true; 19609 19929 sha512.run = "868a4c3f4d0eda078054026bd1ec35e05c2f4013e093bf58147bfa2d861814242b55a900ce60384767558c9552ff9d41cf447e2a157bae83bd2877251012d96b"; 19610 19930 sha512.doc = "164180f0485e16a49ba83dcb4721902e8a29f399032d4f5a59d55e424b8178a25dedd9fb99919d9d772142342fb78fe0dbf7a5303382a0b7feae4a381b76f8bb"; ··· 19613 19933 "hyphen-icelandic" = { 19614 19934 revision = 58652; 19615 19935 stripPrefix = 0; 19616 - deps."hyph-utf8" = tl."hyph-utf8"; 19617 - deps."hyphen-base" = tl."hyphen-base"; 19936 + deps = [ 19937 + "hyph-utf8" 19938 + "hyphen-base" 19939 + ]; 19618 19940 hasHyphens = true; 19619 19941 sha512.run = "69add7ccde189e86810e2a82692a260de9a9fcc0ba011352881d202d4f4c94c4dbd84fe36dff40ef9b9ad3e8e990947cc61022307790f13cad56744f3ef5e41f"; 19620 19942 hasRunfiles = true; ··· 19622 19944 "hyphen-indic" = { 19623 19945 revision = 58652; 19624 19946 stripPrefix = 0; 19625 - deps."hyph-utf8" = tl."hyph-utf8"; 19626 - deps."hyphen-base" = tl."hyphen-base"; 19947 + deps = [ 19948 + "hyph-utf8" 19949 + "hyphen-base" 19950 + ]; 19627 19951 hasHyphens = true; 19628 19952 sha512.run = "765be1c13ef3445b056b61c24460cc2f18bad038c04541bf4773c7f61c6d26be25d3079b260a1b9623e2f01155ec52eb5bc87b0ea9234e50a5ca24dd8a7a5937"; 19629 19953 hasRunfiles = true; ··· 19631 19955 "hyphen-indonesian" = { 19632 19956 revision = 58609; 19633 19957 stripPrefix = 0; 19634 - deps."hyph-utf8" = tl."hyph-utf8"; 19635 - deps."hyphen-base" = tl."hyphen-base"; 19958 + deps = [ 19959 + "hyph-utf8" 19960 + "hyphen-base" 19961 + ]; 19636 19962 hasHyphens = true; 19637 19963 sha512.run = "3f04a63010c02d77cb229c90aec9f1079557493958573be9ce992ac5ae3c229f01f9abc0cac785d9340ff48aa169a01f8b327ecb2e255bef57f1fe85d04d1d2a"; 19638 19964 hasRunfiles = true; ··· 19640 19966 "hyphen-interlingua" = { 19641 19967 revision = 58609; 19642 19968 stripPrefix = 0; 19643 - deps."hyph-utf8" = tl."hyph-utf8"; 19644 - deps."hyphen-base" = tl."hyphen-base"; 19969 + deps = [ 19970 + "hyph-utf8" 19971 + "hyphen-base" 19972 + ]; 19645 19973 hasHyphens = true; 19646 19974 sha512.run = "dfed82ea70f25d452726b5cd03d8e060bddc23cbbc5deebab2ddad93ce6744c38d357327fbe570bf7a1444f62cee0cc422a6c7d066d6693a238d851b4fe46e32"; 19647 19975 hasRunfiles = true; ··· 19649 19977 "hyphen-irish" = { 19650 19978 revision = 58609; 19651 19979 stripPrefix = 0; 19652 - deps."hyph-utf8" = tl."hyph-utf8"; 19653 - deps."hyphen-base" = tl."hyphen-base"; 19980 + deps = [ 19981 + "hyph-utf8" 19982 + "hyphen-base" 19983 + ]; 19654 19984 hasHyphens = true; 19655 19985 sha512.run = "478a77c4ab8231a3041c3427075f16c072f58a394eced8ff0cd5da6544f3f2fd65722f33fd8344e18060c96f09bd18b90af71f8508639fc9c59d29d704d9e348"; 19656 19986 hasRunfiles = true; ··· 19658 19988 "hyphen-italian" = { 19659 19989 revision = 58652; 19660 19990 stripPrefix = 0; 19661 - deps."hyph-utf8" = tl."hyph-utf8"; 19662 - deps."hyphen-base" = tl."hyphen-base"; 19991 + deps = [ 19992 + "hyph-utf8" 19993 + "hyphen-base" 19994 + ]; 19663 19995 hasHyphens = true; 19664 19996 sha512.run = "4e79ee31893d6c948a3aac8588d4beb75d89f89df973b1e39cd63894e008af55f8dca774194d7eb105fb0aef692b17bb645d5bd85cca7debafd74aabf241bc30"; 19665 19997 hasRunfiles = true; ··· 19668 20000 "hyphen-kurmanji" = { 19669 20001 revision = 58652; 19670 20002 stripPrefix = 0; 19671 - deps."hyph-utf8" = tl."hyph-utf8"; 19672 - deps."hyphen-base" = tl."hyphen-base"; 20003 + deps = [ 20004 + "hyph-utf8" 20005 + "hyphen-base" 20006 + ]; 19673 20007 hasHyphens = true; 19674 20008 sha512.run = "e5114da178fc841b1079130c01f8729ac94f0e3592dbd479f44a978ea009fd75b410d6130d9badd6227d115d8f6dad3ed4b553dbfbf4f80be5d1c2adf108e2fa"; 19675 20009 hasRunfiles = true; ··· 19677 20011 "hyphen-latin" = { 19678 20012 revision = 58652; 19679 20013 stripPrefix = 0; 19680 - deps."hyph-utf8" = tl."hyph-utf8"; 19681 - deps."hyphen-base" = tl."hyphen-base"; 20014 + deps = [ 20015 + "hyph-utf8" 20016 + "hyphen-base" 20017 + ]; 19682 20018 hasHyphens = true; 19683 20019 sha512.run = "9d0db7fcad4ca764379957fa22f9daede79898bcacfbdb62abe54318a52dd82a66f8e39542c18008e3f6b6d0db284b1e9b891531d3c8f3c9cf22c764e83d57b3"; 19684 20020 hasRunfiles = true; ··· 19687 20023 "hyphen-latvian" = { 19688 20024 revision = 58652; 19689 20025 stripPrefix = 0; 19690 - deps."hyph-utf8" = tl."hyph-utf8"; 19691 - deps."hyphen-base" = tl."hyphen-base"; 20026 + deps = [ 20027 + "hyph-utf8" 20028 + "hyphen-base" 20029 + ]; 19692 20030 hasHyphens = true; 19693 20031 sha512.run = "85aeadb0cb3c5de9ef48057132ccd958d17f014b07b56b9ebe2186a709c4e7646fad260e156718e43ec3eac88681654f88c9b53a6d71fb3eaee934dcb4439ed9"; 19694 20032 hasRunfiles = true; ··· 19696 20034 "hyphen-lithuanian" = { 19697 20035 revision = 58652; 19698 20036 stripPrefix = 0; 19699 - deps."hyph-utf8" = tl."hyph-utf8"; 19700 - deps."hyphen-base" = tl."hyphen-base"; 20037 + deps = [ 20038 + "hyph-utf8" 20039 + "hyphen-base" 20040 + ]; 19701 20041 hasHyphens = true; 19702 20042 sha512.run = "7a691e3c55c768b9ea5ef13552dc42025ab613df0a0d5c0d54aad58b63da11a93e59bc53e6a8211d5e054cbea8500846da01e9619bbee723d648e2d369a49d55"; 19703 20043 hasRunfiles = true; ··· 19705 20045 "hyphen-macedonian" = { 19706 20046 revision = 58652; 19707 20047 stripPrefix = 0; 19708 - deps."hyph-utf8" = tl."hyph-utf8"; 19709 - deps."hyphen-base" = tl."hyphen-base"; 20048 + deps = [ 20049 + "hyph-utf8" 20050 + "hyphen-base" 20051 + ]; 19710 20052 hasHyphens = true; 19711 20053 sha512.run = "f88208291212874df493151581205d1b270b2d4278176c42e11edac9b344b73c2ee859f93b6947e4a6003a00abc4d3753024add9caf84f114c8a0cec72aa8c8d"; 19712 20054 hasRunfiles = true; ··· 19714 20056 "hyphen-mongolian" = { 19715 20057 revision = 58652; 19716 20058 stripPrefix = 0; 19717 - deps."hyph-utf8" = tl."hyph-utf8"; 19718 - deps."hyphen-base" = tl."hyphen-base"; 20059 + deps = [ 20060 + "hyph-utf8" 20061 + "hyphen-base" 20062 + ]; 19719 20063 hasHyphens = true; 19720 20064 sha512.run = "159562a8feb25918bc422e7dc78a46423c7fff2f3c61016a0162761411999a5555be3c6e36cf967d5034f65c12f4b0834ae0c0423c2f3ab17a65034b1803dc72"; 19721 20065 hasRunfiles = true; ··· 19723 20067 "hyphen-norwegian" = { 19724 20068 revision = 58609; 19725 20069 stripPrefix = 0; 19726 - deps."hyph-utf8" = tl."hyph-utf8"; 19727 - deps."hyphen-base" = tl."hyphen-base"; 20070 + deps = [ 20071 + "hyph-utf8" 20072 + "hyphen-base" 20073 + ]; 19728 20074 hasHyphens = true; 19729 20075 sha512.run = "8b02e90bfcdf3c6d4bd1966b21e0512069f1749c638d537e9553f68e61e0bc325db8d3b462f45650db4376c7a769c2cde3e0c0601d7de272898a23cd2251c064"; 19730 20076 hasRunfiles = true; ··· 19732 20078 "hyphen-occitan" = { 19733 20079 revision = 58652; 19734 20080 stripPrefix = 0; 19735 - deps."hyph-utf8" = tl."hyph-utf8"; 19736 - deps."hyphen-base" = tl."hyphen-base"; 20081 + deps = [ 20082 + "hyph-utf8" 20083 + "hyphen-base" 20084 + ]; 19737 20085 hasHyphens = true; 19738 20086 sha512.run = "b0743d1f6083dac7a347e22aed19d0c5d76119582e4862557a55b817b17dddaa69a2150f14daf6b08689278dd61b27c1b6ed45df5601dd6327bf185a7a46a5c6"; 19739 20087 hasRunfiles = true; ··· 19741 20089 "hyphen-piedmontese" = { 19742 20090 revision = 58652; 19743 20091 stripPrefix = 0; 19744 - deps."hyph-utf8" = tl."hyph-utf8"; 19745 - deps."hyphen-base" = tl."hyphen-base"; 20092 + deps = [ 20093 + "hyph-utf8" 20094 + "hyphen-base" 20095 + ]; 19746 20096 hasHyphens = true; 19747 20097 sha512.run = "fa7fc73edd582ba20b8236507385f0a30f477bb9c79e35fea56aa4020be966b9c4a16a327848dd051fa4cf6e6117ef8a51eb92ed6cb72f6993cb290fa5cd5ca3"; 19748 20098 hasRunfiles = true; ··· 19750 20100 "hyphen-polish" = { 19751 20101 revision = 58609; 19752 20102 stripPrefix = 0; 19753 - deps."hyph-utf8" = tl."hyph-utf8"; 19754 - deps."hyphen-base" = tl."hyphen-base"; 20103 + deps = [ 20104 + "hyph-utf8" 20105 + "hyphen-base" 20106 + ]; 19755 20107 hasHyphens = true; 19756 20108 sha512.run = "5580b3865ff8d20d475cb962b0257b909ff0e410b6776cb8153145fb0ee42b2f777069413bc6b3622c8c52318aba1ba836210e8972c5b6a47ef978c24fc8848a"; 19757 20109 hasRunfiles = true; ··· 19760 20112 "hyphen-portuguese" = { 19761 20113 revision = 58609; 19762 20114 stripPrefix = 0; 19763 - deps."hyph-utf8" = tl."hyph-utf8"; 19764 - deps."hyphen-base" = tl."hyphen-base"; 20115 + deps = [ 20116 + "hyph-utf8" 20117 + "hyphen-base" 20118 + ]; 19765 20119 hasHyphens = true; 19766 20120 sha512.run = "9d9ab3e616522ab9837bb7c7509127f998c442e96f96ee6b6fc0fdc9ac53fd03319d0c0ce28e23a35f1ae0ebb840cdeb19e8ab6444549c33059b28e7b307486e"; 19767 20121 hasRunfiles = true; ··· 19769 20123 "hyphen-romanian" = { 19770 20124 revision = 58652; 19771 20125 stripPrefix = 0; 19772 - deps."hyph-utf8" = tl."hyph-utf8"; 19773 - deps."hyphen-base" = tl."hyphen-base"; 20126 + deps = [ 20127 + "hyph-utf8" 20128 + "hyphen-base" 20129 + ]; 19774 20130 hasHyphens = true; 19775 20131 sha512.run = "124a93a633731dc1b3d6cbf2fc9b8489bf0737911a0c25ea44dbdfffa07c165ba5804dfd7e9cbe0be3b6eceb9fd6e95daefcae2356ee140f644416bbe1b13507"; 19776 20132 hasRunfiles = true; ··· 19778 20134 "hyphen-romansh" = { 19779 20135 revision = 58652; 19780 20136 stripPrefix = 0; 19781 - deps."hyph-utf8" = tl."hyph-utf8"; 19782 - deps."hyphen-base" = tl."hyphen-base"; 20137 + deps = [ 20138 + "hyph-utf8" 20139 + "hyphen-base" 20140 + ]; 19783 20141 hasHyphens = true; 19784 20142 sha512.run = "a69d3881493c70cfd58e3d79ed76ce6f18bbcb43e1683f31270eafeb743b366a3c52c9945ff94db333e88ca18145263ba74002f5e78bb42d7aefa48c66af7955"; 19785 20143 hasRunfiles = true; ··· 19787 20145 "hyphen-russian" = { 19788 20146 revision = 58609; 19789 20147 stripPrefix = 0; 19790 - deps."hyph-utf8" = tl."hyph-utf8"; 19791 - deps."hyphen-base" = tl."hyphen-base"; 19792 - deps."ruhyphen" = tl."ruhyphen"; 20148 + deps = [ 20149 + "hyph-utf8" 20150 + "hyphen-base" 20151 + "ruhyphen" 20152 + ]; 19793 20153 hasHyphens = true; 19794 20154 sha512.run = "f17852dffbb8f5c337b8316b92c2b0a60a318df491231047d9c0930d55d8b2be3274ec94d0d87085d53e06e89c585d47250f046300bf3890ce751f6f2052d348"; 19795 20155 hasRunfiles = true; ··· 19797 20157 "hyphen-sanskrit" = { 19798 20158 revision = 58652; 19799 20159 stripPrefix = 0; 19800 - deps."hyph-utf8" = tl."hyph-utf8"; 19801 - deps."hyphen-base" = tl."hyphen-base"; 20160 + deps = [ 20161 + "hyph-utf8" 20162 + "hyphen-base" 20163 + ]; 19802 20164 hasHyphens = true; 19803 20165 sha512.run = "e84b6ca93e922c9c6edf03f4dbec1fae9eef2462379ef2fd0f3508a5048b54819c5ba12e0d76bafe1336666ca74ba95e27f63224fa048068bc515f3bc41f6eba"; 19804 20166 sha512.doc = "95c6ae15687118ffc9019c8634347a602e6590b4a1d18bc060e57fe548a81f097070322975be1f62fa2685c5affff7f31b4854b0ec941bbcb9377ecf16986cea"; ··· 19807 20169 "hyphen-serbian" = { 19808 20170 revision = 58609; 19809 20171 stripPrefix = 0; 19810 - deps."hyph-utf8" = tl."hyph-utf8"; 19811 - deps."hyphen-base" = tl."hyphen-base"; 20172 + deps = [ 20173 + "hyph-utf8" 20174 + "hyphen-base" 20175 + ]; 19812 20176 hasHyphens = true; 19813 20177 sha512.run = "390aa9c116b6db7b362fc57aa0758a4c489c5fe33c718fb37675b17a9772a463ce532a2ace3e1ef90275b4afef5ea8d6cff71a7abe625d84e3f461c115306452"; 19814 20178 hasRunfiles = true; ··· 19817 20181 "hyphen-slovak" = { 19818 20182 revision = 58609; 19819 20183 stripPrefix = 0; 19820 - deps."hyph-utf8" = tl."hyph-utf8"; 19821 - deps."hyphen-base" = tl."hyphen-base"; 20184 + deps = [ 20185 + "hyph-utf8" 20186 + "hyphen-base" 20187 + ]; 19822 20188 hasHyphens = true; 19823 20189 sha512.run = "a0786980e0cda7029a72075023520acdc998b83226e85deb0b8186ee4293560321517d507f74fbe68f1d68a16cd8af67aae68baead9176f9cc687bcc7d0a72e1"; 19824 20190 hasRunfiles = true; ··· 19826 20192 "hyphen-slovenian" = { 19827 20193 revision = 58652; 19828 20194 stripPrefix = 0; 19829 - deps."hyph-utf8" = tl."hyph-utf8"; 19830 - deps."hyphen-base" = tl."hyphen-base"; 20195 + deps = [ 20196 + "hyph-utf8" 20197 + "hyphen-base" 20198 + ]; 19831 20199 hasHyphens = true; 19832 20200 sha512.run = "a605c9149ae452df8b2c25aa0f6bcdde53150e4485147a065f1f56c9740c3544c5c7f9c6049aea913916a62aabaf40777cf6f0f76a858e485c0bd09826a6ef5b"; 19833 20201 hasRunfiles = true; ··· 19835 20203 "hyphen-spanish" = { 19836 20204 revision = 58652; 19837 20205 stripPrefix = 0; 19838 - deps."hyph-utf8" = tl."hyph-utf8"; 19839 - deps."hyphen-base" = tl."hyphen-base"; 20206 + deps = [ 20207 + "hyph-utf8" 20208 + "hyphen-base" 20209 + ]; 19840 20210 hasHyphens = true; 19841 20211 sha512.run = "d6783537ff44a326b83c2004afd63f5bdbd162fa4865138c2e6d34c9e6a103ac41dd7b382454646b09c74970f8e0d5827a5f4af617936f74fd300b2054a096d4"; 19842 20212 sha512.doc = "263fd9480c5f225c7e36169b86e846baa64745b83c1072c9602e873f2e7cf8e63b07ab85b29e9d4263656faff58a39fe83e1eba34517b8ba34720f189c8e7f43"; ··· 19847 20217 "hyphen-swedish" = { 19848 20218 revision = 58652; 19849 20219 stripPrefix = 0; 19850 - deps."hyph-utf8" = tl."hyph-utf8"; 19851 - deps."hyphen-base" = tl."hyphen-base"; 20220 + deps = [ 20221 + "hyph-utf8" 20222 + "hyphen-base" 20223 + ]; 19852 20224 hasHyphens = true; 19853 20225 sha512.run = "5f993ae6b22eadb87b6a1839bfa7d78a0dccc1107c5afbec8c248ed001018da38bb179e29f2430cffa90283221b20c5475346a8d5566edf16152266257f2a37d"; 19854 20226 hasRunfiles = true; ··· 19856 20228 "hyphen-thai" = { 19857 20229 revision = 58652; 19858 20230 stripPrefix = 0; 19859 - deps."hyph-utf8" = tl."hyph-utf8"; 19860 - deps."hyphen-base" = tl."hyphen-base"; 20231 + deps = [ 20232 + "hyph-utf8" 20233 + "hyphen-base" 20234 + ]; 19861 20235 hasHyphens = true; 19862 20236 sha512.run = "8336eee03250859ab4328ad3c1fe437d2af688ef56b43be49c45838965ffe033befa84cdf600e9f48cdf60cbbfbff44450c830bd4c34556f680c5096ed3aecc4"; 19863 20237 hasRunfiles = true; ··· 19865 20239 "hyphen-turkish" = { 19866 20240 revision = 58652; 19867 20241 stripPrefix = 0; 19868 - deps."hyph-utf8" = tl."hyph-utf8"; 19869 - deps."hyphen-base" = tl."hyphen-base"; 20242 + deps = [ 20243 + "hyph-utf8" 20244 + "hyphen-base" 20245 + ]; 19870 20246 hasHyphens = true; 19871 20247 sha512.run = "5c7023e01bf59af4d36bd451f51ae00c445711c7ecf109c9d835f1d689446d7b0b1b2627b7f9e84e4f4a8ceff52227ff280ac64481e1d29d538a30e093dace85"; 19872 20248 sha512.source = "2aa80889b9657b03b6beb6510b6790fba13811b97abbac186eaf4d3f40212b41db0dd2d21583429820faad558b0415a09aa8254d2edd96812cf6396fb18ccf5c"; ··· 19875 20251 "hyphen-turkmen" = { 19876 20252 revision = 58652; 19877 20253 stripPrefix = 0; 19878 - deps."hyph-utf8" = tl."hyph-utf8"; 19879 - deps."hyphen-base" = tl."hyphen-base"; 20254 + deps = [ 20255 + "hyph-utf8" 20256 + "hyphen-base" 20257 + ]; 19880 20258 hasHyphens = true; 19881 20259 sha512.run = "c984bb7f09c5816c36a7a790f16df1750ee90f36e2130994ecd1db63f26afb650245985699a80da9b4d7004ad67106771d8c7b79262438369aee3f52fd8374cf"; 19882 20260 sha512.source = "a496f681db0b4b85d82ec1dd60c057f63b6d1c1b52d391e7bee98d3d6e1fb596701c91f2ca400d0df13b96ec7a43d275646b7d2874fe1e4efc9d9b2b47f6cc5d"; ··· 19885 20263 "hyphen-ukrainian" = { 19886 20264 revision = 58652; 19887 20265 stripPrefix = 0; 19888 - deps."hyph-utf8" = tl."hyph-utf8"; 19889 - deps."hyphen-base" = tl."hyphen-base"; 19890 - deps."ukrhyph" = tl."ukrhyph"; 20266 + deps = [ 20267 + "hyph-utf8" 20268 + "hyphen-base" 20269 + "ukrhyph" 20270 + ]; 19891 20271 hasHyphens = true; 19892 20272 sha512.run = "05a9111b358c659159c6edfd38b9ce3d78febd794cc82968dc3e2acdc3612786304721fbd07f00f0a8278f4c2e46a1bfad821b5da45e60546d6acb5bf9068d08"; 19893 20273 hasRunfiles = true; ··· 19895 20275 "hyphen-uppersorbian" = { 19896 20276 revision = 58609; 19897 20277 stripPrefix = 0; 19898 - deps."hyph-utf8" = tl."hyph-utf8"; 19899 - deps."hyphen-base" = tl."hyphen-base"; 20278 + deps = [ 20279 + "hyph-utf8" 20280 + "hyphen-base" 20281 + ]; 19900 20282 hasHyphens = true; 19901 20283 sha512.run = "b2cb1bcd953ffabbd3f5acd8c72e9c60415fd300004de56ee446fc77d381aac1db65d613a2f591d3d0e45f2a12ff5340457ae3061b4c77de502923932383bdcb"; 19902 20284 hasRunfiles = true; ··· 19904 20286 "hyphen-welsh" = { 19905 20287 revision = 58652; 19906 20288 stripPrefix = 0; 19907 - deps."hyph-utf8" = tl."hyph-utf8"; 19908 - deps."hyphen-base" = tl."hyphen-base"; 20289 + deps = [ 20290 + "hyph-utf8" 20291 + "hyphen-base" 20292 + ]; 19909 20293 hasHyphens = true; 19910 20294 sha512.run = "12a23e0b9d00eb4381e3c97ecbb449faf5a73b755a17fc0301f1cbad5d0babb370aeec16dcdd316cefb56e142873abaa685288b1a1d3c7dcb76a07a9ef127ac6"; 19911 20295 hasRunfiles = true; ··· 20053 20437 "iexec" = { 20054 20438 revision = 64908; 20055 20439 stripPrefix = 0; 20056 - deps."tools" = tl."tools"; 20057 - deps."xkeyval" = tl."xkeyval"; 20440 + deps = [ 20441 + "tools" 20442 + "xkeyval" 20443 + ]; 20058 20444 sha512.run = "7e6c55383a22d2b47858e02b0d7023a7d130a089c550c0d4aa387035374ba6e0266b35a2f825e4d0bc4fb084bab42686df610f8f6f9007ff155bf7c150383cb1"; 20059 20445 sha512.doc = "2b55ea3e886043af3e137be5e23388d1d0311e64f695b3774d85be2305e5ea8389a4139e4b3c84989187d66066ffadeccb0d8b70a5347ecfc6dfef750d28b2ba"; 20060 20446 sha512.source = "d4f8b3b253189de2e303c00c5c8e42cd539eaf7eb0cd20feff54473086056fff2e6f8be3bebc071a261c68adffa55f198505dc81df4d095f3ab2dc6932b8e7a1"; ··· 20742 21128 }; 20743 21129 "jadetex" = { 20744 21130 revision = 63654; 20745 - deps."amsfonts" = tl."amsfonts"; 20746 - deps."atbegshi" = tl."atbegshi"; 20747 - deps."atveryend" = tl."atveryend"; 20748 - deps."auxhook" = tl."auxhook"; 20749 - deps."babel" = tl."babel"; 20750 - deps."bigintcalc" = tl."bigintcalc"; 20751 - deps."bitset" = tl."bitset"; 20752 - deps."cm" = tl."cm"; 20753 - deps."colortbl" = tl."colortbl"; 20754 - deps."cyrillic" = tl."cyrillic"; 20755 - deps."dehyph" = tl."dehyph"; 20756 - deps."ec" = tl."ec"; 20757 - deps."etexcmds" = tl."etexcmds"; 20758 - deps."everyshi" = tl."everyshi"; 20759 - deps."fancyhdr" = tl."fancyhdr"; 20760 - deps."firstaid" = tl."firstaid"; 20761 - deps."gettitlestring" = tl."gettitlestring"; 20762 - deps."graphics" = tl."graphics"; 20763 - deps."graphics-cfg" = tl."graphics-cfg"; 20764 - deps."graphics-def" = tl."graphics-def"; 20765 - deps."hycolor" = tl."hycolor"; 20766 - deps."hyperref" = tl."hyperref"; 20767 - deps."hyph-utf8" = tl."hyph-utf8"; 20768 - deps."hyphen-base" = tl."hyphen-base"; 20769 - deps."iftex" = tl."iftex"; 20770 - deps."infwarerr" = tl."infwarerr"; 20771 - deps."intcalc" = tl."intcalc"; 20772 - deps."kvdefinekeys" = tl."kvdefinekeys"; 20773 - deps."kvoptions" = tl."kvoptions"; 20774 - deps."kvsetkeys" = tl."kvsetkeys"; 20775 - deps."l3backend" = tl."l3backend"; 20776 - deps."l3kernel" = tl."l3kernel"; 20777 - deps."l3packages" = tl."l3packages"; 20778 - deps."latex" = tl."latex"; 20779 - deps."latex-fonts" = tl."latex-fonts"; 20780 - deps."latexconfig" = tl."latexconfig"; 20781 - deps."letltxmacro" = tl."letltxmacro"; 20782 - deps."ltxcmds" = tl."ltxcmds"; 20783 - deps."marvosym" = tl."marvosym"; 20784 - deps."passivetex" = tl."passivetex"; 20785 - deps."pdfescape" = tl."pdfescape"; 20786 - deps."pdftex" = tl."pdftex"; 20787 - deps."pdftexcmds" = tl."pdftexcmds"; 20788 - deps."psnfss" = tl."psnfss"; 20789 - deps."refcount" = tl."refcount"; 20790 - deps."rerunfilecheck" = tl."rerunfilecheck"; 20791 - deps."stmaryrd" = tl."stmaryrd"; 20792 - deps."symbol" = tl."symbol"; 20793 - deps."tex" = tl."tex"; 20794 - deps."tex-ini-files" = tl."tex-ini-files"; 20795 - deps."tipa" = tl."tipa"; 20796 - deps."tools" = tl."tools"; 20797 - deps."ulem" = tl."ulem"; 20798 - deps."unicode-data" = tl."unicode-data"; 20799 - deps."uniquecounter" = tl."uniquecounter"; 20800 - deps."url" = tl."url"; 20801 - deps."wasysym" = tl."wasysym"; 20802 - deps."zapfding" = tl."zapfding"; 21131 + deps = [ 21132 + "amsfonts" 21133 + "atbegshi" 21134 + "atveryend" 21135 + "auxhook" 21136 + "babel" 21137 + "bigintcalc" 21138 + "bitset" 21139 + "cm" 21140 + "colortbl" 21141 + "cyrillic" 21142 + "dehyph" 21143 + "ec" 21144 + "etexcmds" 21145 + "everyshi" 21146 + "fancyhdr" 21147 + "firstaid" 21148 + "gettitlestring" 21149 + "graphics" 21150 + "graphics-cfg" 21151 + "graphics-def" 21152 + "hycolor" 21153 + "hyperref" 21154 + "hyph-utf8" 21155 + "hyphen-base" 21156 + "iftex" 21157 + "infwarerr" 21158 + "intcalc" 21159 + "kvdefinekeys" 21160 + "kvoptions" 21161 + "kvsetkeys" 21162 + "l3backend" 21163 + "l3kernel" 21164 + "l3packages" 21165 + "latex" 21166 + "latex-fonts" 21167 + "latexconfig" 21168 + "letltxmacro" 21169 + "ltxcmds" 21170 + "marvosym" 21171 + "passivetex" 21172 + "pdfescape" 21173 + "pdftex" 21174 + "pdftexcmds" 21175 + "psnfss" 21176 + "refcount" 21177 + "rerunfilecheck" 21178 + "stmaryrd" 21179 + "symbol" 21180 + "tex" 21181 + "tex-ini-files" 21182 + "tipa" 21183 + "tools" 21184 + "ulem" 21185 + "unicode-data" 21186 + "uniquecounter" 21187 + "url" 21188 + "wasysym" 21189 + "zapfding" 21190 + ]; 20803 21191 hasFormats = true; 20804 21192 sha512.run = "75b9c8be4f87b51798826f5ea070ff9877e8bfa2fbee5112972e9e0fc81a76dcb7081c2fe9eed645f53a38dd85443dfdb394004b2970c2ff5a91b32dc1cab909"; 20805 21193 sha512.doc = "f70f85a12d730fc9dfb29da57a6f95239c10aa8ba7b9453ae884cae81399609fb99ccac3bfbc41f0c5f360ef80bd3f78b2f8479a826412bf573e9c5336d7e8ca"; ··· 21193 21581 "kdpcover" = { 21194 21582 revision = 65150; 21195 21583 stripPrefix = 0; 21196 - deps."anyfontsize" = tl."anyfontsize"; 21197 - deps."geometry" = tl."geometry"; 21198 - deps."graphics" = tl."graphics"; 21199 - deps."microtype" = tl."microtype"; 21200 - deps."pgf" = tl."pgf"; 21201 - deps."setspace" = tl."setspace"; 21202 - deps."textpos" = tl."textpos"; 21203 - deps."tools" = tl."tools"; 21204 - deps."xcolor" = tl."xcolor"; 21205 - deps."xifthen" = tl."xifthen"; 21206 - deps."xkeyval" = tl."xkeyval"; 21584 + deps = [ 21585 + "anyfontsize" 21586 + "geometry" 21587 + "graphics" 21588 + "microtype" 21589 + "pgf" 21590 + "setspace" 21591 + "textpos" 21592 + "tools" 21593 + "xcolor" 21594 + "xifthen" 21595 + "xkeyval" 21596 + ]; 21207 21597 sha512.run = "d68fa467a50f7d1648e51b918201b76c199920e39915a3c5fcc72cd75c4b11b0924082cf8c01363fe5af998c66ffae71137e7f9635e147ed40ed5e7cd4fd63cb"; 21208 21598 sha512.doc = "880f981153526b41cc128677d950e52b4ff5449adc4fbb3b0004a983bcc7222fb64714ca033b605172fe0b52107e6cc8ff0fcbd1778bf7aa6b9d20fa994ef452"; 21209 21599 sha512.source = "e67cc3eede96c42506beb03d8e4e7db1b5fd4a7ed15026a060c3a5db559c0abc7fe0f9e24c22b23d2aff7c7979005f0c26d250607129d29b6d4bc9babc0e11be"; ··· 21409 21799 "koma-script" = { 21410 21800 revision = 64685; 21411 21801 stripPrefix = 0; 21412 - deps."footmisc" = tl."footmisc"; 21802 + deps = [ 21803 + "footmisc" 21804 + ]; 21413 21805 sha512.run = "2fe2a07d56107390a191c016c29f7bf77700647b7996957a3802aa89b9b7eacc4cefe1c444b6faa688a147a8b0d9c5d80fca511dc2454a15ada6ddaf6aa3ccb2"; 21414 21806 hasRunfiles = true; 21415 21807 version = "3.38"; ··· 21449 21841 "kotex-oblivoir" = { 21450 21842 revision = 64928; 21451 21843 stripPrefix = 0; 21452 - deps."kotex-utf" = tl."kotex-utf"; 21453 - deps."memoir" = tl."memoir"; 21844 + deps = [ 21845 + "kotex-utf" 21846 + "memoir" 21847 + ]; 21454 21848 sha512.run = "17a5f52990cfdf57fdc8ffdc3fc417a15ab52e21296a95b6b1698166ac215937bc26db8aeac7b38459cdf3411480045af85aec491884cd89f00896916a7702e0"; 21455 21849 sha512.doc = "5ef9480a78f216dcf11fe06d8766ba66817a86faa7d0003af77a1fe1079f5e8a8c527bcd333e5fe02153f6ca0b0a82eaa206eb1c5bb7b9517b9ef2865faadc4b"; 21456 21850 hasRunfiles = true; ··· 21467 21861 "kotex-utf" = { 21468 21862 revision = 63690; 21469 21863 stripPrefix = 0; 21470 - deps."cjk-ko" = tl."cjk-ko"; 21864 + deps = [ 21865 + "cjk-ko" 21866 + ]; 21471 21867 sha512.run = "be75556f3857a405d235f920866f8089f105a57f9accff07a541fe110bb8124e049ebe75368ce3282bcd329cc6a02eed0ccffdfad49020986d61221839cae4b5"; 21472 21868 sha512.doc = "7226874594b10ee48e8aea30a72e6d6f4db9f770d5d5830dc83a41f828bfe36b0b11f679aff02722e457150548860f1ad719758e6ffd239bbf9ac18d907acded"; 21473 21869 hasRunfiles = true; ··· 21475 21871 }; 21476 21872 "kotex-utils" = { 21477 21873 revision = 38727; 21478 - deps."kotex-utf" = tl."kotex-utf"; 21874 + deps = [ 21875 + "kotex-utf" 21876 + ]; 21479 21877 sha512.run = "569e9677ef0f346e5a53f4cc84302a8ddf2b4ad85708f4ab8ba7d076ebf339ec60998a41fa92fa815167e9bfc37085ebfd921dd13a60b017a0574e4a5d205802"; 21480 21878 sha512.doc = "a46c5d09d119fa2fe8b9acea87a37776536e3216b776af6b7037fc5b0a522af5c1a58baf081e60f06c9a4054e8ac2372458c276c779038a030dc92efdfa3aef6"; 21481 21879 hasRunfiles = true; ··· 21563 21961 "kvmap" = { 21564 21962 revision = 56361; 21565 21963 stripPrefix = 0; 21566 - deps."amsmath" = tl."amsmath"; 21567 - deps."l3experimental" = tl."l3experimental"; 21568 - deps."pgf" = tl."pgf"; 21964 + deps = [ 21965 + "amsmath" 21966 + "l3experimental" 21967 + "pgf" 21968 + ]; 21569 21969 sha512.run = "54a107c866519e6ce6cb69bd8c13ae085813c4adf235592e32cbfb2bd7eb8039ff8e1fe165f43892367a28ac0984874581424e733b1d3722796204df96d840f3"; 21570 21970 sha512.doc = "41fb3957c91e3127b5d7c78fe2114cb4fe6c8167e6f7f2bbf3a5b7c0fdb12c0ac79e47d84fad54c4b6a3165114c333c575eea01d5c0c886c19b21643ab0fb03f"; 21571 21971 sha512.source = "5dae9b0972acc7c95b148fb13d9008b27591aa9ff9065c1c43dc799c5096f89a8b6b2da97b17bb5e544b1a10702cf247d9cecaa39d9790993996276741c0d792"; ··· 21642 22042 }; 21643 22043 "l3build" = { 21644 22044 revision = 64987; 21645 - deps."luatex" = tl."luatex"; 22045 + deps = [ 22046 + "luatex" 22047 + ]; 21646 22048 sha512.run = "25d5696ec1f33dcb90be757a1b0fe16950c82f1db243b1490ed24b6acd94dac836b163e64f1279a66dbd7496cb60072cd9e6ad631cbb2ff532e8d51cb44fabbc"; 21647 22049 sha512.doc = "0293c819fad182fdb6928ec2b7a9c3daa20ca53f9e243bea80951645a9ed0f2f0daca095c22dcaca55bb43fff52cca4dff76237d87eff25e6aa0a36215789d25"; 21648 22050 sha512.source = "051e6b948ebb9f02581bfbe22f07b12148b9dcb0b779ef98deec8c0f613b77b11c8ae9c32c8c59f50ca5cd104e13f2216b979d636867d79db4044b0c7ef2be1c"; ··· 21651 22053 "l3experimental" = { 21652 22054 revision = 63089; 21653 22055 stripPrefix = 0; 21654 - deps."l3kernel" = tl."l3kernel"; 22056 + deps = [ 22057 + "l3kernel" 22058 + ]; 21655 22059 sha512.run = "aa8f499d84578afcd72e29a48e8c5ff337d2b1acb4cbf3b4b3754925d60e2bf1f2003e82bafc859701c295d61f572305135bb5d078c194fd0d747059ac69f2ea"; 21656 22060 sha512.doc = "71236121e4ca1395e433802a627aae1689f9b0aa55413d87317a0e9c0d0f9cf0ddd47bb7509160f0956d153b6ef9819362fbb95344e3ccb9fa1c8733ac4a427f"; 21657 22061 sha512.source = "8aea8b5a80af397443bf3d25c489a02622a63ddd5efbec9335952af310f9888c25e0a18fbdc3694927caf38af63f89bc518e72927fee6343fba48805b25b90ea"; ··· 21660 22064 "l3kernel" = { 21661 22065 revision = 65299; 21662 22066 stripPrefix = 0; 21663 - deps."l3backend" = tl."l3backend"; 22067 + deps = [ 22068 + "l3backend" 22069 + ]; 21664 22070 sha512.run = "9cbcf410a7d6aaf5477805feb48e19fd751e418718c261a4cea1305322dc8ac7eb6a14af9337de0393b5c6aa49b6496116b9e10c0a1338511aedb307d196f6b2"; 21665 22071 sha512.doc = "da9d55dbb019ac88b891ba276c27af91a4747e4c8289804a5fdb52555c81c6a293eaa0adef12157ce4147cce20841902090aed8e2dd58084ecedf1d051b55f83"; 21666 22072 sha512.source = "37be0d6c2adea6e62c2b24eff707ecb261e7ffed0d9e774ed43095aaadf859fe7b96d992cd5b20870a14737327c903d8b3d80b2983fce730d7ed168ef939ac08"; ··· 21669 22075 "l3packages" = { 21670 22076 revision = 65300; 21671 22077 stripPrefix = 0; 21672 - deps."l3kernel" = tl."l3kernel"; 22078 + deps = [ 22079 + "l3kernel" 22080 + ]; 21673 22081 sha512.run = "b163a5f7eccdd650faad6ed6d2539f54d7343f9f11335e54cbedddfad9b1ba06899365583ec44c59bb7b67efe8a2f507b8217f52a3f65d194967981521b39195"; 21674 22082 sha512.doc = "c39241a45eac0e1da5be990bee94b99547b22bec1469aba31a999fadff334bbc701f38ba47b01300da578eadc3778af75c77d3180c970e5d0c22de9a09be2692"; 21675 22083 sha512.source = "40f19b6e8ef60aead350679a8451b62ec2f833b5413fbc96c706bbd33a020652ed5fcd86b8da6b9b5ee8c812e3aa07371e0e63c7ece51bc21c97e562a5b27fff"; ··· 21814 22222 "latex" = { 21815 22223 revision = 65161; 21816 22224 stripPrefix = 0; 21817 - deps."latex-fonts" = tl."latex-fonts"; 21818 - deps."latexconfig" = tl."latexconfig"; 21819 - deps."luatex" = tl."luatex"; 21820 - deps."pdftex" = tl."pdftex"; 22225 + deps = [ 22226 + "latex-fonts" 22227 + "latexconfig" 22228 + "luatex" 22229 + "pdftex" 22230 + ]; 21821 22231 sha512.run = "de95ba089738862d57b1139a21da57a8263cbe9ff81a7ab43608ce23fde57b4630057a95c99ecb7be712bc864e0c07a56429019d7aa9f63c01f47a995d5d567d"; 21822 22232 sha512.doc = "68ecd2a5c85afe7b39402db416bb7ad0f8e5662c77d77c0839a470f3f70da65377560fbcb5a6952e997da70868533f29a4b7c65d3f7dd63db13aa95ee7159b23"; 21823 22233 sha512.source = "59d3d31147fc8a31c6348c2a5f371cd4dc69d2367f9ced0c62150c5d14ead49b4e195c328ad4791638e61b93f69143c0c93bbed5551b31e4de1284a4aa7b6d73"; ··· 21844 22254 }; 21845 22255 "latex-bin" = { 21846 22256 revision = 62387; 21847 - deps."atbegshi" = tl."atbegshi"; 21848 - deps."atveryend" = tl."atveryend"; 21849 - deps."babel" = tl."babel"; 21850 - deps."cm" = tl."cm"; 21851 - deps."dehyph" = tl."dehyph"; 21852 - deps."everyshi" = tl."everyshi"; 21853 - deps."firstaid" = tl."firstaid"; 21854 - deps."graphics" = tl."graphics"; 21855 - deps."hyph-utf8" = tl."hyph-utf8"; 21856 - deps."hyphen-base" = tl."hyphen-base"; 21857 - deps."l3backend" = tl."l3backend"; 21858 - deps."l3kernel" = tl."l3kernel"; 21859 - deps."l3packages" = tl."l3packages"; 21860 - deps."latex" = tl."latex"; 21861 - deps."latex-fonts" = tl."latex-fonts"; 21862 - deps."latexconfig" = tl."latexconfig"; 21863 - deps."lm" = tl."lm"; 21864 - deps."luahbtex" = tl."luahbtex"; 21865 - deps."luaotfload" = tl."luaotfload"; 21866 - deps."luatex" = tl."luatex"; 21867 - deps."pdftex" = tl."pdftex"; 21868 - deps."tex-ini-files" = tl."tex-ini-files"; 21869 - deps."unicode-data" = tl."unicode-data"; 22257 + deps = [ 22258 + "atbegshi" 22259 + "atveryend" 22260 + "babel" 22261 + "cm" 22262 + "dehyph" 22263 + "everyshi" 22264 + "firstaid" 22265 + "graphics" 22266 + "hyph-utf8" 22267 + "hyphen-base" 22268 + "l3backend" 22269 + "l3kernel" 22270 + "l3packages" 22271 + "latex" 22272 + "latex-fonts" 22273 + "latexconfig" 22274 + "lm" 22275 + "luahbtex" 22276 + "luaotfload" 22277 + "luatex" 22278 + "pdftex" 22279 + "tex-ini-files" 22280 + "unicode-data" 22281 + ]; 21870 22282 hasFormats = true; 21871 22283 sha512.run = "91b6749a7fc520500812c203a1acb0701e7984e5e309eaf0c4815bc7ea0b507f3eeaaae3a6ad715ee53f018b8e38c695c4ff9567f26222cd2c52ba24e1a03c1f"; 21872 22284 sha512.doc = "30f9001ed8236f01555f8a21ff8286ea409d75583876f8ba795e1a819dea14cb3f2b3dff31e0258cf5deb75ae2fd9201e33260ef1f32c2ce53fb86bfa4e59f83"; 21873 22285 }; 21874 22286 "latex-bin-dev" = { 21875 22287 revision = 62387; 21876 - deps."atbegshi" = tl."atbegshi"; 21877 - deps."atveryend" = tl."atveryend"; 21878 - deps."babel" = tl."babel"; 21879 - deps."cm" = tl."cm"; 21880 - deps."dehyph" = tl."dehyph"; 21881 - deps."everyshi" = tl."everyshi"; 21882 - deps."firstaid" = tl."firstaid"; 21883 - deps."hyph-utf8" = tl."hyph-utf8"; 21884 - deps."hyphen-base" = tl."hyphen-base"; 21885 - deps."l3backend" = tl."l3backend"; 21886 - deps."l3kernel" = tl."l3kernel"; 21887 - deps."l3packages" = tl."l3packages"; 21888 - deps."latex" = tl."latex"; 21889 - deps."latex-base-dev" = tl."latex-base-dev"; 21890 - deps."latex-firstaid-dev" = tl."latex-firstaid-dev"; 21891 - deps."latex-fonts" = tl."latex-fonts"; 21892 - deps."latex-graphics-dev" = tl."latex-graphics-dev"; 21893 - deps."latexconfig" = tl."latexconfig"; 21894 - deps."lm" = tl."lm"; 21895 - deps."luahbtex" = tl."luahbtex"; 21896 - deps."luaotfload" = tl."luaotfload"; 21897 - deps."luatex" = tl."luatex"; 21898 - deps."pdftex" = tl."pdftex"; 21899 - deps."tex-ini-files" = tl."tex-ini-files"; 21900 - deps."unicode-data" = tl."unicode-data"; 22288 + deps = [ 22289 + "atbegshi" 22290 + "atveryend" 22291 + "babel" 22292 + "cm" 22293 + "dehyph" 22294 + "everyshi" 22295 + "firstaid" 22296 + "hyph-utf8" 22297 + "hyphen-base" 22298 + "l3backend" 22299 + "l3kernel" 22300 + "l3packages" 22301 + "latex" 22302 + "latex-base-dev" 22303 + "latex-firstaid-dev" 22304 + "latex-fonts" 22305 + "latex-graphics-dev" 22306 + "latexconfig" 22307 + "lm" 22308 + "luahbtex" 22309 + "luaotfload" 22310 + "luatex" 22311 + "pdftex" 22312 + "tex-ini-files" 22313 + "unicode-data" 22314 + ]; 21901 22315 hasFormats = true; 21902 22316 sha512.run = "dade40731ce41c6a0304cb7472255f2d6c8b1fed45b619282aa747b3ebbdfd707da18947f06c8896d72605b324ffa58c3c7195bd90629531ef1fb54a91f1310c"; 21903 22317 sha512.doc = "7434698038dd90f10c51743e238cfcf0d85da2067d458f399e557b855c7ae6fd4e013ef4272e710eb9695d3e4f8757acae95c41a9e704a393202aafc11218754"; ··· 21960 22374 "latex-graphics-dev" = { 21961 22375 revision = 64899; 21962 22376 stripPrefix = 0; 21963 - deps."graphics-cfg" = tl."graphics-cfg"; 22377 + deps = [ 22378 + "graphics-cfg" 22379 + ]; 21964 22380 sha512.run = "33e2d6ed2e3076219a0438b8d8461110e7edf3a9b0534455d2fc43837a3766d12bdc8d912414bf88bdbd9b10a54a5b8b2045ff3a3cef42ed7cdc49a2d8664d5a"; 21965 22381 sha512.doc = "ab0be817107e89a4d87c8e5ce68d20ec06eba0ae37ccf79d2dae1e916fc9ae8e2b1c7f7d9701daeffa5bfb931a881d63cfd188393e075c943d91fccf3eb1753c"; 21966 22382 sha512.source = "cb5f6a80b7178dfd1074235d5e1c7a3a2830d4c7eb037cf9e5d51a2770ed85140be7648e288cd5d67f64955212b29d8dc37fe359c0b7a27fc065cdecdc198de7"; ··· 22308 22724 }; 22309 22725 "lcdftypetools" = { 22310 22726 revision = 52851; 22311 - deps."glyphlist" = tl."glyphlist"; 22727 + deps = [ 22728 + "glyphlist" 22729 + ]; 22312 22730 sha512.run = "3f3cc8f7cce233eb36315b21db408847a267ff393d6d4118de61c4b03ec408f3f29b2d41fdcf84995bfbf5d07bcb25984d7ffc76458d4f2dc12fdb6dfb85e23f"; 22313 22731 sha512.doc = "5a1dd1e2fd79351afc65d6786b24aebd9681a2b9e92755b44a836b47da5ceb1817f085483f306991a113dc0c26edfcd84839dec93bb46a003034536f31b31e5f"; 22314 22732 }; ··· 22359 22777 "lebhart" = { 22360 22778 revision = 64280; 22361 22779 stripPrefix = 0; 22362 - deps."colorist" = tl."colorist"; 22780 + deps = [ 22781 + "colorist" 22782 + ]; 22363 22783 sha512.run = "4b1411cfb2cef9639554ef01af946a53d49ae429649af78a9213a79f695d0014cb3c0ef9cb13c3d0f85e0286e27b5ba214ae85ba6f2c94a32655131e4898ddb8"; 22364 22784 sha512.doc = "06c091c1a7c05c9c8f3de49b1bb0499e7f95273fd048de20aa59cf67bdd100d623735e8c214e81fe4b2ecbc3ef1dc83911789bd4a6f008baf62bfb12233642d1"; 22365 22785 hasRunfiles = true; ··· 22545 22965 "lh" = { 22546 22966 revision = 15878; 22547 22967 stripPrefix = 0; 22548 - deps."ec" = tl."ec"; 22968 + deps = [ 22969 + "ec" 22970 + ]; 22549 22971 sha512.run = "265aeba5ee99cbec2eca77a273a9e4857d78280e0ff17089a358e7f85d0595025e259b2edd471ce5287479531fe37cfeeaeba405ac9cabc7ac9616242815b6cf"; 22550 22972 sha512.doc = "33f1cd39b2e68caa750ca5867bebbbc43c9948a7606f6fe44ba3bd8be84661fb562b5472ec57ccc3f6c18ef2823188c2f81ca4444b562f935e6f041d8ec0f39d"; 22551 22973 sha512.source = "a81d3d7295101718dc4e66c6daafca8c480b281d7219956b0007adb4fd7e0f35959277931254fc778bf69c581b7d15ccf445f5037b589cee937211c39f59529e"; ··· 22571 22993 "libertine" = { 22572 22994 revision = 64359; 22573 22995 stripPrefix = 0; 22574 - deps."fontaxes" = tl."fontaxes"; 22575 - deps."iftex" = tl."iftex"; 22576 - deps."mweights" = tl."mweights"; 22577 - deps."xkeyval" = tl."xkeyval"; 22996 + deps = [ 22997 + "fontaxes" 22998 + "iftex" 22999 + "mweights" 23000 + "xkeyval" 23001 + ]; 22578 23002 sha512.run = "7b95b6612f5b46298cddf459184f11752a4b050110bd1d0271e43e364aa5da58c9e27d3b72119b76e863a19ab0987ea408d749ecf18ff40da1ab8a585e31c7cf"; 22579 23003 sha512.doc = "c33beec53a939a5b9f672e0c5a7aea7a3b3047e4f1f1e68b7d4d64cd03a7f73da2bbce2a4c56199f71519d4c364a3e0ccddf8f93f24dc9eb1fd3896fd035ec77"; 22580 23004 hasRunfiles = true; ··· 23052 23476 "logreq" = { 23053 23477 revision = 53003; 23054 23478 stripPrefix = 0; 23055 - deps."etoolbox" = tl."etoolbox"; 23479 + deps = [ 23480 + "etoolbox" 23481 + ]; 23056 23482 sha512.run = "df61c0c6c0b8520f5ec38780d8eb69cfd5fccd21f5120e48eee71e02b004d3da4cc9cb9371a36766852e3ca09a3db86655f1a2639a49741f00134cff1246acd2"; 23057 23483 sha512.doc = "fa9277da81dfb3aa235bd795780e8d3e629558fede90fa9234528b50a11507e59e65e49a0ca787af037186890392dfd45bf6de7bd859cec369626fb7d57b543f"; 23058 23484 hasRunfiles = true; ··· 23060 23486 }; 23061 23487 "lollipop" = { 23062 23488 revision = 45678; 23063 - deps."cm" = tl."cm"; 23064 - deps."hyphen-base" = tl."hyphen-base"; 23489 + deps = [ 23490 + "cm" 23491 + "hyphen-base" 23492 + ]; 23065 23493 hasFormats = true; 23066 23494 sha512.run = "81557b83acfa4ad42dfa6fb1a65ea42bc33885da444ee23bc3c67a899df7b3ac2c19a1607305b5ec10b503980365c5d29ac3598339fc186a05417ea5bca60a78"; 23067 23495 sha512.doc = "206dee2be733e3ac04b5b259862b60fb3641fc44ea182da601ca54a010ff8e42f254dd01c03be7bcdd2a6258110c567a596ee82b4eb74d04ca8ed70e50cd6a86"; ··· 23612 24040 }; 23613 24041 "luahbtex" = { 23614 24042 revision = 62387; 23615 - deps."cm" = tl."cm"; 23616 - deps."etex" = tl."etex"; 23617 - deps."hyph-utf8" = tl."hyph-utf8"; 23618 - deps."hyphen-base" = tl."hyphen-base"; 23619 - deps."knuth-lib" = tl."knuth-lib"; 23620 - deps."luatex" = tl."luatex"; 23621 - deps."plain" = tl."plain"; 23622 - deps."tex-ini-files" = tl."tex-ini-files"; 23623 - deps."unicode-data" = tl."unicode-data"; 24043 + deps = [ 24044 + "cm" 24045 + "etex" 24046 + "hyph-utf8" 24047 + "hyphen-base" 24048 + "knuth-lib" 24049 + "luatex" 24050 + "plain" 24051 + "tex-ini-files" 24052 + "unicode-data" 24053 + ]; 23624 24054 hasFormats = true; 23625 24055 sha512.run = "daafa6e417e7c366dde221488b91708f8c1302cf6db849b91a82bd74619f0b91e16430680aabeb27e43d1469262c9f799cd0bd6547635ac6ad54ef8e2dae5703"; 23626 24056 sha512.doc = "5d2915af80990896181a70c24dd3c51748fbaa6f3f9b96b67b1b40bc8ab36d39293e8f76c0f3dabdaffb252423eec61375b6f5aa859a1310236f7d39d6f2fcf3"; ··· 23668 24098 }; 23669 24099 "luajittex" = { 23670 24100 revision = 62774; 23671 - deps."cm" = tl."cm"; 23672 - deps."etex" = tl."etex"; 23673 - deps."hyph-utf8" = tl."hyph-utf8"; 23674 - deps."hyphen-base" = tl."hyphen-base"; 23675 - deps."knuth-lib" = tl."knuth-lib"; 23676 - deps."luatex" = tl."luatex"; 23677 - deps."plain" = tl."plain"; 23678 - deps."tex-ini-files" = tl."tex-ini-files"; 23679 - deps."unicode-data" = tl."unicode-data"; 24101 + deps = [ 24102 + "cm" 24103 + "etex" 24104 + "hyph-utf8" 24105 + "hyphen-base" 24106 + "knuth-lib" 24107 + "luatex" 24108 + "plain" 24109 + "tex-ini-files" 24110 + "unicode-data" 24111 + ]; 23680 24112 hasFormats = true; 23681 24113 sha512.run = "f7503044bf237ca6d6e33a3a067bba0d73dfecfee7e77b5ebd4f3d6417dd24f7aa263cb08e7ffb86708574ecda31d5c7d89b42d2ad2179119393b99129f8077d"; 23682 24114 sha512.doc = "3924029e274913999cf54e2f3a4d3ef85dbfbb4ee93a629b8eeb77c796557c3086eb447fa74d2d7a6f33a17f433f38ceb033f7e1633e240bbb135b4239b588f7"; ··· 23706 24138 "lualatex-math" = { 23707 24139 revision = 61464; 23708 24140 stripPrefix = 0; 23709 - deps."etoolbox" = tl."etoolbox"; 23710 - deps."filehook" = tl."filehook"; 24141 + deps = [ 24142 + "etoolbox" 24143 + "filehook" 24144 + ]; 23711 24145 sha512.run = "16c945e72165acd9f4bcf20f81e6c5df9ec22f19d45cbb8f076763d2d1a1a2e230938dabbadfcc065e3a060487885ac2edb223aae22d12f6981f5fca5c0f951f"; 23712 24146 sha512.doc = "f5a8db238ae096b7b1a2eaa84643f063cd28e08b328cbcc780171a60c571e858a1cd1941a8ea9053392a8c65b965a81c8cd585ce2accb27e797e3e4e8ad3a127"; 23713 24147 sha512.source = "e04a36a2280fbccb9572539ebc9bafba4edb7ccada25c4b3faadaa61c2f4458d9e9a90e54fa00b5ba675e59f42ed2d076b39918e5c126e2f619f2f69ff904d81"; ··· 23775 24209 }; 23776 24210 "luaotfload" = { 23777 24211 revision = 64616; 23778 - deps."lm" = tl."lm"; 23779 - deps."lua-alt-getopt" = tl."lua-alt-getopt"; 23780 - deps."lua-uni-algos" = tl."lua-uni-algos"; 23781 - deps."lualibs" = tl."lualibs"; 24212 + deps = [ 24213 + "lm" 24214 + "lua-alt-getopt" 24215 + "lua-uni-algos" 24216 + "lualibs" 24217 + ]; 23782 24218 sha512.run = "70f27796fdfe61e0337239a2962052eb2896478358fca0f271287db06a1d2de2f83cd7394d0ec6c281e9a5779ec396e2993f53b8b045ed7a09cb17f100a4a477"; 23783 24219 sha512.doc = "9e1c223ec2589f32640aefd2692d031b8ba324da30a814eea98768443eeb76d92d2700c320e6f96006e54635d31a655cae0a27c76931e7640748889ead4fbfb4"; 23784 24220 sha512.source = "3ed04272b887f434bfe2dd166974889318597e22c57109647946f2b255efca2fb6d1ecc1f02485a1bf387e77956c64a9f42c4af237b29f9fc7a38400d8cfbef1"; ··· 23788 24224 "luapackageloader" = { 23789 24225 revision = 54779; 23790 24226 stripPrefix = 0; 23791 - deps."iftex" = tl."iftex"; 24227 + deps = [ 24228 + "iftex" 24229 + ]; 23792 24230 sha512.run = "7f2558dc265746f143520c2c6f3bf2ed05ac8c54988e573519321a7fb5a2a991220d0eb8906893f77964dc01f0e3f16b783dcd20f809042a11d29cd137f557fd"; 23793 24231 sha512.doc = "64719d715fc98bc09ab17db5f2053ea3e34d703adda6677f50ffe178a974230e8a03a9019b995238d073580e1faa745e655a7207468965ccb9f67bfccb5b5a49"; 23794 24232 hasRunfiles = true; ··· 23836 24274 }; 23837 24275 "luatex" = { 23838 24276 revision = 64839; 23839 - deps."cm" = tl."cm"; 23840 - deps."etex" = tl."etex"; 23841 - deps."hyph-utf8" = tl."hyph-utf8"; 23842 - deps."hyphen-base" = tl."hyphen-base"; 23843 - deps."knuth-lib" = tl."knuth-lib"; 23844 - deps."plain" = tl."plain"; 23845 - deps."tex-ini-files" = tl."tex-ini-files"; 23846 - deps."unicode-data" = tl."unicode-data"; 24277 + deps = [ 24278 + "cm" 24279 + "etex" 24280 + "hyph-utf8" 24281 + "hyphen-base" 24282 + "knuth-lib" 24283 + "plain" 24284 + "tex-ini-files" 24285 + "unicode-data" 24286 + ]; 23847 24287 hasFormats = true; 23848 24288 sha512.run = "3789aa894fa2472f763275ddb045178acb51bbcbfa5f88d0dfee5498932089519b273ca5f6bf413992578638a7331e88b69f976db75cb9aeb50bf7d5f0396a69"; 23849 24289 sha512.doc = "f7c0807c1b4548666efa133330f1ecae7d85a0465357c5dc90f77d65b34d73e8755fe825155f2688a066f73f3cd9c76cab29a7ab06ce4406854177db4242fb51"; ··· 23861 24301 "luatexbase" = { 23862 24302 revision = 52663; 23863 24303 stripPrefix = 0; 23864 - deps."ctablestack" = tl."ctablestack"; 24304 + deps = [ 24305 + "ctablestack" 24306 + ]; 23865 24307 sha512.run = "cb187dcd0f9e454a3b9d021b802ac6f7d09c3eee68adb5da31035f5b7bb36d2938ca940505ee08c8410ee0e5e5c81ffdd21617ea5ba0e9ca7b58abb6ede3defb"; 23866 24308 sha512.doc = "5dc696009e84662fc56443d7a5d61b3f30adbfeae3cf7176e81e676087d0fe580cb0575add49999ea8d5651850b7562c775b0727de01934465f3613ab7344be3"; 23867 24309 sha512.source = "ebb46d5d4c3f6ccfdbc758f9dab64d7e83c2fe988f7da6852dfd5e786bc757f2438f86010a695eb2e780a02830f15dea941de7fb5bdd6e6561df0774b476dd5a"; ··· 23871 24313 "luatexja" = { 23872 24314 revision = 65267; 23873 24315 stripPrefix = 0; 23874 - deps."luatexbase" = tl."luatexbase"; 24316 + deps = [ 24317 + "luatexbase" 24318 + ]; 23875 24319 sha512.run = "6f146fd9d98d931094653b6e2d2357ba1f23c7c539489bc6e21db884b3da8a91dd822f3c301a4fc22168331b9760a96e61c6c0cc5c197585c2b02ffd96d6ca8e"; 23876 24320 sha512.doc = "f7b5adca5278dbdb05d2bab6eb4c5449c07f4ea6bca6548397bda6a27b73fbe5ce9c6e4dbd9ca19bde9b3b950157d783a1e73040c08ae60f661a486168653f91"; 23877 24321 sha512.source = "58ec25306a8203494cb029bb9866d847537723acaeef83b5a0899b9bd27e3045291a4aebfd3e094215f99282d4d744799b876cf26bf9a46908b502cec07863bf"; ··· 24354 24798 "mathabx-type1" = { 24355 24799 revision = 21129; 24356 24800 stripPrefix = 0; 24357 - deps."mathabx" = tl."mathabx"; 24801 + deps = [ 24802 + "mathabx" 24803 + ]; 24358 24804 sha512.run = "ae2272ac7d79a3bb1a655000a2d5fa1c3d948363763abe194cbac4084d5ef60492648977660c3d9dfbc2c70bea3c207d031d2147097fb1d7af503aa80f257d1c"; 24359 24805 sha512.doc = "2504e85d659cba06fa25ae4e154309a6d3dcba2ac8bae0d4066b6637f19081987b0bc774902365e5b723f4b6c35cad07709e316ec1893a018baabc699d755e8b"; 24360 24806 hasRunfiles = true; ··· 24465 24911 "mathpazo" = { 24466 24912 revision = 52663; 24467 24913 stripPrefix = 0; 24468 - deps."fpl" = tl."fpl"; 24469 - deps."palatino" = tl."palatino"; 24914 + deps = [ 24915 + "fpl" 24916 + "palatino" 24917 + ]; 24470 24918 sha512.run = "72bfba52e37abd933cb7b1b19dd813c3c76438591c94f9c407cabb8a44c8c67f78fae04442027287e5bf30b7239c3703ece4271194716882773eeb50d4cb2f47"; 24471 24919 sha512.doc = "94e624f2cea50bf3534300d3332dd61e1bc5b4c834603356831d0f9bf4c6bdc34af5d31df002c10430d4945c2c71dbf7c156b7b05ba08c657cc2d960839c2a35"; 24472 24920 sha512.source = "bd6aba477ca38c9778d7d23460420f485ac5658e9514ac2260475a50b6ee7e2ff736bac81a4548fb4aebae952a406a0de1bef01bd7d8fe4984080ab835d328d4"; ··· 24818 25266 }; 24819 25267 "metafont" = { 24820 25268 revision = 62387; 24821 - deps."kpathsea" = tl."kpathsea"; 24822 - deps."modes" = tl."modes"; 25269 + deps = [ 25270 + "kpathsea" 25271 + "modes" 25272 + ]; 24823 25273 hasFormats = true; 24824 25274 sha512.run = "4e287680b7b14497133165a45ed668dd326e587a305475d90f4b545aa1973a0e6001fef2e3a9afa5fd2f343497d109f4670fcc0f4c0263b20624dbbad1f21bd3"; 24825 25275 sha512.doc = "07e574fce34949b71ea0b156c394db80bdd9c9a3018afbdadf786fa431674b6fd0c2f79e8f9a72c872b17b2dbedb755c0ce3def552740a99e63d65e28fc3d2b0"; ··· 24884 25334 }; 24885 25335 "metapost" = { 24886 25336 revision = 62387; 24887 - deps."kpathsea" = tl."kpathsea"; 25337 + deps = [ 25338 + "kpathsea" 25339 + ]; 24888 25340 sha512.run = "d807a22bd0f3358d1986a477834c19b2fce636e4ea96f52f745220a165726505849ac4a1048bd4be49cf9e42e098a55df2a4c9b4d267dddbe2fb093ba3029d6d"; 24889 25341 sha512.doc = "384730c3f784bb026bb29ee69dc95d179c53636c405e1a037477269e9a3a95d8c296729d7bb54037ca4a76e5ef00eff4876c4538203e400db8c4f0850c48b259"; 24890 25342 hasRunfiles = true; ··· 24963 25415 }; 24964 25416 "mex" = { 24965 25417 revision = 58661; 24966 - deps."enctex" = tl."enctex"; 24967 - deps."hyph-utf8" = tl."hyph-utf8"; 24968 - deps."hyphen-base" = tl."hyphen-base"; 24969 - deps."hyphen-polish" = tl."hyphen-polish"; 24970 - deps."knuth-lib" = tl."knuth-lib"; 24971 - deps."pdftex" = tl."pdftex"; 24972 - deps."pl" = tl."pl"; 24973 - deps."plain" = tl."plain"; 24974 - deps."tex" = tl."tex"; 24975 - deps."tex-ini-files" = tl."tex-ini-files"; 24976 - deps."utf8mex" = tl."utf8mex"; 25418 + deps = [ 25419 + "enctex" 25420 + "hyph-utf8" 25421 + "hyphen-base" 25422 + "hyphen-polish" 25423 + "knuth-lib" 25424 + "pdftex" 25425 + "pl" 25426 + "plain" 25427 + "tex" 25428 + "tex-ini-files" 25429 + "utf8mex" 25430 + ]; 24977 25431 hasFormats = true; 24978 25432 sha512.run = "a79d6a1ecb15f7962826773d7eab4b1ffd86a5c15f8076f096fecf63df1bd661449eb7d14251a57a1eb2bede030ddf93aac170fc3c59ae0a124da6cef69e55be"; 24979 25433 sha512.doc = "091f2825376718d8c2190555af7ef54d0ae5202425d57b986fba861df2f8604301df5a121ccfcfcdc91032d07dcda8289fb8de5d81c487b93b0e202a2a5a658e"; ··· 25016 25470 }; 25017 25471 "mflua" = { 25018 25472 revision = 62774; 25019 - deps."luatex" = tl."luatex"; 25020 - deps."metafont" = tl."metafont"; 25473 + deps = [ 25474 + "luatex" 25475 + "metafont" 25476 + ]; 25021 25477 hasFormats = true; 25022 25478 sha512.run = "fa735fa117e7bd433339efbb709caa5fc25007088500dd5e4f6999cc417d188fd43435f74d526186880ac857f9bfc52e1fb7f1055974cea959e28536150b1a19"; 25023 25479 hasRunfiles = true; ··· 25075 25531 "mhchem" = { 25076 25532 revision = 61456; 25077 25533 stripPrefix = 0; 25078 - deps."amsmath" = tl."amsmath"; 25079 - deps."chemgreek" = tl."chemgreek"; 25080 - deps."graphics" = tl."graphics"; 25081 - deps."l3kernel" = tl."l3kernel"; 25082 - deps."l3packages" = tl."l3packages"; 25083 - deps."tools" = tl."tools"; 25534 + deps = [ 25535 + "amsmath" 25536 + "chemgreek" 25537 + "graphics" 25538 + "l3kernel" 25539 + "l3packages" 25540 + "tools" 25541 + ]; 25084 25542 sha512.run = "fffeb1ce083d8eb3da6543409e5cc735c9699f9145114c8325c336b93d2dab2a9976fc448c6324318407c3af888cb91cc7764fcf3bd24369e4940f00dda66429"; 25085 25543 sha512.doc = "cd4c41a329489149b3f2bc79dd50e0517707681f452888394870459d10888095a0cbb7b7c18500f04264c6c85f791d9af9d799b1b4e221e991af32690e7405ba"; 25086 25544 hasRunfiles = true; ··· 25292 25750 "minted" = { 25293 25751 revision = 65252; 25294 25752 stripPrefix = 0; 25295 - deps."catchfile" = tl."catchfile"; 25296 - deps."etoolbox" = tl."etoolbox"; 25297 - deps."fancyvrb" = tl."fancyvrb"; 25298 - deps."float" = tl."float"; 25299 - deps."framed" = tl."framed"; 25300 - deps."fvextra" = tl."fvextra"; 25301 - deps."graphics" = tl."graphics"; 25302 - deps."ifplatform" = tl."ifplatform"; 25303 - deps."kvoptions" = tl."kvoptions"; 25304 - deps."lineno" = tl."lineno"; 25305 - deps."pdftexcmds" = tl."pdftexcmds"; 25306 - deps."tools" = tl."tools"; 25307 - deps."upquote" = tl."upquote"; 25308 - deps."xcolor" = tl."xcolor"; 25309 - deps."xstring" = tl."xstring"; 25753 + deps = [ 25754 + "catchfile" 25755 + "etoolbox" 25756 + "fancyvrb" 25757 + "float" 25758 + "framed" 25759 + "fvextra" 25760 + "graphics" 25761 + "ifplatform" 25762 + "kvoptions" 25763 + "lineno" 25764 + "pdftexcmds" 25765 + "tools" 25766 + "upquote" 25767 + "xcolor" 25768 + "xstring" 25769 + ]; 25310 25770 sha512.run = "faf543c7f48371cca2a4af7d1e4e1e9b16c13673908417ec982d773dac561ab9e467f79bed230f5c0e359fc82c5cfff1f83e18cb6261279943d1e5a2f117ea2f"; 25311 25771 sha512.doc = "41640837e53d5b9cdce55a8f29707fe4f654da19813efbc1770df39b8f00aabdf600032dd504a8cebe23b4ef91e226014a94e031c52d0458f0684c5a53bd276a"; 25312 25772 sha512.source = "384af78dba5447f7169804597afba5b42f8860cabe691e2490d90248ed798880d11471e8cad7ede8a4b1dbaf7b9684dea05ae54719c7637b8f5b6d953fd0ba98"; ··· 25420 25880 }; 25421 25881 "mltex" = { 25422 25882 revision = 62145; 25423 - deps."atbegshi" = tl."atbegshi"; 25424 - deps."atveryend" = tl."atveryend"; 25425 - deps."babel" = tl."babel"; 25426 - deps."cm" = tl."cm"; 25427 - deps."dehyph" = tl."dehyph"; 25428 - deps."everyshi" = tl."everyshi"; 25429 - deps."firstaid" = tl."firstaid"; 25430 - deps."hyph-utf8" = tl."hyph-utf8"; 25431 - deps."hyphen-base" = tl."hyphen-base"; 25432 - deps."knuth-lib" = tl."knuth-lib"; 25433 - deps."l3backend" = tl."l3backend"; 25434 - deps."l3kernel" = tl."l3kernel"; 25435 - deps."l3packages" = tl."l3packages"; 25436 - deps."latex" = tl."latex"; 25437 - deps."latex-fonts" = tl."latex-fonts"; 25438 - deps."latexconfig" = tl."latexconfig"; 25439 - deps."plain" = tl."plain"; 25440 - deps."tex-ini-files" = tl."tex-ini-files"; 25441 - deps."unicode-data" = tl."unicode-data"; 25883 + deps = [ 25884 + "atbegshi" 25885 + "atveryend" 25886 + "babel" 25887 + "cm" 25888 + "dehyph" 25889 + "everyshi" 25890 + "firstaid" 25891 + "hyph-utf8" 25892 + "hyphen-base" 25893 + "knuth-lib" 25894 + "l3backend" 25895 + "l3kernel" 25896 + "l3packages" 25897 + "latex" 25898 + "latex-fonts" 25899 + "latexconfig" 25900 + "plain" 25901 + "tex-ini-files" 25902 + "unicode-data" 25903 + ]; 25442 25904 hasFormats = true; 25443 25905 sha512.run = "e04f33b83474e58c4725abbba21ae56659920ad2929faba7f25b47befeeb7e207e36888e1dbf7260ecc95c126e1732f6f5dced3d277db7c3889f2b08590b04dc"; 25444 25906 sha512.doc = "e9d5a1cfdc6183bf99ef369b447c73e9ec5926952a80a75708db4fc6343ffc1a10d599276c13f295005f7c8c56e2e35ad9edc9dee3ee06928fa8c7b267d82bbf"; ··· 25499 25961 "moderncv" = { 25500 25962 revision = 62128; 25501 25963 stripPrefix = 0; 25502 - deps."etoolbox" = tl."etoolbox"; 25503 - deps."fancyhdr" = tl."fancyhdr"; 25504 - deps."graphics" = tl."graphics"; 25505 - deps."hyperref" = tl."hyperref"; 25506 - deps."iftex" = tl."iftex"; 25507 - deps."l3packages" = tl."l3packages"; 25508 - deps."microtype" = tl."microtype"; 25509 - deps."tools" = tl."tools"; 25510 - deps."url" = tl."url"; 25511 - deps."xcolor" = tl."xcolor"; 25964 + deps = [ 25965 + "etoolbox" 25966 + "fancyhdr" 25967 + "graphics" 25968 + "hyperref" 25969 + "iftex" 25970 + "l3packages" 25971 + "microtype" 25972 + "tools" 25973 + "url" 25974 + "xcolor" 25975 + ]; 25512 25976 sha512.run = "988cc5f400af4ecdfc0730a63d7f2a13fde81b9120f198622a5e2d145ca94e1d5bc952e261ef2f4cacefda8a23626119975fd1e00b44f4a66b1fbb7f4c011d40"; 25513 25977 sha512.doc = "9527fa84fffc4eb2ac92dab59cf0e5ae87a6f5befd4ed05acdd85cc7050dcc669f8b814ef928e69bb1c1e8bb3bd774aca1f85acf6b750a1c9555a3165eba0281"; 25514 25978 hasRunfiles = true; ··· 25602 26066 "montex" = { 25603 26067 revision = 29349; 25604 26068 stripPrefix = 0; 25605 - deps."cbfonts" = tl."cbfonts"; 26069 + deps = [ 26070 + "cbfonts" 26071 + ]; 25606 26072 sha512.run = "9676cef9e0fbe7a0196b1ea0fb3ea4f0399a3ee8ed76ef06e824848a57922dc4f7cc1f50a1fcea47fc265465407653447ab80e80dbac3c4bc00488d0929f87bc"; 25607 26073 sha512.doc = "1965f31e28a9f54d86a495b4b8cea50dc59f409d066918dedf77f86448b60ea547565dcf2069ee0e0a646d53f34d244868600951c4b1a4d4e099fe50e3c2b477"; 25608 26074 hasRunfiles = true; ··· 25767 26233 }; 25768 26234 "mptopdf" = { 25769 26235 revision = 61520; 25770 - deps."plain" = tl."plain"; 26236 + deps = [ 26237 + "plain" 26238 + ]; 25771 26239 hasFormats = true; 25772 26240 sha512.run = "3e5bb2983ea7329e4d3a48a29a5902d0245b0bd07f6cc3d272358701bd7df8bef808cd23810a70ab60209dea2d8788624e98497c6c04c917a59874a84ed94a30"; 25773 26241 sha512.doc = "7bb6c2bc9dd0bceddb4b5aaa8d7143c40fb41baac2065cfbaf14642acb33bb7f05703d7b8469da0e92453ec10f0b8252d00b05588d7846835d622be097a83f8d"; ··· 26049 26517 }; 26050 26518 "musixtnt" = { 26051 26519 revision = 40307; 26052 - deps."musixtex" = tl."musixtex"; 26520 + deps = [ 26521 + "musixtex" 26522 + ]; 26053 26523 sha512.run = "eab6332d626f199e46dcd03ea546abbc4446b41c4b0354c066790ebfde154c6fa90f861dcff77206318b58a31565d884576899629520e78b3285bac673d1f4bf"; 26054 26524 sha512.doc = "2da473ad2425064747187da005e01d6844731c536b75095828a85d358ffb1344331ef483c0cebe79b346b4fa96a358a1e416cce7d7cfcce6b1242cf3c0a3645e"; 26055 26525 hasRunfiles = true; ··· 26183 26653 "namedef" = { 26184 26654 revision = 55881; 26185 26655 stripPrefix = 0; 26186 - deps."l3kernel" = tl."l3kernel"; 26656 + deps = [ 26657 + "l3kernel" 26658 + ]; 26187 26659 sha512.run = "c413d600911ab1107554ec2aacadc80fad12a95e7486817c002274f282e047915d06f4878e68e423af649569752cd27d7c1b3a802a9abff68e91038719b2fd28"; 26188 26660 sha512.doc = "72031cf2858a3b68092c852c216f96aaea212c721e47d90e870c8153f83db921590246fb11b59009d431754720791e3c625fb3abd7bdd9010cd1a49894023ebb"; 26189 26661 sha512.source = "adff08a774126c8faff52ba14044a8e2140f9586358dab6ce95e7a941706bf57c32acf0ad75282bd3b01dec8a73fea105c0c65a1453f5903d5eaeb3fe0349b15"; ··· 26460 26932 "newtx" = { 26461 26933 revision = 62369; 26462 26934 stripPrefix = 0; 26463 - deps."kastrup" = tl."kastrup"; 26935 + deps = [ 26936 + "kastrup" 26937 + ]; 26464 26938 sha512.run = "07c63e655ebb6381bb7eaa4f0f1a35054894ee6db55992cb8fadc04a2dc62470767a12661a8cc697c8d15df40861835463ff7a0bad449f9fb86b59093642b89c"; 26465 26939 sha512.doc = "e615ce1c1a9478358af27885cd9c0b8d7ad152a3fb437ab705bf682d5849bd705a248de2d879ea9b4de0833984c15b0ad59c4da7da88c9e12d21fff9e4fd9efa"; 26466 26940 hasRunfiles = true; ··· 26591 27065 "nimbus15" = { 26592 27066 revision = 58839; 26593 27067 stripPrefix = 0; 26594 - deps."fontools" = tl."fontools"; 27068 + deps = [ 27069 + "fontools" 27070 + ]; 26595 27071 sha512.run = "9e39f92dea1fa293d6249d16877dd6b2d990d1d48cfd31f4ac1d66233b97ff178d2b70f428978a084fc9a50b9dd994adb6a8ad29375e54f5d5ccf6ca7ed62f64"; 26596 27072 sha512.doc = "8fb9ece6ca17549572a0d79a541397c6545dc01ac0422a5270314bba1cb83b1451fb0f56e34f449cc3d3de326e063e4ea1f2ea03a0fbda7342e9d0a101fb5ed1"; 26597 27073 hasRunfiles = true; ··· 26791 27267 "norasi-c90" = { 26792 27268 revision = 60831; 26793 27269 stripPrefix = 0; 26794 - deps."fonts-tlwg" = tl."fonts-tlwg"; 27270 + deps = [ 27271 + "fonts-tlwg" 27272 + ]; 26795 27273 sha512.run = "5f65927546348815b07c93003a2b0922403d274bfa3d1665d4649c9dbc737df924958c2fd61c1d06cd5e7c1862aff392c8d1e9d827f4ae79e70d9b76467f651d"; 26796 27274 sha512.source = "8fb30cc3a1e762ec15c813fff0191b08b64a0d259dbdd21a9edcf70c6eb1b327cff5ef3f48b9dba0b7d99d1ec31b3accef65deca7285e27790261ca659bd525d"; 26797 27275 hasRunfiles = true; ··· 27083 27561 "oberdiek" = { 27084 27562 revision = 64463; 27085 27563 stripPrefix = 0; 27086 - deps."auxhook" = tl."auxhook"; 27087 - deps."grfext" = tl."grfext"; 27088 - deps."grffile" = tl."grffile"; 27089 - deps."iftex" = tl."iftex"; 27090 - deps."infwarerr" = tl."infwarerr"; 27091 - deps."kvoptions" = tl."kvoptions"; 27092 - deps."pdftexcmds" = tl."pdftexcmds"; 27564 + deps = [ 27565 + "auxhook" 27566 + "grfext" 27567 + "grffile" 27568 + "iftex" 27569 + "infwarerr" 27570 + "kvoptions" 27571 + "pdftexcmds" 27572 + ]; 27093 27573 sha512.run = "b3f9d5918b24d6191515b459709afb9364a28f44a8b1ad3adc98c2d10c9a4f10316c80070c575fe4a6a06405bcead5bed312ab75553a32d254b2a80b2afbfb8f"; 27094 27574 sha512.doc = "b7f756ceb7dc619bc1941dfc56c5dd2f151e33c57c51444a11dbe74280a23ac27886da05b4b8d0f33dfe9839a5538cbac5e9d506338c89fb223d82867a3f839c"; 27095 27575 sha512.source = "688768a47cf782c817cc23e6e527e41c1893fc084702c2ab85e2e4b7df4b3d515033dbae0ea26bf904f6fae77dfce41d21a7b59415fbf67449a3aacc7047afd0"; ··· 27333 27813 }; 27334 27814 "optex" = { 27335 27815 revision = 65185; 27336 - deps."amsfonts" = tl."amsfonts"; 27337 - deps."cm" = tl."cm"; 27338 - deps."ec" = tl."ec"; 27339 - deps."hyphen-base" = tl."hyphen-base"; 27340 - deps."librarian" = tl."librarian"; 27341 - deps."lm" = tl."lm"; 27342 - deps."luaotfload" = tl."luaotfload"; 27343 - deps."luatex" = tl."luatex"; 27344 - deps."rsfs" = tl."rsfs"; 27345 - deps."unicode-data" = tl."unicode-data"; 27816 + deps = [ 27817 + "amsfonts" 27818 + "cm" 27819 + "ec" 27820 + "hyphen-base" 27821 + "librarian" 27822 + "lm" 27823 + "luaotfload" 27824 + "luatex" 27825 + "rsfs" 27826 + "unicode-data" 27827 + ]; 27346 27828 hasFormats = true; 27347 27829 sha512.run = "a30b58b6dc9a1e06c3bf2fe196532ca88e5bf9ebae5e36f5ec2b9f146f95f18a70df2b15698bbcfc51300cef2c1b25c28521885c2ac1a44c6bb8cc485eed8739"; 27348 27830 sha512.doc = "8b7b46ab7984a0d1f590adabefb99085734532dd0dede6c429fdaa2bcaa3c2dcd1d0e70d37ae3cf9a109ab018f0fd29a7bc36250b8bf5d12c41ee4fa21bf9ccd"; ··· 27845 28327 }; 27846 28328 "patgen" = { 27847 28329 revision = 62387; 27848 - deps."kpathsea" = tl."kpathsea"; 28330 + deps = [ 28331 + "kpathsea" 28332 + ]; 27849 28333 sha512.run = "e4b04bdc28d75de619307567716d2c29b41286a82cdafd6eca45df36baf67588cee94c4c320abadee4e3103fac8b33ba9367114875e56f198665388fc93e341d"; 27850 28334 sha512.doc = "dcf16fddb0085e8a8984047ff9e500c8b7fdd7d6b24b4f6154f464e05fe137b807c13d910881fda96e617cf80780ed1e75ccfe0fda2477b1d9b95990baf5f279"; 27851 28335 version = "2.4"; ··· 28096 28580 "pdfpages" = { 28097 28581 revision = 65319; 28098 28582 stripPrefix = 0; 28099 - deps."eso-pic" = tl."eso-pic"; 28100 - deps."graphics" = tl."graphics"; 28101 - deps."oberdiek" = tl."oberdiek"; 28102 - deps."tools" = tl."tools"; 28583 + deps = [ 28584 + "eso-pic" 28585 + "graphics" 28586 + "oberdiek" 28587 + "tools" 28588 + ]; 28103 28589 sha512.run = "c29f811574dde6dcd717255d40df7234d0916d6e7e4fe4c25e62639123bcdf4464e3e285c335c11bf2a289e8ca6391278611a0073fbd3ac8a071790717b2778a"; 28104 28590 sha512.doc = "d91c5ae383beb5b4d16d69d09124c1e9598d3abebecc5d1f63319a90c8784c361fda0bc68626db752c8b9a3dc3f6b691a1be6d6ed7d16169278228f68b876b2e"; 28105 28591 sha512.source = "869945d91d96e3a7936515a84bc4cfaad96193bb198a0a4db88300d1bfcf61ac971c6144820fcdb52045f4fa3511af8ec4045f999bbf8ef07d869d43e68dbee2"; ··· 28164 28650 }; 28165 28651 "pdftex" = { 28166 28652 revision = 64690; 28167 - deps."cm" = tl."cm"; 28168 - deps."dehyph" = tl."dehyph"; 28169 - deps."etex" = tl."etex"; 28170 - deps."hyph-utf8" = tl."hyph-utf8"; 28171 - deps."hyphen-base" = tl."hyphen-base"; 28172 - deps."knuth-lib" = tl."knuth-lib"; 28173 - deps."kpathsea" = tl."kpathsea"; 28174 - deps."plain" = tl."plain"; 28175 - deps."tex-ini-files" = tl."tex-ini-files"; 28653 + deps = [ 28654 + "cm" 28655 + "dehyph" 28656 + "etex" 28657 + "hyph-utf8" 28658 + "hyphen-base" 28659 + "knuth-lib" 28660 + "kpathsea" 28661 + "plain" 28662 + "tex-ini-files" 28663 + ]; 28176 28664 hasFormats = true; 28177 28665 sha512.run = "f35a908deb539efbcab7f7db6b8d1c0aba08f1e6aa1fe39c4f7235d2cfddb61e14252fb71f90df1023a6a30809240dfb45905ff21a0d899a5c480e1b007212ec"; 28178 28666 sha512.doc = "018e860e5fc2222cac7d1f00498d74f3ccac00a10d0d226f2b2dd49d9941381ffc5341dea728155c3c0a4b39482b5b7c08e94c26cda99cb561b5044a6098beec"; ··· 28342 28830 "pgf" = { 28343 28831 revision = 59210; 28344 28832 stripPrefix = 0; 28345 - deps."atveryend" = tl."atveryend"; 28346 - deps."fp" = tl."fp"; 28347 - deps."graphics" = tl."graphics"; 28348 - deps."ms" = tl."ms"; 28349 - deps."pdftexcmds" = tl."pdftexcmds"; 28350 - deps."xcolor" = tl."xcolor"; 28833 + deps = [ 28834 + "atveryend" 28835 + "fp" 28836 + "graphics" 28837 + "ms" 28838 + "pdftexcmds" 28839 + "xcolor" 28840 + ]; 28351 28841 sha512.run = "c02a5b4a0f3aab13d39166c30bd456603de012ce6089662ab0b7c091ac906eb5c1719543246db97ac49cc109ad05c1b1d59330a64a43f82689cddcc86a465d06"; 28352 28842 sha512.doc = "360aaf8f3a2b2f531c9f24c777fdc687bae4a40b2d03f99f081765690a94711f63902abc3e9a602fc2d2d5bf93d3611cf40e7082fab7176fc0fba07876485238"; 28353 28843 sha512.source = "f2779d8172a81882263bd1ff7ec17766fe1273cb824e7fdf695704dfb4575ff0aa3a77ca264e4c57e4c4cb232bfc87782532dcdb69de00eeb1ea3cc23392bb7f"; ··· 28391 28881 "pgf-pie" = { 28392 28882 revision = 63603; 28393 28883 stripPrefix = 0; 28394 - deps."carlisle" = tl."carlisle"; 28395 - deps."latex" = tl."latex"; 28396 - deps."pgf" = tl."pgf"; 28884 + deps = [ 28885 + "carlisle" 28886 + "latex" 28887 + "pgf" 28888 + ]; 28397 28889 sha512.run = "3e5cdb5def0918ab1c3d38d35bb85f07711144d1fcaf0f3af8b2c5e0eacd9af6c3b92bc6e1f45438e40d7f5838770b91ab513970cdd9a3f7dad2918eefb875f6"; 28398 28890 sha512.doc = "ac151cb61ea4fc440ffeeea9b987f6dd648b53596934900f41437f787bedcabe2ca8dd53c37828aab816e9334d0d26573f81000333e50d0761d70c586a5d87e3"; 28399 28891 hasRunfiles = true; ··· 28418 28910 "pgf-umlcd" = { 28419 28911 revision = 63386; 28420 28912 stripPrefix = 0; 28421 - deps."latex" = tl."latex"; 28422 - deps."pgf" = tl."pgf"; 28913 + deps = [ 28914 + "latex" 28915 + "pgf" 28916 + ]; 28423 28917 sha512.run = "a55281a157a2a347f1c9d82679cd663f4493e03123d14dbef0d71582613772252b693a25b3d3e5b72b948c4fd12d0d7b0354d2e38083583b550d7cfb5e634d93"; 28424 28918 sha512.doc = "6d798d93590d859d69bda9f0bd391049db91e2d4fb6f0b019a6f76eeaae9e73c9f249ec356cf5a5d4505af6948d4c70c2ad4685c1c41a7ba40ec62d3d8a9dd00"; 28425 28919 hasRunfiles = true; ··· 28428 28922 "pgf-umlsd" = { 28429 28923 revision = 55342; 28430 28924 stripPrefix = 0; 28431 - deps."latex" = tl."latex"; 28432 - deps."pgf" = tl."pgf"; 28925 + deps = [ 28926 + "latex" 28927 + "pgf" 28928 + ]; 28433 28929 sha512.run = "6b015603e3daa362e473d795d32fa785ce247b58ec9f88872fe4bdb4fa660000bd87da2369de556f998485a6fcb6dd49aaca549b0470b41adacba5a278453197"; 28434 28930 sha512.doc = "968d23fcc4f114bab204ec53281975a6fee5f81635ece256351198075cd8463a706954f463beacc162180459fdb3652657f2c060a71c588681f8de6e788a4e6a"; 28435 28931 hasRunfiles = true; ··· 28438 28934 "pgfgantt" = { 28439 28935 revision = 52662; 28440 28936 stripPrefix = 0; 28441 - deps."pgf" = tl."pgf"; 28937 + deps = [ 28938 + "pgf" 28939 + ]; 28442 28940 sha512.run = "0269703fc00f10981d5ce8958159a24814b9f410c1b00516608c039b1ea8a3381392bf1d89e98f3011d42210047bf2e1fec2f103467087f9172e143d9ab6fcf1"; 28443 28941 sha512.doc = "4890ae174c92db8df7befcef30d03724ae52fa4b26ac796d247a703794ce745ee892f0d2ab8a4f62e96a5e5f792791a6f7e8b9e71f1c0f11b68e8cbcf5165472"; 28444 28942 sha512.source = "668987bd37aebd38697c02bc39d85371c7d40613aba13c0f3b62ece8145608057cf3f76cda03de6df25f7ba820359ff2ba1c340aa1b9ebff94bbd42aed39e401"; ··· 28482 28980 "pgfopts" = { 28483 28981 revision = 56615; 28484 28982 stripPrefix = 0; 28485 - deps."pgf" = tl."pgf"; 28983 + deps = [ 28984 + "pgf" 28985 + ]; 28486 28986 sha512.run = "7d672d626428c37fa749a810c57be43c6102e1325a6d3e16c57bc560b6d65a57bae94e619a73f3e0efb46ce7b4783d05a6e98c64b1e90c6e0f94f1dd9acd676f"; 28487 28987 sha512.doc = "ff82e0502fdeefe6afe90aad4e7615de9be4ef8e2e6a69e7a537202af77aed00c0895269ceed3d38e0f34345efbdd771d22b0c8759fcb46ff8e91ce639dcd21d"; 28488 28988 sha512.source = "758da1f3daa0ef888b484ea657fdd4384102868e4eee543bc97e73f103b67c367277f5c00efd06a2080f9ac3fb82c909cd30f641363120e70357450179dab6c5"; ··· 28507 29007 "pgfplots" = { 28508 29008 revision = 61719; 28509 29009 stripPrefix = 0; 28510 - deps."pgf" = tl."pgf"; 29010 + deps = [ 29011 + "pgf" 29012 + ]; 28511 29013 sha512.run = "8244e65860f37d74d05535a627ef6cd321407a69a142d156bae190c562a9402a0d7e927df732c32cc5f556dede1b51f7aeca5d7d3a26167348a21f2e3d8be5ac"; 28512 29014 sha512.doc = "720a77c574c81e7c3619e3b988c8a359bd6cf284ad3fa7c795eb01c371ede85ad727dde8e5f19d8f683947b5dc5752324581e364c59e8a644b5ae34d6b75a96f"; 28513 29015 sha512.source = "d840015854794de1a311f1d8a9935a93c71a098c46fb1c5cec8a57228a924685f75ea76fc9cf2a9f9f30ed39920bbf2092fbdef2645ddaa5ad5a3787839c1d2a"; ··· 28945 29447 }; 28946 29448 "platex" = { 28947 29449 revision = 65305; 28948 - deps."atbegshi" = tl."atbegshi"; 28949 - deps."atveryend" = tl."atveryend"; 28950 - deps."babel" = tl."babel"; 28951 - deps."cm" = tl."cm"; 28952 - deps."everyshi" = tl."everyshi"; 28953 - deps."firstaid" = tl."firstaid"; 28954 - deps."hyphen-base" = tl."hyphen-base"; 28955 - deps."l3backend" = tl."l3backend"; 28956 - deps."l3kernel" = tl."l3kernel"; 28957 - deps."l3packages" = tl."l3packages"; 28958 - deps."latex" = tl."latex"; 28959 - deps."latex-base-dev" = tl."latex-base-dev"; 28960 - deps."latex-firstaid-dev" = tl."latex-firstaid-dev"; 28961 - deps."latex-fonts" = tl."latex-fonts"; 28962 - deps."ptex" = tl."ptex"; 28963 - deps."ptex-fonts" = tl."ptex-fonts"; 28964 - deps."tex-ini-files" = tl."tex-ini-files"; 28965 - deps."unicode-data" = tl."unicode-data"; 29450 + deps = [ 29451 + "atbegshi" 29452 + "atveryend" 29453 + "babel" 29454 + "cm" 29455 + "everyshi" 29456 + "firstaid" 29457 + "hyphen-base" 29458 + "l3backend" 29459 + "l3kernel" 29460 + "l3packages" 29461 + "latex" 29462 + "latex-base-dev" 29463 + "latex-firstaid-dev" 29464 + "latex-fonts" 29465 + "ptex" 29466 + "ptex-fonts" 29467 + "tex-ini-files" 29468 + "unicode-data" 29469 + ]; 28966 29470 hasFormats = true; 28967 29471 sha512.run = "53a9c0137d35110ce5b1875875f2b5e20d9db884b62bf25eea4a9d9c2724ff6e779680c060ee2aad5ebf36372045b3ef7d711658f6d50af4999e409f5860c09f"; 28968 29472 sha512.doc = "7b47db806f6a79ab99c19833f3cbbfdb2bae594f370ccb51288df95c262680a7a789888952edb542321d899f6efa0d4aaec6b9d00adec8826b8a10c4db2d3c27"; ··· 29163 29667 "polski" = { 29164 29668 revision = 60322; 29165 29669 stripPrefix = 0; 29166 - deps."hyphen-polish" = tl."hyphen-polish"; 29167 - deps."pl" = tl."pl"; 29670 + deps = [ 29671 + "hyphen-polish" 29672 + "pl" 29673 + ]; 29168 29674 sha512.run = "24bdb98990f66e89085056e6ad3e0930dd16d0f4bbd07a2c9a49931796e143505276d2025fee21b2b52d927c3b2992d31f4edae4668cdb549f6f00ef43dc1c69"; 29169 29675 sha512.doc = "755e7625d5ee1e4457e7ee518469d585c9c1e566c57bf147c62195555ae91dadb68f469127cb18a7c30cda1468129db09cb09b1974f5273d41c9491a6e1d5ffc"; 29170 29676 sha512.source = "8e216956a95df02134cf411d170a75309c3f167a5bf7d78f77c4e47950c8a5da52e523e367f5ce60492fc0ab7cb205e9b57835b883225752731ca094d7c507b8"; ··· 29182 29688 "polyglossia" = { 29183 29689 revision = 65144; 29184 29690 stripPrefix = 0; 29185 - deps."etoolbox" = tl."etoolbox"; 29186 - deps."filehook" = tl."filehook"; 29187 - deps."fontspec" = tl."fontspec"; 29188 - deps."iftex" = tl."iftex"; 29189 - deps."makecmds" = tl."makecmds"; 29190 - deps."xkeyval" = tl."xkeyval"; 29691 + deps = [ 29692 + "etoolbox" 29693 + "filehook" 29694 + "fontspec" 29695 + "iftex" 29696 + "makecmds" 29697 + "xkeyval" 29698 + ]; 29191 29699 sha512.run = "65d91b180f748592c2eb7a98232b7b438c762a56100294995454e54d7759ef00076d63d90660fcded3d0ee5aa03d1a4b328ff3706db1926be2546140325e8e96"; 29192 29700 sha512.doc = "88867dbf5e218720a13e0ffeaf0ecc3784adbf5097c99cfc193f35be1c99c82c459e0e27b1e1d72cee1020549bc6131b8da03a47beef42f59d53b4fd4fe036c4"; 29193 29701 sha512.source = "e037d2a8c0bebf37a8ed3dcdae764dd2cda3d780379ba70a67eb46447936816e8c43122d691bdf58122fcc7a96f2bcf3d6710d71bf5bb378cf0418efd40ae37f"; ··· 29299 29807 "ppt-slides" = { 29300 29808 revision = 65194; 29301 29809 stripPrefix = 0; 29302 - deps."crumbs" = tl."crumbs"; 29303 - deps."enumitem" = tl."enumitem"; 29304 - deps."hyperref" = tl."hyperref"; 29305 - deps."pagecolor" = tl."pagecolor"; 29306 - deps."pgf" = tl."pgf"; 29307 - deps."pgfopts" = tl."pgfopts"; 29308 - deps."qrcode" = tl."qrcode"; 29309 - deps."seqsplit" = tl."seqsplit"; 29310 - deps."tikzpagenodes" = tl."tikzpagenodes"; 29311 - deps."tools" = tl."tools"; 29312 - deps."varwidth" = tl."varwidth"; 29313 - deps."xcolor" = tl."xcolor"; 29810 + deps = [ 29811 + "crumbs" 29812 + "enumitem" 29813 + "hyperref" 29814 + "pagecolor" 29815 + "pgf" 29816 + "pgfopts" 29817 + "qrcode" 29818 + "seqsplit" 29819 + "tikzpagenodes" 29820 + "tools" 29821 + "varwidth" 29822 + "xcolor" 29823 + ]; 29314 29824 sha512.run = "8741def8d57db17bef3490c881a615340290283860e9978e105b7ba0768b5fbf02023722109dd2f6860e9fa8d44fe7cf742eb2a97ae08d1199a6dea9f73503f2"; 29315 29825 sha512.doc = "6528e50797dae2dd928d11f78bdcb3368177412823657baccba10c194bebce97384ed55d10c5307c13aa06883a156abd57a944acc26f9237a138df22b5a33658"; 29316 29826 sha512.source = "42dd3fdc96d1ffbf39deba0e2e292392a9aa6a2b266d7787448b93996f12c966abff0b643281fec8b336a395b283e2e88fafb365f616455e3393645cd7c3a55c"; ··· 29396 29906 "prettytok" = { 29397 29907 revision = 63842; 29398 29908 stripPrefix = 0; 29399 - deps."filecontentsdef" = tl."filecontentsdef"; 29400 - deps."l3kernel" = tl."l3kernel"; 29401 - deps."precattl" = tl."precattl"; 29909 + deps = [ 29910 + "filecontentsdef" 29911 + "l3kernel" 29912 + "precattl" 29913 + ]; 29402 29914 sha512.run = "8b9f5e9fec9d50b9f688115e00ad6fde21adfb9cef69e020fb297abcfe489cc6fde08d2ad4b72ea5f6b8e0b7499a97c798e8c0bd306d298427fcd19b6365c300"; 29403 29915 sha512.doc = "8dc2afdc9920817b13050bdb6d92164e9322a18fd1d7a7adc7a1655c8dd68181b00faef22c09f9bce45be0744e179c978ba40c6f841e3c2cdba1c88225f7486f"; 29404 29916 hasRunfiles = true; ··· 29700 30212 "psnfss" = { 29701 30213 revision = 54694; 29702 30214 stripPrefix = 0; 29703 - deps."graphics" = tl."graphics"; 29704 - deps."symbol" = tl."symbol"; 29705 - deps."zapfding" = tl."zapfding"; 30215 + deps = [ 30216 + "graphics" 30217 + "symbol" 30218 + "zapfding" 30219 + ]; 29706 30220 sha512.run = "f7d1acebcd1d32a691221f396220358f3bb15dff2e2cebec4b537b1b790b68d8ce1164711983a52b4f04d6e470df2e3e5fec63bb1d3bf39fe205d5f0351299de"; 29707 30221 sha512.doc = "d1c14edccdf43ed2c786394bc04e9fd683b683532a9dc18d592f918ee8899234d23feb738128aa1418f441288cdbf0c6de832f8c4d98023926baeace36365a1d"; 29708 30222 sha512.source = "6862a7e74be6a575996e6f45a2236db810f1c030d3a0c53b2b97c2e803fc7e29010108e4597d637b8abedd63b1f956da268f62ca2c609accaa4d035be7bfd8ed"; ··· 30475 30989 "pst-uml" = { 30476 30990 revision = 15878; 30477 30991 stripPrefix = 0; 30478 - deps."multido" = tl."multido"; 30992 + deps = [ 30993 + "multido" 30994 + ]; 30479 30995 sha512.run = "e4ff8ea9b7fb9f530e33280de3e9eb20d653c0c062fa80611a544daf74da0b1dd2481b43d8f5258f9ebc1d1bf95b393b32c7152ab8464a9e980cefa105c45ceb"; 30480 30996 sha512.doc = "d8aa92785c241b6346762d98349d8464ce604afceb8774ef160e8c24e0a40d3fd8dba7cac3f78cbf38cbf6cfebb79939ad3c76e6b4014c1028859aba38123efe"; 30481 30997 sha512.source = "8b7e551154c1b1966046268ed3353b6c78c3a66bfa20f44c7fba3b58f661f2585b71d49d2dd673368f732b2f9446dc7783bad4ae5248169a79721d330a49514c"; ··· 30568 31084 }; 30569 31085 "ptex" = { 30570 31086 revision = 62464; 30571 - deps."cm" = tl."cm"; 30572 - deps."etex" = tl."etex"; 30573 - deps."hyphen-base" = tl."hyphen-base"; 30574 - deps."knuth-lib" = tl."knuth-lib"; 30575 - deps."plain" = tl."plain"; 30576 - deps."ptex-base" = tl."ptex-base"; 30577 - deps."ptex-fonts" = tl."ptex-fonts"; 31087 + deps = [ 31088 + "cm" 31089 + "etex" 31090 + "hyphen-base" 31091 + "knuth-lib" 31092 + "plain" 31093 + "ptex-base" 31094 + "ptex-fonts" 31095 + ]; 30578 31096 hasFormats = true; 30579 31097 sha512.run = "6e2e40d86740a24550cb4f55630db81bdc777daf87533cb23b4fe041439d00e10cbb7b5fab92e33828c87945e710ea3579d76a8e0fdae0b8ba069b5eb33968c3"; 30580 31098 sha512.doc = "96aed9e990d013c7f5310a5ec86a1f7465d0de8503009669a5e10ccf4d3ed8767bf1408cfb04cfa8876e02640bc4a3b07249c331cc6190e391cb4a5b8aeafa35"; ··· 30824 31342 "pythonimmediate" = { 30825 31343 revision = 65349; 30826 31344 stripPrefix = 0; 30827 - deps."currfile" = tl."currfile"; 30828 - deps."l3packages" = tl."l3packages"; 30829 - deps."precattl" = tl."precattl"; 30830 - deps."saveenv" = tl."saveenv"; 31345 + deps = [ 31346 + "currfile" 31347 + "l3packages" 31348 + "precattl" 31349 + "saveenv" 31350 + ]; 30831 31351 sha512.run = "970cd28032c551271f97fcae614a03f012684b0f1a09904284ff35e9461195a1e5b8a6f51c12c4e7dc7b54720d13a34d9bbe471469a03c0fd00ddc49d8462d9c"; 30832 31352 sha512.doc = "68068245368180f4dff747a18abdc068a2f0fddcc5b3cf3e63403d99ceaf56ddc5ee17bb32ebefb42f92268d3b681c5c5feb94aa76823b90478d77f0b3e511bd"; 30833 31353 hasRunfiles = true; ··· 31409 31929 "rerunfilecheck" = { 31410 31930 revision = 63869; 31411 31931 stripPrefix = 0; 31412 - deps."atveryend" = tl."atveryend"; 31413 - deps."uniquecounter" = tl."uniquecounter"; 31932 + deps = [ 31933 + "atveryend" 31934 + "uniquecounter" 31935 + ]; 31414 31936 sha512.run = "464daf4ee4f443f4ff329e28b928df94e83e83696e3e5604de7b51beb61c25a0ce50dc00b35d2cc8d0cabb32d10bc28c3c06069f5dd7eafd9fdb2d44a3adf313"; 31415 31937 sha512.doc = "7c570d38c989aaeb7db5271501c5384ba8b8601396f629d7ffee32baaf1c289592bb5d69d2cb2784cfb2008fdc047098d43dc20803e4b90eac59848c15dd0cb7"; 31416 31938 sha512.source = "2d987c01bc0f67708080d4578f308444ed3220a37ee11ef1a95c2a9bfa0ab49a46ab46d291153f0c748935f473124d70212a821233b22f1e606be6183e4afe81"; ··· 31962 32484 "saveenv" = { 31963 32485 revision = 65346; 31964 32486 stripPrefix = 0; 31965 - deps."precattl" = tl."precattl"; 32487 + deps = [ 32488 + "precattl" 32489 + ]; 31966 32490 sha512.run = "e0e368dcf3add9d59b22d8e04da1de9110d6f1ad2e31cd2cd44f894ea1d7f0cbd4eb41b500637e896eb179539e19c4a1d0601035e2404726dfc98677f9db0927"; 31967 32491 sha512.doc = "2016c815add27dca5b498f4cca3ce69c9c18f544b9651305d5d9a9a7a10b30fe187c526da37813218388f8305fc3df83257b2e9b6289171febb770c7d59d9274"; 31968 32492 hasRunfiles = true; ··· 32056 32580 "scheme-basic" = { 32057 32581 revision = 54191; 32058 32582 stripPrefix = 0; 32059 - deps."collection-basic" = tl."collection-basic"; 32060 - deps."collection-latex" = tl."collection-latex"; 32583 + deps = [ 32584 + "collection-basic" 32585 + "collection-latex" 32586 + ]; 32061 32587 sha512.run = "027a1cd0dd4fc5da2427864bb49fc885a00bec6e8a74da24ce9cd781c69bf4288ddfc3c790307ed48052a8fc00c1989d3939b253da6638370adbb1c43348749b"; 32062 32588 }; 32063 32589 "scheme-bookpub" = { 32064 32590 revision = 63547; 32065 32591 stripPrefix = 0; 32066 - deps."barcodes" = tl."barcodes"; 32067 - deps."biber" = tl."biber"; 32068 - deps."biblatex" = tl."biblatex"; 32069 - deps."bookcover" = tl."bookcover"; 32070 - deps."caption" = tl."caption"; 32071 - deps."collection-basic" = tl."collection-basic"; 32072 - deps."collection-latex" = tl."collection-latex"; 32073 - deps."enumitem" = tl."enumitem"; 32074 - deps."fontspec" = tl."fontspec"; 32075 - deps."latexmk" = tl."latexmk"; 32076 - deps."lipsum" = tl."lipsum"; 32077 - deps."listings" = tl."listings"; 32078 - deps."markdown" = tl."markdown"; 32079 - deps."memoir" = tl."memoir"; 32080 - deps."microtype" = tl."microtype"; 32081 - deps."minted" = tl."minted"; 32082 - deps."novel" = tl."novel"; 32083 - deps."octavo" = tl."octavo"; 32084 - deps."pdfpages" = tl."pdfpages"; 32085 - deps."pgf" = tl."pgf"; 32086 - deps."qrcode" = tl."qrcode"; 32087 - deps."shapes" = tl."shapes"; 32088 - deps."titlesec" = tl."titlesec"; 32089 - deps."tocloft" = tl."tocloft"; 32090 - deps."tufte-latex" = tl."tufte-latex"; 32091 - deps."willowtreebook" = tl."willowtreebook"; 32592 + deps = [ 32593 + "barcodes" 32594 + "biber" 32595 + "biblatex" 32596 + "bookcover" 32597 + "caption" 32598 + "collection-basic" 32599 + "collection-latex" 32600 + "enumitem" 32601 + "fontspec" 32602 + "latexmk" 32603 + "lipsum" 32604 + "listings" 32605 + "markdown" 32606 + "memoir" 32607 + "microtype" 32608 + "minted" 32609 + "novel" 32610 + "octavo" 32611 + "pdfpages" 32612 + "pgf" 32613 + "qrcode" 32614 + "shapes" 32615 + "titlesec" 32616 + "tocloft" 32617 + "tufte-latex" 32618 + "willowtreebook" 32619 + ]; 32092 32620 sha512.run = "0ea47f8907821e273a581c52494b6a4e9a511a71e11ebfb05756eaded6e5132fc548312cb6365cc4c1906b4e8ffb14ee5ed496484fe5e2a2611e154091d23cf6"; 32093 32621 }; 32094 32622 "scheme-context" = { 32095 32623 revision = 59636; 32096 32624 stripPrefix = 0; 32097 - deps."antt" = tl."antt"; 32098 - deps."asana-math" = tl."asana-math"; 32099 - deps."ccicons" = tl."ccicons"; 32100 - deps."collection-context" = tl."collection-context"; 32101 - deps."collection-metapost" = tl."collection-metapost"; 32102 - deps."dejavu" = tl."dejavu"; 32103 - deps."eulervm" = tl."eulervm"; 32104 - deps."gentium-tug" = tl."gentium-tug"; 32105 - deps."iwona" = tl."iwona"; 32106 - deps."kurier" = tl."kurier"; 32107 - deps."ly1" = tl."ly1"; 32108 - deps."manfnt-font" = tl."manfnt-font"; 32109 - deps."marvosym" = tl."marvosym"; 32110 - deps."mflogo-font" = tl."mflogo-font"; 32111 - deps."poltawski" = tl."poltawski"; 32112 - deps."pxfonts" = tl."pxfonts"; 32113 - deps."tex-gyre" = tl."tex-gyre"; 32114 - deps."tex-gyre-math" = tl."tex-gyre-math"; 32115 - deps."txfonts" = tl."txfonts"; 32116 - deps."wasy" = tl."wasy"; 32117 - deps."xits" = tl."xits"; 32625 + deps = [ 32626 + "antt" 32627 + "asana-math" 32628 + "ccicons" 32629 + "collection-context" 32630 + "collection-metapost" 32631 + "dejavu" 32632 + "eulervm" 32633 + "gentium-tug" 32634 + "iwona" 32635 + "kurier" 32636 + "ly1" 32637 + "manfnt-font" 32638 + "marvosym" 32639 + "mflogo-font" 32640 + "poltawski" 32641 + "pxfonts" 32642 + "tex-gyre" 32643 + "tex-gyre-math" 32644 + "txfonts" 32645 + "wasy" 32646 + "xits" 32647 + ]; 32118 32648 sha512.run = "0b041f3c27ef88e7baec105b7cb24fa65c4b1f092f155482d584d9041ced4f329251f0b0d32f7019c15fff3c57b4d17f057cf39781f8be16a4e8c0ce4838163e"; 32119 32649 }; 32120 32650 "scheme-full" = { 32121 32651 revision = 54074; 32122 32652 stripPrefix = 0; 32123 - deps."collection-basic" = tl."collection-basic"; 32124 - deps."collection-bibtexextra" = tl."collection-bibtexextra"; 32125 - deps."collection-binextra" = tl."collection-binextra"; 32126 - deps."collection-context" = tl."collection-context"; 32127 - deps."collection-fontsextra" = tl."collection-fontsextra"; 32128 - deps."collection-fontsrecommended" = tl."collection-fontsrecommended"; 32129 - deps."collection-fontutils" = tl."collection-fontutils"; 32130 - deps."collection-formatsextra" = tl."collection-formatsextra"; 32131 - deps."collection-games" = tl."collection-games"; 32132 - deps."collection-humanities" = tl."collection-humanities"; 32133 - deps."collection-langarabic" = tl."collection-langarabic"; 32134 - deps."collection-langchinese" = tl."collection-langchinese"; 32135 - deps."collection-langcjk" = tl."collection-langcjk"; 32136 - deps."collection-langcyrillic" = tl."collection-langcyrillic"; 32137 - deps."collection-langczechslovak" = tl."collection-langczechslovak"; 32138 - deps."collection-langenglish" = tl."collection-langenglish"; 32139 - deps."collection-langeuropean" = tl."collection-langeuropean"; 32140 - deps."collection-langfrench" = tl."collection-langfrench"; 32141 - deps."collection-langgerman" = tl."collection-langgerman"; 32142 - deps."collection-langgreek" = tl."collection-langgreek"; 32143 - deps."collection-langitalian" = tl."collection-langitalian"; 32144 - deps."collection-langjapanese" = tl."collection-langjapanese"; 32145 - deps."collection-langkorean" = tl."collection-langkorean"; 32146 - deps."collection-langother" = tl."collection-langother"; 32147 - deps."collection-langpolish" = tl."collection-langpolish"; 32148 - deps."collection-langportuguese" = tl."collection-langportuguese"; 32149 - deps."collection-langspanish" = tl."collection-langspanish"; 32150 - deps."collection-latex" = tl."collection-latex"; 32151 - deps."collection-latexextra" = tl."collection-latexextra"; 32152 - deps."collection-latexrecommended" = tl."collection-latexrecommended"; 32153 - deps."collection-luatex" = tl."collection-luatex"; 32154 - deps."collection-mathscience" = tl."collection-mathscience"; 32155 - deps."collection-metapost" = tl."collection-metapost"; 32156 - deps."collection-music" = tl."collection-music"; 32157 - deps."collection-pictures" = tl."collection-pictures"; 32158 - deps."collection-plaingeneric" = tl."collection-plaingeneric"; 32159 - deps."collection-pstricks" = tl."collection-pstricks"; 32160 - deps."collection-publishers" = tl."collection-publishers"; 32161 - deps."collection-texworks" = tl."collection-texworks"; 32162 - deps."collection-xetex" = tl."collection-xetex"; 32653 + deps = [ 32654 + "collection-basic" 32655 + "collection-bibtexextra" 32656 + "collection-binextra" 32657 + "collection-context" 32658 + "collection-fontsextra" 32659 + "collection-fontsrecommended" 32660 + "collection-fontutils" 32661 + "collection-formatsextra" 32662 + "collection-games" 32663 + "collection-humanities" 32664 + "collection-langarabic" 32665 + "collection-langchinese" 32666 + "collection-langcjk" 32667 + "collection-langcyrillic" 32668 + "collection-langczechslovak" 32669 + "collection-langenglish" 32670 + "collection-langeuropean" 32671 + "collection-langfrench" 32672 + "collection-langgerman" 32673 + "collection-langgreek" 32674 + "collection-langitalian" 32675 + "collection-langjapanese" 32676 + "collection-langkorean" 32677 + "collection-langother" 32678 + "collection-langpolish" 32679 + "collection-langportuguese" 32680 + "collection-langspanish" 32681 + "collection-latex" 32682 + "collection-latexextra" 32683 + "collection-latexrecommended" 32684 + "collection-luatex" 32685 + "collection-mathscience" 32686 + "collection-metapost" 32687 + "collection-music" 32688 + "collection-pictures" 32689 + "collection-plaingeneric" 32690 + "collection-pstricks" 32691 + "collection-publishers" 32692 + "collection-texworks" 32693 + "collection-xetex" 32694 + ]; 32163 32695 sha512.run = "bda507842fde5239d7f45169ff78690bd96066d1834cdcc6a0dcbd3e3439308c694ce4be6a91d1f155ebe5e29d46173fe13c83bcd4356969da95fb7cca1b4e38"; 32164 32696 }; 32165 32697 "scheme-gust" = { 32166 32698 revision = 59755; 32167 32699 stripPrefix = 0; 32168 - deps."amslatex-primer" = tl."amslatex-primer"; 32169 - deps."amstex" = tl."amstex"; 32170 - deps."antt" = tl."antt"; 32171 - deps."bibtex8" = tl."bibtex8"; 32172 - deps."collection-basic" = tl."collection-basic"; 32173 - deps."collection-context" = tl."collection-context"; 32174 - deps."collection-fontsrecommended" = tl."collection-fontsrecommended"; 32175 - deps."collection-fontutils" = tl."collection-fontutils"; 32176 - deps."collection-langpolish" = tl."collection-langpolish"; 32177 - deps."collection-latex" = tl."collection-latex"; 32178 - deps."collection-latexrecommended" = tl."collection-latexrecommended"; 32179 - deps."collection-metapost" = tl."collection-metapost"; 32180 - deps."collection-plaingeneric" = tl."collection-plaingeneric"; 32181 - deps."collection-texworks" = tl."collection-texworks"; 32182 - deps."collection-xetex" = tl."collection-xetex"; 32183 - deps."comment" = tl."comment"; 32184 - deps."comprehensive" = tl."comprehensive"; 32185 - deps."concrete" = tl."concrete"; 32186 - deps."cyklop" = tl."cyklop"; 32187 - deps."dvidvi" = tl."dvidvi"; 32188 - deps."dviljk" = tl."dviljk"; 32189 - deps."fontinstallationguide" = tl."fontinstallationguide"; 32190 - deps."gustprog" = tl."gustprog"; 32191 - deps."impatient" = tl."impatient"; 32192 - deps."iwona" = tl."iwona"; 32193 - deps."metafont-beginners" = tl."metafont-beginners"; 32194 - deps."metapost-examples" = tl."metapost-examples"; 32195 - deps."poltawski" = tl."poltawski"; 32196 - deps."seetexk" = tl."seetexk"; 32197 - deps."seminar" = tl."seminar"; 32198 - deps."tds" = tl."tds"; 32199 - deps."tex4ht" = tl."tex4ht"; 32200 - deps."texdoc" = tl."texdoc"; 32700 + deps = [ 32701 + "amslatex-primer" 32702 + "amstex" 32703 + "antt" 32704 + "bibtex8" 32705 + "collection-basic" 32706 + "collection-context" 32707 + "collection-fontsrecommended" 32708 + "collection-fontutils" 32709 + "collection-langpolish" 32710 + "collection-latex" 32711 + "collection-latexrecommended" 32712 + "collection-metapost" 32713 + "collection-plaingeneric" 32714 + "collection-texworks" 32715 + "collection-xetex" 32716 + "comment" 32717 + "comprehensive" 32718 + "concrete" 32719 + "cyklop" 32720 + "dvidvi" 32721 + "dviljk" 32722 + "fontinstallationguide" 32723 + "gustprog" 32724 + "impatient" 32725 + "iwona" 32726 + "metafont-beginners" 32727 + "metapost-examples" 32728 + "poltawski" 32729 + "seetexk" 32730 + "seminar" 32731 + "tds" 32732 + "tex4ht" 32733 + "texdoc" 32734 + ]; 32201 32735 sha512.run = "2b3e2e3d31c8fca7297729e910ada06a0d0282b618c92487b7a0da686938dc1f6f3b0881c7d1f8f3d002806ad8860c25802637c77919e21ca54ae8a23ef08ae7"; 32202 32736 }; 32203 32737 "scheme-infraonly" = { 32204 32738 revision = 54191; 32205 32739 stripPrefix = 0; 32206 - deps."hyphen-base" = tl."hyphen-base"; 32207 - deps."kpathsea" = tl."kpathsea"; 32208 - deps."texlive-scripts" = tl."texlive-scripts"; 32740 + deps = [ 32741 + "hyphen-base" 32742 + "kpathsea" 32743 + "texlive-scripts" 32744 + ]; 32209 32745 sha512.run = "f3e449bf0b34deb9ae776685f386245c4ca9644f2175ae51e9c62faa00e3cfac30fa2aa07fbd83b15b21d487ca368c09a18742d2434047783350698ced3b20b9"; 32210 32746 }; 32211 32747 "scheme-medium" = { 32212 32748 revision = 54074; 32213 32749 stripPrefix = 0; 32214 - deps."collection-basic" = tl."collection-basic"; 32215 - deps."collection-binextra" = tl."collection-binextra"; 32216 - deps."collection-context" = tl."collection-context"; 32217 - deps."collection-fontsrecommended" = tl."collection-fontsrecommended"; 32218 - deps."collection-fontutils" = tl."collection-fontutils"; 32219 - deps."collection-langczechslovak" = tl."collection-langczechslovak"; 32220 - deps."collection-langenglish" = tl."collection-langenglish"; 32221 - deps."collection-langeuropean" = tl."collection-langeuropean"; 32222 - deps."collection-langfrench" = tl."collection-langfrench"; 32223 - deps."collection-langgerman" = tl."collection-langgerman"; 32224 - deps."collection-langitalian" = tl."collection-langitalian"; 32225 - deps."collection-langpolish" = tl."collection-langpolish"; 32226 - deps."collection-langportuguese" = tl."collection-langportuguese"; 32227 - deps."collection-langspanish" = tl."collection-langspanish"; 32228 - deps."collection-latex" = tl."collection-latex"; 32229 - deps."collection-latexrecommended" = tl."collection-latexrecommended"; 32230 - deps."collection-luatex" = tl."collection-luatex"; 32231 - deps."collection-mathscience" = tl."collection-mathscience"; 32232 - deps."collection-metapost" = tl."collection-metapost"; 32233 - deps."collection-plaingeneric" = tl."collection-plaingeneric"; 32234 - deps."collection-texworks" = tl."collection-texworks"; 32235 - deps."collection-xetex" = tl."collection-xetex"; 32750 + deps = [ 32751 + "collection-basic" 32752 + "collection-binextra" 32753 + "collection-context" 32754 + "collection-fontsrecommended" 32755 + "collection-fontutils" 32756 + "collection-langczechslovak" 32757 + "collection-langenglish" 32758 + "collection-langeuropean" 32759 + "collection-langfrench" 32760 + "collection-langgerman" 32761 + "collection-langitalian" 32762 + "collection-langpolish" 32763 + "collection-langportuguese" 32764 + "collection-langspanish" 32765 + "collection-latex" 32766 + "collection-latexrecommended" 32767 + "collection-luatex" 32768 + "collection-mathscience" 32769 + "collection-metapost" 32770 + "collection-plaingeneric" 32771 + "collection-texworks" 32772 + "collection-xetex" 32773 + ]; 32236 32774 sha512.run = "fdfbbd8fc370bfb0ea35ed9f3137b62eddd3e54777963668b3dfe7af6328a92f37c74e190e7f506ec27a3efbe44458941360599a4061a2765d0072af56808d60"; 32237 32775 }; 32238 32776 "scheme-minimal" = { 32239 32777 revision = 54191; 32240 32778 stripPrefix = 0; 32241 - deps."collection-basic" = tl."collection-basic"; 32779 + deps = [ 32780 + "collection-basic" 32781 + ]; 32242 32782 sha512.run = "ac177b74d9d5b9fa599831275a4084a0eeb7b764a6ed837d8f14f8391f0e6c0757f7b2d4a8e71868e0c8ea4d497f29d78c4c73fb9e6311dbecf29626516bbf82"; 32243 32783 }; 32244 32784 "scheme-small" = { 32245 32785 revision = 54191; 32246 32786 stripPrefix = 0; 32247 - deps."babel-basque" = tl."babel-basque"; 32248 - deps."babel-czech" = tl."babel-czech"; 32249 - deps."babel-danish" = tl."babel-danish"; 32250 - deps."babel-dutch" = tl."babel-dutch"; 32251 - deps."babel-english" = tl."babel-english"; 32252 - deps."babel-finnish" = tl."babel-finnish"; 32253 - deps."babel-french" = tl."babel-french"; 32254 - deps."babel-german" = tl."babel-german"; 32255 - deps."babel-hungarian" = tl."babel-hungarian"; 32256 - deps."babel-italian" = tl."babel-italian"; 32257 - deps."babel-norsk" = tl."babel-norsk"; 32258 - deps."babel-polish" = tl."babel-polish"; 32259 - deps."babel-portuges" = tl."babel-portuges"; 32260 - deps."babel-spanish" = tl."babel-spanish"; 32261 - deps."babel-swedish" = tl."babel-swedish"; 32262 - deps."collection-basic" = tl."collection-basic"; 32263 - deps."collection-latex" = tl."collection-latex"; 32264 - deps."collection-latexrecommended" = tl."collection-latexrecommended"; 32265 - deps."collection-metapost" = tl."collection-metapost"; 32266 - deps."collection-xetex" = tl."collection-xetex"; 32267 - deps."ec" = tl."ec"; 32268 - deps."eurosym" = tl."eurosym"; 32269 - deps."hyphen-basque" = tl."hyphen-basque"; 32270 - deps."hyphen-czech" = tl."hyphen-czech"; 32271 - deps."hyphen-danish" = tl."hyphen-danish"; 32272 - deps."hyphen-dutch" = tl."hyphen-dutch"; 32273 - deps."hyphen-english" = tl."hyphen-english"; 32274 - deps."hyphen-finnish" = tl."hyphen-finnish"; 32275 - deps."hyphen-french" = tl."hyphen-french"; 32276 - deps."hyphen-german" = tl."hyphen-german"; 32277 - deps."hyphen-hungarian" = tl."hyphen-hungarian"; 32278 - deps."hyphen-italian" = tl."hyphen-italian"; 32279 - deps."hyphen-norwegian" = tl."hyphen-norwegian"; 32280 - deps."hyphen-polish" = tl."hyphen-polish"; 32281 - deps."hyphen-portuguese" = tl."hyphen-portuguese"; 32282 - deps."hyphen-spanish" = tl."hyphen-spanish"; 32283 - deps."hyphen-swedish" = tl."hyphen-swedish"; 32284 - deps."lm" = tl."lm"; 32285 - deps."lualibs" = tl."lualibs"; 32286 - deps."luaotfload" = tl."luaotfload"; 32287 - deps."luatexbase" = tl."luatexbase"; 32288 - deps."revtex" = tl."revtex"; 32289 - deps."synctex" = tl."synctex"; 32290 - deps."times" = tl."times"; 32291 - deps."tipa" = tl."tipa"; 32292 - deps."ulem" = tl."ulem"; 32293 - deps."upquote" = tl."upquote"; 32294 - deps."zapfding" = tl."zapfding"; 32787 + deps = [ 32788 + "babel-basque" 32789 + "babel-czech" 32790 + "babel-danish" 32791 + "babel-dutch" 32792 + "babel-english" 32793 + "babel-finnish" 32794 + "babel-french" 32795 + "babel-german" 32796 + "babel-hungarian" 32797 + "babel-italian" 32798 + "babel-norsk" 32799 + "babel-polish" 32800 + "babel-portuges" 32801 + "babel-spanish" 32802 + "babel-swedish" 32803 + "collection-basic" 32804 + "collection-latex" 32805 + "collection-latexrecommended" 32806 + "collection-metapost" 32807 + "collection-xetex" 32808 + "ec" 32809 + "eurosym" 32810 + "hyphen-basque" 32811 + "hyphen-czech" 32812 + "hyphen-danish" 32813 + "hyphen-dutch" 32814 + "hyphen-english" 32815 + "hyphen-finnish" 32816 + "hyphen-french" 32817 + "hyphen-german" 32818 + "hyphen-hungarian" 32819 + "hyphen-italian" 32820 + "hyphen-norwegian" 32821 + "hyphen-polish" 32822 + "hyphen-portuguese" 32823 + "hyphen-spanish" 32824 + "hyphen-swedish" 32825 + "lm" 32826 + "lualibs" 32827 + "luaotfload" 32828 + "luatexbase" 32829 + "revtex" 32830 + "synctex" 32831 + "times" 32832 + "tipa" 32833 + "ulem" 32834 + "upquote" 32835 + "zapfding" 32836 + ]; 32295 32837 sha512.run = "6267151dd73cb8b751ad47b79f9c698b465ad5ae5494d462cf5b3b4e7446a3c014a715381bc6a79eaacfd1ba6efb37c6c1bafbd5e1f82e8db751bbaa9a943013"; 32296 32838 }; 32297 32839 "scheme-tetex" = { 32298 32840 revision = 59715; 32299 32841 stripPrefix = 0; 32300 - deps."acronym" = tl."acronym"; 32301 - deps."amslatex-primer" = tl."amslatex-primer"; 32302 - deps."bbm" = tl."bbm"; 32303 - deps."bbm-macros" = tl."bbm-macros"; 32304 - deps."bbold" = tl."bbold"; 32305 - deps."bibtex8" = tl."bibtex8"; 32306 - deps."cmbright" = tl."cmbright"; 32307 - deps."collection-basic" = tl."collection-basic"; 32308 - deps."collection-context" = tl."collection-context"; 32309 - deps."collection-fontsrecommended" = tl."collection-fontsrecommended"; 32310 - deps."collection-fontutils" = tl."collection-fontutils"; 32311 - deps."collection-formatsextra" = tl."collection-formatsextra"; 32312 - deps."collection-langcjk" = tl."collection-langcjk"; 32313 - deps."collection-langcyrillic" = tl."collection-langcyrillic"; 32314 - deps."collection-langczechslovak" = tl."collection-langczechslovak"; 32315 - deps."collection-langenglish" = tl."collection-langenglish"; 32316 - deps."collection-langeuropean" = tl."collection-langeuropean"; 32317 - deps."collection-langfrench" = tl."collection-langfrench"; 32318 - deps."collection-langgerman" = tl."collection-langgerman"; 32319 - deps."collection-langgreek" = tl."collection-langgreek"; 32320 - deps."collection-langitalian" = tl."collection-langitalian"; 32321 - deps."collection-langother" = tl."collection-langother"; 32322 - deps."collection-langpolish" = tl."collection-langpolish"; 32323 - deps."collection-langportuguese" = tl."collection-langportuguese"; 32324 - deps."collection-langspanish" = tl."collection-langspanish"; 32325 - deps."collection-latex" = tl."collection-latex"; 32326 - deps."collection-latexrecommended" = tl."collection-latexrecommended"; 32327 - deps."collection-mathscience" = tl."collection-mathscience"; 32328 - deps."collection-metapost" = tl."collection-metapost"; 32329 - deps."collection-pictures" = tl."collection-pictures"; 32330 - deps."collection-plaingeneric" = tl."collection-plaingeneric"; 32331 - deps."collection-pstricks" = tl."collection-pstricks"; 32332 - deps."ctie" = tl."ctie"; 32333 - deps."cweb" = tl."cweb"; 32334 - deps."detex" = tl."detex"; 32335 - deps."dtl" = tl."dtl"; 32336 - deps."dvi2tty" = tl."dvi2tty"; 32337 - deps."dvicopy" = tl."dvicopy"; 32338 - deps."dvidvi" = tl."dvidvi"; 32339 - deps."dviljk" = tl."dviljk"; 32340 - deps."eplain" = tl."eplain"; 32341 - deps."eulervm" = tl."eulervm"; 32342 - deps."gentle" = tl."gentle"; 32343 - deps."lshort-english" = tl."lshort-english"; 32344 - deps."mltex" = tl."mltex"; 32345 - deps."multirow" = tl."multirow"; 32346 - deps."nomencl" = tl."nomencl"; 32347 - deps."patgen" = tl."patgen"; 32348 - deps."pst-pdf" = tl."pst-pdf"; 32349 - deps."rsfs" = tl."rsfs"; 32350 - deps."seetexk" = tl."seetexk"; 32351 - deps."siunits" = tl."siunits"; 32352 - deps."subfigure" = tl."subfigure"; 32353 - deps."supertabular" = tl."supertabular"; 32354 - deps."tamethebeast" = tl."tamethebeast"; 32355 - deps."tds" = tl."tds"; 32356 - deps."tex-refs" = tl."tex-refs"; 32357 - deps."tie" = tl."tie"; 32358 - deps."web" = tl."web"; 32359 - deps."xpdfopen" = tl."xpdfopen"; 32842 + deps = [ 32843 + "acronym" 32844 + "amslatex-primer" 32845 + "bbm" 32846 + "bbm-macros" 32847 + "bbold" 32848 + "bibtex8" 32849 + "cmbright" 32850 + "collection-basic" 32851 + "collection-context" 32852 + "collection-fontsrecommended" 32853 + "collection-fontutils" 32854 + "collection-formatsextra" 32855 + "collection-langcjk" 32856 + "collection-langcyrillic" 32857 + "collection-langczechslovak" 32858 + "collection-langenglish" 32859 + "collection-langeuropean" 32860 + "collection-langfrench" 32861 + "collection-langgerman" 32862 + "collection-langgreek" 32863 + "collection-langitalian" 32864 + "collection-langother" 32865 + "collection-langpolish" 32866 + "collection-langportuguese" 32867 + "collection-langspanish" 32868 + "collection-latex" 32869 + "collection-latexrecommended" 32870 + "collection-mathscience" 32871 + "collection-metapost" 32872 + "collection-pictures" 32873 + "collection-plaingeneric" 32874 + "collection-pstricks" 32875 + "ctie" 32876 + "cweb" 32877 + "detex" 32878 + "dtl" 32879 + "dvi2tty" 32880 + "dvicopy" 32881 + "dvidvi" 32882 + "dviljk" 32883 + "eplain" 32884 + "eulervm" 32885 + "gentle" 32886 + "lshort-english" 32887 + "mltex" 32888 + "multirow" 32889 + "nomencl" 32890 + "patgen" 32891 + "pst-pdf" 32892 + "rsfs" 32893 + "seetexk" 32894 + "siunits" 32895 + "subfigure" 32896 + "supertabular" 32897 + "tamethebeast" 32898 + "tds" 32899 + "tex-refs" 32900 + "tie" 32901 + "web" 32902 + "xpdfopen" 32903 + ]; 32360 32904 sha512.run = "fe8b53391733392a72be2e2c80892ec68fbdb749c70636c307825c8bfd6284945c9961610fd19f8b5d6b03ec50f0a1543c7d159f5f2a19534d71b221addfb708"; 32361 32905 }; 32362 32906 "schola-otf" = { ··· 32556 33100 "sdaps" = { 32557 33101 revision = 65345; 32558 33102 stripPrefix = 0; 32559 - deps."environ" = tl."environ"; 32560 - deps."lastpage" = tl."lastpage"; 32561 - deps."pgf" = tl."pgf"; 32562 - deps."qrcode" = tl."qrcode"; 32563 - deps."sectsty" = tl."sectsty"; 32564 - deps."translator" = tl."translator"; 33103 + deps = [ 33104 + "environ" 33105 + "lastpage" 33106 + "pgf" 33107 + "qrcode" 33108 + "sectsty" 33109 + "translator" 33110 + ]; 32565 33111 sha512.run = "57559707a9a5a2a924a767b25ed2f86759826a31788fb2662aa2e3ad2889b2266009ec9754c48ce923561c7587c78b23ab56731322a619b4a225775b7beb91b2"; 32566 33112 sha512.doc = "fe1f636c2c21159e5c17aaa75ca0bc89fb1b6ab8dda8d475045efcb3eaf489a876fe9caa4cd077e27b51f37292c5141347233ed6103ebe4f20573ff0899e445b"; 32567 33113 sha512.source = "3f5d1073699a71e9e89a3c71704b8b2800925041145a60454cae0ce2fe7f468e5200c7273afb70c64306a347f4037bc0698b3af223f82d755658d54f2d8c08fe"; ··· 32684 33230 "semantex" = { 32685 33231 revision = 65183; 32686 33232 stripPrefix = 0; 32687 - deps."semtex" = tl."semtex"; 33233 + deps = [ 33234 + "semtex" 33235 + ]; 32688 33236 sha512.run = "057b229640da956b4c36653cc1e4057317d9fb2123a69aa144078b52192a2aa8d43660a41124fd91b147ebba5473ca43c30a70fc55881daa52f6b7ded05666b3"; 32689 33237 sha512.doc = "6cddaebc42ce355e536fc515b726cc6344f885efd67041b564a4b8c2bd297969aa5aded0a989c5a4b3a30d574af977e44880e2ef8be8d3fae052ef44c9d6b2f9"; 32690 33238 hasRunfiles = true; ··· 33085 33633 "shtthesis" = { 33086 33634 revision = 62441; 33087 33635 stripPrefix = 0; 33088 - deps."alphalph" = tl."alphalph"; 33089 - deps."biber" = tl."biber"; 33090 - deps."biblatex" = tl."biblatex"; 33091 - deps."biblatex-gb7714-2015" = tl."biblatex-gb7714-2015"; 33092 - deps."booktabs" = tl."booktabs"; 33093 - deps."caption" = tl."caption"; 33094 - deps."colortbl" = tl."colortbl"; 33095 - deps."ctex" = tl."ctex"; 33096 - deps."datetime" = tl."datetime"; 33097 - deps."enumitem" = tl."enumitem"; 33098 - deps."fancyhdr" = tl."fancyhdr"; 33099 - deps."fmtcount" = tl."fmtcount"; 33100 - deps."lastpage" = tl."lastpage"; 33101 - deps."latexmk" = tl."latexmk"; 33102 - deps."listings" = tl."listings"; 33103 - deps."lua-alt-getopt" = tl."lua-alt-getopt"; 33104 - deps."lualatex-math" = tl."lualatex-math"; 33105 - deps."mathtools" = tl."mathtools"; 33106 - deps."ntheorem" = tl."ntheorem"; 33107 - deps."tex-gyre" = tl."tex-gyre"; 33108 - deps."tocvsec2" = tl."tocvsec2"; 33109 - deps."transparent" = tl."transparent"; 33110 - deps."undolabl" = tl."undolabl"; 33111 - deps."unicode-math" = tl."unicode-math"; 33112 - deps."xits" = tl."xits"; 33113 - deps."xstring" = tl."xstring"; 33636 + deps = [ 33637 + "alphalph" 33638 + "biber" 33639 + "biblatex" 33640 + "biblatex-gb7714-2015" 33641 + "booktabs" 33642 + "caption" 33643 + "colortbl" 33644 + "ctex" 33645 + "datetime" 33646 + "enumitem" 33647 + "fancyhdr" 33648 + "fmtcount" 33649 + "lastpage" 33650 + "latexmk" 33651 + "listings" 33652 + "lua-alt-getopt" 33653 + "lualatex-math" 33654 + "mathtools" 33655 + "ntheorem" 33656 + "tex-gyre" 33657 + "tocvsec2" 33658 + "transparent" 33659 + "undolabl" 33660 + "unicode-math" 33661 + "xits" 33662 + "xstring" 33663 + ]; 33114 33664 sha512.run = "da3b02cc3558a337d7d35018fad00faf6d9183f3f4bc5b5b31e168a11dcfa705a77cad6c42f3fe3d98ce67f50d94ca1f75a82999d5a27837ea8fba6c01602594"; 33115 33665 sha512.doc = "04f1ccf2bef9e11364d7f066ed1a7fc218e39ef7a08824eb65537d88ed03097399eb01d07ba6d0a34e7456fc6de1291ea4f1c9264074eecd2e1af341c42e9197"; 33116 33666 hasRunfiles = true; ··· 33299 33849 "simplivre" = { 33300 33850 revision = 64280; 33301 33851 stripPrefix = 0; 33302 - deps."minimalist" = tl."minimalist"; 33852 + deps = [ 33853 + "minimalist" 33854 + ]; 33303 33855 sha512.run = "9ab406b3c577d9f683d5e4ed8303f4791f9b2a75200ab9cd2eded6699a580eba2cacf6da16b0848f407d7bd04c1fc6afe3881552ee0f4d57b1fb5c32154174fb"; 33304 33856 sha512.doc = "4167bcb50e182f7eeb163b5d3ed4e53e65599aa3acfc7ce4bbb20db5d185bace58e28e24f9091e172fa6c516dcfaf948c1fae93efc68398f0708f42b67e5990a"; 33305 33857 hasRunfiles = true; ··· 33342 33894 "siunitx" = { 33343 33895 revision = 65207; 33344 33896 stripPrefix = 0; 33345 - deps."l3kernel" = tl."l3kernel"; 33346 - deps."l3packages" = tl."l3packages"; 33897 + deps = [ 33898 + "l3kernel" 33899 + "l3packages" 33900 + ]; 33347 33901 sha512.run = "6116eebfaa5f9b0ae3e63f4c0b26c91c358e48b62651c215c25ac5352385c01e06ff28fcd5422085de0330bdd6ad6d79b5b4ee5cb9a200ed8ffaab515ca261e2"; 33348 33902 sha512.doc = "77eedc2cdf10ab386728fac623ed6d0ba895b4bb70c0934086251d96679b38eeedddb7408adcd6005289a20f3bbd4ec7811336509197c51d6be19e5a0cfc9b4d"; 33349 33903 sha512.source = "58faa7f7a5809a935303a7e9a779453cef8a5dcc43ded0fd16658e32f170a5052095c8f24d44542c80310cd24463583f5136a6d4986ce559ad3cd92ae8446c6b"; ··· 33586 34140 "soulpos" = { 33587 34141 revision = 60772; 33588 34142 stripPrefix = 0; 33589 - deps."oberdiek" = tl."oberdiek"; 33590 - deps."soul" = tl."soul"; 34143 + deps = [ 34144 + "oberdiek" 34145 + "soul" 34146 + ]; 33591 34147 sha512.run = "2b4d2fcaa687ff7d229706e563f739356a450a8ef02180f3c98432b11d027cd097fa895c3c971a944329b8657c74b4d2cf566110919e511e6883706561332678"; 33592 34148 sha512.doc = "9577aa2c77e9cafea54eee0ee032acd7c1343d6eb66b76fc25d694b524630bd2f41043187671cd444c9cdd0ccc8b9064e6c71365492cbdbd46517a061efc87cc"; 33593 34149 hasRunfiles = true; ··· 33881 34437 "stackengine" = { 33882 34438 revision = 60019; 33883 34439 stripPrefix = 0; 33884 - deps."listofitems" = tl."listofitems"; 34440 + deps = [ 34441 + "listofitems" 34442 + ]; 33885 34443 sha512.run = "15327eda5a6eda2b58055efc419ef50b8d8cf8c35283bcc41ee85e354f61ede6efeabf5e75bbb4cd022b95e52109bce1ee2e28fc701c5940723f3b15dd44c75a"; 33886 34444 sha512.doc = "a0edeaed3766af88d1c5e0508fd285382850bfd072cf4f6fdc1c329c8ca9f5e1eb5fe75357d9a86dd8b2476381747c9a3f7cd7dad0d7c32419bef0d37849928b"; 33887 34445 hasRunfiles = true; ··· 33899 34457 "standalone" = { 33900 34458 revision = 64677; 33901 34459 stripPrefix = 0; 33902 - deps."adjustbox" = tl."adjustbox"; 33903 - deps."currfile" = tl."currfile"; 33904 - deps."filemod" = tl."filemod"; 33905 - deps."gincltex" = tl."gincltex"; 33906 - deps."xkeyval" = tl."xkeyval"; 34460 + deps = [ 34461 + "adjustbox" 34462 + "currfile" 34463 + "filemod" 34464 + "gincltex" 34465 + "xkeyval" 34466 + ]; 33907 34467 sha512.run = "8e74a676232ffe9fbe93ee3a1095c0c29cd65bd23f8e4602308d8fc1abfde9025c01e8ba379782d4c79d3349b4298806419735c624436a7b0c93e2170c592efb"; 33908 34468 sha512.doc = "358fb3b29f4c2d37d03b7d98ee02b35ff8571ffaf30b8d3fa1a9b0f74965ca4b0bcbf2a7172b8771dd3f1240c7dad1acccc7710dad302411dc43a301149597cd"; 33909 34469 sha512.source = "a29880dfca00e77b19ee828333c72f7c95a26470b8edd5ecea53bae3300868266ad4aa0db2bc6e16f72c14493b43659434ef4880b025b5bccad3305d0ea18b33"; ··· 34279 34839 "subfiles" = { 34280 34840 revision = 56977; 34281 34841 stripPrefix = 0; 34282 - deps."import" = tl."import"; 34842 + deps = [ 34843 + "import" 34844 + ]; 34283 34845 sha512.run = "8f842b0debcae3110f0a4b2f59047cd55c2726d128bf3e159f2745a4b8a645c3f8471fe218ca34c32f2b35d42d1c5023a25f09fc3bf0c1a4f0c33197776b1cec"; 34284 34846 sha512.doc = "f54f52c5cee01b7ae8e01bff5a4d828b5c6708c31f2cf40d7e83c8a91c4c597945695dd7062b6088d3f91f7a9858e3227c850d658ae7a7bf94392e00e3eaf9c7"; 34285 34847 sha512.source = "2623a0ec244722c1e3194d9ff1237305c1b7bf8c3baf6f60edd69b165bbd5ea83fb73ad23bf9aac1937b4ecf1059754e798eb2c97f7bab5d550fabbe84b752c0"; ··· 34734 35296 "tabu" = { 34735 35297 revision = 61719; 34736 35298 stripPrefix = 0; 34737 - deps."varwidth" = tl."varwidth"; 35299 + deps = [ 35300 + "varwidth" 35301 + ]; 34738 35302 sha512.run = "b40dc1e91084912df03175a6529223c6f24ae3c0ec77cfb8f1f8625816ea78c044c8f01f1b473e84696421d6772d9201fa4b59aa93e6f014b73598d16c09a6cd"; 34739 35303 sha512.doc = "5ef0a71d643bf5069a622aa8c807bf87db7445caab1f17b5202ee25ddab5368e94e796eb16de4fb183f294cedc232d48cbdba68f45d2451e01a2483d6869822d"; 34740 35304 sha512.source = "7c80ee8d25933e5d1c579357cffdf7177b0a419a847ca1e671cb1dda19fbde9b3680658df6b814d5d92953dd13eeee5100a5aa2fdb5fec3cbc1e213545cb3a78"; ··· 35083 35647 }; 35084 35648 "tex" = { 35085 35649 revision = 62387; 35086 - deps."cm" = tl."cm"; 35087 - deps."hyphen-base" = tl."hyphen-base"; 35088 - deps."knuth-lib" = tl."knuth-lib"; 35089 - deps."kpathsea" = tl."kpathsea"; 35090 - deps."plain" = tl."plain"; 35650 + deps = [ 35651 + "cm" 35652 + "hyphen-base" 35653 + "knuth-lib" 35654 + "kpathsea" 35655 + "plain" 35656 + ]; 35091 35657 hasFormats = true; 35092 35658 sha512.run = "7d177346a2df7e7dbd2fce3635a8860c0deee30271beeba585091f8027c796678a3dc9cda2952a073c9ca02e26cd656a3bdcabe4661c23e81af350a987d7e4aa"; 35093 35659 sha512.doc = "e545796c64bbce0680d12b9d77ca64b008c369f90639ad9c3e7b7b219ceb85fcf24fa7eccaff65639bb9fe7159c2b2dd124866acd2ad78d860ff4e872a341d23"; ··· 35273 35839 }; 35274 35840 "texdoc" = { 35275 35841 revision = 62815; 35276 - deps."kpathsea" = tl."kpathsea"; 35842 + deps = [ 35843 + "kpathsea" 35844 + ]; 35277 35845 sha512.run = "eda9f9c138191f73487c5da101898970cb7f268eade19a7eb44231d05d819b23b182a9ca15e61c23f172c9869659c3bb5f45f35d2590d7da79d10021195284be"; 35278 35846 sha512.doc = "0d4ad9b75b0c9f209bed3a5c816bbfb49a49667ca31b59fdf98caf42b60c9e618d6daae5fa9b3bd288dc6dc5fe2c6dc3a4cf7a1348f06006b9f60618d225a639"; 35279 35847 hasRunfiles = true; ··· 35281 35849 }; 35282 35850 "texdoctk" = { 35283 35851 revision = 62186; 35284 - deps."kpathsea" = tl."kpathsea"; 35852 + deps = [ 35853 + "kpathsea" 35854 + ]; 35285 35855 sha512.run = "f3300a088f5ecedfe66ca277f793d3565b5b0f111721a0d73a788d65b72f09d0103a11edda13679fb9e919f11ce9ed3662717c18e46be99a83b744a1f7ec88fe"; 35286 35856 sha512.doc = "fb403dc17ad839ea64bcf6da84e59288a8745b5eb731051d7df8593138aa5d3b6891d56f52bdbe5c9a41e590f1f36db390e7e7a825d9aaf00d4fbc01c8dc16ba"; 35287 35857 hasRunfiles = true; ··· 35499 36069 "texpower" = { 35500 36070 revision = 29349; 35501 36071 stripPrefix = 0; 35502 - deps."tpslifonts" = tl."tpslifonts"; 36072 + deps = [ 36073 + "tpslifonts" 36074 + ]; 35503 36075 sha512.run = "7e2efadabaf173fd30c592cbcd2338563b8690048ccaffd86efb079a04b7b95c8ab113b99205cbb2912eae3a709a110d7b152270422cf2cbfd2ab85d42f12d69"; 35504 36076 sha512.doc = "e61965b5e31b487daba383a4e6ebc0dba85475f8cade2faae6adb8576ec7ec544b518a6e0e105aa185ff82fd6aba7a9ea4abda2a9446d52f5b3acdb42580e315"; 35505 36077 sha512.source = "3add8eeda886ce6422d3b7ea53a55dc69bb2f5c2e64cdede105a7b4756b008807bef6245ddc2596b45809311874e566263c51e98ec6751b4db9d3c5c5f58efd3"; ··· 35524 36096 }; 35525 36097 "texsis" = { 35526 36098 revision = 45678; 35527 - deps."cm" = tl."cm"; 35528 - deps."hyphen-base" = tl."hyphen-base"; 35529 - deps."knuth-lib" = tl."knuth-lib"; 35530 - deps."plain" = tl."plain"; 35531 - deps."tex" = tl."tex"; 36099 + deps = [ 36100 + "cm" 36101 + "hyphen-base" 36102 + "knuth-lib" 36103 + "plain" 36104 + "tex" 36105 + ]; 35532 36106 hasFormats = true; 35533 36107 sha512.run = "7309726b33eadf8290e596aab50bb1af95600a067338b352c1ac092643a8c6d4142180d0146abbbb828a38fb08fdd9ae03da6572e6c221afcd151a51430a423e"; 35534 36108 sha512.doc = "2a4979a10514ccd589b331ff34a677a4e22adbeea73d6112c9a14392b3ee75a8cdb292b008b160792b3d00b812834afa7e0211db860c41f1beb69bbc900fdb90"; ··· 35581 36155 "textgreek" = { 35582 36156 revision = 44192; 35583 36157 stripPrefix = 0; 35584 - deps."greek-fontenc" = tl."greek-fontenc"; 36158 + deps = [ 36159 + "greek-fontenc" 36160 + ]; 35585 36161 sha512.run = "2370f666c2cef43a579e32a755675431717ccfb4bad6f30261a6c67e0617816ffc272c25e0d076d91c4047c41926c92ae375507f36f2fab01673bd7e708f5188"; 35586 36162 sha512.doc = "9107ca31b645977d56a3b1e37f7b12f0302b1b2531bd2a21883f7931831e70c4383beae77469aab4663253da3109cdd9c53589cbab95f7f0126389d12509127f"; 35587 36163 sha512.source = "367b63cd318c1e69944444f4cab82af7a7b1dde667d6469ade4c6433960b21a6f8922280d5a46e96fc88ddf4c2d5d3f3a440b55045a67512459208ae181bda96"; ··· 35906 36482 }; 35907 36483 "tie" = { 35908 36484 revision = 62387; 35909 - deps."kpathsea" = tl."kpathsea"; 36485 + deps = [ 36486 + "kpathsea" 36487 + ]; 35910 36488 sha512.run = "96cab708d9faec3f451302c6141655b79524d3497d9bded141235a2fcfbb27bb2d65fd096e559cc01b01f4ab28b97f5851ba9e202c313240ef1af07c4676085f"; 35911 36489 sha512.doc = "519a15cde0a8b52250bdf61926ce44ea9267ff9f75f57f3ee9b390ce1aa6f7bc2a6bc2f30222d41a7606721ed28cbbd44348cb44229fba1c7126196291667917"; 35912 36490 version = "2.4"; ··· 35993 36571 "tikz-feynman" = { 35994 36572 revision = 56615; 35995 36573 stripPrefix = 0; 35996 - deps."iftex" = tl."iftex"; 35997 - deps."pgfopts" = tl."pgfopts"; 36574 + deps = [ 36575 + "iftex" 36576 + "pgfopts" 36577 + ]; 35998 36578 sha512.run = "34c147e6ee16643e99d2c8fa789b39aea6f3b9ae7de93fd5c65d1b0daca1e9514d484b5b38892a0cffa1aeedcd405df0bc6621bf68e587311bc9fe45205c29fc"; 35999 36579 sha512.doc = "ae0510a7971538fe458d83d4da4c78f7d607c7a1298344a139c02c49985f9005f6a81ab15f9dc621929d70d634c2cec4189ac4a2955e994611247af0c96986f3"; 36000 36580 hasRunfiles = true; ··· 36156 36736 "tikz-timing" = { 36157 36737 revision = 64967; 36158 36738 stripPrefix = 0; 36159 - deps."svn-prov" = tl."svn-prov"; 36739 + deps = [ 36740 + "svn-prov" 36741 + ]; 36160 36742 sha512.run = "2c3af958ff5509a470b4e1f93bdbb063f5b911a81de12d749fbd7dc6810715a473814d6d8694a81a49d2f45f1f468ef9d441fe07c2269c9c9a9094e350228b36"; 36161 36743 sha512.doc = "33ab52c8b2a60b9bad41a60375aa75432aea20a71c9fa7816d5dbc868e6a70b491dca9572d5c63ea486053294b6b709aa313de464e375e4f0a7a04f76764630a"; 36162 36744 sha512.source = "f1c7c0be255d533898bd65e85f2a36b2f86abb6580b716cb239821a243f67a2706cbcfffb99628b060aadc9b56dfee45f66e54851861df2e0cf12e6cd331aa4e"; ··· 36577 37159 "to-be-determined" = { 36578 37160 revision = 64882; 36579 37161 stripPrefix = 0; 36580 - deps."soul" = tl."soul"; 36581 - deps."xcolor" = tl."xcolor"; 37162 + deps = [ 37163 + "soul" 37164 + "xcolor" 37165 + ]; 36582 37166 sha512.run = "a7c6b60844601f81bb659f57e212cfdc9e7cf72f24bfc662aed9dd26ebb9385187ebf44d82b59b637544b920c05dd5e3a698b69a0ef7ace4b57cd7531d240e3f"; 36583 37167 sha512.doc = "0df7f6b340c28d2ef9db73af4bbad364bbb238a42f37effbde69af30774de627d29b2f03e098482e6fe66d09bec49d7d4a4566ebb3125eb2f3423c1d5fdba066"; 36584 37168 sha512.source = "38d70708e3be579d46e086c2e1b227ac081da1d721fff64b51543269b9df11b7ebe67a8e95999bb3ca1b691b91a4c3e1a8d79bce2f367e6965e34a5577377608"; ··· 36633 37217 "todonotes" = { 36634 37218 revision = 59465; 36635 37219 stripPrefix = 0; 36636 - deps."pgf" = tl."pgf"; 36637 - deps."tools" = tl."tools"; 36638 - deps."xcolor" = tl."xcolor"; 36639 - deps."xkeyval" = tl."xkeyval"; 37220 + deps = [ 37221 + "pgf" 37222 + "tools" 37223 + "xcolor" 37224 + "xkeyval" 37225 + ]; 36640 37226 sha512.run = "78f84bcaf613003f694dfaddff2631cfe34c081ec5aac576a267f99940abcca1c8c71dc801e8df295c585a4db06517e5cce4671aef4188b81feba4be1ed6eccb"; 36641 37227 sha512.doc = "89b61bb5630846a7cf739f39cc43a4e08890a4b0af06c884a60d9ac30068044c89cb99578aefe3b08c5761a412e524dacd79b028e69430d87ec17493b42ab7eb"; 36642 37228 sha512.source = "e7bf0b61f1ce386b727f54288d1c6486fdb784fb7d7fe42e5a86f0815766df33881214579051c57325d6963fa7e073469ce488aeca816f7566275318e171fecc"; ··· 37012 37598 "tudscr" = { 37013 37599 revision = 64085; 37014 37600 stripPrefix = 0; 37015 - deps."cbfonts" = tl."cbfonts"; 37016 - deps."environ" = tl."environ"; 37017 - deps."etoolbox" = tl."etoolbox"; 37018 - deps."geometry" = tl."geometry"; 37019 - deps."graphics" = tl."graphics"; 37020 - deps."greek-inputenc" = tl."greek-inputenc"; 37021 - deps."iwona" = tl."iwona"; 37022 - deps."koma-script" = tl."koma-script"; 37023 - deps."mathastext" = tl."mathastext"; 37024 - deps."mweights" = tl."mweights"; 37025 - deps."oberdiek" = tl."oberdiek"; 37026 - deps."opensans" = tl."opensans"; 37027 - deps."trimspaces" = tl."trimspaces"; 37028 - deps."xcolor" = tl."xcolor"; 37029 - deps."xpatch" = tl."xpatch"; 37601 + deps = [ 37602 + "cbfonts" 37603 + "environ" 37604 + "etoolbox" 37605 + "geometry" 37606 + "graphics" 37607 + "greek-inputenc" 37608 + "iwona" 37609 + "koma-script" 37610 + "mathastext" 37611 + "mweights" 37612 + "oberdiek" 37613 + "opensans" 37614 + "trimspaces" 37615 + "xcolor" 37616 + "xpatch" 37617 + ]; 37030 37618 sha512.run = "4e17b12a82a18bb1f4babf123f1e84681c6f9524f2113725f14ad85042dcd5b1fb2aeaa45f709c1797512b8e0f35cd0ff743b60901e75676ec321f8bc682e793"; 37031 37619 sha512.doc = "3335c87afe969963718137a9f854e0a4935c34bd850471673a3914fb9666e8f3195962d3474df35b876741b37c231851d47b440d49c35e42533b3717be1f442e"; 37032 37620 sha512.source = "d317e3fc0624ec762293c972c9feaaf56186faf0962137f43f36b974ef223b094919cd84b9f5183e89e0ea6b922e4ae22b489bc619af466dac41c98fe0b651e5"; ··· 37036 37624 "tufte-latex" = { 37037 37625 revision = 37649; 37038 37626 stripPrefix = 0; 37039 - deps."changepage" = tl."changepage"; 37040 - deps."ifmtarg" = tl."ifmtarg"; 37041 - deps."paralist" = tl."paralist"; 37042 - deps."placeins" = tl."placeins"; 37043 - deps."sauerj" = tl."sauerj"; 37044 - deps."xifthen" = tl."xifthen"; 37627 + deps = [ 37628 + "changepage" 37629 + "ifmtarg" 37630 + "paralist" 37631 + "placeins" 37632 + "sauerj" 37633 + "xifthen" 37634 + ]; 37045 37635 sha512.run = "6dd01a5a6faf37439ca9aab23534f99050b84bfac16df48545417ee03e72700344c25b2de3262e8e28406da705d50296473a815fa14b701c609b3715f01405d1"; 37046 37636 sha512.doc = "11ac57e79a05db644235b6db851473c75d1538a1261d7022a63d9ab0cc54486cc13b7cc95c44d16912952e46bc9264c1bfb831a728b51a03495d01f1963410d3"; 37047 37637 hasRunfiles = true; ··· 37677 38267 "unicode-math" = { 37678 38268 revision = 61719; 37679 38269 stripPrefix = 0; 37680 - deps."fontspec" = tl."fontspec"; 37681 - deps."lm-math" = tl."lm-math"; 38270 + deps = [ 38271 + "fontspec" 38272 + "lm-math" 38273 + ]; 37682 38274 sha512.run = "05dd4b08e8e766c2c8e719a12aa5a28259bc429fb1f1d05850e865ef258ab5e1372a785a2787098ea50bb31c852727ba8269ca656ce55ee0a7355fe4fd7344cc"; 37683 38275 sha512.doc = "c8d05fe09c6ed76f29978eff8b7688d8989865f6517f06a58acb899603265e499db5d962895b5b3a0b6bf8d235f29da88f76a3b7b35778953878d02f2910b524"; 37684 38276 sha512.source = "b1f21cf06c5ece08e75575cb2e23f7e9815c0670cdb2af0026c1037556e646e81c2103740bcb14e95375cf88b3a665afa3b24a4fd6c33f416c36f588649de79f"; ··· 37869 38461 }; 37870 38462 "uplatex" = { 37871 38463 revision = 65305; 37872 - deps."atbegshi" = tl."atbegshi"; 37873 - deps."atveryend" = tl."atveryend"; 37874 - deps."babel" = tl."babel"; 37875 - deps."cm" = tl."cm"; 37876 - deps."everyshi" = tl."everyshi"; 37877 - deps."firstaid" = tl."firstaid"; 37878 - deps."hyphen-base" = tl."hyphen-base"; 37879 - deps."l3backend" = tl."l3backend"; 37880 - deps."l3kernel" = tl."l3kernel"; 37881 - deps."l3packages" = tl."l3packages"; 37882 - deps."latex" = tl."latex"; 37883 - deps."latex-base-dev" = tl."latex-base-dev"; 37884 - deps."latex-firstaid-dev" = tl."latex-firstaid-dev"; 37885 - deps."latex-fonts" = tl."latex-fonts"; 37886 - deps."platex" = tl."platex"; 37887 - deps."tex-ini-files" = tl."tex-ini-files"; 37888 - deps."unicode-data" = tl."unicode-data"; 37889 - deps."uptex" = tl."uptex"; 37890 - deps."uptex-fonts" = tl."uptex-fonts"; 38464 + deps = [ 38465 + "atbegshi" 38466 + "atveryend" 38467 + "babel" 38468 + "cm" 38469 + "everyshi" 38470 + "firstaid" 38471 + "hyphen-base" 38472 + "l3backend" 38473 + "l3kernel" 38474 + "l3packages" 38475 + "latex" 38476 + "latex-base-dev" 38477 + "latex-firstaid-dev" 38478 + "latex-fonts" 38479 + "platex" 38480 + "tex-ini-files" 38481 + "unicode-data" 38482 + "uptex" 38483 + "uptex-fonts" 38484 + ]; 37891 38485 hasFormats = true; 37892 38486 sha512.run = "aa49098049ae86a286ccd14a3a25060104ade1ecfa1f31d44c36398dc1d9130e78ee2f3dfbda067c5cda54275a5ace7fdfa66ff8a4e30ab2cfef32c52d4c8781"; 37893 38487 sha512.doc = "373eaf7028b4528b1e7d1be399d0bc05b477fdb8a429f845d0bc7d767bbc7ff6a991174c8eff0e346a5b4c0a3dbee24b633df97656dcc1a1c5e5f80487f73a64"; ··· 37921 38515 }; 37922 38516 "uptex" = { 37923 38517 revision = 62464; 37924 - deps."cm" = tl."cm"; 37925 - deps."etex" = tl."etex"; 37926 - deps."hyphen-base" = tl."hyphen-base"; 37927 - deps."knuth-lib" = tl."knuth-lib"; 37928 - deps."plain" = tl."plain"; 37929 - deps."ptex-base" = tl."ptex-base"; 37930 - deps."uptex-base" = tl."uptex-base"; 37931 - deps."uptex-fonts" = tl."uptex-fonts"; 38518 + deps = [ 38519 + "cm" 38520 + "etex" 38521 + "hyphen-base" 38522 + "knuth-lib" 38523 + "plain" 38524 + "ptex-base" 38525 + "uptex-base" 38526 + "uptex-fonts" 38527 + ]; 37932 38528 hasFormats = true; 37933 38529 sha512.run = "9255b1ec06d2b1e214dda666b5f37df20ce98095a3726e2e114082cd0ebb13f9f4e0d46b8cfd28da528a6ab68896fd62a0593e02b5072e6c3196937b098bd626"; 37934 38530 sha512.doc = "2a9d880635afb3c848893c371d3aca7796e6aafb11949047a21e9f0df73d06b69d3cc84cfe28438f0424722b41b795be913e79cc01b16dacd5370ec5d1e9ac5b"; ··· 38216 38812 }; 38217 38813 "velthuis" = { 38218 38814 revision = 55475; 38219 - deps."xetex-devanagari" = tl."xetex-devanagari"; 38815 + deps = [ 38816 + "xetex-devanagari" 38817 + ]; 38220 38818 sha512.run = "451023c09755f3aa884128a6ddd5e70a6820724de66f8923deea812a8e28c337676de95aa98a06a96013502fa24e9855b24977603c675820b1d5a0a056fe4cab"; 38221 38819 sha512.doc = "e17270b0e427e3ff02b1d43e578815ec37c0046a20ceb898a357041f9184044162077d9fc64f66d955d774637a8d2ec59d31b624dd743113c972d0854075df10"; 38222 38820 hasRunfiles = true; ··· 38537 39135 "wasy-type1" = { 38538 39136 revision = 53534; 38539 39137 stripPrefix = 0; 38540 - deps."wasy" = tl."wasy"; 39138 + deps = [ 39139 + "wasy" 39140 + ]; 38541 39141 sha512.run = "d7131c025bd97bdaf62697feb698da97d175783e4b0502d3e85b60a663f46a0520268a6063956afaddc6308ddd21954992bf8d216049cb324133e3760ac20825"; 38542 39142 sha512.doc = "d9c88d39deabe19393df0b6d83bddd644e347592735cd7511dc70374ea015cd7fdf36ac9f320b44c612c8276eee3d7cd94f9e0b26de050c0771c85ec7dbae53c"; 38543 39143 hasRunfiles = true; ··· 38554 39154 }; 38555 39155 "web" = { 38556 39156 revision = 62517; 38557 - deps."kpathsea" = tl."kpathsea"; 39157 + deps = [ 39158 + "kpathsea" 39159 + ]; 38558 39160 sha512.run = "edac6079f0de1904e008c2a5fd7ee697f32c5324e3b9a7a4d8997b97ef214bfa1a787c84ecd4bcccd38e88c58b9729b4c5684ab58bbfcc97ce159dc5c2b5b312"; 38559 39161 sha512.doc = "50ae800de53cecfa6f656ba41d35d7c486e4cfe4b2ed42dd26dc60ecaa9a0b80c178dead765a7076fcc6141e8a2158e9b0854ceecc2cbf7b2e85c23cf22a7da3"; 38560 39162 version = "4.5"; ··· 38906 39508 "xecjk" = { 38907 39509 revision = 64059; 38908 39510 stripPrefix = 0; 38909 - deps."ctex" = tl."ctex"; 39511 + deps = [ 39512 + "ctex" 39513 + ]; 38910 39514 sha512.run = "3382b181053c76e58ba3f77b195765d83e5515a48b0c73580fc19305bd395de8d19b98be3494da8201b0a22a851a53c82dda14beb54a545b652cd0bd5719af67"; 38911 39515 sha512.doc = "b2dd0caf3317d708cc001b5aba57979f86eaa20d9d38d360650b45fbb683603e2075658a0c0a9c0631c81ea06ecac27694c45df47f053d9e7440901d66280295"; 38912 39516 sha512.source = "07fe51d62358a376d2f3cc2774cf606bd4e9f8b3bd3fb202427f34c3c15b004fed5985f7fe776b3529a83ea4aa3e3e176311e14bb0a02cf055eb501a3f474839"; ··· 38948 39552 }; 38949 39553 "xelatex-dev" = { 38950 39554 revision = 62145; 38951 - deps."atbegshi" = tl."atbegshi"; 38952 - deps."atveryend" = tl."atveryend"; 38953 - deps."babel" = tl."babel"; 38954 - deps."cm" = tl."cm"; 38955 - deps."everyshi" = tl."everyshi"; 38956 - deps."firstaid" = tl."firstaid"; 38957 - deps."hyphen-base" = tl."hyphen-base"; 38958 - deps."l3backend" = tl."l3backend"; 38959 - deps."l3kernel" = tl."l3kernel"; 38960 - deps."l3packages" = tl."l3packages"; 38961 - deps."latex" = tl."latex"; 38962 - deps."latex-base-dev" = tl."latex-base-dev"; 38963 - deps."latex-firstaid-dev" = tl."latex-firstaid-dev"; 38964 - deps."latex-fonts" = tl."latex-fonts"; 38965 - deps."lm" = tl."lm"; 38966 - deps."tex-ini-files" = tl."tex-ini-files"; 38967 - deps."unicode-data" = tl."unicode-data"; 38968 - deps."xetex" = tl."xetex"; 39555 + deps = [ 39556 + "atbegshi" 39557 + "atveryend" 39558 + "babel" 39559 + "cm" 39560 + "everyshi" 39561 + "firstaid" 39562 + "hyphen-base" 39563 + "l3backend" 39564 + "l3kernel" 39565 + "l3packages" 39566 + "latex" 39567 + "latex-base-dev" 39568 + "latex-firstaid-dev" 39569 + "latex-fonts" 39570 + "lm" 39571 + "tex-ini-files" 39572 + "unicode-data" 39573 + "xetex" 39574 + ]; 38969 39575 hasFormats = true; 38970 39576 sha512.run = "088c917758f727ba08b8571d302c93f0b14fc15ca6dcb0ef7a89df4ba144c508d8d42265cc6b1915707329b64aa1d1030ed0b5513987fbd4437d0a58a232b5db"; 38971 39577 }; ··· 39015 39621 }; 39016 39622 "xetex" = { 39017 39623 revision = 62387; 39018 - deps."atbegshi" = tl."atbegshi"; 39019 - deps."atveryend" = tl."atveryend"; 39020 - deps."babel" = tl."babel"; 39021 - deps."cm" = tl."cm"; 39022 - deps."dvipdfmx" = tl."dvipdfmx"; 39023 - deps."etex" = tl."etex"; 39024 - deps."everyshi" = tl."everyshi"; 39025 - deps."firstaid" = tl."firstaid"; 39026 - deps."hyphen-base" = tl."hyphen-base"; 39027 - deps."l3backend" = tl."l3backend"; 39028 - deps."l3kernel" = tl."l3kernel"; 39029 - deps."l3packages" = tl."l3packages"; 39030 - deps."latex" = tl."latex"; 39031 - deps."latex-fonts" = tl."latex-fonts"; 39032 - deps."lm" = tl."lm"; 39033 - deps."plain" = tl."plain"; 39034 - deps."tex-ini-files" = tl."tex-ini-files"; 39035 - deps."unicode-data" = tl."unicode-data"; 39036 - deps."xetexconfig" = tl."xetexconfig"; 39624 + deps = [ 39625 + "atbegshi" 39626 + "atveryend" 39627 + "babel" 39628 + "cm" 39629 + "dvipdfmx" 39630 + "etex" 39631 + "everyshi" 39632 + "firstaid" 39633 + "hyphen-base" 39634 + "l3backend" 39635 + "l3kernel" 39636 + "l3packages" 39637 + "latex" 39638 + "latex-fonts" 39639 + "lm" 39640 + "plain" 39641 + "tex-ini-files" 39642 + "unicode-data" 39643 + "xetexconfig" 39644 + ]; 39037 39645 hasFormats = true; 39038 39646 sha512.run = "e9f0aebda0a7fb36e2cbce4dd49e965335438c4ebf2d41eb8e19eabe29617239dd67e7e3433a8c75fd40f072a2c6753a7d0762afd34fca4130929e51888aaabf"; 39039 39647 sha512.doc = "31f03ee1ae00bc7883109ab7b7374feedc384d86b491873e90797658eae12299dd60b95edc1c86f1faa61a0b7a952cca23993e991863b37e49c27afd6c21c034"; ··· 39108 39716 "xfakebold" = { 39109 39717 revision = 55654; 39110 39718 stripPrefix = 0; 39111 - deps."iftex" = tl."iftex"; 39719 + deps = [ 39720 + "iftex" 39721 + ]; 39112 39722 sha512.run = "99c735bd449c96b3444a8b50032c9962601a04beeeeb6b0fcb759ee0cc53e4510dc8d077a3cad7b99c968bb9d60bbd37f2f0c7d56ffb5fc667301423bfd32bdb"; 39113 39723 sha512.doc = "bb6f1bda41427f4c144402095a79aafe70d6b534b6d0462d951a2c58fabb0bc8dd9edfdabf526bba243b2c79aeacee728741dca778e25019ae909856b164a316"; 39114 39724 hasRunfiles = true; ··· 39251 39861 "xltxtra" = { 39252 39862 revision = 56594; 39253 39863 stripPrefix = 0; 39254 - deps."metalogo" = tl."metalogo"; 39864 + deps = [ 39865 + "metalogo" 39866 + ]; 39255 39867 sha512.run = "ff75c7b2f36f0e3cdc466dde35d83ccbb76c9c95f5d191a5498831247d1d418b69a8f0df8b263eae78e4a13694e628eba64c24e7480c7dbf56948cd5b1504a76"; 39256 39868 sha512.doc = "6fc84121dd3486f5f7744d757520e2b4d7baf83686e2630990be7e72ccb121e5b417779e4682e6e8a566b016a8995f80d7d4c6dfb3d6d2c9f70ed506bee99d64"; 39257 39869 sha512.source = "c177b99366479f6ed5ef935be07fbfc3425b48f2c3d274e175bbde9c63cbcc93ee4bca4c3c2886fdc2894b627332ff7edffa5b1083ad86dcced56bfb0d9fe03f"; ··· 39265 39877 }; 39266 39878 "xmltex" = { 39267 39879 revision = 62145; 39268 - deps."atbegshi" = tl."atbegshi"; 39269 - deps."atveryend" = tl."atveryend"; 39270 - deps."babel" = tl."babel"; 39271 - deps."cm" = tl."cm"; 39272 - deps."dehyph" = tl."dehyph"; 39273 - deps."everyshi" = tl."everyshi"; 39274 - deps."firstaid" = tl."firstaid"; 39275 - deps."hyph-utf8" = tl."hyph-utf8"; 39276 - deps."hyphen-base" = tl."hyphen-base"; 39277 - deps."l3backend" = tl."l3backend"; 39278 - deps."l3kernel" = tl."l3kernel"; 39279 - deps."l3packages" = tl."l3packages"; 39280 - deps."latex" = tl."latex"; 39281 - deps."latex-fonts" = tl."latex-fonts"; 39282 - deps."latexconfig" = tl."latexconfig"; 39283 - deps."pdftex" = tl."pdftex"; 39284 - deps."tex" = tl."tex"; 39285 - deps."tex-ini-files" = tl."tex-ini-files"; 39286 - deps."unicode-data" = tl."unicode-data"; 39287 - deps."xmltexconfig" = tl."xmltexconfig"; 39880 + deps = [ 39881 + "atbegshi" 39882 + "atveryend" 39883 + "babel" 39884 + "cm" 39885 + "dehyph" 39886 + "everyshi" 39887 + "firstaid" 39888 + "hyph-utf8" 39889 + "hyphen-base" 39890 + "l3backend" 39891 + "l3kernel" 39892 + "l3packages" 39893 + "latex" 39894 + "latex-fonts" 39895 + "latexconfig" 39896 + "pdftex" 39897 + "tex" 39898 + "tex-ini-files" 39899 + "unicode-data" 39900 + "xmltexconfig" 39901 + ]; 39288 39902 hasFormats = true; 39289 39903 sha512.run = "ee01abb25b18e99f18bc78357be04fb1405473e90fbdf74ed875e2910812550c44fcc7aee960b2bdc53fcd7d78e9aa706e46929da65d5cb78d9ca43ba475d675"; 39290 39904 sha512.doc = "d87c6d1f4c472b436104b0746d48a463977dc7eb520de3d7a53f48bc1c8e5682a23d604bbe2ebda1b5029d4a6dd33c2d2bf8b917ad4f54d2c7472874fdfe8509"; ··· 39468 40082 "xunicode" = { 39469 40083 revision = 30466; 39470 40084 stripPrefix = 0; 39471 - deps."tipa" = tl."tipa"; 40085 + deps = [ 40086 + "tipa" 40087 + ]; 39472 40088 sha512.run = "f49628013bc54e82bc38a2c749ddde9426c65716f04c5c8d8264398b9595e571d380e07c045db9e7ed5d6df7d0b7b1f8e81eaa28d6b67a6756d2c5023b731176"; 39473 40089 sha512.doc = "fbd368180c97649944aa23fae4f50f8a8d1aaa776f643ba520f121b9aae196dca94c11906f9d5b2f961b6d494256329670af1f4563502b44a8fc9633e29373e0"; 39474 40090 hasRunfiles = true; ··· 39598 40214 "yb-book" = { 39599 40215 revision = 64586; 39600 40216 stripPrefix = 0; 39601 - deps."anyfontsize" = tl."anyfontsize"; 39602 - deps."biblatex" = tl."biblatex"; 39603 - deps."bigfoot" = tl."bigfoot"; 39604 - deps."changepage" = tl."changepage"; 39605 - deps."chngcntr" = tl."chngcntr"; 39606 - deps."csquotes" = tl."csquotes"; 39607 - deps."enumitem" = tl."enumitem"; 39608 - deps."fancyhdr" = tl."fancyhdr"; 39609 - deps."float" = tl."float"; 39610 - deps."footmisc" = tl."footmisc"; 39611 - deps."geometry" = tl."geometry"; 39612 - deps."ifmtarg" = tl."ifmtarg"; 39613 - deps."imakeidx" = tl."imakeidx"; 39614 - deps."lastpage" = tl."lastpage"; 39615 - deps."libertine" = tl."libertine"; 39616 - deps."mdframed" = tl."mdframed"; 39617 - deps."microtype" = tl."microtype"; 39618 - deps."needspace" = tl."needspace"; 39619 - deps."paralist" = tl."paralist"; 39620 - deps."pgf" = tl."pgf"; 39621 - deps."qrcode" = tl."qrcode"; 39622 - deps."setspace" = tl."setspace"; 39623 - deps."soul" = tl."soul"; 39624 - deps."titlesec" = tl."titlesec"; 39625 - deps."ulem" = tl."ulem"; 39626 - deps."wrapfig" = tl."wrapfig"; 39627 - deps."xcolor" = tl."xcolor"; 39628 - deps."xifthen" = tl."xifthen"; 39629 - deps."xkeyval" = tl."xkeyval"; 39630 - deps."zref" = tl."zref"; 40217 + deps = [ 40218 + "anyfontsize" 40219 + "biblatex" 40220 + "bigfoot" 40221 + "changepage" 40222 + "chngcntr" 40223 + "csquotes" 40224 + "enumitem" 40225 + "fancyhdr" 40226 + "float" 40227 + "footmisc" 40228 + "geometry" 40229 + "ifmtarg" 40230 + "imakeidx" 40231 + "lastpage" 40232 + "libertine" 40233 + "mdframed" 40234 + "microtype" 40235 + "needspace" 40236 + "paralist" 40237 + "pgf" 40238 + "qrcode" 40239 + "setspace" 40240 + "soul" 40241 + "titlesec" 40242 + "ulem" 40243 + "wrapfig" 40244 + "xcolor" 40245 + "xifthen" 40246 + "xkeyval" 40247 + "zref" 40248 + ]; 39631 40249 sha512.run = "dea52e5aee243d84ad52bb5eb61957e05b500ea9caf36360fd587d0a38ebb602f2821e040e3acf41e8318c0ce491f3bdcb5a477ef65be7b41ec2fe12df680542"; 39632 40250 sha512.doc = "ecb2ed5bf434f96aacd7422bc815cdc8b69c307475f8f71b8b8b5bc2aad916d1db1394eeaf3b7ddd54e3bf7dc059574c821f2d44f9247103153fb5ef3f40f02d"; 39633 40251 sha512.source = "20080fd53bc9c749632236d710972bac2db0ab0a7c3cd4a1b39fdc1226a2279332dca41856647b6132f033f381de798b8dc522ba3199e747ea15e5ca571d71c8"; ··· 39644 40262 "ydoc" = { 39645 40263 revision = 64887; 39646 40264 stripPrefix = 0; 39647 - deps."etoolbox" = tl."etoolbox"; 39648 - deps."float" = tl."float"; 39649 - deps."hyperref" = tl."hyperref"; 39650 - deps."listings" = tl."listings"; 39651 - deps."needspace" = tl."needspace"; 39652 - deps."newverbs" = tl."newverbs"; 39653 - deps."showexpl" = tl."showexpl"; 39654 - deps."tools" = tl."tools"; 39655 - deps."url" = tl."url"; 39656 - deps."xcolor" = tl."xcolor"; 40265 + deps = [ 40266 + "etoolbox" 40267 + "float" 40268 + "hyperref" 40269 + "listings" 40270 + "needspace" 40271 + "newverbs" 40272 + "showexpl" 40273 + "tools" 40274 + "url" 40275 + "xcolor" 40276 + ]; 39657 40277 sha512.run = "116d4be9a7ca06f90967c85a696e893a85555402acf400c0251a71f4d43a5ad244ee041518d4408b6627610ff87792f07ab51309303e442159bce46025d5a27c"; 39658 40278 sha512.doc = "714ff9f1fc20d9f3e5effe9159935a45662f7f8dde9be0371055a3e178b9a74618046c1f4ba67cd1b89b6b0abfdf41de2716a097e67138d42f733ece3edb028d"; 39659 40279 sha512.source = "1a4d7c462316b3d2689b5121d81af8ff7847909e039564a0d66c859607e5c4fa573dbc607cffbd73223f48f471847057fbfeeb71a31947b5b1a8c02eb88eb35b"; ··· 39898 40518 "zref-vario" = { 39899 40519 revision = 63874; 39900 40520 stripPrefix = 0; 39901 - deps."tools" = tl."tools"; 39902 - deps."zref-clever" = tl."zref-clever"; 40521 + deps = [ 40522 + "tools" 40523 + "zref-clever" 40524 + ]; 39903 40525 sha512.run = "a6098a6d02e8ceef899a6dae98af5f4faa4878d450d02dbec9c3d855eacf359d30418ed81b8884b898f2b5b39e65abd7b4572e6797b73050d3f708a73d20f9f2"; 39904 40526 sha512.doc = "1fe5da87c16231ed058d42a0bb99d041823e8b81471039773338a09e83f650419d7f11a58322101e178f2682fc655aeac8be5d82d1df55da6929cd119c94b0be"; 39905 40527 sha512.source = "3389daa24248921968989cde9386d438c3bc81dcde8a800bc324437cf8e468f24bf8d0eb24296319cb9da45cf42295e45ae01f47a32ce175ce2dfb2508c4372c";
+4 -4
pkgs/tools/typesetting/tex/texlive/tl2nix.sed
··· 1 1 # wrap whole file into an attrset 2 - 1itl: { # no indentation 2 + 1i{ # no indentation 3 3 $a} 4 4 5 5 # form an attrmap per package ··· 28 28 29 29 # extract deps 30 30 /^depend [^.]+$/{ 31 - s/^depend (.+)$/ deps."\1" = tl."\1";/ 31 + s/^depend (.+)$/ deps = [\n "\1"/ 32 32 33 33 # loop through following depend lines 34 34 :next 35 35 h ; N # save & read next line 36 36 s/\ndepend (.+)\.(.+)$// 37 - s/\ndepend (.+)$/\n deps."\1" = tl."\1";/ 37 + s/\ndepend (.+)$/\n "\1"/ 38 38 t next # loop if the previous lines matched 39 39 40 - x; p; x # print saved deps 40 + x; s/$/\n ];/p ; x # print saved deps 41 41 s/^.*\n// # remove deps, resume processing 42 42 } 43 43
+1
pkgs/top-level/aliases.nix
··· 1299 1299 pyrex096 = throw "pyrex has been removed from nixpkgs as the project is still stuck on python2"; # Added 2022-01-12 1300 1300 pyrit = throw "pyrit has been removed from nixpkgs as the project is still stuck on python2"; # Added 2022-01-01 1301 1301 python = python2; # Added 2022-01-11 1302 + python-language-server = throw "python-language-server has been removed as it is no longer maintained. Use e.g. python-lsp-server instead"; # Added 2023-01-07 1302 1303 python-swiftclient = swiftclient; # Added 2021-09-09 1303 1304 python2nix = throw "python2nix has been removed as it is outdated. Use e.g. nixpkgs-pytools instead"; # Added 2021-03-08 1304 1305 pythonFull = python2Full; # Added 2022-01-11
+6 -3
pkgs/top-level/all-packages.nix
··· 18214 18214 18215 18215 mdl = callPackage ../development/tools/misc/mdl { }; 18216 18216 18217 - python-language-server = callPackage ../development/dotnet-modules/python-language-server { }; 18218 - 18219 18217 python-matter-server = with python3Packages; toPythonApplication python-matter-server; 18220 18218 18221 18219 minify = callPackage ../development/web/minify { }; ··· 24985 24983 mariadb_108 24986 24984 mariadb_109 24987 24985 mariadb_1010 24986 + mariadb_1011 24988 24987 ; 24989 24988 mariadb = mariadb_106; 24990 24989 mariadb-embedded = mariadb.override { withEmbedded = true; }; ··· 31737 31736 31738 31737 open-policy-agent = callPackage ../development/tools/open-policy-agent { }; 31739 31738 31740 - openmm = callPackage ../development/libraries/science/chemistry/openmm { }; 31739 + openmm = callPackage ../development/libraries/science/chemistry/openmm { 31740 + stdenv = if stdenv.targetPlatform.isAarch64 then gcc9Stdenv else gcc11Stdenv; 31741 + gfortran = if stdenv.targetPlatform.isAarch64 then gfortran9 else gfortran11; 31742 + }; 31741 31743 31742 31744 openshift = callPackage ../applications/networking/cluster/openshift { }; 31743 31745 ··· 35806 35808 }); 35807 35809 35808 35810 steam = steamPackages.steam-fhsenv; 35811 + steam-small = steamPackages.steam-fhsenv-small; 35809 35812 35810 35813 steam-run = steam.run; 35811 35814