summaryrefslogtreecommitdiff
path: root/etc/repos.json
blob: 7985d742e8bbf4b05691aa4b48ae90e6e009d6af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
{ "main": "gcc-latest-musl+tools"
, "repositories":
  { "patches":
    { "repository":
      {"type": "file", "path": "etc/patches", "pragma": {"to_git": true}}
    }
  , "imports":
    { "repository":
      {"type": "file", "path": "etc/imports", "pragma": {"to_git": true}}
    }
  , "defaults":
    { "repository":
      {"type": "file", "path": "etc/defaults", "pragma": {"to_git": true}}
    }
  , "bootstrap":
    { "repository":
      {"type": "file", "path": "src/bootstrap", "pragma": {"to_git": true}}
    }
  , "compilers":
    { "repository":
      {"type": "file", "path": "src/compilers", "pragma": {"to_git": true}}
    }
  , "tools":
    { "repository":
      {"type": "file", "path": "src/tools", "pragma": {"to_git": true}}
    }
  , "toolchains":
    { "repository":
      {"type": "file", "path": "toolchains", "pragma": {"to_git": true}}
    }
  , "rules":
    { "repository":
      { "type": "zip"
      , "content": "e046bb9eb2db84e425ad93deb275800b6be4d3a1"
      , "fetch": "https://github.com/just-buildsystem/rules-cc/archive/refs/tags/v1.6.0-alpha+20250606.zip"
      , "sha256": "cb544ea41aec99e14ce874ac968ae4d21c3af4ce3de8cfd692a24b6baa2c3003"
      , "subdir": "rules-cc-1.6.0-alpha-20250606/rules"
      }
    }
  , "rules/stage-0":
    { "repository": "rules"
    , "target_root": "defaults"
    , "target_file_name": "stage-0.TARGETS"
    , "rule_root": "rules"
    , "bindings": {"busybox": "stage-0/busybox"}
    }
  , "rules/stage-1":
    { "repository": "rules"
    , "target_root": "defaults"
    , "target_file_name": "stage-1.TARGETS"
    , "rule_root": "rules"
    , "bindings":
      { "make": "stage-0/make"
      , "busybox": "stage-0/busybox"
      , "gcc": "stage-0/gcc"
      , "stage-0": "rules/stage-0"
      }
    }
  , "rules/gcc":
    { "repository": "rules"
    , "target_root": "defaults"
    , "target_file_name": "gcc.TARGETS"
    , "rule_root": "rules"
    , "bindings":
      { "base": "rules/stage-1"
      , "gcc": "stage-1/gcc"
      , "stage-0": "rules/stage-0"
      }
    }
  , "rules/clang_with_gcc13":
    { "repository": "rules"
    , "target_root": "defaults"
    , "target_file_name": "clang.TARGETS"
    , "rule_root": "rules"
    , "bindings":
      { "base": "rules/gcc"
      , "gcc": "compilers/gcc-13.3.0-native"
      , "cmake": "cmake-3.27.1"
      , "python": "python-3.12.0"
      , "stage-0": "rules/stage-0"
      }
    }
  , "rules/clang_with_gcc14":
    { "repository": "rules"
    , "target_root": "defaults"
    , "target_file_name": "clang.TARGETS"
    , "rule_root": "rules"
    , "bindings":
      { "base": "rules/gcc"
      , "gcc": "compilers/gcc-14.2.0-native"
      , "cmake": "cmake-3.27.1"
      , "python": "python-3.12.0"
      , "stage-0": "rules/stage-0"
      }
    }
  , "rules/tools":
    { "repository": "rules"
    , "target_root": "defaults"
    , "target_file_name": "tools.TARGETS"
    , "rule_root": "rules"
    , "bindings":
      { "base": "rules/gcc"
      , "gcc-musl": "compilers/gcc-14.2.0-musl"
      , "stage-0": "rules/stage-0"
      }
    }
  , "imports/stage-0/gmp-4.2.4":
    { "repository":
      { "type": "archive"
      , "content": "c3b7c9fa7ff0f6634dfde7ba8bf4a9afa0b3b509"
      , "fetch": "https://ftp.gnu.org/gnu/gmp/gmp-4.2.4.tar.gz"
      , "sha256": "09652b51e348ea459f121c01b4b7189821e06bf457fbd85382aa6f0b741b4e78"
      , "subdir": "gmp-4.2.4"
      }
    , "target_root": "imports"
    , "target_file_name": "files.TARGETS"
    }
  , "imports/stage-0/mpc-0.8.1":
    { "repository":
      { "type": "archive"
      , "content": "4828dd699fe92fc23456a7abe58fae1aa45c9e84"
      , "fetch": "https://gcc.gnu.org/pub/gcc/infrastructure/mpc-0.8.1.tar.gz"
      , "sha256": "e664603757251fd8a352848276497a4c79b7f8b21fd8aedd5cc0598a38fee3e4"
      , "subdir": "mpc-0.8.1"
      }
    , "target_root": "imports"
    , "target_file_name": "files.TARGETS"
    }
  , "imports/stage-0/mpfr-2.3.1":
    { "repository":
      { "type": "archive"
      , "content": "34118d1fdb9a271925d769458ededef8c595876f"
      , "fetch": "https://www.mpfr.org/mpfr-2.3.1/mpfr-2.3.1.tar.gz"
      , "sha256": "504e34cace2fe0ba2824abb66928b623965d6f5f9bc931316e6785db7ef2e790"
      , "subdir": "mpfr-2.3.1"
      }
    , "target_root": "imports"
    , "target_file_name": "files.TARGETS"
    }
  , "imports/stage-1/gmp-5.1.3":
    { "repository":
      { "type": "archive"
      , "content": "ba6992490775f21d0926ab17b51a7b8b6ed5e586"
      , "fetch": "https://ftp.gnu.org/gnu/gmp/gmp-5.1.3.tar.gz"
      , "sha256": "71f37fe18b7eaffd0700c0d3c5062268c3933c7100c29f944b81d2b6e9f78527"
      , "subdir": "gmp-5.1.3"
      }
    , "target_root": "imports"
    , "target_file_name": "files.TARGETS"
    }
  , "imports/binutils-latest":
    { "repository":
      { "type": "archive"
      , "content": "17cfb0cec609e1771ed867b2d005492329759e39"
      , "fetch": "https://ftp.gnu.org/gnu/binutils/binutils-2.41.tar.xz"
      , "sha256": "ae9a5789e23459e59606e6714723f2d3ffc31c03174191ef0d015bdf06007450"
      , "subdir": "binutils-2.41"
      }
    , "target_root": "imports"
    , "target_file_name": "binutils.TARGETS"
    , "bindings": {"rules": "rules/gcc"}
    }
  , "imports/gmp-6.3.0":
    { "repository":
      { "type": "archive"
      , "content": "eed1334cca024677702c3a4de194758cb1b15c36"
      , "fetch": "https://gmplib.org/download/gmp/gmp-6.3.0.tar.xz"
      , "sha256": "a3c2b80201b89e68616f4ad30bc66aee4927c3ce50e33929ca819d5c43538898"
      , "subdir": "gmp-6.3.0"
      }
    , "target_root": "imports"
    , "target_file_name": "files.TARGETS"
    }
  , "imports/mpc-1.3.1":
    { "repository":
      { "type": "archive"
      , "content": "afd933ab8b5246004dc0767bcd3d51333d5ca720"
      , "fetch": "https://ftp.gnu.org/gnu/mpc/mpc-1.3.1.tar.gz"
      , "sha256": "ab642492f5cf882b74aa0cb730cd410a81edcdbec895183ce930e706c1c759b8"
      , "subdir": "mpc-1.3.1"
      }
    , "target_root": "imports"
    , "target_file_name": "files.TARGETS"
    }
  , "imports/mpfr-4.2.1":
    { "repository":
      { "type": "archive"
      , "content": "62fb991131420c31d94e7e992c9ba798e8de866f"
      , "fetch": "https://www.mpfr.org/mpfr-4.2.1/mpfr-4.2.1.tar.xz"
      , "sha256": "277807353a6726978996945af13e52829e3abd7a9a5b7fb2793894e18f1fcbb2"
      , "subdir": "mpfr-4.2.1"
      }
    , "target_root": "imports"
    , "target_file_name": "files.TARGETS"
    }
  , "imports/linux-headers-4.19.88-1":
    { "repository":
      { "type": "archive"
      , "content": "d67e9625ed2750a32eadc8abdd4a356f429e1e61"
      , "fetch": "https://github.com/sabotage-linux/kernel-headers/releases/download/v4.19.88-1/linux-headers-4.19.88-1.tar.xz"
      , "sha256": "995bc76ccf0c40d752b5ea67c022232a17eef6c9ec80ea74ea742e3c19992813"
      , "subdir": "linux-headers-4.19.88-1"
      , "pragma": {"special": "resolve-partially"}
      }
    , "target_root": "imports"
    , "target_file_name": "files.TARGETS"
    }
  , "imports/config-3d5db9e":
    { "repository":
      { "type": "archive"
      , "content": "3a01a6bdf61b589ad70e35e1abf15758f6c2aa39"
      , "fetch": "https://git.savannah.gnu.org/gitweb/?p=config.git;a=snapshot;h=3d5db9ebe8607382d17d60faf8853c944fc5f353;sf=tgz"
      , "sha256": "b9974284ff6f9e285c8c57f57a9b0726f48576c61edc2e94a71815198fda0827"
      , "subdir": "config-3d5db9e"
      }
    , "target_root": "imports"
    , "target_file_name": "files.TARGETS"
    }
  , "imports/musl-cross-make-fe915821":
    { "repository":
      { "type": "archive"
      , "content": "99cdef1bbcaf683b9801453fc78aa0c59636f9a2"
      , "fetch": "https://github.com/richfelker/musl-cross-make/archive/fe915821b652a7fa37b34a596f47d8e20bc72338.tar.gz"
      , "sha256": "c5df9afd5efd41c97fc7f3866664ef0c91af0ff65116e27cd9cba078c7ab33ae"
      , "subdir": "musl-cross-make-fe915821b652a7fa37b34a596f47d8e20bc72338"
      }
    , "target_root": "imports"
    , "target_file_name": "musl-cross-make-fe915821.TARGETS"
    , "bindings":
      { "rules": "rules/gcc"
      , "linux-headers": "imports/linux-headers-4.19.88-1"
      , "config": "imports/config-3d5db9e"
      , "patches": "patches"
      }
    }
  , "imports/musl-1.2.4":
    { "repository":
      { "type": "archive"
      , "content": "3ae819b834bf1ca20cff02cb67b7526372d58bfd"
      , "fetch": "https://musl.libc.org/releases/musl-1.2.4.tar.gz"
      , "sha256": "7a35eae33d5372a7c0da1188de798726f68825513b7ae3ebe97aaaa52114f039"
      , "subdir": "musl-1.2.4"
      }
    , "target_root": "imports"
    , "target_file_name": "files.TARGETS"
    }
  , "imports/mimalloc-2.1.2":
    { "repository":
      { "type": "archive"
      , "content": "da9d9ced476e35074380f3e240b59970dc443cd8"
      , "fetch": "https://github.com/microsoft/mimalloc/archive/refs/tags/v2.1.2.tar.gz"
      , "sha256": "2b1bff6f717f9725c70bf8d79e4786da13de8a270059e4ba0bdd262ae7be46eb"
      , "subdir": "mimalloc-2.1.2"
      }
    , "target_root": "imports"
    , "target_file_name": "files.TARGETS"
    }
  , "imports/boringssl":
    { "repository":
      { "type": "archive"
      , "content": "19cdde8ba529848172c09e84e3deb2c92dc670c3"
      , "fetch": "https://github.com/google/boringssl/archive/6195bf8242156c9a2fa75702eee058f91b86a88b.tar.gz"
      , "sha256": "ad0b806b6c5cbd6cae121c608945d5fed468748e330632e8d53315089ad52c67"
      , "subdir": "boringssl-6195bf8242156c9a2fa75702eee058f91b86a88b"
      }
    , "target_root": "imports"
    , "target_file_name": "boringssl.TARGETS"
    , "bindings": {"rules": "rules/tools"}
    }
  , "imports/zlib":
    { "repository":
      { "type": "archive"
      , "content": "d115fc690fa59d3be51b3442158876536140b6c2"
      , "fetch": "https://github.com/madler/zlib/releases/download/v1.2.13/zlib-1.2.13.tar.gz"
      , "sha256": "b3a24de97a8fdbc835b9833169501030b8977031bcb54b3b3ac13740f846ab30"
      , "subdir": "zlib-1.2.13"
      }
    , "target_root": "imports"
    , "target_file_name": "zlib.TARGETS"
    , "bindings": {"rules": "rules/tools"}
    }
  , "stage-0/busybox":
    { "repository":
      { "type": "archive"
      , "content": "529defd1de4d1e362458e6561017ae74b2b3f28e"
      , "fetch": "https://busybox.net/downloads/busybox-1.36.1.tar.bz2"
      , "sha256": "b8cc24c9574d809e7279c3be349795c5d5ceb6fdf19ca709f80cde50e47de314"
      , "subdir": "busybox-1.36.1"
      }
    , "target_root": "bootstrap"
    , "target_file_name": "stage-0-busybox.TARGETS"
    , "bindings":
      { "rules": "rules/stage-0"
      , "gcc": "stage-0/gcc"
      , "make": "stage-0/make"
      , "patch-cbq": "patches/busybox-1593"
      }
    }
  , "stage-0/make":
    { "repository":
      { "type": "archive"
      , "content": "4adc00a78258ae2eb53d103ef2c1ecf291a86fbf"
      , "fetch": "https://ftp.gnu.org/gnu/make/make-4.4.1.tar.gz"
      , "sha256": "dd16fb1d67bfab79a72f5e8390735c49e3e8e70b4945a15ab1f81ddb78658fb3"
      , "subdir": "make-4.4.1"
      }
    , "target_root": "bootstrap"
    , "target_file_name": "stage-0-make.TARGETS"
    , "bindings":
      { "rules": "rules/stage-0"
      , "busybox": "stage-0/busybox"
      , "gcc": "stage-0/gcc"
      }
    }
  , "stage-0/binutils":
    { "repository": "imports/binutils-latest"
    , "target_root": "bootstrap"
    , "target_file_name": "stage-0-binutils.TARGETS"
    , "bindings":
      { "rules": "rules/stage-0"
      , "busybox": "stage-0/busybox"
      , "make": "stage-0/make"
      }
    }
  , "stage-0/gcc":
    { "repository":
      { "type": "archive"
      , "content": "4819a9afa95dae6ac8d5abec15049a66e3e725a0"
      , "fetch": "https://ftp.gnu.org/gnu/gcc/gcc-4.7.4/gcc-4.7.4.tar.gz"
      , "sha256": "ddbaa583c5d4e4f0928bf15d9f6b6c283349e16eedc47bde71e1b813f6f37819"
      , "subdir": "gcc-4.7.4"
      }
    , "target_root": "bootstrap"
    , "target_file_name": "stage-0-gcc.TARGETS"
    , "bindings":
      { "rules": "rules/stage-0"
      , "busybox": "stage-0/busybox"
      , "make": "stage-0/make"
      , "binutils": "stage-0/binutils"
      , "gmp": "imports/stage-0/gmp-4.2.4"
      , "mpc": "imports/stage-0/mpc-0.8.1"
      , "mpfr": "imports/stage-0/mpfr-2.3.1"
      , "patches": "patches"
      }
    }
  , "stage-1/gcc":
    { "repository":
      { "type": "archive"
      , "content": "25e1bc0b9c97916a3e6c3f4c100bf170ddf06eaa"
      , "fetch": "https://ftp.gnu.org/gnu/gcc/gcc-10.2.0/gcc-10.2.0.tar.gz"
      , "sha256": "27e879dccc639cd7b0cc08ed575c1669492579529b53c9ff27b0b96265fa867d"
      , "subdir": "gcc-10.2.0"
      }
    , "target_root": "bootstrap"
    , "target_file_name": "stage-1-gcc.TARGETS"
    , "bindings":
      { "rules": "rules/stage-1"
      , "gmp": "imports/stage-1/gmp-5.1.3"
      , "mpc": "imports/mpc-1.3.1"
      , "mpfr": "imports/mpfr-4.2.1"
      , "binutils": "imports/binutils-latest"
      , "patches": "patches"
      }
    }
  , "compilers/gcc-13.3.0-native":
    { "repository":
      { "type": "archive"
      , "content": "d8f1f6dac9c58f38092c84be1627547edaaa1af9"
      , "fetch": "https://ftp.gnu.org/gnu/gcc/gcc-13.3.0/gcc-13.3.0.tar.gz"
      , "sha256": "3a2b10cab86e32358fdac871546d57e2700e9bdb5875ef33fff5b601265b9e32"
      , "subdir": "gcc-13.3.0"
      }
    , "target_root": "compilers"
    , "target_file_name": "gcc-13-native.TARGETS"
    , "bindings":
      { "rules": "rules/gcc"
      , "binutils": "imports/binutils-latest"
      , "gmp": "imports/gmp-6.3.0"
      , "mpc": "imports/mpc-1.3.1"
      , "mpfr": "imports/mpfr-4.2.1"
      , "patches": "patches"
      }
    }
  , "compilers/gcc-14.2.0-native":
    { "repository":
      { "type": "archive"
      , "content": "97ed2ad91801278cb7d89c720ee1dce6fa3e2a5d"
      , "fetch": "https://ftp.gnu.org/gnu/gcc/gcc-14.2.0/gcc-14.2.0.tar.xz"
      , "sha256": "a7b39bc69cbf9e25826c5a60ab26477001f7c08d85cec04bc0e29cabed6f3cc9"
      , "subdir": "gcc-14.2.0"
      }
    , "target_root": "compilers"
    , "target_file_name": "gcc-14-native.TARGETS"
    , "bindings":
      { "rules": "rules/gcc"
      , "binutils": "imports/binutils-latest"
      , "gmp": "imports/gmp-6.3.0"
      , "mpc": "imports/mpc-1.3.1"
      , "mpfr": "imports/mpfr-4.2.1"
      , "patches": "patches"
      }
    }
  , "compilers/gcc-13.3.0-musl":
    { "repository": "compilers"
    , "target_file_name": "gcc-13-musl.TARGETS"
    , "bindings":
      { "rules": "rules/gcc"
      , "musl-cross-make": "imports/musl-cross-make-fe915821"
      , "binutils": "imports/binutils-latest"
      , "musl": "imports/musl-1.2.4"
      , "gmp": "imports/gmp-6.3.0"
      , "mpc": "imports/mpc-1.3.1"
      , "mpfr": "imports/mpfr-4.2.1"
      , "gcc": "compilers/gcc-13.3.0-native"
      , "mimalloc": "imports/mimalloc-2.1.2"
      }
    }
  , "compilers/gcc-14.2.0-musl":
    { "repository": "compilers"
    , "target_file_name": "gcc-14-musl.TARGETS"
    , "bindings":
      { "rules": "rules/gcc"
      , "musl-cross-make": "imports/musl-cross-make-fe915821"
      , "binutils": "imports/binutils-latest"
      , "musl": "imports/musl-1.2.4"
      , "gmp": "imports/gmp-6.3.0"
      , "mpc": "imports/mpc-1.3.1"
      , "mpfr": "imports/mpfr-4.2.1"
      , "gcc": "compilers/gcc-14.2.0-native"
      , "mimalloc": "imports/mimalloc-2.1.2"
      }
    }
  , "compilers/gcc-13.3.0-musl-static":
    { "repository": "compilers"
    , "target_file_name": "gcc-13-musl-static.TARGETS"
    , "bindings": {"gcc-musl": "compilers/gcc-13.3.0-musl"}
    }
  , "compilers/gcc-14.2.0-musl-static":
    { "repository": "compilers"
    , "target_file_name": "gcc-14-musl-static.TARGETS"
    , "bindings": {"gcc-musl": "compilers/gcc-14.2.0-musl"}
    }
  , "compilers/clang-16.0.6-native":
    { "repository":
      { "type": "archive"
      , "content": "e288cee0a32034107fabd6aad63d4b7a045b6b25"
      , "fetch": "https://github.com/llvm/llvm-project/archive/refs/tags/llvmorg-16.0.6.tar.gz"
      , "sha256": "56b2f75fdaa95ad5e477a246d3f0d164964ab066b4619a01836ef08e475ec9d5"
      , "subdir": "llvm-project-llvmorg-16.0.6"
      , "pragma": {"special": "resolve-partially"}
      }
    , "target_root": "compilers"
    , "target_file_name": "clang-16-native.TARGETS"
    , "bindings":
      { "rules": "rules/clang_with_gcc13"
      , "binutils": "imports/binutils-latest"
      , "patches": "patches"
      }
    }
  , "compilers/clang-17.0.6-native":
    { "repository":
      { "type": "archive"
      , "content": "093cd6ee1103440cc4f803ad666f45293dfbedc3"
      , "fetch": "https://github.com/llvm/llvm-project/archive/refs/tags/llvmorg-17.0.6.tar.gz"
      , "sha256": "81494d32e6f12ea6f73d6d25424dbd2364646011bb8f7e345ca870750aa27de1"
      , "subdir": "llvm-project-llvmorg-17.0.6"
      , "pragma": {"special": "resolve-partially"}
      }
    , "target_root": "compilers"
    , "target_file_name": "clang-17-native.TARGETS"
    , "bindings":
      { "rules": "rules/clang_with_gcc13"
      , "binutils": "imports/binutils-latest"
      , "patches": "patches"
      }
    }
  , "compilers/clang-18.1.8-native":
    { "repository":
      { "type": "archive"
      , "content": "3d2972e91936ce5d4176802eb8b5ef3e0a727914"
      , "fetch": "https://github.com/llvm/llvm-project/archive/refs/tags/llvmorg-18.1.8.tar.gz"
      , "sha256": "09c08693a9afd6236f27a2ebae62cda656eba19021ef3f94d59e931d662d4856"
      , "subdir": "llvm-project-llvmorg-18.1.8"
      , "pragma": {"special": "resolve-partially"}
      }
    , "target_root": "compilers"
    , "target_file_name": "clang-18-native.TARGETS"
    , "bindings":
      { "rules": "rules/clang_with_gcc13"
      , "binutils": "imports/binutils-latest"
      , "patches": "patches"
      , "iwyu": "iwyu-18"
      }
    }
  , "compilers/clang-19.1.1-native":
    { "repository":
      { "type": "archive"
      , "content": "6fbd4ba1578adadde3ab0d215c93bbda30be61c5"
      , "fetch": "https://github.com/llvm/llvm-project/archive/refs/tags/llvmorg-19.1.1.tar.gz"
      , "sha256": "115dfd98a353d05bffdab3f80db22f159da48aca0124e8c416f437adcd54b77f"
      , "subdir": "llvm-project-llvmorg-19.1.1"
      , "pragma": {"special": "resolve-partially"}
      }
    , "target_root": "compilers"
    , "target_file_name": "clang-19-native.TARGETS"
    , "bindings":
      { "rules": "rules/clang_with_gcc14"
      , "binutils": "imports/binutils-latest"
      , "patches": "patches"
      , "iwyu": "iwyu-19"
      }
    }
  , "compilers/clang-20.1.0-native":
    { "repository":
      { "type": "archive"
      , "content": "459410a5cbe900b5653ead14ca39808f57d24f4f"
      , "fetch": "https://github.com/llvm/llvm-project/archive/refs/tags/llvmorg-20.1.0.tar.gz"
      , "sha256": "08bc382733777dda3c96259e3732ff96c1df98d0470c4f85b163274eae687f4f"
      , "subdir": "llvm-project-llvmorg-20.1.0"
      , "pragma": {"special": "resolve-partially"}
      }
    , "target_root": "compilers"
    , "target_file_name": "clang-20-native.TARGETS"
    , "bindings":
      { "rules": "rules/clang_with_gcc14"
      , "binutils": "imports/binutils-latest"
      , "patches": "patches"
      , "iwyu": "iwyu-20"
      }
    }
  , "tools/busybox-1.36.1":
    { "repository":
      { "type": "archive"
      , "content": "529defd1de4d1e362458e6561017ae74b2b3f28e"
      , "fetch": "https://busybox.net/downloads/busybox-1.36.1.tar.bz2"
      , "sha256": "b8cc24c9574d809e7279c3be349795c5d5ceb6fdf19ca709f80cde50e47de314"
      , "subdir": "busybox-1.36.1"
      }
    , "target_root": "tools"
    , "target_file_name": "busybox-1.36.TARGETS"
    , "bindings": {"rules": "rules/tools", "patch-cbq": "patches/busybox-1593"}
    }
  , "tools/make-4.4.1":
    { "repository":
      { "type": "archive"
      , "content": "4adc00a78258ae2eb53d103ef2c1ecf291a86fbf"
      , "fetch": "https://ftp.gnu.org/gnu/make/make-4.4.1.tar.gz"
      , "sha256": "dd16fb1d67bfab79a72f5e8390735c49e3e8e70b4945a15ab1f81ddb78658fb3"
      , "subdir": "make-4.4.1"
      }
    , "target_root": "tools"
    , "target_file_name": "make-4.4.TARGETS"
    , "bindings": {"rules": "rules/tools"}
    }
  , "tools/cmake-3.27.1":
    { "repository":
      { "type": "archive"
      , "content": "45586697d7bb7d4f3cae4c86bba5bde710a367a9"
      , "fetch": "https://github.com/Kitware/CMake/releases/download/v3.27.1/cmake-3.27.1.tar.gz"
      , "sha256": "b1a6b0135fa11b94476e90f5b32c4c8fad480bf91cf22d0ded98ce22c5132004"
      , "subdir": "cmake-3.27.1"
      }
    , "target_root": "tools"
    , "target_file_name": "cmake-3.27.TARGETS"
    , "bindings": {"rules": "rules/tools", "ssl": "imports/boringssl"}
    }
  , "tools/python-3.12.0":
    { "repository":
      { "type": "archive"
      , "content": "0b9a01c1b77e8b75a977e7e8e447d6764215eb1b"
      , "fetch": "https://www.python.org/ftp/python/3.12.0/Python-3.12.0.tar.xz"
      , "sha256": "795c34f44df45a0e9b9710c8c71c15c671871524cd412ca14def212e8ccb155d"
      , "subdir": "Python-3.12.0"
      }
    , "target_root": "tools"
    , "target_file_name": "python-3.12.TARGETS"
    , "bindings": {"rules": "rules/tools", "zlib": "imports/zlib"}
    }
  , "gcc-latest-native":
    { "repository": "toolchains"
    , "target_file_name": "gcc.TARGETS"
    , "bindings": {"rules": "rules", "gcc": "compilers/gcc-14.2.0-native"}
    }
  , "gcc-13.3.0-native":
    { "repository": "toolchains"
    , "target_file_name": "gcc.TARGETS"
    , "bindings": {"rules": "rules", "gcc": "compilers/gcc-13.3.0-native"}
    }
  , "gcc-14.2.0-native":
    { "repository": "toolchains"
    , "target_file_name": "gcc.TARGETS"
    , "bindings": {"rules": "rules", "gcc": "compilers/gcc-14.2.0-native"}
    }
  , "gcc-latest-musl":
    { "repository": "toolchains"
    , "target_file_name": "gcc.TARGETS"
    , "bindings": {"rules": "rules", "gcc": "compilers/gcc-14.2.0-musl"}
    }
  , "gcc-13.3.0-musl":
    { "repository": "toolchains"
    , "target_file_name": "gcc.TARGETS"
    , "bindings": {"rules": "rules", "gcc": "compilers/gcc-13.3.0-musl"}
    }
  , "gcc-14.2.0-musl":
    { "repository": "toolchains"
    , "target_file_name": "gcc.TARGETS"
    , "bindings": {"rules": "rules", "gcc": "compilers/gcc-14.2.0-musl"}
    }
  , "gcc-latest-musl-static":
    { "repository": "toolchains"
    , "target_file_name": "gcc.TARGETS"
    , "bindings": {"rules": "rules", "gcc": "compilers/gcc-14.2.0-musl-static"}
    }
  , "gcc-13.3.0-musl-static":
    { "repository": "toolchains"
    , "target_file_name": "gcc.TARGETS"
    , "bindings": {"rules": "rules", "gcc": "compilers/gcc-13.3.0-musl-static"}
    }
  , "gcc-14.2.0-musl-static":
    { "repository": "toolchains"
    , "target_file_name": "gcc.TARGETS"
    , "bindings": {"rules": "rules", "gcc": "compilers/gcc-14.2.0-musl-static"}
    }
  , "clang-latest-native":
    { "repository": "toolchains"
    , "target_file_name": "clang.TARGETS"
    , "bindings": {"rules": "rules", "clang": "compilers/clang-20.1.0-native"}
    }
  , "clang-20.1.0-native":
    { "repository": "toolchains"
    , "target_file_name": "clang.TARGETS"
    , "bindings": {"rules": "rules", "clang": "compilers/clang-20.1.0-native"}
    }
  , "clang-19.1.1-native":
    { "repository": "toolchains"
    , "target_file_name": "clang.TARGETS"
    , "bindings": {"rules": "rules", "clang": "compilers/clang-19.1.1-native"}
    }
  , "clang-18.1.8-native":
    { "repository": "toolchains"
    , "target_file_name": "clang.TARGETS"
    , "bindings": {"rules": "rules", "clang": "compilers/clang-18.1.8-native"}
    }
  , "clang-17.0.6-native":
    { "repository": "toolchains"
    , "target_file_name": "clang.TARGETS"
    , "bindings": {"rules": "rules", "clang": "compilers/clang-17.0.6-native"}
    }
  , "clang-16.0.6-native":
    { "repository": "toolchains"
    , "target_file_name": "clang.TARGETS"
    , "bindings": {"rules": "rules", "clang": "compilers/clang-16.0.6-native"}
    }
  , "busybox-latest":
    { "repository": "toolchains"
    , "target_file_name": "busybox.TARGETS"
    , "bindings": {"rules": "rules", "busybox": "tools/busybox-1.36.1"}
    }
  , "busybox-1.36.1":
    { "repository": "toolchains"
    , "target_file_name": "busybox.TARGETS"
    , "bindings": {"rules": "rules", "busybox": "tools/busybox-1.36.1"}
    }
  , "make-latest":
    { "repository": "toolchains"
    , "target_file_name": "make.TARGETS"
    , "bindings": {"rules": "rules", "make": "tools/make-4.4.1"}
    }
  , "make-4.4.1":
    { "repository": "toolchains"
    , "target_file_name": "make.TARGETS"
    , "bindings": {"rules": "rules", "make": "tools/make-4.4.1"}
    }
  , "cmake-latest":
    { "repository": "toolchains"
    , "target_file_name": "cmake.TARGETS"
    , "bindings": {"rules": "rules", "cmake": "tools/cmake-3.27.1"}
    }
  , "cmake-3.27.1":
    { "repository": "toolchains"
    , "target_file_name": "cmake.TARGETS"
    , "bindings": {"rules": "rules", "cmake": "tools/cmake-3.27.1"}
    }
  , "python-latest":
    { "repository": "toolchains"
    , "target_file_name": "python.TARGETS"
    , "bindings": {"rules": "rules", "python": "tools/python-3.12.0"}
    }
  , "python-3.12.0":
    { "repository": "toolchains"
    , "target_file_name": "python.TARGETS"
    , "bindings": {"rules": "rules", "python": "tools/python-3.12.0"}
    }
  , "tools-all":
    { "repository": "toolchains"
    , "target_file_name": "tools-all.TARGETS"
    , "bindings":
      { "rules": "rules"
      , "busybox": "busybox-latest"
      , "make": "make-latest"
      , "cmake": "cmake-latest"
      , "python": "python-latest"
      }
    }
  , "gcc-latest-native+tools":
    { "repository": "toolchains"
    , "target_file_name": "compiler+tools.TARGETS"
    , "bindings":
      {"rules": "rules", "tools": "tools-all", "compiler": "gcc-latest-native"}
    }
  , "gcc-13.3.0-native+tools":
    { "repository": "toolchains"
    , "target_file_name": "compiler+tools.TARGETS"
    , "bindings":
      {"rules": "rules", "tools": "tools-all", "compiler": "gcc-13.3.0-native"}
    }
  , "gcc-14.2.0-native+tools":
    { "repository": "toolchains"
    , "target_file_name": "compiler+tools.TARGETS"
    , "bindings":
      {"rules": "rules", "tools": "tools-all", "compiler": "gcc-14.2.0-native"}
    }
  , "gcc-latest-musl+tools":
    { "repository": "toolchains"
    , "target_file_name": "compiler+tools.TARGETS"
    , "bindings":
      {"rules": "rules", "tools": "tools-all", "compiler": "gcc-latest-musl"}
    }
  , "gcc-13.3.0-musl+tools":
    { "repository": "toolchains"
    , "target_file_name": "compiler+tools.TARGETS"
    , "bindings":
      {"rules": "rules", "tools": "tools-all", "compiler": "gcc-13.3.0-musl"}
    }
  , "gcc-14.2.0-musl+tools":
    { "repository": "toolchains"
    , "target_file_name": "compiler+tools.TARGETS"
    , "bindings":
      {"rules": "rules", "tools": "tools-all", "compiler": "gcc-14.2.0-musl"}
    }
  , "gcc-latest-musl-static+tools":
    { "repository": "toolchains"
    , "target_file_name": "compiler+tools.TARGETS"
    , "bindings":
      { "rules": "rules"
      , "tools": "tools-all"
      , "compiler": "gcc-latest-musl-static"
      }
    }
  , "gcc-13.3.0-musl-static+tools":
    { "repository": "toolchains"
    , "target_file_name": "compiler+tools.TARGETS"
    , "bindings":
      { "rules": "rules"
      , "tools": "tools-all"
      , "compiler": "gcc-13.3.0-musl-static"
      }
    }
  , "gcc-14.2.0-musl-static+tools":
    { "repository": "toolchains"
    , "target_file_name": "compiler+tools.TARGETS"
    , "bindings":
      { "rules": "rules"
      , "tools": "tools-all"
      , "compiler": "gcc-14.2.0-musl-static"
      }
    }
  , "clang-latest-native+tools":
    { "repository": "toolchains"
    , "target_file_name": "compiler+tools.TARGETS"
    , "bindings":
      { "rules": "rules"
      , "tools": "tools-all"
      , "compiler": "clang-latest-native"
      }
    }
  , "clang-20.1.0-native+tools":
    { "repository": "toolchains"
    , "target_file_name": "compiler+tools.TARGETS"
    , "bindings":
      { "rules": "rules"
      , "tools": "tools-all"
      , "compiler": "clang-20.1.0-native"
      }
    }
  , "clang-19.1.1-native+tools":
    { "repository": "toolchains"
    , "target_file_name": "compiler+tools.TARGETS"
    , "bindings":
      { "rules": "rules"
      , "tools": "tools-all"
      , "compiler": "clang-19.1.1-native"
      }
    }
  , "clang-18.1.8-native+tools":
    { "repository": "toolchains"
    , "target_file_name": "compiler+tools.TARGETS"
    , "bindings":
      { "rules": "rules"
      , "tools": "tools-all"
      , "compiler": "clang-18.1.8-native"
      }
    }
  , "clang-17.0.6-native+tools":
    { "repository": "toolchains"
    , "target_file_name": "compiler+tools.TARGETS"
    , "bindings":
      { "rules": "rules"
      , "tools": "tools-all"
      , "compiler": "clang-17.0.6-native"
      }
    }
  , "clang-16.0.6-native+tools":
    { "repository": "toolchains"
    , "target_file_name": "compiler+tools.TARGETS"
    , "bindings":
      { "rules": "rules"
      , "tools": "tools-all"
      , "compiler": "clang-16.0.6-native"
      }
    }
  , "test/rules-gcc-native":
    { "repository": "rules"
    , "target_root": "defaults"
    , "target_file_name": "test.TARGETS"
    , "rule_root": "rules"
    , "bindings":
      { "rules": "rules"
      , "toolchain": "gcc-latest-native"
      , "stage-0": "rules/stage-0"
      , "busybox": "stage-0/busybox"
      }
    }
  , "test/rules-gcc-musl":
    { "repository": "rules"
    , "target_root": "defaults"
    , "target_file_name": "test.TARGETS"
    , "rule_root": "rules"
    , "bindings":
      { "rules": "rules"
      , "toolchain": "gcc-latest-musl"
      , "stage-0": "rules/stage-0"
      , "busybox": "stage-0/busybox"
      }
    }
  , "test/rules-gcc-musl-static":
    { "repository": "rules"
    , "target_root": "defaults"
    , "target_file_name": "test.TARGETS"
    , "rule_root": "rules"
    , "bindings":
      { "rules": "rules"
      , "toolchain": "gcc-latest-musl-static"
      , "stage-0": "rules/stage-0"
      , "busybox": "stage-0/busybox"
      }
    }
  , "test/rules-clang-native":
    { "repository": "rules"
    , "target_root": "defaults"
    , "target_file_name": "test.TARGETS"
    , "rule_root": "rules"
    , "bindings":
      { "rules": "rules"
      , "toolchain": "clang-latest-native"
      , "stage-0": "rules/stage-0"
      , "busybox": "stage-0/busybox"
      }
    }
  , "test/gcc-native":
    { "repository": {"type": "file", "path": "test"}
    , "bindings": {"rules": "test/rules-gcc-native"}
    }
  , "test/gcc-musl":
    { "repository": {"type": "file", "path": "test"}
    , "bindings": {"rules": "test/rules-gcc-musl"}
    }
  , "test/gcc-musl-static":
    { "repository": {"type": "file", "path": "test"}
    , "bindings": {"rules": "test/rules-gcc-musl-static"}
    }
  , "test/clang-native":
    { "repository": {"type": "file", "path": "test"}
    , "bindings": {"rules": "test/rules-clang-native"}
    }
  , "iwyu-18":
    { "repository":
      { "type": "archive"
      , "content": "04ffb3d3e78e6d20fd0ea2fe627f83de4418528d"
      , "fetch": "https://github.com/include-what-you-use/include-what-you-use/archive/refs/tags/0.22.tar.gz"
      , "sha256": "34c7636da2abe7b86580b53b762f5269e71efff460f24f17d5913c56eb99cb7c"
      , "subdir": "include-what-you-use-0.22"
      }
    , "target_file_name": "iwyu.TARGETS"
    , "target_root": "imports"
    }
  , "iwyu-19":
    { "repository":
      { "type": "archive"
      , "content": "66888a7220ad0939788b49e12fe1909b68483ee7"
      , "fetch": "https://github.com/include-what-you-use/include-what-you-use/archive/refs/tags/0.23.tar.gz"
      , "sha256": "16672743fdf781d7db313f48c7f4b34bc6517eddfd92d7db793790fe793a306c"
      , "subdir": "include-what-you-use-0.23"
      }
    , "target_file_name": "iwyu.TARGETS"
    , "target_root": "imports"
    }
  , "iwyu-20":
    { "repository":
      { "type": "archive"
      , "content": "7fc1e96d2aaab23daa3783c82a9214db4dbb3c52"
      , "fetch": "https://github.com/include-what-you-use/include-what-you-use/archive/refs/tags/0.24.tar.gz"
      , "sha256": "897b4c864a983f493c8efef4a1a9a2d429fd7ead1011f7a41743ed7b6dbe8c2e"
      , "subdir": "include-what-you-use-0.24"
      }
    , "target_file_name": "iwyu.TARGETS"
    , "target_root": "imports"
    }
  , "patches/busybox-1593":
    { "repository":
      { "type": "foreign file"
      , "content": "5c8fd3526a514ff64fd3d31b9a849d0649e0d197"
      , "fetch": "https://bugs.busybox.net/attachment.cgi?id=9751"
      , "sha256": "6671a12c48dbcefb653fc8403d1f103a1e2eba4a49b1ee9a9c27da8aa2db80d4"
      , "name": "remove-cbq.patch"
      }
    , "target_root": "imports"
    , "target_file_name": "empty.TARGETS"
    }
  }
}