This repository was archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathimpact_index.log
More file actions
3435 lines (3435 loc) · 172 KB
/
impact_index.log
File metadata and controls
3435 lines (3435 loc) · 172 KB
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
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(Generated: ma. 27. nov. 07:07:26 +0100 2023)
2023/11/27 07:07:26 Ignoring settings file, got error while parsing: open /home/dietmarw/.config/impact/impactrc: no such file or directory
Fetching repositories for modelica
Fetching page 1, 10 entries
Fetching page 2, 10 entries
Fetching page 3, 10 entries
Fetching page 4, 10 entries
Fetching page 5, 10 entries
Fetching page 6, 8 entries
Fetching page 7, 0 entries
Processing: 2018_American_Modelica_Conference (https://github.com/modelica/2018_American_Modelica_Conference, fork=false)
2023/11/27 07:07:32 No source for 2018_American_Modelica_Conference
2023/11/27 07:07:33 Processing tag v.alpha.1
.alpha.1: Ignoring
2023/11/27 07:07:33 Processing tag v.alpha
.alpha: Ignoring
Processing: AmericanModelicaConference2020 (https://github.com/modelica/AmericanModelicaConference2020, fork=false)
2023/11/27 07:07:34 No source for AmericanModelicaConference2020
Processing: AsianModelicaConference2020 (https://github.com/modelica/AsianModelicaConference2020, fork=false)
2023/11/27 07:07:35 No source for AsianModelicaConference2020
Processing: AsianModelicaConference2022 (https://github.com/modelica/AsianModelicaConference2022, fork=false)
2023/11/27 07:07:36 No source for AsianModelicaConference2022
Processing: conference-templates (https://github.com/modelica/conference-templates, fork=false)
2023/11/27 07:07:37 No source for conference-templates
Processing: crosscheck-update (https://github.com/modelica/crosscheck-update, fork=false)
2023/11/27 07:07:38 No source for crosscheck-update
Processing: dcp-standard (https://github.com/modelica/dcp-standard, fork=false)
2023/11/27 07:07:39 No source for dcp-standard
Processing: DCPLib (https://github.com/modelica/DCPLib, fork=false)
2023/11/27 07:07:40 No source for DCPLib
2023/11/27 07:07:40 Processing tag v0.2
0.2: Recording
2023/11/27 07:07:41 Reviewing contents of modelica/DCPLib
No Modelica libraries found in repository DCPLib:0.2
Processing: DCPTester (https://github.com/modelica/DCPTester, fork=false)
2023/11/27 07:07:45 No source for DCPTester
2023/11/27 07:07:46 Processing tag v0.2
0.2: Recording
2023/11/27 07:07:46 Reviewing contents of modelica/DCPTester
No Modelica libraries found in repository DCPTester:0.2
Processing: DCPTestGenerator (https://github.com/modelica/DCPTestGenerator, fork=false)
2023/11/27 07:07:49 No source for DCPTestGenerator
2023/11/27 07:07:50 Processing tag v0.2
0.2: Recording
2023/11/27 07:07:51 Reviewing contents of modelica/DCPTestGenerator
No Modelica libraries found in repository DCPTestGenerator:0.2
Processing: efmi-compliancechecker (https://github.com/modelica/efmi-compliancechecker, fork=false)
2023/11/27 07:07:52 No source for efmi-compliancechecker
2023/11/27 07:07:53 Processing tag v1.0.0
1.0.0: Recording
2023/11/27 07:07:54 Reviewing contents of modelica/efmi-compliancechecker
No Modelica libraries found in repository efmi-compliancechecker:1.0.0
Processing: efmi-containermanager (https://github.com/modelica/efmi-containermanager, fork=false)
2023/11/27 07:07:57 No source for efmi-containermanager
2023/11/27 07:07:57 Processing tag v1.0.1
1.0.1: Recording
2023/11/27 07:07:58 Reviewing contents of modelica/efmi-containermanager
No Modelica libraries found in repository efmi-containermanager:1.0.1
2023/11/27 07:08:02 Processing tag v1.0.0
1.0.0: Recording
2023/11/27 07:08:02 Reviewing contents of modelica/efmi-containermanager
No Modelica libraries found in repository efmi-containermanager:1.0.0
Processing: efmi-testcases (https://github.com/modelica/efmi-testcases, fork=false)
2023/11/27 07:08:06 No source for efmi-testcases
2023/11/27 07:08:07 Processing tag v1.0.1
1.0.1: Recording
2023/11/27 07:08:08 Reviewing contents of modelica/efmi-testcases
Processing library eFMI @ eFMI
Processing library eFMI_TestCases @ eFMI_TestCases
2023/11/27 07:08:12 Processing tag v1.0.0
1.0.0: Recording
2023/11/27 07:08:13 Reviewing contents of modelica/efmi-testcases
Processing library eFMI @ eFMI
Processing library eFMI_TestCases @ eFMI_TestCases
Processing: Encryption-and-Licensing (https://github.com/modelica/Encryption-and-Licensing, fork=false)
2023/11/27 07:08:18 No source for Encryption-and-Licensing
Processing: fmi-beginners-tutorial-2023 (https://github.com/modelica/fmi-beginners-tutorial-2023, fork=false)
2023/11/27 07:08:19 No source for fmi-beginners-tutorial-2023
Processing: fmi-cross-check (https://github.com/modelica/fmi-cross-check, fork=false)
2023/11/27 07:08:20 No source for fmi-cross-check
Processing: fmi-data (https://github.com/modelica/fmi-data, fork=false)
2023/11/27 07:08:21 No source for fmi-data
2023/11/27 07:08:21 Processing tag v0.14.5
0.14.5: Recording
2023/11/27 07:08:22 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.14.5
2023/11/27 07:08:24 Processing tag v0.14.4
0.14.4: Recording
2023/11/27 07:08:25 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.14.4
2023/11/27 07:08:27 Processing tag v0.14.3
0.14.3: Recording
2023/11/27 07:08:28 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.14.3
2023/11/27 07:08:29 Processing tag v0.14.2
0.14.2: Recording
2023/11/27 07:08:30 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.14.2
2023/11/27 07:08:32 Processing tag v0.14.1
0.14.1: Recording
2023/11/27 07:08:32 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.14.1
2023/11/27 07:08:34 Processing tag v0.14.0
0.14.0: Recording
2023/11/27 07:08:34 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.14.0
2023/11/27 07:08:36 Processing tag v0.13.0
0.13.0: Recording
2023/11/27 07:08:37 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.13.0
2023/11/27 07:08:39 Processing tag v0.12.2
0.12.2: Recording
2023/11/27 07:08:39 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.12.2
2023/11/27 07:08:41 Processing tag v0.12.0
0.12.0: Recording
2023/11/27 07:08:42 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.12.0
2023/11/27 07:08:43 Processing tag v0.11.3
0.11.3: Recording
2023/11/27 07:08:44 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.11.3
2023/11/27 07:08:45 Processing tag v0.11.2
0.11.2: Recording
2023/11/27 07:08:46 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.11.2
2023/11/27 07:08:47 Processing tag v0.11.1
0.11.1: Recording
2023/11/27 07:08:47 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.11.1
2023/11/27 07:08:48 Processing tag v0.11.0
0.11.0: Recording
2023/11/27 07:08:49 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.11.0
2023/11/27 07:08:50 Processing tag v0.10.1
0.10.1: Recording
2023/11/27 07:08:50 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.10.1
2023/11/27 07:08:51 Processing tag v0.10.0
0.10.0: Recording
2023/11/27 07:08:52 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.10.0
2023/11/27 07:08:53 Processing tag v0.9.0
0.9.0: Recording
2023/11/27 07:08:54 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.9.0
2023/11/27 07:08:55 Processing tag v0.8.0
0.8.0: Recording
2023/11/27 07:08:55 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.8.0
2023/11/27 07:08:56 Processing tag v0.7.0
0.7.0: Recording
2023/11/27 07:08:57 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.7.0
2023/11/27 07:08:58 Processing tag v0.6.1
0.6.1: Recording
2023/11/27 07:08:59 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.6.1
2023/11/27 07:09:00 Processing tag v0.6.0
0.6.0: Recording
2023/11/27 07:09:00 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.6.0
2023/11/27 07:09:01 Processing tag v0.5.3
0.5.3: Recording
2023/11/27 07:09:02 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.5.3
2023/11/27 07:09:03 Processing tag v0.5.2
0.5.2: Recording
2023/11/27 07:09:04 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.5.2
2023/11/27 07:09:05 Processing tag v0.5.1
0.5.1: Recording
2023/11/27 07:09:05 Reviewing contents of modelica/fmi-data
No Modelica libraries found in repository fmi-data:0.5.1
Processing: fmi-guides (https://github.com/modelica/fmi-guides, fork=false)
2023/11/27 07:09:07 No source for fmi-guides
Processing: fmi-ls-bus (https://github.com/modelica/fmi-ls-bus, fork=false)
2023/11/27 07:09:08 No source for fmi-ls-bus
Processing: fmi-ls-struct (https://github.com/modelica/fmi-ls-struct, fork=false)
2023/11/27 07:09:09 No source for fmi-ls-struct
Processing: fmi-ls-xcp (https://github.com/modelica/fmi-ls-xcp, fork=false)
2023/11/27 07:09:11 No source for fmi-ls-xcp
2023/11/27 07:09:11 Processing tag v1.0.0-rc.1
1.0.0-rc.1: Recording
2023/11/27 07:09:12 Reviewing contents of modelica/fmi-ls-xcp
No Modelica libraries found in repository fmi-ls-xcp:1.0.0-rc.1
Processing: fmi-standard (https://github.com/modelica/fmi-standard, fork=false)
2023/11/27 07:09:15 No source for fmi-standard
2023/11/27 07:09:16 Processing tag v3.0.1
3.0.1: Recording
2023/11/27 07:09:16 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0.1
2023/11/27 07:09:19 Processing tag v3.0.1-rc.3
3.0.1-rc.3: Recording
2023/11/27 07:09:20 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0.1-rc.3
2023/11/27 07:09:23 Processing tag v3.0.1-rc.2
3.0.1-rc.2: Recording
2023/11/27 07:09:24 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0.1-rc.2
2023/11/27 07:09:27 Processing tag v3.0.1-rc.1
3.0.1-rc.1: Recording
2023/11/27 07:09:27 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0.1-rc.1
2023/11/27 07:09:30 Processing tag v3.0
3.0: Recording
2023/11/27 07:09:31 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0
2023/11/27 07:09:34 Processing tag v3.0-rc.2
3.0-rc.2: Recording
2023/11/27 07:09:35 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0-rc.2
2023/11/27 07:09:38 Processing tag v3.0-rc.1
3.0-rc.1: Recording
2023/11/27 07:09:39 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0-rc.1
2023/11/27 07:09:42 Processing tag v3.0-beta.5
3.0-beta.5: Recording
2023/11/27 07:09:43 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0-beta.5
2023/11/27 07:09:46 Processing tag v3.0-beta.4
3.0-beta.4: Recording
2023/11/27 07:09:46 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0-beta.4
2023/11/27 07:09:49 Processing tag v3.0-beta.3
3.0-beta.3: Recording
2023/11/27 07:09:50 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0-beta.3
2023/11/27 07:09:53 Processing tag v3.0-beta.2
3.0-beta.2: Recording
2023/11/27 07:09:54 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0-beta.2
2023/11/27 07:09:57 Processing tag v3.0-beta.1
3.0-beta.1: Recording
2023/11/27 07:09:57 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0-beta.1
2023/11/27 07:10:01 Processing tag v3.0-alpha.7
3.0-alpha.7: Recording
2023/11/27 07:10:01 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0-alpha.7
2023/11/27 07:10:05 Processing tag v3.0-alpha.6
3.0-alpha.6: Recording
2023/11/27 07:10:05 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0-alpha.6
2023/11/27 07:10:08 Processing tag v3.0-alpha.5
3.0-alpha.5: Recording
2023/11/27 07:10:09 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0-alpha.5
2023/11/27 07:10:12 Processing tag v3.0-alpha.4
3.0-alpha.4: Recording
2023/11/27 07:10:13 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0-alpha.4
2023/11/27 07:10:16 Processing tag v3.0-alpha.3
3.0-alpha.3: Recording
2023/11/27 07:10:17 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0-alpha.3
2023/11/27 07:10:20 Processing tag v3.0-alpha.2
3.0-alpha.2: Recording
2023/11/27 07:10:20 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0-alpha.2
2023/11/27 07:10:23 Processing tag v3.0-alpha.1
3.0-alpha.1: Recording
2023/11/27 07:10:24 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:3.0-alpha.1
2023/11/27 07:10:27 Processing tag v2.0.4
2.0.4: Recording
2023/11/27 07:10:28 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:2.0.4
2023/11/27 07:10:30 Processing tag v2.0.4-rc.2
2.0.4-rc.2: Recording
2023/11/27 07:10:31 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:2.0.4-rc.2
2023/11/27 07:10:33 Processing tag v2.0.4-rc.1
2.0.4-rc.1: Recording
2023/11/27 07:10:34 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:2.0.4-rc.1
2023/11/27 07:10:36 Processing tag v2.0.3
2.0.3: Recording
2023/11/27 07:10:37 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:2.0.3
2023/11/27 07:10:40 Processing tag v2.0.2
2.0.2: Recording
2023/11/27 07:10:40 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:2.0.2
2023/11/27 07:10:43 Processing tag v2.0.2-rc.1
2.0.2-rc.1: Recording
2023/11/27 07:10:44 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:2.0.2-rc.1
2023/11/27 07:10:47 Processing tag v2.0.1
2.0.1: Recording
2023/11/27 07:10:48 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:2.0.1
2023/11/27 07:10:51 Processing tag v2.0.1-rc.6
2.0.1-rc.6: Recording
2023/11/27 07:10:52 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:2.0.1-rc.6
2023/11/27 07:10:55 Processing tag v2.0.1-rc.5
2.0.1-rc.5: Recording
2023/11/27 07:10:55 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:2.0.1-rc.5
2023/11/27 07:10:59 Processing tag v2.0.1-rc.4
2.0.1-rc.4: Recording
2023/11/27 07:10:59 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:2.0.1-rc.4
2023/11/27 07:11:02 Processing tag v2.0.1-rc.3
2.0.1-rc.3: Recording
2023/11/27 07:11:03 Reviewing contents of modelica/fmi-standard
No Modelica libraries found in repository fmi-standard:2.0.1-rc.3
Processing: fmi-standard.org (https://github.com/modelica/fmi-standard.org, fork=false)
2023/11/27 07:11:07 No source for fmi-standard.org
Processing: fmi-widgets (https://github.com/modelica/fmi-widgets, fork=false)
2023/11/27 07:11:08 No source for fmi-widgets
Processing: fmi-xc-scripts (https://github.com/modelica/fmi-xc-scripts, fork=false)
2023/11/27 07:11:09 No source for fmi-xc-scripts
Processing: FMIModelicaTest (https://github.com/modelica/FMIModelicaTest, fork=false)
2023/11/27 07:11:10 No source for FMIModelicaTest
Processing: fmu-check (https://github.com/modelica/fmu-check, fork=false)
2023/11/27 07:11:12 No source for fmu-check
Processing: MA-Bylaws (https://github.com/modelica/MA-Bylaws, fork=false)
2023/11/27 07:11:13 No source for MA-Bylaws
2023/11/27 07:11:14 Processing tag v2.1
2.1: Recording
2023/11/27 07:11:14 Reviewing contents of modelica/MA-Bylaws
No Modelica libraries found in repository MA-Bylaws:2.1
Processing: ma-hugo-theme (https://github.com/modelica/ma-hugo-theme, fork=false)
2023/11/27 07:11:16 No source for ma-hugo-theme
Processing: MA-Logos (https://github.com/modelica/MA-Logos, fork=false)
2023/11/27 07:11:17 No source for MA-Logos
Processing: MAP-Lang_ProjectRules (https://github.com/modelica/MAP-Lang_ProjectRules, fork=false)
2023/11/27 07:11:18 No source for MAP-Lang_ProjectRules
Processing: MAP-LIB_ProjectRules (https://github.com/modelica/MAP-LIB_ProjectRules, fork=false)
2023/11/27 07:11:19 No source for MAP-LIB_ProjectRules
2023/11/27 07:11:20 Processing tag 2018-03-21
2018-03-21: Ignoring
2023/11/27 07:11:20 Processing tag 2018-02-28
2018-02-28: Ignoring
2023/11/27 07:11:20 Processing tag 2018-02-12
2018-02-12: Ignoring
Processing: MAP-LIB_ReferenceResults (https://github.com/modelica/MAP-LIB_ReferenceResults, fork=false)
2023/11/27 07:11:20 No source for MAP-LIB_ReferenceResults
Processing: Modelica-Compliance (https://github.com/modelica/Modelica-Compliance, fork=false)
2023/11/27 07:11:22 No source for Modelica-Compliance
Processing: ModelicaAssociationCLA (https://github.com/modelica/ModelicaAssociationCLA, fork=false)
2023/11/27 07:11:22 No source for ModelicaAssociationCLA
2023/11/27 07:11:23 Processing tag 1.1.1
1.1.1: Recording
2023/11/27 07:11:24 Reviewing contents of modelica/ModelicaAssociationCLA
No Modelica libraries found in repository ModelicaAssociationCLA:1.1.1
2023/11/27 07:11:24 Processing tag 1.1
1.1: Recording
2023/11/27 07:11:25 Reviewing contents of modelica/ModelicaAssociationCLA
No Modelica libraries found in repository ModelicaAssociationCLA:1.1
Processing: ModelicaConference2009 (https://github.com/modelica/ModelicaConference2009, fork=false)
2023/11/27 07:11:26 No source for ModelicaConference2009
2023/11/27 07:11:27 Processing tag USB
USB: Ignoring
Processing: ModelicaConference2011 (https://github.com/modelica/ModelicaConference2011, fork=false)
2023/11/27 07:11:28 No source for ModelicaConference2011
2023/11/27 07:11:28 Processing tag USB
USB: Ignoring
Processing: ModelicaConference2012 (https://github.com/modelica/ModelicaConference2012, fork=false)
2023/11/27 07:11:29 No source for ModelicaConference2012
2023/11/27 07:11:30 Processing tag USB
USB: Ignoring
Processing: ModelicaConference2014 (https://github.com/modelica/ModelicaConference2014, fork=false)
2023/11/27 07:11:31 No source for ModelicaConference2014
2023/11/27 07:11:31 Processing tag USB
USB: Ignoring
Processing: ModelicaConference2015 (https://github.com/modelica/ModelicaConference2015, fork=false)
2023/11/27 07:11:32 No source for ModelicaConference2015
2023/11/27 07:11:33 Processing tag USB
USB: Ignoring
Processing: ModelicaConference2017 (https://github.com/modelica/ModelicaConference2017, fork=false)
2023/11/27 07:11:33 No source for ModelicaConference2017
2023/11/27 07:11:34 Processing tag USB
USB: Ignoring
Processing: ModelicaConference2019 (https://github.com/modelica/ModelicaConference2019, fork=false)
2023/11/27 07:11:35 No source for ModelicaConference2019
2023/11/27 07:11:36 Processing tag USB
USB: Ignoring
Processing: ModelicaConference2021 (https://github.com/modelica/ModelicaConference2021, fork=false)
2023/11/27 07:11:36 No source for ModelicaConference2021
2023/11/27 07:11:37 Processing tag 2021.09.14
2021.09.14: Ignoring
2023/11/27 07:11:37 Processing tag 2021.09.13
2021.09.13: Ignoring
2023/11/27 07:11:37 Processing tag 2021.09.10
2021.09.10: Ignoring
Processing: ModelicaConference2023 (https://github.com/modelica/ModelicaConference2023, fork=false)
2023/11/27 07:11:38 No source for ModelicaConference2023
Processing: ModelicaSpecification (https://github.com/modelica/ModelicaSpecification, fork=false)
2023/11/27 07:11:39 No source for ModelicaSpecification
2023/11/27 07:11:39 Processing tag v3.6
3.6: Recording
2023/11/27 07:11:40 Reviewing contents of modelica/ModelicaSpecification
No Modelica libraries found in repository ModelicaSpecification:3.6
2023/11/27 07:11:45 Processing tag v3.5
3.5: Recording
2023/11/27 07:11:46 Reviewing contents of modelica/ModelicaSpecification
No Modelica libraries found in repository ModelicaSpecification:3.5
2023/11/27 07:11:50 Processing tag v3.5-beta.1
3.5-beta.1: Recording
2023/11/27 07:11:50 Reviewing contents of modelica/ModelicaSpecification
No Modelica libraries found in repository ModelicaSpecification:3.5-beta.1
2023/11/27 07:11:55 Processing tag v3.4
3.4: Recording
2023/11/27 07:11:56 Reviewing contents of modelica/ModelicaSpecification
No Modelica libraries found in repository ModelicaSpecification:3.4
Processing: ModelicaStandardLibrary (https://github.com/modelica/ModelicaStandardLibrary, fork=false)
2023/11/27 07:12:00 No source for ModelicaStandardLibrary
2023/11/27 07:12:01 Processing tag v4.0.0
4.0.0: Recording
2023/11/27 07:12:01 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:12:09 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestConversion4 @ ModelicaTestConversion4.mo
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica4 @ ObsoleteModelica4.mo
2023/11/27 07:12:14 Processing tag v4.0.0-rc.2
4.0.0-rc.2: Recording
2023/11/27 07:12:15 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:12:22 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestConversion4 @ ModelicaTestConversion4.mo
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica4 @ ObsoleteModelica4.mo
2023/11/27 07:12:28 Processing tag v4.0.0-rc.1
4.0.0-rc.1: Recording
2023/11/27 07:12:28 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:12:35 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestConversion4 @ ModelicaTestConversion4.mo
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica4 @ ObsoleteModelica4.mo
2023/11/27 07:12:40 Processing tag v4.0.0-beta.2
4.0.0-beta.2: Recording
2023/11/27 07:12:41 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:12:48 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestConversion4 @ ModelicaTestConversion4.mo
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica4 @ ObsoleteModelica4.mo
2023/11/27 07:12:53 Processing tag v4.0.0-beta.1
4.0.0-beta.1: Recording
2023/11/27 07:12:54 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:13:01 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestConversion4 @ ModelicaTestConversion4.mo
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica4 @ ObsoleteModelica4.mo
2023/11/27 07:13:06 Processing tag v4.0.0-alpha.1
4.0.0-alpha.1: Recording
2023/11/27 07:13:07 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:13:14 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestConversion4 @ ModelicaTestConversion4.mo
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica4 @ ObsoleteModelica4.mo
2023/11/27 07:13:20 Processing tag v3.2.3
3.2.3: Recording
2023/11/27 07:13:20 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:13:26 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:13:31 Processing tag v3.2.3+build.4
3.2.3+build.4: Recording
2023/11/27 07:13:31 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:13:38 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:13:42 Processing tag v3.2.3+build.4-rc.1
3.2.3+build.4-rc.1: Recording
2023/11/27 07:13:43 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:13:49 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:13:53 Processing tag v3.2.3+build.4-beta.1
3.2.3+build.4-beta.1: Recording
2023/11/27 07:13:54 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:14:00 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:14:04 Processing tag v3.2.3+build.3
3.2.3+build.3: Recording
2023/11/27 07:14:05 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:14:12 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:14:16 Processing tag v3.2.3+build.3-rc.1
3.2.3+build.3-rc.1: Recording
2023/11/27 07:14:16 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:14:23 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:14:27 Processing tag v3.2.3+build.3-beta.1
3.2.3+build.3-beta.1: Recording
2023/11/27 07:14:28 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:14:35 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:14:39 Processing tag v3.2.3+build.2
3.2.3+build.2: Recording
2023/11/27 07:14:39 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:14:46 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:14:50 Processing tag v3.2.3-rc.2
3.2.3-rc.2: Recording
2023/11/27 07:14:50 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:14:58 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:15:02 Processing tag v3.2.3-rc.1
3.2.3-rc.1: Recording
2023/11/27 07:15:03 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:15:09 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:15:14 Processing tag v3.2.3-beta.3
3.2.3-beta.3: Recording
2023/11/27 07:15:14 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:15:21 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:15:25 Processing tag v3.2.3-beta.2
3.2.3-beta.2: Recording
2023/11/27 07:15:26 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:15:34 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:15:38 Processing tag v3.2.3-beta.1
3.2.3-beta.1: Recording
2023/11/27 07:15:38 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:15:45 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:15:49 Processing tag v3.2.2
3.2.2: Recording
2023/11/27 07:15:50 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:15:57 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ModelicaTestOverdetermined @ ModelicaTestOverdetermined.mo
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:16:02 Processing tag v3.2.1+build.4
3.2.1+build.4: Recording
2023/11/27 07:16:03 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:16:09 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:16:13 Processing tag v3.2.1+build.3
3.2.1+build.3: Recording
2023/11/27 07:16:14 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:16:21 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:16:24 Processing tag v3.2.1+build.2
3.2.1+build.2: Recording
2023/11/27 07:16:25 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:16:31 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ModelicaTest @ ModelicaTest
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:16:34 Processing tag v3.2
3.2: Recording
2023/11/27 07:16:35 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:16:42 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Complex @ Complex.mo
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaTest @ ModelicaTest
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:16:44 Processing tag v3.1
3.1: Recording
2023/11/27 07:16:44 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:16:49 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ModelicaServices @ ModelicaServices
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:16:51 Processing tag v3.0.1
3.0.1: Recording
2023/11/27 07:16:52 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:16:56 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:16:57 Processing tag v3.0
3.0: Recording
2023/11/27 07:16:58 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:17:02 Error extracting uses annotation: Error while parsing uses annotation of ModelicaReference/package.mo in github repository ModelicaStandardLibrary: Unable to find version for library Modelica
Processing library Modelica @ Modelica
Processing library ModelicaStandardLibrary @ ModelicaReference
Processing library ObsoleteModelica3 @ ObsoleteModelica3.mo
2023/11/27 07:17:03 Processing tag v2.2.2
2.2.2: Recording
2023/11/27 07:17:04 Reviewing contents of modelica/ModelicaStandardLibrary
Processing library Modelica @ Modelica
2023/11/27 07:17:06 Processing tag v2.2.1
2.2.1: Recording
2023/11/27 07:17:06 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:17:07 Repository is a library
Processing library Modelica @ .
2023/11/27 07:17:08 Processing tag v2.2
2.2: Recording
2023/11/27 07:17:08 Reviewing contents of modelica/ModelicaStandardLibrary
2023/11/27 07:17:09 Repository is a library
Processing library Modelica @ .
Processing: Modelica_LinearSystems2 (https://github.com/modelica/Modelica_LinearSystems2, fork=false)
2023/11/27 07:17:10 No source for Modelica_LinearSystems2
2023/11/27 07:17:11 Processing tag v2.4.1
2.4.1: Recording
2023/11/27 07:17:12 Reviewing contents of modelica/Modelica_LinearSystems2
Processing library Modelica_LinearSystems2 @ Modelica_LinearSystems2
2023/11/27 07:17:14 Processing tag v2.4.1+build.2
2.4.1+build.2: Recording
2023/11/27 07:17:14 Reviewing contents of modelica/Modelica_LinearSystems2
Processing library Modelica_LinearSystems2 @ Modelica_LinearSystems2
2023/11/27 07:17:17 Processing tag v2.4.1-beta.2
2.4.1-beta.2: Recording
2023/11/27 07:17:17 Reviewing contents of modelica/Modelica_LinearSystems2
Processing library Modelica_LinearSystems2 @ Modelica_LinearSystems2
2023/11/27 07:17:19 Processing tag v2.4.0
2.4.0: Recording
2023/11/27 07:17:20 Reviewing contents of modelica/Modelica_LinearSystems2
Processing library Modelica_LinearSystems2 @ Modelica_LinearSystems2
2023/11/27 07:17:22 Processing tag v2.3.5
2.3.5: Recording
2023/11/27 07:17:23 Reviewing contents of modelica/Modelica_LinearSystems2
Processing library Modelica_LinearSystems2 @ Modelica_LinearSystems2
2023/11/27 07:17:25 Processing tag v2.3.4
2.3.4: Recording
2023/11/27 07:17:25 Reviewing contents of modelica/Modelica_LinearSystems2
2023/11/27 07:17:26 Repository is a library
Processing library Modelica_LinearSystems2 @ .
2023/11/27 07:17:27 Processing tag v2.3.3
2.3.3: Recording
2023/11/27 07:17:27 Reviewing contents of modelica/Modelica_LinearSystems2
2023/11/27 07:17:28 Repository is a library
Processing library Modelica_LinearSystems2 @ .
2023/11/27 07:17:29 Processing tag v2.3.2
2.3.2: Recording
2023/11/27 07:17:30 Reviewing contents of modelica/Modelica_LinearSystems2
2023/11/27 07:17:30 Repository is a library
Processing library Modelica_LinearSystems2 @ .
2023/11/27 07:17:31 Processing tag v2.3.1
2.3.1: Recording
2023/11/27 07:17:32 Reviewing contents of modelica/Modelica_LinearSystems2
2023/11/27 07:17:32 Repository is a library
Processing library Modelica_LinearSystems2 @ .
2023/11/27 07:17:33 Processing tag v2.3
2.3: Recording
2023/11/27 07:17:34 Reviewing contents of modelica/Modelica_LinearSystems2
2023/11/27 07:17:34 Repository is a library
Processing library Modelica_LinearSystems2 @ .
2023/11/27 07:17:35 Processing tag v2.2
2.2: Recording
2023/11/27 07:17:36 Reviewing contents of modelica/Modelica_LinearSystems2
2023/11/27 07:17:36 Repository is a library
Processing library Modelica_LinearSystems2 @ .
2023/11/27 07:17:37 Processing tag v2.1
2.1: Recording
2023/11/27 07:17:38 Reviewing contents of modelica/Modelica_LinearSystems2
2023/11/27 07:17:38 Repository is a library
Processing library Modelica_LinearSystems2 @ .
2023/11/27 07:17:39 Processing tag v2.0
2.0: Recording
2023/11/27 07:17:40 Reviewing contents of modelica/Modelica_LinearSystems2
2023/11/27 07:17:40 Repository is a library
Processing library Modelica_LinearSystems2 @ .
Processing: Modelica_Synchronous (https://github.com/modelica/Modelica_Synchronous, fork=false)
2023/11/27 07:17:42 No source for Modelica_Synchronous
2023/11/27 07:17:42 Processing tag v0.93.0
0.93.0: Recording
2023/11/27 07:17:43 Reviewing contents of modelica/Modelica_Synchronous
Processing library Modelica_Synchronous @ Modelica_Synchronous
2023/11/27 07:17:45 Processing tag v0.92.2
0.92.2: Recording
2023/11/27 07:17:46 Reviewing contents of modelica/Modelica_Synchronous
Processing library Modelica_Synchronous @ Modelica_Synchronous
2023/11/27 07:17:48 Processing tag v0.92.1
0.92.1: Recording
2023/11/27 07:17:49 Reviewing contents of modelica/Modelica_Synchronous
2023/11/27 07:17:49 Repository is a library
Processing library Modelica_Synchronous @ .
2023/11/27 07:17:50 Processing tag v0.92
0.92: Recording
2023/11/27 07:17:51 Reviewing contents of modelica/Modelica_Synchronous
2023/11/27 07:17:51 Repository is a library
Processing library Modelica_Synchronous @ .
2023/11/27 07:17:52 Processing tag v0.91
0.91: Recording
2023/11/27 07:17:53 Reviewing contents of modelica/Modelica_Synchronous
2023/11/27 07:17:53 Repository is a library
Processing library Modelica_Synchronous @ .
2023/11/27 07:17:54 Processing tag v0.9
0.9: Recording
2023/11/27 07:17:55 Reviewing contents of modelica/Modelica_Synchronous
2023/11/27 07:17:55 Repository is a library
Processing library Modelica_Synchronous @ .
2023/11/27 07:17:56 Processing tag msl4.0.0-development
msl4.0.0-development: Ignoring
Processing: modrio (https://github.com/modelica/modrio, fork=false)
2023/11/27 07:17:57 No source for modrio
Processing: newsletter (https://github.com/modelica/newsletter, fork=false)
2023/11/27 07:17:58 No source for newsletter
Processing: pde-for-systems (https://github.com/modelica/pde-for-systems, fork=false)
2023/11/27 07:17:59 No source for pde-for-systems
Processing: Reference-FMUs (https://github.com/modelica/Reference-FMUs, fork=false)
2023/11/27 07:18:00 No source for Reference-FMUs
2023/11/27 07:18:01 Processing tag v0.0.27
0.0.27: Recording
2023/11/27 07:18:02 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.27
2023/11/27 07:18:14 Processing tag v0.0.26
0.0.26: Recording
2023/11/27 07:18:14 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.26
2023/11/27 07:18:25 Processing tag v0.0.25
0.0.25: Recording
2023/11/27 07:18:25 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.25
2023/11/27 07:18:36 Processing tag v0.0.24
0.0.24: Recording
2023/11/27 07:18:36 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.24
2023/11/27 07:18:47 Processing tag v0.0.23
0.0.23: Recording
2023/11/27 07:18:47 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.23
2023/11/27 07:18:58 Processing tag v0.0.22
0.0.22: Recording
2023/11/27 07:18:58 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.22
2023/11/27 07:19:09 Processing tag v0.0.21
0.0.21: Recording
2023/11/27 07:19:09 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.21
2023/11/27 07:19:20 Processing tag v0.0.20
0.0.20: Recording
2023/11/27 07:19:21 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.20
2023/11/27 07:19:30 Processing tag v0.0.19
0.0.19: Recording
2023/11/27 07:19:31 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.19
2023/11/27 07:19:41 Processing tag v0.0.18
0.0.18: Recording
2023/11/27 07:19:41 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.18
2023/11/27 07:19:49 Processing tag v0.0.17
0.0.17: Recording
2023/11/27 07:19:50 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.17
2023/11/27 07:19:58 Processing tag v0.0.16
0.0.16: Recording
2023/11/27 07:19:59 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.16
2023/11/27 07:20:07 Processing tag v0.0.15
0.0.15: Recording
2023/11/27 07:20:07 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.15
2023/11/27 07:20:15 Processing tag v0.0.14
0.0.14: Recording
2023/11/27 07:20:15 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.14
2023/11/27 07:20:23 Processing tag v0.0.13
0.0.13: Recording
2023/11/27 07:20:24 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.13
2023/11/27 07:20:32 Processing tag v0.0.12
0.0.12: Recording
2023/11/27 07:20:32 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.12
2023/11/27 07:20:40 Processing tag v0.0.11
0.0.11: Recording
2023/11/27 07:20:41 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.11
2023/11/27 07:20:49 Processing tag v0.0.10
0.0.10: Recording
2023/11/27 07:20:49 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.10
2023/11/27 07:20:57 Processing tag v0.0.9
0.0.9: Recording
2023/11/27 07:20:58 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.9
2023/11/27 07:21:06 Processing tag v0.0.8
0.0.8: Recording
2023/11/27 07:21:07 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.8
2023/11/27 07:21:15 Processing tag v0.0.7
0.0.7: Recording
2023/11/27 07:21:15 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.7
2023/11/27 07:21:25 Processing tag v0.0.6
0.0.6: Recording
2023/11/27 07:21:26 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.6
2023/11/27 07:21:33 Processing tag v0.0.5
0.0.5: Recording
2023/11/27 07:21:34 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.5
2023/11/27 07:21:42 Processing tag v0.0.4
0.0.4: Recording
2023/11/27 07:21:42 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.4
2023/11/27 07:21:50 Processing tag v0.0.3
0.0.3: Recording
2023/11/27 07:21:51 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.3
2023/11/27 07:21:58 Processing tag v0.0.2
0.0.2: Recording
2023/11/27 07:21:59 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.2
2023/11/27 07:22:05 Processing tag v0.0.1
0.0.1: Recording
2023/11/27 07:22:06 Reviewing contents of modelica/Reference-FMUs
No Modelica libraries found in repository Reference-FMUs:0.0.1
Processing: specification.modelica.org (https://github.com/modelica/specification.modelica.org, fork=false)
2023/11/27 07:22:13 No source for specification.modelica.org
Processing: ssp-standard (https://github.com/modelica/ssp-standard, fork=false)
2023/11/27 07:22:14 No source for ssp-standard
2023/11/27 07:22:15 Processing tag v1.0.1
1.0.1: Recording
2023/11/27 07:22:16 Reviewing contents of modelica/ssp-standard
No Modelica libraries found in repository ssp-standard:1.0.1
Processing: ssp-standard-examples (https://github.com/modelica/ssp-standard-examples, fork=false)
2023/11/27 07:22:19 No source for ssp-standard-examples
Processing: ssp-standard.org (https://github.com/modelica/ssp-standard.org, fork=false)
2023/11/27 07:22:20 No source for ssp-standard.org
Processing: VehicleInterfaces (https://github.com/modelica/VehicleInterfaces, fork=false)
2023/11/27 07:22:21 No source for VehicleInterfaces
2023/11/27 07:22:21 Processing tag v2.0.1
2.0.1: Recording
2023/11/27 07:22:22 Reviewing contents of modelica/VehicleInterfaces
Processing library ObsoleteVehicleInterfaces2 @ ObsoleteVehicleInterfaces2.mo
Processing library VehicleInterfaces @ VehicleInterfaces
Processing library VehicleInterfacesTestConversion2 @ VehicleInterfacesTestConversion2.mo
2023/11/27 07:22:28 Processing tag v2.0.0
2.0.0: Recording
2023/11/27 07:22:29 Reviewing contents of modelica/VehicleInterfaces
Processing library ObsoleteVehicleInterfaces2 @ ObsoleteVehicleInterfaces2.mo
Processing library VehicleInterfaces @ VehicleInterfaces
Processing library VehicleInterfacesTestConversion2 @ VehicleInterfacesTestConversion2.mo
2023/11/27 07:22:33 Processing tag v1.2.5
1.2.5: Recording
2023/11/27 07:22:34 Reviewing contents of modelica/VehicleInterfaces
Processing library VehicleInterfaces @ VehicleInterfaces
2023/11/27 07:22:36 Processing tag v1.2.4
1.2.4: Recording
2023/11/27 07:22:36 Reviewing contents of modelica/VehicleInterfaces
Processing library VehicleInterfaces @ VehicleInterfaces
2023/11/27 07:22:38 Processing tag v1.2.3
1.2.3: Recording
2023/11/27 07:22:39 Reviewing contents of modelica/VehicleInterfaces
Processing library VehicleInterfaces @ VehicleInterfaces
2023/11/27 07:22:41 Processing tag v1.2.2
1.2.2: Recording
2023/11/27 07:22:42 Reviewing contents of modelica/VehicleInterfaces
Processing library VehicleInterfaces @ VehicleInterfaces 1.2.2
2023/11/27 07:22:44 Processing tag v1.2.1
1.2.1: Recording
2023/11/27 07:22:44 Reviewing contents of modelica/VehicleInterfaces
Processing library VehicleInterfaces @ VehicleInterfaces 1.2.1
Processing: www.modelica.org (https://github.com/modelica/www.modelica.org, fork=false)
2023/11/27 07:22:47 No source for www.modelica.org
Fetching repositories for modelica-3rdparty
Fetching page 1, 10 entries
Fetching page 2, 10 entries
Fetching page 3, 10 entries
Fetching page 4, 10 entries
Fetching page 5, 10 entries
Fetching page 6, 10 entries
Fetching page 7, 10 entries
Fetching page 8, 10 entries
Fetching page 9, 10 entries
Fetching page 10, 10 entries
Fetching page 11, 10 entries
Fetching page 12, 10 entries
Fetching page 13, 10 entries
Fetching page 14, 2 entries
Fetching page 15, 0 entries
Processing: ADGenKinetics (https://github.com/modelica-3rdparty/ADGenKinetics, fork=true)
2023/11/27 07:23:00 Source for ADGenKinetics exists
2023/11/27 07:23:01 Processing tag v1.0+r23
1.0+r23: Recording
2023/11/27 07:23:01 Reviewing contents of AtiyahElsheikh/ADGenKinetics
Processing library ADGenKinetics @ ADGenKinetics.mo
Processing: ADMSL (https://github.com/modelica-3rdparty/ADMSL, fork=true)
2023/11/27 07:23:04 Source for ADMSL exists
2023/11/27 07:23:04 Processing tag v1.1.0-alpha-Hamburg
1.1.0-alpha-Hamburg: Recording
2023/11/27 07:23:05 Reviewing contents of Mathemodica/ADMSL
2023/11/27 07:23:05 Repository is a library
Processing library ADMSL @ .
2023/11/27 07:23:06 Processing tag v1.0-alpha
1.0-alpha: Recording