-
Notifications
You must be signed in to change notification settings - Fork 8
/
scanlog-3.0-2012-01-12
3980 lines (3980 loc) · 266 KB
/
scanlog-3.0-2012-01-12
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
3depict 0.0.7-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
9menu 1.8-5 OK [REASONS_NOT_COMPUTED]
9menu 1.8-5 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
9wm 1.2-9 OK [REASONS_NOT_COMPUTED]
9wm 1.2-9 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
aalib 1.4p5-39 OK [REASONS_NOT_COMPUTED]
aalib 1.4p5-39 Failed [GCC_ERROR] aalinuxkbd.c:203:2: error: non-void function 'rawmode_init' should return a value [-Wreturn-type]
UNKNOWN [UNKNOWN]
abinit 5.3.4.dfsg-3 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
ace-of-penguins 1.3-5 OK [REASONS_NOT_COMPUTED]
ace-of-penguins 1.3-5 Failed [GCC_ERROR] ./make-imglib.c:205:5: error: non-void function 'tokenize' should return a value [-Wreturn-type]
acedb 4.9.39+dfsg.01-5 OK [REASONS_NOT_COMPUTED]
acedb 4.9.39+dfsg.01-5 Failed [GCC_ERROR] pmapace2.c:91:1: error: 'main' must return 'int'
aces3 3.0.6-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
acfax 981011-14.1 OK [REASONS_NOT_COMPUTED]
acfax 981011-14.1 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
ack 1.39-12 OK [REASONS_NOT_COMPUTED]
ack 1.39-12 Failed [GCC_ERROR] kanjixcheck.c:215:3: error: non-void function 'CodeCheckAll' should return a value [-Wreturn-type]
aconnectgui 0.9.0rc2-1-9 OK [REASONS_NOT_COMPUTED]
aconnectgui 0.9.0rc2-1-9 Failed [UNKNOWN] configure: error: Sufficiently new version of libasound not found.
adabrowse 4.0.3-5 OK [REASONS_NOT_COMPUTED]
adabrowse 4.0.3-5 Failed [CLANG_TIMEOUT] XXX
adacgi 1.6-16 OK [REASONS_NOT_COMPUTED]
adacgi 1.6-16 Failed [CLANG_TIMEOUT] XXX
adacontrol 1.12r4-2 OK [REASONS_NOT_COMPUTED]
adacontrol 1.12r4-2 Failed [CLANG_ERROR/CLANG_TIMEOUT] clang: error: unable to execute command: posix_spawn failed: Cannot allocate memory
adanaxisgpl 1.2.5.dfsg.1-4 OK [REASONS_NOT_COMPUTED]
adanaxisgpl 1.2.5.dfsg.1-4 Failed [GCC_ERROR] ./Mushcore/MushcoreSingleton.h:86:5: error: use of undeclared identifier 'SingletonPtrSet'
adasockets 1.8.9-1 OK [REASONS_NOT_COMPUTED]
adasockets 1.8.9-1 Failed [CLANG_ERROR] clang: error: unable to execute command: posix_spawn failed: Cannot allocate memory
UNKNOWN [UNKNOWN]
adept 3.0~beta7.2+qa1 OK [REASONS_NOT_COMPUTED]
adept 3.0~beta7.2+qa1 Failed [GCC_ERROR] patch.tcc:56:3: error: use of undeclared identifier 'insert'
adios 1.3-7 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
admesh 0.95-11 OK [REASONS_NOT_COMPUTED]
admesh 0.95-11 Failed [GCC_ERROR] admesh.c:30:1: error: 'main' must return 'int'
adplug 2.2.1+dfsg1-1 OK [REASONS_NOT_COMPUTED]
adplug 2.2.1+dfsg1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ../src/.libs/libadplug.so: undefined reference to `OPL_CALC_RH'
UNKNOWN [UNKNOWN]
aesfix 1.0.1-2 OK [REASONS_NOT_COMPUTED]
aesfix 1.0.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
aeskeyfind 1:1.0-1 OK [REASONS_NOT_COMPUTED]
aeskeyfind 1:1.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
aeskulap 0.2.2b1-10 OK [REASONS_NOT_COMPUTED]
aeskulap 0.2.2b1-10 Failed [GCC_ERROR] ./poolinstance.h:53:25: error: no function named 'remove_instance' with type 'void (const Glib::RefPtr<ImagePool::Instance> &)' was found in the specified scope
affiche 0.6.0-8 OK [REASONS_NOT_COMPUTED]
affiche 0.6.0-8 Failed [BUILDDEPS] build-dependency not installable: libgnustep-gui-dev
afpfs-ng 0.8.1-2 OK [REASONS_NOT_COMPUTED]
afpfs-ng 0.8.1-2 Failed [GCC_ERROR] loop.c:90:14: error: non-void function 'just_end_it_now' should return a value [-Wreturn-type]
agave 0.4.7-2.1 OK [REASONS_NOT_COMPUTED]
agave 0.4.7-2.1 Failed [GCC_ERROR] refptr.h:208:16: error: member access into incomplete type 'gcs::PaletteTreeModel'
agda-bin 2.3.0-1 OK [REASONS_NOT_COMPUTED]
agda-bin 2.3.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
agg 2.5+dfsg1-4 OK [REASONS_NOT_COMPUTED]
agg 2.5+dfsg1-4 Failed [GCC_ERROR] ../include/agg_renderer_outline_aa.h:1378:45: error: binding of reference to type 'agg::line_profile_aa' to a value of type 'const agg::line_profile_aa' drops qualifiers
UNKNOWN [UNKNOWN]
ahven 2.1-2 OK [REASONS_NOT_COMPUTED]
ahven 2.1-2 Failed [CLANG_ERROR] clang: error: unable to execute command: posix_spawn failed: Cannot allocate memory
alacarte 0.13.2-3 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
alex4 1.1-5 OK [REASONS_NOT_COMPUTED]
alex4 1.1-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] draw.inl:54: multiple definition of `_allegro_hline'
alex 3.0.1-1 OK [REASONS_NOT_COMPUTED]
alex 3.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
allegro4.2 2:4.2.2-3 OK [REASONS_NOT_COMPUTED]
allegro4.2 2:4.2.2-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./src/i386/asmdef.c:(.text+0x14a4): undefined reference to `_persp_xscale'
alliance 5.0-20110203-4 OK [REASONS_NOT_COMPUTED]
alliance 5.0-20110203-4 Failed [GCC_ERROR] elp.c:252:1: error: non-void function 'elpLotrsShrink' should return a value [-Wreturn-type]
alogg 1.3.7-1.1 OK [REASONS_NOT_COMPUTED]
alogg 1.3.7-1.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] alconfig.h:389: multiple definition of `bmp_read24'
alsa-lib 1.0.24.1-4 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
alsa-plugins 1.0.24-3 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
altermime 0.3.10-7 OK [REASONS_NOT_COMPUTED]
altermime 0.3.10-7 Failed [GCC_ERROR] ffget.c:553:20: error: equality comparison with extraneous parentheses [-Werror,-Wparentheses-equality]
altos 1.0.3 OK [REASONS_NOT_COMPUTED]
altos 1.0.3 Failed [CLANG_ERROR/CLANG_LD_ERROR] ao_flight_test.c:251: undefined reference to `fabs'
amide 1.0.1-1 OK [REASONS_NOT_COMPUTED]
amide 1.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ui_study_cb.c:554: undefined reference to `amitk_space_b2s'
amideco 0.31e-3.1 OK [REASONS_NOT_COMPUTED]
amideco 0.31e-3.1 Failed [GCC_ERROR] amideco.c:45:5: error: first parameter of 'main' (argument count) must be of type 'int'
ampliconnoise 1.25-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
amsynth 1.2.3-3 OK [REASONS_NOT_COMPUTED]
amsynth 1.2.3-3 Failed [GCC_ERROR] exception_catch.h:76:7: error: cannot use 'try' with exceptions disabled
angrydd 1.0.1-8 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
ann 1.1.2+doc-3 OK [REASONS_NOT_COMPUTED]
ann 1.1.2+doc-3 Failed [GCC_ERROR] ann2fig.cpp:583:1: error: C++ requires a type specifier for all declarations
apbs 1.2.1b-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
apertium 3.1.0-1.3 OK [REASONS_NOT_COMPUTED]
apertium 3.1.0-1.3 Failed [GCC_ERROR] hmm.cc:730:23: error: variable length array of non-POD element type 'vector<TTag>'
apparmor 2.7.0~beta1+bzr1774-1 OK [REASONS_NOT_COMPUTED]
apparmor 2.7.0~beta1+bzr1774-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] parser_interface.c:423: undefined reference to `sd_write_name'
apron 0.9.10-5.2 OK [REASONS_NOT_COMPUTED]
apron 0.9.10-5.2 Failed [GCC_ERROR] ppl.hh:14384:15: error: flexible array member 'vec_' of non-POD element type 'Coefficient []'
aprsd 1:2.2.5-13-5.1 OK [REASONS_NOT_COMPUTED]
aprsd 1:2.2.5-13-5.1 Failed [GCC_ERROR] cstring:101:3: error: declaration conflicts with target of using declaration already in scope
aprsdigi 2.4.4-3.1 OK [REASONS_NOT_COMPUTED]
aprsdigi 2.4.4-3.1 Failed [GCC_ERROR] mic_e_test.c:9:1: error: 'main' must return 'int'
aqemu 0.8.2-1 OK [REASONS_NOT_COMPUTED]
aqemu 0.8.2-1 Failed [GCC_ERROR] VM.cpp:4566:75: error: reference to type 'const QString' could not bind to an rvalue of type 'bool'
aqualung 0.9~beta11-1.2 OK [REASONS_NOT_COMPUTED]
aqualung 0.9~beta11-1.2 Failed [GCC_ERROR] gui_main.c:3237:60: error: expected ';' at end of declaration
arbtt 0.6.1-2 OK [REASONS_NOT_COMPUTED]
arbtt 0.6.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
ardour 1:2.8.12-1 OK [REASONS_NOT_COMPUTED]
ardour 1:2.8.12-1 Failed [GCC_ERROR] libs/ardour/session.cc:2153:26: error: 'connecting_legal' is a protected member of 'ARDOUR::IO'
aria2 1.14.1-1 OK [REASONS_NOT_COMPUTED]
aria2 1.14.1-1 Failed [GCC_ERROR] ./util.h:124:16: error: call to function 'stripIter' that is neither visible in the template definition nor found by argument-dependent lookup
arj 3.10.22-10 OK [REASONS_NOT_COMPUTED]
arj 3.10.22-10 Failed [UNKNOWN] XXX
armadillo 1:2.4.2+dfsg-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
arpack++ 2.3-2 OK [REASONS_NOT_COMPUTED]
arpack++ 2.3-2 Failed [BUILDDEPS] unsatisfiable build-dependencies: gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), gfortran, libtool
arpack 3.0.2-3 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
arpon 2.0-2.1 OK [REASONS_NOT_COMPUTED]
arpon 2.0-2.1 Failed [GCC_ERROR] arpon.c:1114:71: error: comparison of unsigned expression < 0 is always false [-Werror,-Wtautological-compare]
arrayprobe 2.0-3.2 OK [REASONS_NOT_COMPUTED]
arrayprobe 2.0-3.2 Failed [GCC_ERROR] include/linux/rcupdate.h:822:2: error: array size is negative
asc 2.4.0.0-1 OK [REASONS_NOT_COMPUTED]
asc 2.4.0.0-1 Failed [GCC_ERROR] ./blitter.h:752:15: error: use of undeclared identifier 'isOpaque'
ascd 0.13.2-5 OK [REASONS_NOT_COMPUTED]
ascd 0.13.2-5 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
ascdc 0.3-14 OK [REASONS_NOT_COMPUTED]
ascdc 0.3-14 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
asclock 2.0.12-19 OK [REASONS_NOT_COMPUTED]
asclock 2.0.12-19 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
asio 1.4.1-3.1 OK [REASONS_NOT_COMPUTED]
asio 1.4.1-3.1 Failed [GCC_ERROR] ./../include/asio/ssl/detail/openssl_stream_service.hpp:117:7: error: use of undeclared identifier 'set_func'
asmon 0.71-4 OK [REASONS_NOT_COMPUTED]
asmon 0.71-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] ../wmgeneral/misc.c:(.text+0x25c): undefined reference to `list_cons'
aspectc++ 1:1.0-4 OK [REASONS_NOT_COMPUTED]
aspectc++ 1:1.0-4 Failed [GCC_ERROR] PtrStack.h:128:10: error: use of undeclared identifier 'lookup'
astk 1.8.4-5 OK [REASONS_NOT_COMPUTED]
astk 1.8.4-5 Failed [BUILDDEPS] unsatisfiable build-dependencies: gmsh, grace, eficas
atftp 0.7.dfsg-11 OK [REASONS_NOT_COMPUTED]
atftp 0.7.dfsg-11 Failed [GCC_ERROR] argz.c:44:8: error: redefinition of a 'extern inline' function 'argz_next' is not supported in C99 mode
atlas 3.8.4-3 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
atom4 4.1-5.1 OK [REASONS_NOT_COMPUTED]
atom4 4.1-5.1 Failed [GCC_ERROR] engine/ai.cc:343:1: error: control reaches end of non-void function [-Werror,-Wreturn-type]
ats-lang-anairiats 0.2.5-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
attica 0.2.0-1 OK [REASONS_NOT_COMPUTED]
attica 0.2.0-1 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibattica0 -Idebian/libattica0.symbols -Pdebian/libattica0 returned exit code 1
auto-multiple-choice 1.0.3-1 OK [REASONS_NOT_COMPUTED]
auto-multiple-choice 1.0.3-1 Failed [GCC_ERROR] AMC-traitement-image.c:228:28: error: expected ';' at end of declaration
UNKNOWN [UNKNOWN]
autofs5 5.0.4-3.2 OK [REASONS_NOT_COMPUTED]
autofs5 5.0.4-3.2 Failed [CLANG_ERROR/CLANG_LD_ERROR] automount.c:(.text+0x101e): undefined reference to `dump_core'
autolog 0.40-13.1 OK [REASONS_NOT_COMPUTED]
autolog 0.40-13.1 Failed [GCC_ERROR] autolog.c:358:2: error: non-void function 'save_users' should return a value [-Wreturn-type]
automake1.10 1:1.10.3-1 OK [REASONS_NOT_COMPUTED]
automake1.10 1:1.10.3-1 Failed [UNKNOWN] XXX
automake1.11 1:1.11.1-1 OK [REASONS_NOT_COMPUTED]
automake1.11 1:1.11.1-1 Failed [UNKNOWN] XXX
autounit 0.20.1-3.1 OK [REASONS_NOT_COMPUTED]
autounit 0.20.1-3.1 Failed [GCC_ERROR] test.c:305:7: error: expected expression
avifile 1:0.7.48~20090503.ds-9.1 OK [REASONS_NOT_COMPUTED]
avifile 1:0.7.48~20090503.ds-9.1 Failed [GCC_ERROR] common/avm_output.cpp:20:12: error: qualified reference to 'AvmOutput' is a constructor name rather than a type wherever a constructor can be declared
awardeco 0.2-3.1 OK [REASONS_NOT_COMPUTED]
awardeco 0.2-3.1 Failed [GCC_ERROR] awardeco.c:37:5: error: first parameter of 'main' (argument count) must be of type 'int'
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
ax25-tools 0.0.8-13.2 OK [REASONS_NOT_COMPUTED]
ax25-tools 0.0.8-13.2 Failed [GCC_ERROR] ./rip98d.h:47:12: error: restrict requires a pointer or reference
babel 1.4.0.dfsg-8 OK [REASONS_NOT_COMPUTED]
babel 1.4.0.dfsg-8 Failed [BUILDDEPS] unsatisfiable build-dependencies: XXX
bandwidthd 2.0.1+cvs20090917-4.1 OK [REASONS_NOT_COMPUTED]
bandwidthd 2.0.1+cvs20090917-4.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] graph.c:73: undefined reference to `HostIp2CharIp'
UNKNOWN [UNKNOWN]
battleball 2.0-17 OK [REASONS_NOT_COMPUTED]
battleball 2.0-17 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
bauble 0.9.7-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
baycomepp 0.10-12.2 OK [REASONS_NOT_COMPUTED]
baycomepp 0.10-12.2 Failed [CLANG_ERROR/CLANG_LD_ERROR] sysdeps.h:214: multiple definition of `gettime'
baycomusb 0.10-12.1 OK [REASONS_NOT_COMPUTED]
baycomusb 0.10-12.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] sysdeps.h:137: multiple definition of `gettime'
bbrun 1.6-6 OK [REASONS_NOT_COMPUTED]
bbrun 1.6-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] misc.c:122: undefined reference to `list_cons'
beanstalkd 1.4.6-3 OK [REASONS_NOT_COMPUTED]
beanstalkd 1.4.6-3 Failed [GCC_ERROR] ./tube.h:38:16: error: field 'buried' with variable sized type 'struct job' not at the end of a struct or class is a GNU extension [-Werror,-Wgnu]
bglibs 1.106-1 OK [REASONS_NOT_COMPUTED]
bglibs 1.106-1 Failed [GCC_ERROR] ./sysdeps.h:94:6: error: conflicting types for 'unsetenv'
bibletime 2.8.1-2 OK [REASONS_NOT_COMPUTED]
bibletime 2.8.1-2 Failed [GCC_ERROR] multimapwdef.h:22:7: error: use of undeclared identifier 'find'
bin-prot 2.0.7-1 OK [REASONS_NOT_COMPUTED]
bin-prot 2.0.7-1 Failed [UNKNOWN] XXX
binstats 1.08-8 OK [REASONS_NOT_COMPUTED]
binstats 1.08-8 Failed [CLANG_ERROR] error: invalid value '6' in '-O6'
binutils-avr 2.20.1-2 OK [REASONS_NOT_COMPUTED]
binutils-avr 2.20.1-2 Failed [CLANG_TIMEOUT] XXX
binutils-h8300-hms 2.16.1-8 OK [REASONS_NOT_COMPUTED]
binutils-h8300-hms 2.16.1-8 Failed [CLANG_TIMEOUT] XXX
binutils-m68hc1x 1:2.18-3.2 OK [REASONS_NOT_COMPUTED]
binutils-m68hc1x 1:2.18-3.2 Failed [CLANG_TIMEOUT] XXX
binutils-msp430 2.21~msp20110716-1 OK [REASONS_NOT_COMPUTED]
binutils-msp430 2.21~msp20110716-1 Failed [CLANG_TIMEOUT] XXX
binutils-z80 2.22-1 OK [REASONS_NOT_COMPUTED]
binutils-z80 2.22-1 Failed [UNKNOWN] XXX
UNKNOWN [UNKNOWN]
biosig4c++ 0.96.3+svn2677-2.1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
bird 1.3.5-1 OK [REASONS_NOT_COMPUTED]
bird 1.3.5-1 Failed [GCC_ERROR] netlink.c:628:10: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
bitcoin 0.4.0-1 OK [REASONS_NOT_COMPUTED]
bitcoin 0.4.0-1 Failed [GCC_ERROR] config_file.hpp:163:17: error: call to function 'to_internal' that is neither visible in the template definition nor found by argument-dependent lookup
UNKNOWN [UNKNOWN]
blacs-pvm 1.1-21 OK [REASONS_NOT_COMPUTED]
blacs-pvm 1.1-21 Failed [BUILDDEPS] build-dependency not installable: gfortran
blas 1.2.20110419-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
blender 2.61-1 OK [REASONS_NOT_COMPUTED]
blender 2.61-1 Failed [GCC_ERROR] string2.h:969:1: error: unknown type name '__extern_inline'
blitz++ 1:0.9-12 OK [REASONS_NOT_COMPUTED]
blitz++ 1:0.9-12 Failed [BUILDDEPS] unsatisfiable build-dependencies: gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), gfortran
blktap 2.0.90-1 OK [REASONS_NOT_COMPUTED]
blktap 2.0.90-1 Failed [GCC_ERROR] vhd-util-read.c:595:3: error: if statement has empty body [-Werror,-Wempty-body]
blobwars 1.19-1 OK [REASONS_NOT_COMPUTED]
blobwars 1.19-1 Failed [GCC_ERROR] src/player.cpp:293:34: error: equality comparison with extraneous parentheses [-Werror,-Wparentheses-equality]
blockattack 1.4.1+ds1-2 OK [REASONS_NOT_COMPUTED]
blockattack 1.4.1+ds1-2 Failed [GCC_ERROR] source/code/physfs_stream.hpp:199:17: error: use of undeclared identifier 'setg'
blueman 1.21-4.1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
bluemon 1.4-6 OK [REASONS_NOT_COMPUTED]
bluemon 1.4-6 Failed [GCC_ERROR] bluetooth-monitor.c:299:10: error: non-void function 'get_link_qual' should return a value [-Wreturn-type]
bluetile 0.5.3-1 OK [REASONS_NOT_COMPUTED]
bluetile 0.5.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
bluez 4.96-3 OK [REASONS_NOT_COMPUTED]
bluez 4.96-3 Failed [GCC_ERROR] compat/pand.c:80:28: error: initializer element is not a compile-time constant
bmagic 3.7.0-1 OK [REASONS_NOT_COMPUTED]
bmagic 3.7.0-1 Failed [GCC_ERROR] bmfunc.h:1817:18: error: call to function 'bit_block_calc_count_range' that is neither visible in the template definition nor found by argument-dependent lookup
bmf 0.9.4-5 OK [REASONS_NOT_COMPUTED]
bmf 0.9.4-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] filt.c:(.text+0x596): undefined reference to `fabs'
bnfc 2.2-3.1 OK [REASONS_NOT_COMPUTED]
bnfc 2.2-3.1 Failed [UNKNOWN] XXX
bobcat 2.21.00-1 OK [REASONS_NOT_COMPUTED]
bobcat 2.21.00-1 Failed [GCC_ERROR] tmp/bobcat/fswap:94:12: error: 'Xch' is a private member of 'FBB::FSwap'
bogl 0.1.18-5 OK [REASONS_NOT_COMPUTED]
bogl 0.1.18-5 Failed [GCC_ERROR] bogl-font.c:83:23: error: expected ';' at end of declaration
bomberclone 0.11.9-3 OK [REASONS_NOT_COMPUTED]
bomberclone 0.11.9-3 Failed [GCC_ERROR] udp.c:268:20: error: comparison of unsigned expression < 0 is always false [-Werror,-Wtautological-compare]
UNKNOWN [UNKNOWN]
botan1.8 1.8.13-4 OK [REASONS_NOT_COMPUTED]
botan1.8 1.8.13-4 Failed [UNKNOWN] XXX
bowtie 0.12.7-1 OK [REASONS_NOT_COMPUTED]
bowtie 0.12.7-1 Failed [GCC_ERROR] ./ebwt.h:3938:11: error: default arguments cannot be added to an out-of-line definition of a member of a class template
boxbackup 0.11.1~r2837-1 OK [REASONS_NOT_COMPUTED]
boxbackup 0.11.1~r2837-1 Failed [GCC_ERROR] stdlib.h:896:12: error: exception specification in declaration does not match previous declaration
brickos 0.9.0.dfsg-6 OK [REASONS_NOT_COMPUTED]
brickos 0.9.0.dfsg-6 Failed [GCC_ERROR] lnp.c:472:5: error: redefinition of a 'extern inline' function 'lnp_integrity_active' is not supported in C99 mode
UNKNOWN [UNKNOWN]
bsnes 0.084-1 OK [REASONS_NOT_COMPUTED]
bsnes 0.084-1 Failed [GCC_ERROR/CLANG_ERROR] ./nall/bit.hpp:6:5: error: types cannot be defined in a constexpr function
btag 1.1.2-1 OK [REASONS_NOT_COMPUTED]
btag 1.1.2-1 Failed [UNKNOWN] XXX
btanks 0.9.8083-3 OK [REASONS_NOT_COMPUTED]
btanks 0.9.8083-3 Failed [GCC_ERROR] engine/sl08/sl08.h:449:105: error: use of undeclared identifier 'connect'
bustle 0.2.5-1 OK [REASONS_NOT_COMPUTED]
bustle 0.2.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
bwa 0.6.1-1 OK [REASONS_NOT_COMPUTED]
bwa 0.6.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] bwt.c:71: undefined reference to `bwt_occ'
bwbasic 2.20pl2-11 OK [REASONS_NOT_COMPUTED]
bwbasic 2.20pl2-11 Failed [GCC_ERROR] bwx_tty.c:69:1: error: 'main' must return 'int'
bwm-ng 0.6-3 OK [REASONS_NOT_COMPUTED]
bwm-ng 0.6-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] bwm-ng.c:212: undefined reference to `get_iface_stats'
c2hs 0.16.3-2 OK [REASONS_NOT_COMPUTED]
c2hs 0.16.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
cadabra 1.29-1 OK [REASONS_NOT_COMPUTED]
cadabra 1.29-1 Failed [GCC_ERROR] ./youngtab.hh:587:23: error: invalid use of nonstatic data member 'rows'
UNKNOWN [UNKNOWN]
calcurse 2.9.2-1 OK [REASONS_NOT_COMPUTED]
calcurse 2.9.2-1 Failed [GCC_ERROR] io.c:1400:3: error: expected ';' at end of declaration
calf 0.0.18.6-3 OK [REASONS_NOT_COMPUTED]
calf 0.0.18.6-3 Failed [GCC_ERROR] ./calf/buffer.h:156:20: error: member reference base type 'const data_type *' (aka 'const typename T::data_type *') is not a structure or union
cameramonitor 0.2-2.1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
canna 3.7p3-6.5 OK [REASONS_NOT_COMPUTED]
canna 3.7p3-6.5 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
car 2.0-11-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
caret 5.6.4~dfsg.1-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
carettah 0.0.7-3 OK [REASONS_NOT_COMPUTED]
carettah 0.0.7-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
catools 1.12-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
cbmc 4.0-4 OK [REASONS_NOT_COMPUTED]
cbmc 4.0-4 Failed [GCC_ERROR] ./numbering.h:32:7: error: use of undeclared identifier 'push_back'
ccbuild 2.0.2-1 OK [REASONS_NOT_COMPUTED]
ccbuild 2.0.2-1 Failed [GCC_ERROR] src/system/dotgraphForAll.cc:50:14: error: redefinition of 'file' with a different type
cccc 1:3.1.4-2 OK [REASONS_NOT_COMPUTED]
cccc 1:3.1.4-2 Failed [GCC_ERROR] ./cccc_tbl.cc:99:7: error: use of undeclared identifier 'erase'
ccrypt 1.9-4 OK [REASONS_NOT_COMPUTED]
ccrypt 1.9-4 Failed [UNKNOWN] XXX
UNKNOWN [UNKNOWN]
cd-hit 4.5.7-1 OK [REASONS_NOT_COMPUTED]
cd-hit 4.5.7-1 Failed [GCC_ERROR] ./cdhit-common.h:95:4: error: use of undeclared identifier 'push_back'
cdck 0.7.0-5 OK [REASONS_NOT_COMPUTED]
cdck 0.7.0-5 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lcposix
cdebootstrap 0.5.8 OK [REASONS_NOT_COMPUTED]
cdebootstrap 0.5.8 Failed [GCC_ERROR] ../../../../src/frontend/standalone/message.c:79:12: error: unused function 'unused' [-Werror,-Wunused-function]
cdecl 2.5-11 OK [REASONS_NOT_COMPUTED]
cdecl 2.5-11 Failed [GCC_ERROR] cdecl.c:244:24: error: expected identifier or '('
cdo 1.5.3.dfsg.1-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
centerim 4.22.10-2 OK [REASONS_NOT_COMPUTED]
centerim 4.22.10-2 Failed [GCC_ERROR] ../../src/icqface.h:248:50: error: invalid storage class specifier in function declarator
cernlib 20061220+dfsg3-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
cfflib 2.0.5-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
chasen 2.4.4-17 OK [REASONS_NOT_COMPUTED]
chasen 2.4.4-17 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibchasen2 -Idebian/libchasen2.symbols -Pdebian/libchasen2 returned exit code 1
checkmp3 1.98-10 OK [REASONS_NOT_COMPUTED]
checkmp3 1.98-10 Failed [CLANG_ERROR/CLANG_LD_ERROR] mp3_check_misc.c:(.text+0x2547): undefined reference to `move_to_next_frame'
checkpw 1.02-1 OK [REASONS_NOT_COMPUTED]
checkpw 1.02-1 Failed [GCC_ERROR] auto-int8.c:16:1: error: 'main' must return 'int'
chiark-tcl 1.1.0+nmu3 OK [REASONS_NOT_COMPUTED]
chiark-tcl 1.1.0+nmu3 Failed [GCC_ERROR] writeable.c:80:15: error: variable 'hd' is uninitialized when used here [-Werror,-Wuninitialized]
chicken 4.7.0-1 OK [REASONS_NOT_COMPUTED]
chicken 4.7.0-1 Failed [CLANG_TIMEOUT] XXX
chillispot 1.0-10.1 OK [REASONS_NOT_COMPUTED]
chillispot 1.0-10.1 Failed [GCC_ERROR] redir.c:1399:21: error: expected ';' at end of declaration
chimera2 2.0a19-6 OK [REASONS_NOT_COMPUTED]
chimera2 2.0a19-6 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
chromium-browser 16.0.912.75~r116452-1 OK [REASONS_NOT_COMPUTED]
chromium-browser 16.0.912.75~r116452-1 Failed [GCC_ERROR] third_party/ots/src/cff_type2_charstring.cc:42:13: error: unused function 'Type2CharStringOperatorToString' [-Werror,-Wunused-function]
UNKNOWN [UNKNOWN]
circuits 1.2.1-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
clam-chordata 1.0.0-2 OK [REASONS_NOT_COMPUTED]
clam-chordata 1.0.0-2 Failed [GCC_ERROR] TypeInfo.hxx:30:27: error: no type named 'type_info' in namespace 'std'
clam-networkeditor 1.4.0-3 OK [REASONS_NOT_COMPUTED]
clam-networkeditor 1.4.0-3 Failed [GCC_ERROR] OutPort.hxx:287:9: error: call to function 'SameType' that is neither visible in the template definition nor found by argument-dependent lookup
clam 1.4.0-5 OK [REASONS_NOT_COMPUTED]
clam 1.4.0-5 Failed [GCC_ERROR] scons/libs/core/include/CLAM/TypeInfo.hxx:30:27: error: no type named 'type_info' in namespace 'std'
clearsilver 0.10.5-1.3 OK [REASONS_NOT_COMPUTED]
clearsilver 0.10.5-1.3 Failed [GCC_ERROR] neo_files.c:219:12: error: expected expression
clisp 1:2.49-8 OK [REASONS_NOT_COMPUTED]
clisp 1:2.49-8 Failed [GCC_ERROR] lispbibl.d:9107:30: error: global register variables are not supported
clthreads 2.4.0-3 OK [REASONS_NOT_COMPUTED]
clthreads 2.4.0-3 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibclthreads2 -Idebian/libclthreads2.symbols.amd64 -Pdebian/libclthreads2 returned exit code 1
UNKNOWN [UNKNOWN]
clutter-gesture 0.0.2.1-5 OK [REASONS_NOT_COMPUTED]
clutter-gesture 0.0.2.1-5 Failed [GCC_ERROR] stroke.c:194:43: error: expected ';' at end of declaration
clxclient 3.6.1-3 OK [REASONS_NOT_COMPUTED]
clxclient 3.6.1-3 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibclxclient3 -Idebian/libclxclient3.symbols.amd64 -Pdebian/libclxclient3 returned exit code 1
cmor 2.8.0-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
cmph 0.9-1 OK [REASONS_NOT_COMPUTED]
cmph 0.9-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./.libs/libcmph.so: undefined reference to `__jenkins_hash_vector'
codeblocks 10.05-2 OK [REASONS_NOT_COMPUTED]
codeblocks 10.05-2 Failed [GCC_ERROR] ../../../../src/include/scripting/squirrel/squtils.h:38:4: error: call to function 'sq_vm_free' that is neither visible in the template definition nor found by argument-dependent lookup
UNKNOWN [UNKNOWN]
coin3 3.1.3-2 OK [REASONS_NOT_COMPUTED]
coin3 3.1.3-2 Failed [CLANG_ERROR] clang: error: the clang compiler does not support '-fno-for-scope'
coinor-cgl 0.55.0-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
coinor-csdp 6.1.1-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
coinutils 2.6.4-3 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
colorname 0.4+dfsg.1-3 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
conduit 0.3.17-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
connectomeviewer 2.0.0-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
cook 2.33-1 OK [REASONS_NOT_COMPUTED]
cook 2.33-1 Failed [UNKNOWN] XXX
coriander 2.0.1-1 OK [REASONS_NOT_COMPUTED]
coriander 2.0.1-1 Failed [UNKNOWN] configure: error: The XV overlay libraries were not found
covered 0.7.10-1 OK [REASONS_NOT_COMPUTED]
covered 0.7.10-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] lxt.c:153: undefined reference to `lxt2_rd_get_num_facs'
cpphs 1.11-4 OK [REASONS_NOT_COMPUTED]
cpphs 1.11-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
cpuburn 1.4a-2 OK [REASONS_NOT_COMPUTED]
cpuburn 1.4a-2 Failed [GCC_ERROR] burnK7.S:83:10: error: unexpected token in '.fill' directive
UNKNOWN [UNKNOWN]
cqrlib 1.1.2-1 OK [REASONS_NOT_COMPUTED]
cqrlib 1.1.2-1 Failed [GCC_ERROR] ./cqrlib.h:576:31: error: member reference base type 'CPPQR<DistanceType, VectorType, MatrixType> *' is not a structure or union
crash 6.0.2-1 OK [REASONS_NOT_COMPUTED]
crash 6.0.2-1 Failed [CLANG_TIMEOUT] XXX
crawl 2:0.9.1-1 OK [REASONS_NOT_COMPUTED]
crawl 2:0.9.1-1 Failed [CLANG_ERROR] error: unknown argument: '-MD'
critterding 1.0-beta12.1-1.1 OK [REASONS_NOT_COMPUTED]
critterding 1.0-beta12.1-1.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] worldb.cpp:118: undefined reference to `omp_init_lock'
crm114 20100106-1 OK [REASONS_NOT_COMPUTED]
crm114 20100106-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] crm_svm_matrix.h:252: undefined reference to `vector_set'
crtmpserver 0.0~dfsg+svn611.1-2 OK [REASONS_NOT_COMPUTED]
crtmpserver 0.0~dfsg+svn611.1-2 Failed [GCC_ERROR/CLANG_ERROR] <command line>:27:10: fatal error: 'common' file not found
UNKNOWN [UNKNOWN]
ctemplate 1.0-1 OK [REASONS_NOT_COMPUTED]
ctemplate 1.0-1 Failed [GCC_ERROR] ./src/base/small_map.h:363:18: error: call to function 'make_pair' that is neither visible in the template definition nor found by argument-dependent lookup
ctn 3.0.6-13 OK [REASONS_NOT_COMPUTED]
ctn 3.0.6-13 Failed [GCC_ERROR] queue.c:256:5: error: non-void function 'queueDisplayImage' should return a value [-Wreturn-type]
ctwm 3.7-3.1 OK [REASONS_NOT_COMPUTED]
ctwm 3.7-3.1 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
curves 0.8.19 OK [REASONS_NOT_COMPUTED]
curves 0.8.19 Failed [GCC_ERROR] ./cvs.h:83:3: error: unknown type name 'VOIDPINT'
cvc3 2.2-13.1 OK [REASONS_NOT_COMPUTED]
cvc3 2.2-13.1 Failed [UNKNOWN] configure: error: Compiler version 3.0 is known to generate bad executables.
cvxopt 1.1.3-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
cwidget 0.5.16-3.1 OK [REASONS_NOT_COMPUTED]
cwidget 0.5.16-3.1 Failed [GCC_ERROR] ../../../src/cwidget/config/keybindings.h:42:5: error: 'key' defined as a struct here but previously declared as a class [-Werror,-Wmismatched-tags]
cxxtools 2.0-4 OK [REASONS_NOT_COMPUTED]
cxxtools 2.0-4 Failed [GCC_ERROR] ../include/cxxtools/iostream.h:59:13: error: use of undeclared identifier 'rdbuf'
cynthiune.app 0.9.5-13 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
cython 0.15.1-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
dancer-ircd 1.0.36-8 OK [REASONS_NOT_COMPUTED]
dancer-ircd 1.0.36-8 Failed [GCC_ERROR] channel.c:564:80: error: unused parameter 'was_kicked' [-Werror,-Wunused-parameter]
dans-gdal-scripts 0.18-1.1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
darktable 0.9.3-1 OK [REASONS_NOT_COMPUTED]
darktable 0.9.3-1 Failed [GCC_ERROR] colormatrices.c:31:34: error: variable 'dt_profiled_colormatrices' is not needed and will not be emitted [-Werror,-Wunneeded-internal-declaration]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
dclock 2.2.2-6 OK [REASONS_NOT_COMPUTED]
dclock 2.2.2-6 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
dcraw 8.99-1 OK [REASONS_NOT_COMPUTED]
dcraw 8.99-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
ddccontrol 0.4.2-10 OK [REASONS_NOT_COMPUTED]
ddccontrol 0.4.2-10 Failed [CLANG_ERROR/CLANG_LD_ERROR] i2c-algo-bit.c:507: undefined reference to `readbytes'
dds2tar 2.5.2-4 OK [REASONS_NOT_COMPUTED]
dds2tar 2.5.2-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
dds 2.1.2+ddd105-1 OK [REASONS_NOT_COMPUTED]
dds 2.1.2+ddd105-1 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
debian-xcontrol 0.0.4-1.1 OK [REASONS_NOT_COMPUTED]
debian-xcontrol 0.0.4-1.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] command.cpp:40: undefined reference to `std::list<std::string, std::allocator<std::string> >::size() const'
deborphan 1.7.28.5 OK [REASONS_NOT_COMPUTED]
deborphan 1.7.28.5 Failed [CLANG_ERROR/CLANG_LD_ERROR] deborphan.c:360: undefined reference to `xrealloc'
debram 1.0.3-0.1 OK [REASONS_NOT_COMPUTED]
debram 1.0.3-0.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] conv.c:131: undefined reference to `unlat1'
debtags 1.8.0 OK [REASONS_NOT_COMPUTED]
debtags 1.8.0 Failed [GCC_ERROR] patch.tcc:56:3: error: use of undeclared identifier 'insert'
desmume 0.9.7-2 OK [REASONS_NOT_COMPUTED]
desmume 0.9.7-2 Failed [GCC_ERROR] agg_renderer_outline_aa.h:1378:45: error: binding of reference to type 'agg::line_profile_aa' to a value of type 'const agg::line_profile_aa' drops qualifiers
devil 1.7.8-6.1 OK [REASONS_NOT_COMPUTED]
devil 1.7.8-6.1 Failed [CLANG_ERROR] error: invalid argument '-std=gnu99' not allowed with 'C++/ObjC++'
UNKNOWN [UNKNOWN]
diagnostics 0.3.3-1.2 OK [REASONS_NOT_COMPUTED]
diagnostics 0.3.3-1.2 Failed [GCC_ERROR] annotations.cpp:46:1: error: unused function 'dummy_for_semicolon_do_not_use' [-Werror,-Wunused-function]
dialign-t 1.0.2-2 OK [REASONS_NOT_COMPUTED]
dialign-t 1.0.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] diag.c:1845: undefined reference to `find_diags_dialign'
dibbler 0.7.3-1.3 OK [REASONS_NOT_COMPUTED]
dibbler 0.7.3-1.3 Failed [GCC_ERROR] ../include/ClntMsgRelease.h:42:39: error: conversion from 'long' to 'SmartPtr<TIPv6Addr>' is ambiguous
dicom3tools 1.0~20111213-1 OK [REASONS_NOT_COMPUTED]
dicom3tools 1.0~20111213-1 Failed [GCC_ERROR] ./Imakefile:160:3: error: invalid preprocessing directive
dietlibc 0.33~cvs20111108-5 OK [REASONS_NOT_COMPUTED]
dietlibc 0.33~cvs20111108-5 Failed [GCC_ERROR] <instantiation>:2:23: error: expected '@' or '%' before type
digikam 2:1.9.0-3 OK [REASONS_NOT_COMPUTED]
digikam 2:1.9.0-3 Failed [GCC_ERROR] iccmanager.h:126:88: error: type 'const Digikam::IccProfile' does not provide a call operator
dimbl 0.11-1 OK [REASONS_NOT_COMPUTED]
dimbl 0.11-1 Failed [UNKNOWN] configure: error: We need OpenMP, please use a recent compiler!
dipy 0.5.0-3 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
discount 2.1.2-2 OK [REASONS_NOT_COMPUTED]
discount 2.1.2-2 Failed [UNKNOWN] XXX
disk-manager 1.1.1-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
disulfinder 1.2.11-2 OK [REASONS_NOT_COMPUTED]
disulfinder 1.2.11-2 Failed [GCC_ERROR] Input/buildXfolds.cpp:16:41: error: variable length array of non-POD element type 'std::vector<std::string>'
dmapi 2.2.10-1 OK [REASONS_NOT_COMPUTED]
dmapi 2.2.10-1 Failed [UNKNOWN] XXX
dmtcp 1.2.1-2 OK [REASONS_NOT_COMPUTED]
dmtcp 1.2.1-2 Failed [CLANG_ERROR] clang: error: unsupported argument '-adhl=mtcp.lis' to option '-Wa,'
dosbox 0.74-2 OK [REASONS_NOT_COMPUTED]
dosbox 0.74-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
dot-forward 1:0.71-1 OK [REASONS_NOT_COMPUTED]
dot-forward 1:0.71-1 Failed [GCC_ERROR] dot-forward.c:382:1: error: 'main' must return 'int'
doxymacs 1.8.0-6 OK [REASONS_NOT_COMPUTED]
doxymacs 1.8.0-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] doxymacs_parser.c:647: undefined reference to `AddToCompletionList'
dragbox 0.4.0-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
dsbltesters 0.9.5-4 OK [REASONS_NOT_COMPUTED]
dsbltesters 0.9.5-4 Failed [GCC_ERROR] httptest.c:41:7: error: conflicting types for 'getline'
dsdp 5.8-9 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
dump 0.4b44-1 OK [REASONS_NOT_COMPUTED]
dump 0.4b44-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ext2fs.h:1686: multiple definition of `ext2fs_div64_ceil'
dvbackup 0.0.4rj1-6.1 OK [REASONS_NOT_COMPUTED]
dvbackup 0.0.4rj1-6.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] rsbep.c:341: undefined reference to `decode_and_write'
dvdisaster 0.72.1-2 OK [REASONS_NOT_COMPUTED]
dvdisaster 0.72.1-2 Failed [UNKNOWN] XXX
dvi2dvi 2.0alpha-9.1 OK [REASONS_NOT_COMPUTED]
dvi2dvi 2.0alpha-9.1 Failed [GCC_ERROR] dviconv.c:119:7: error: non-void function 'dviconv' should return a value [-Wreturn-type]
e2fsprogs 1.42-1 OK [REASONS_NOT_COMPUTED]
e2fsprogs 1.42-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] inode_io.c:(.text+0xe00): multiple definition of `ext2fs_div64_ceil'
e2tools 0.0.16-6.1 OK [REASONS_NOT_COMPUTED]
e2tools 0.0.16-6.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ext2fs.h:1686: multiple definition of `ext2fs_div64_ceil'
e2undel 0.82-1.1 OK [REASONS_NOT_COMPUTED]
e2undel 0.82-1.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ext2fs.h:1686: multiple definition of `ext2fs_div64_ceil'
ebview 0.3.6.2-1.2 OK [REASONS_NOT_COMPUTED]
ebview 0.3.6.2-1.2 Failed [CLANG_ERROR/CLANG_LD_ERROR] dump.c:123: undefined reference to `isjisp'
ecl 11.1.1-4 OK [REASONS_NOT_COMPUTED]
ecl 11.1.1-4 Failed [GCC_ERROR] unixint.d:261:17: error: non-void function 'lisp_signal_handler' should return a value [-Wreturn-type]
effects 2.1.0-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
efibootmgr 0.5.4-2 OK [REASONS_NOT_COMPUTED]
efibootmgr 0.5.4-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] disk.c:154: undefined reference to `get_scsi_pci'
efilinux 0.9-2 OK [REASONS_NOT_COMPUTED]
efilinux 0.9-2 Failed [GCC_ERROR] efibind.h:88:9: error: unknown type name 'uint64_t'
eggdrop 1.6.20-1 OK [REASONS_NOT_COMPUTED]
eggdrop 1.6.20-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] match.c:436: undefined reference to `cron_matchfld'
einstein 2.0.dfsg.2-8 OK [REASONS_NOT_COMPUTED]
einstein 2.0.dfsg.2-8 Failed [CLANG_ERROR] error: invalid value '6' in '-O6'
ekiga 3.2.7-4.1 OK [REASONS_NOT_COMPUTED]
ekiga 3.2.7-4.1 Failed [GCC_ERROR] exception_catch.h:76:7: error: cannot use 'try' with exceptions disabled
elfutils 0.152-1 OK [REASONS_NOT_COMPUTED]
elfutils 0.152-1 Failed [GCC_ERROR] elf_begin.c:632:23: error: comparison of integers of different signs: '__off_t' (aka 'long') and 'size_t' (aka 'unsigned long') [-Werror,-Wsign-compare]
UNKNOWN [UNKNOWN]
emil 2.1.0-beta9.dfsg-1.1 OK [REASONS_NOT_COMPUTED]
emil 2.1.0-beta9.dfsg-1.1 Failed [GCC_ERROR] conv.c:71:1: error: second parameter of 'main' (argument array) must be of type 'char **'
enblend-enfuse 4.0+dfsg-4 OK [REASONS_NOT_COMPUTED]
enblend-enfuse 4.0+dfsg-4 Failed [GCC_ERROR] ../../src/anneal.h:669:19: error: read-only variable is not assignable
enigma 1.10~~pre-alpha+r2210-1 OK [REASONS_NOT_COMPUTED]
enigma 1.10~~pre-alpha+r2210-1 Failed [GCC_ERROR] ./ecl_dict.hh:134:27: error: calling a private constructor of class 'ecl::XInvalidKey'
eog-plugins 3.2.2-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
epcr 2.3.12-2 OK [REASONS_NOT_COMPUTED]
epcr 2.3.12-2 Failed [GCC_ERROR] ./epcr/minilcs.hpp:308:9: error: call to function 'memset' that is neither visible in the template definition nor found by argument-dependent lookup
eq10q 1.2-2 OK [REASONS_NOT_COMPUTED]
eq10q 1.2-2 Failed [GCC_ERROR] pstream.h:1820:28: error: out-of-line definition of 'redi::basic_pstreambuf::wpipe' differs from the declaration in the return type
eris 1.3.14-3 OK [REASONS_NOT_COMPUTED]
eris 1.3.14-3 Failed [GCC_ERROR] polygon_funcs.h:157:10: error: no matching function for call to 'frexp'
erm 0.13-4.1~svn66-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
esperanza 0.4.0+git20091017-2 OK [REASONS_NOT_COMPUTED]
esperanza 0.4.0+git20091017-2 Failed [GCC_ERROR] coll.h:615:6: error: binding of reference to type 'Xmms::Coll::Coll' to a value of type 'const Xmms::Coll::Coll' drops qualifiers
espresso 4.3.2-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
estic 1.61-20 OK [REASONS_NOT_COMPUTED]
estic 1.61-20 Failed [GCC_ERROR] ./coll.h:317:7: error: invalid operands to binary expression ('Stream' and 'u32' (aka 'unsigned int'))
esys-particle 2.1-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
eterm 0.9.5-3 OK [REASONS_NOT_COMPUTED]
eterm 0.9.5-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./.libs/libEterm.so: undefined reference to `svr_get_pty'
UNKNOWN [UNKNOWN]
etw 3.6+svn140-3 OK [REASONS_NOT_COMPUTED]
etw 3.6+svn140-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] loops.c:284: undefined reference to `HandleControl'
eurephia 1.0.1-3 OK [REASONS_NOT_COMPUTED]
eurephia 1.0.1-3 Failed [GCC_ERROR] eurephiadm.c:203:46: error: expected ';' at end of declaration
evolvotron 0.6.1-1 OK [REASONS_NOT_COMPUTED]
evolvotron 0.6.1-1 Failed [UNKNOWN] XXX
exactimage 0.8.5-3 OK [REASONS_NOT_COMPUTED]
exactimage 0.8.5-3 Failed [GCC_ERROR] agg_renderer_outline_aa.h:1378:45: error: binding of reference to type 'agg::line_profile_aa' to a value of type 'const agg::line_profile_aa' drops qualifiers
exaile 0.3.2.2-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
excellent-bifurcation 0.0.20071015-4 OK [REASONS_NOT_COMPUTED]
excellent-bifurcation 0.0.20071015-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] sound.c:(.text+0xc50): multiple definition of `_allegro_hline'
exodusii 5.14.dfsg.1-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
fairymax 4.8q-2 OK [REASONS_NOT_COMPUTED]
fairymax 4.8q-2 Failed [GCC_ERROR] fairymax.c:476:20: error: non-void function 'LoadGame' should return a value [-Wreturn-type]
UNKNOWN [UNKNOWN]
fastforward 1:0.51-3 OK [REASONS_NOT_COMPUTED]
fastforward 1:0.51-3 Failed [GCC_ERROR] fastforward.c:284:1: error: 'main' must return 'int'
UNKNOWN [UNKNOWN]
fbasics 2110.79-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
fbonds 2100.75-3 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
fcopulae 2110.78-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
fdm 1.6+cvs20111013-2 OK [REASONS_NOT_COMPUTED]
fdm 1.6+cvs20111013-2 Failed [CLANG_ERROR] clang: error: '-I-' not supported, please use -iquote instead
UNKNOWN [UNKNOWN]
ferret-vis 6.6.2-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
festival 1:2.1~release-3 OK [REASONS_NOT_COMPUTED]
festival 1:2.1~release-3 Failed [GCC_ERROR] EST_TIterator.h:212:7: error: use of undeclared identifier 'begin'
fgarch 2110.80-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
fhist 1.18-1 OK [REASONS_NOT_COMPUTED]
fhist 1.18-1 Failed [GCC_ERROR] common/input.c:34:1: error: redefinition of a 'extern inline' function 'input_name' is not supported in C99 mode
UNKNOWN [UNKNOWN]
filtergen 0.12.4-5.1 OK [REASONS_NOT_COMPUTED]
filtergen 0.12.4-5.1 Failed [GCC_ERROR] fg-iptables.c:338:2: error: use of GNU old-style field designator extension [-Werror,-Wgnu-designator]
filters 2.48 OK [REASONS_NOT_COMPUTED]
filters 2.48 Failed [GCC_ERROR] cockney.l:21:12: error: expected ';' at end of declaration
fimport 2110.79-3 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
firebird2.1 2.1.4.18393-0.ds2-6 OK [REASONS_NOT_COMPUTED]
firebird2.1 2.1.4.18393-0.ds2-6 Failed [GCC_ERROR] ../src/include/../common/classes/alloc.h:435:14: error: exception specification in declaration does not match previous declaration
flasm 1.62-6 OK [REASONS_NOT_COMPUTED]
flasm 1.62-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] lex.yy.c:(.text+0xc56): undefined reference to `newLine'
fldigi 3.21.34-1 OK [REASONS_NOT_COMPUTED]
fldigi 3.21.34-1 Failed [GCC_ERROR] throb/throb.cxx:413:16: error: variable length array of non-POD element type 'complex'
flexml 1.9.2-1 OK [REASONS_NOT_COMPUTED]
flexml 1.9.2-1 Failed [UNKNOWN] XXX
flint 1.011-2 OK [REASONS_NOT_COMPUTED]
flint 1.011-2 Failed [GCC_ERROR] QS/mpQS.c:403:5: error: second parameter of 'main' (argument array) must be of type 'char **'
floatbg 1.0-28 OK [REASONS_NOT_COMPUTED]
floatbg 1.0-28 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
flow-tools 1:0.68-12 OK [REASONS_NOT_COMPUTED]
flow-tools 1:0.68-12 Failed [CLANG_ERROR/CLANG_LD_ERROR] ftfil.c:3094: undefined reference to `eval_match_src_as'
flowscan 1.006-13 OK [REASONS_NOT_COMPUTED]
flowscan 1.006-13 Failed [UNKNOWN] configure: error: Please change /etc/services so that the service name for 80/tcp is www with alias http
fltk1.3 1.3.0-5 OK [REASONS_NOT_COMPUTED]
fltk1.3 1.3.0-5 Failed [GCC_ERROR] Fl_x.cxx:1861:31: error: 'FORCE_POSITION' is a protected member of 'Fl_Widget'
flush 0.9.11-2 OK [REASONS_NOT_COMPUTED]
flush 0.9.11-2 Failed [GCC_ERROR] format.cpp:180:28: error: call to '_F' is ambiguous
fmultivar 2100.76-3 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
fonts-hosny-amiri 0.101-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
fonttools 2.3-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
foptions 2140.79-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
fort77 1.15-8 OK [REASONS_NOT_COMPUTED]
fort77 1.15-8 Failed [UNKNOWN] XXX
fossology 1.2.0-3.1 OK [REASONS_NOT_COMPUTED]
fossology 1.2.0-3.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] scheduler.c:296: undefined reference to `DBLockAccess'
foundry 0.0.20100226-1 OK [REASONS_NOT_COMPUTED]
foundry 0.0.20100226-1 Failed [GCC_ERROR] ./tree_bison_tree.hpp:93:1: error: 'node_const_visitor' defined as a class here but previously declared as a struct [-Werror,-Wmismatched-tags]
fparser 4.3-3 OK [REASONS_NOT_COMPUTED]
fparser 4.3-3 Failed [GCC_ERROR] ./fpaux.hh:75:29: error: call to function 'fp_sqrt' that is neither visible in the template definition nor found by argument-dependent lookup
fplll 2.1.6+20071129-2.1 OK [REASONS_NOT_COMPUTED]
fplll 2.1.6+20071129-2.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] .libs/dummy.o: could not read symbols: Bad value
fracplanet 0.4.0-1.1 OK [REASONS_NOT_COMPUTED]
fracplanet 0.4.0-1.1 Failed [UNKNOWN] XXX
freebsd-buildutils 9.0-2 OK [REASONS_NOT_COMPUTED]
freebsd-buildutils 9.0-2 Failed [GCC_ERROR] stdio.h:80:20: error: redefinition of typedef 'va_list' is invalid in C [-Wtypedef-redefinition]
freecdb 0.75 OK [REASONS_NOT_COMPUTED]
freecdb 0.75 Failed [CLANG_ERROR/CLANG_LD_ERROR] cdbmake.c:97: undefined reference to `getch'
freecraft 1:1.20-1 OK [REASONS_NOT_COMPUTED]
freecraft 1:1.20-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] stdafx.h:90: multiple definition of `MulDiv'
freefem3d 1.0pre10-3 OK [REASONS_NOT_COMPUTED]
freefem3d 1.0pre10-3 Failed [GCC_ERROR] ../solver/ConformTransformation.hpp:590:15: error: no member named 'gaussPivot' in the global namespace
freehdl 0.0.7-1.1 OK [REASONS_NOT_COMPUTED]
freehdl 0.0.7-1.1 Failed [GCC_ERROR] ../freehdl/std-vhdl-types.hh:1486:58: error: called object type 'int' is not a function or function pointer
freesci 0.6.4-7 OK [REASONS_NOT_COMPUTED]
freesci 0.6.4-7 Failed [CLANG_ERROR/CLANG_LD_ERROR] fmopl.c:784: undefined reference to `set_mul'
freetype 2.4.8-1 OK [REASONS_NOT_COMPUTED]
freetype 2.4.8-1 Failed [GCC_ERROR] ttload.c:550:9: error: using extended field designator is an extension [-Werror,-pedantic]
frog 0.12.6-4 OK [REASONS_NOT_COMPUTED]
frog 0.12.6-4 Failed [UNKNOWN] configure: error: We need OpenMP, please use a recent compiler!
frozen-bubble 2.2.0-2 OK [REASONS_NOT_COMPUTED]
frozen-bubble 2.2.0-2 Failed [GCC_ERROR] fb_c_stuff.xs:99:23: error: expected ';' at end of declaration
fstrcmp 0.4.D001-1 OK [REASONS_NOT_COMPUTED]
fstrcmp 0.4.D001-1 Failed [GCC_ERROR] lib/ac/string.c:57:22: error: redefinition of 'sys_errlist' with a different type
fsvs 1.1.17-1.2 OK [REASONS_NOT_COMPUTED]
fsvs 1.1.17-1.2 Failed [GCC_ERROR/CLANG_ERROR] ./global.h:19:10: fatal error: 'apr_md5.h' file not found
fte 0.50.2b6-1 OK [REASONS_NOT_COMPUTED]
fte 0.50.2b6-1 Failed [GCC_ERROR] con_linux.cpp:434:12: error: variable length array of non-POD element type 'TCell'
ftphs 1.0.7-3 OK [REASONS_NOT_COMPUTED]
ftphs 1.0.7-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
ftrading 2100.76-3 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
fvwm1 1.24r-55 OK [REASONS_NOT_COMPUTED]
fvwm1 1.24r-55 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
fwbuilder 5.0.0-1 OK [REASONS_NOT_COMPUTED]
fwbuilder 5.0.0-1 Failed [GCC_ERROR] CompilerDriver_ipt_run.cpp:655:19: error: reference to overloaded function could not be resolved; did you mean to call it?
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
galib 2.4.7-3 OK [REASONS_NOT_COMPUTED]
galib 2.4.7-3 Failed [GCC_ERROR] ../../ga/../ga/GA1DArrayGenome.C:225:3: error: use of undeclared identifier 'initializer'
galternatives 0.13.5+nmu2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gambc 4.2.8-1.1 OK [REASONS_NOT_COMPUTED]
gambc 4.2.8-1.1 Failed [CLANG_TIMEOUT] XXX
gambit 0.2010.09.01-1 OK [REASONS_NOT_COMPUTED]
gambit 0.2010.09.01-1 Failed [GCC_ERROR] src/libgambit/matrix.imp:354:8: error: use of undeclared identifier 'CheckBounds'
game-music-emu 0.5.5-2 OK [REASONS_NOT_COMPUTED]
game-music-emu 0.5.5-2 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibgme0 -Idebian/libgme0.symbols -Pdebian/libgme0 -c4 returned exit code 2
ganeti-htools 0.3.1-2 OK [REASONS_NOT_COMPUTED]
ganeti-htools 0.3.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x1d1): undefined reference to `base_GHCziStable_StablePtr_con_info'
gap 4r4p12-2 OK [REASONS_NOT_COMPUTED]
gap 4r4p12-2 Failed [CLANG_TIMEOUT] XXX
garden-of-coloured-lights 1.0.8-1 OK [REASONS_NOT_COMPUTED]
garden-of-coloured-lights 1.0.8-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ../src/enemy.c:(.text+0x6cc2): undefined reference to `ypart'
gargoyle-free 2010.1-2 OK [REASONS_NOT_COMPUTED]
gargoyle-free 2010.1-2 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] terps/nitfol/op_math.c:(.text+0x2d): undefined reference to `set_var'
gauche-c-wrapper 0.6.1-4.1 OK [REASONS_NOT_COMPUTED]
gauche-c-wrapper 0.6.1-4.1 Failed [CLANG_ERROR] clang: error: unable to execute command: Broken pipe
gauche 0.9.1-5 OK [REASONS_NOT_COMPUTED]
gauche 0.9.1-5 Unknown [TIMEOUT]
gbatnav 1.0.4cvs20051004-5 OK [REASONS_NOT_COMPUTED]
gbatnav 1.0.4cvs20051004-5 Failed [GCC_ERROR] play.c:509:3: error: non-void function 'lookup_funcion' should return a value [-Wreturn-type]
gbirthday 0.6.5-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gbsplay 0.0.91-1 OK [REASONS_NOT_COMPUTED]
gbsplay 0.0.91-1 Failed [UNKNOWN] XXX
gcc-3.3 1:3.3.6ds1-25 OK [REASONS_NOT_COMPUTED]
gcc-3.3 1:3.3.6ds1-25 Failed [CLANG_TIMEOUT] XXX
gcc-avr 1:4.5.3-3 OK [REASONS_NOT_COMPUTED]
gcc-avr 1:4.5.3-3 Failed [CLANG_TIMEOUT] bash: debian/runcheck.sh: No such file or directory
gcc-h8300-hms 1:3.4.6-7 OK [REASONS_NOT_COMPUTED]
gcc-h8300-hms 1:3.4.6-7 Failed [CLANG_TIMEOUT] XXX
gcc-m68hc1x 1:3.3.6+3.1+dfsg-3 OK [REASONS_NOT_COMPUTED]
gcc-m68hc1x 1:3.3.6+3.1+dfsg-3 Failed [CLANG_TIMEOUT] cp: cannot create regular file `/usr/m68hc11/sys-include/_inst.10223_': No such file or directory
gcc-mingw-w64 2 OK [REASONS_NOT_COMPUTED]
gcc-mingw-w64 2 Failed [CLANG_TIMEOUT] ./genfixes: 1: ./genfixes: autogen: not found
gcc-mingw32 4.4.4-1 OK [REASONS_NOT_COMPUTED]
gcc-mingw32 4.4.4-1 Failed [CLANG_TIMEOUT] XXX
gcc-msp430 4.5.3~mspgcc-20110716-3 OK [REASONS_NOT_COMPUTED]
gcc-msp430 4.5.3~mspgcc-20110716-3 Failed [CLANG_TIMEOUT] XXX
gcc-snapshot 20120105-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gccxml 0.9.0+cvs20111013-1 OK [REASONS_NOT_COMPUTED]
gccxml 0.9.0+cvs20111013-1 Failed [GCC_ERROR] genmodes.c:829:28: error: use of '%n' in format string discouraged (potentially insecure) [-Werror,-Wformat-security]
gcj-4.4 4.4.6-11 OK [REASONS_NOT_COMPUTED]
gcj-4.4 4.4.6-11 Failed [BUILDDEPS] unsatisfiable build-dependencies: gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), g++-multilib, libtool
gco 0.5.0-6 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
gdal 1.7.3-6 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gdata 2.8.2-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gdb-avr 7.2-1 OK [REASONS_NOT_COMPUTED]
gdb-avr 7.2-1 Failed [CLANG_TIMEOUT] XXX
gdb-msp430 7.2~mspgcc-7.2-20110612-1 OK [REASONS_NOT_COMPUTED]
gdb-msp430 7.2~mspgcc-7.2-20110612-1 Failed [CLANG_TIMEOUT] XXX
gdc-4.4 1.063-4.4.6-10 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gdcm 2.0.19-3 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gdesklets 0.36.1-5 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gdigi 0.2.0+hg20110905r195-1 OK [REASONS_NOT_COMPUTED]
gdigi 0.2.0+hg20110905r195-1 Failed [GCC_ERROR/CLANG_ERROR] gui.c:24:10: fatal error: 'knob.h' file not found
geda-xgsch2pcb 0.1.3-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
geki2 2.0.3-8 OK [REASONS_NOT_COMPUTED]
geki2 2.0.3-8 Failed [GCC_ERROR] ranking.c:18:5: error: non-void function 'ScoreRanking' should return a value [-Wreturn-type]
geki3 1.0.3-7 OK [REASONS_NOT_COMPUTED]
geki3 1.0.3-7 Failed [GCC_ERROR] ranking.c:18:5: error: non-void function 'ScoreRanking' should return a value [-Wreturn-type]
genius 1.0.14-1 OK [REASONS_NOT_COMPUTED]
genius 1.0.14-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] gtkplot3d.c:1749: undefined reference to `roundint'
geos 3.2.2-3 OK [REASONS_NOT_COMPUTED]
geos 3.2.2-3 Failed [GCC_ERROR] OverlayNodeFactory.cpp:31:33: error: default initialization of an object of const type 'const geos::operation::overlay::OverlayNodeFactory' requires a user-provided default constructor
getdp 2.1.0-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
getfem++ 4.1.1-5 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gexiv2 0.2.2-6 OK [REASONS_NOT_COMPUTED]
gexiv2 0.2.2-6 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibgexiv2-0 -Idebian/libgexiv2-0.symbols.amd64 -Pdebian/libgexiv2-0 returned exit code 1
gfccore 2.3.1-7.1 OK [REASONS_NOT_COMPUTED]
gfccore 2.3.1-7.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] .libs/object.o: could not read symbols: Bad value
gfcui 2.3.1-8.1 OK [REASONS_NOT_COMPUTED]
gfcui 2.3.1-8.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] .libs/main.o: could not read symbols: Bad value
gforth 0.7.0+ds1-6 OK [REASONS_NOT_COMPUTED]
gforth 0.7.0+ds1-6 Failed [UNKNOWN] make[1]: emacs: Command not found
UNKNOWN [UNKNOWN]
ggobi 2.1.10-4 OK [REASONS_NOT_COMPUTED]
ggobi 2.1.10-4 Failed [GCC_ERROR] ggobi-data.c:45:7: error: #line directive requires a positive integer argument
ggz-client-libs 0.0.14.1-1.1 OK [REASONS_NOT_COMPUTED]
ggz-client-libs 0.0.14.1-1.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] .libs/libggzcore_la-conf.o: could not read symbols: Bad value
ghc-mod 1.0.5-1 OK [REASONS_NOT_COMPUTED]
ghc-mod 1.0.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
gimp-plugin-registry 3.5.4-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
git-annex 3.20120106 OK [REASONS_NOT_COMPUTED]
git-annex 3.20120106 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
gitg 0.2.4-1 OK [REASONS_NOT_COMPUTED]
gitg 0.2.4-1 Failed [GCC_ERROR] gitg-blame-renderer.c:169:58: error: implicit conversion from enumeration type 'GtkStateType' to different enumeration type 'GtkStateFlags' [-Werror,-Wconversion]
gitit 0.8.1-1 OK [REASONS_NOT_COMPUTED]
gitit 0.8.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
glade-3 3.6.7-2 OK [REASONS_NOT_COMPUTED]
glade-3 3.6.7-2 Failed [BUILDDEPS] build-dependency not installable: python-gtk2-dev (>= 2.10.0)
gle-graphics 4.2.3b-2 OK [REASONS_NOT_COMPUTED]
gle-graphics 4.2.3b-2 Failed [GCC_ERROR] ./../gle-interface/gle-base.h:133:29: error: use of undeclared identifier 'push_back'
UNKNOWN [UNKNOWN]
gliv 1.9.7-2 OK [REASONS_NOT_COMPUTED]
gliv 1.9.7-2 Failed [GCC_ERROR] gliv-image.c:55:7: error: #line directive requires a positive integer argument
glob2 0.9.4.4-2.1 OK [REASONS_NOT_COMPUTED]
glob2 0.9.4.4-2.1 Failed [GCC_ERROR] src/AICastor.cpp:2296:23: error: 'BuildProject' is a private member of 'Game'
gltron 0.70final-10 OK [REASONS_NOT_COMPUTED]
gltron 0.70final-10 Failed [GCC_ERROR] event.c:392:44: error: if statement has empty body [-Werror,-Wempty-body]
gmemusage 0.2-11 OK [REASONS_NOT_COMPUTED]
gmemusage 0.2-11 Failed [GCC_ERROR] gmemusage.c:98:1: error: 'main' must return 'int'
gmerlin-avdecoder 1.1.0~dfsg-3 OK [REASONS_NOT_COMPUTED]
gmerlin-avdecoder 1.1.0~dfsg-3 Failed [GCC_ERROR] demux_wve.c:30:33: error: empty character constant
UNKNOWN [UNKNOWN]
gmodels 2.15.1-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gmpc-plugins 11.8.16-1 OK [REASONS_NOT_COMPUTED]
gmpc-plugins 11.8.16-1 Failed [GCC_ERROR] gmpc-mpddata-model-tagedit.c:53:7: error: #line directive requires a positive integer argument
UNKNOWN [UNKNOWN]
gmysqlcc 0.3.0-2 OK [REASONS_NOT_COMPUTED]
gmysqlcc 0.3.0-2 Failed [GCC_ERROR] gmlc_gui_server_tab_data.c:678:82: error: expected ';' at end of declaration
gnade 1.6.2-9 OK [REASONS_NOT_COMPUTED]
gnade 1.6.2-9 Failed [CLANG_TIMEOUT] XXX
gnats 4.1.0-2 OK [REASONS_NOT_COMPUTED]
gnats 4.1.0-2 Failed [GCC_ERROR] <stdout>:2453:17: error: conflicting types for 'yy_scan_string'
gngb 20060309-3 OK [REASONS_NOT_COMPUTED]
gngb 20060309-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] interrupt.c:237: undefined reference to `get_nb_spr'
gnokii 0.6.30+dfsg-1 OK [REASONS_NOT_COMPUTED]
gnokii 0.6.30+dfsg-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] xgnokii.c:1187: undefined reference to `GUI_HideAbout'
gnome-blog 0.9.1-5 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gnome-orca 2.30.2-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gnome-osd 0.12.2-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
gnome-scan 0.6.2-1 Failed [GCC_ERROR] gnome-scan-dialog.c:565:13: error: format not a string literal and no format arguments [-Werror=format-security]
gnome-scan 0.6.2-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gnucap 1:0.36~20091207-2 OK [REASONS_NOT_COMPUTED]
gnucap 1:0.36~20091207-2 Failed [GCC_ERROR] ./mg_.h:134:19: error: variable has incomplete type 'C_Comment'
gnudatalanguage 0.9.2-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gnugk 2:3.0-20111123~dfsg-1 OK [REASONS_NOT_COMPUTED]
gnugk 2:3.0-20111123~dfsg-1 Failed [GCC_ERROR] array.h:526:9: error: use of undeclared identifier 'SetAt'
gnuift 0.1.14-11 OK [REASONS_NOT_COMPUTED]
gnuift 0.1.14-11 Failed [GCC_ERROR] perl-compile-test-program.cc:71:3: error: use of undeclared identifier 'my_perl'
UNKNOWN [UNKNOWN]
gnupg 1.4.11-3 OK [REASONS_NOT_COMPUTED]
gnupg 1.4.11-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] mpi-inline.h:68: multiple definition of `mpihelp_add'
UNKNOWN [UNKNOWN]
gnustep-dl2 0.12.0-8 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
gobby 0.4.12-2 OK [REASONS_NOT_COMPUTED]
gobby 0.4.12-2 Failed [GCC_ERROR] ./inc/config.hpp:463:7: error: explicit specialization of 'serialise::default_context_to<Glib::ustring>' after instantiation
golang-weekly 2011.09.21-1 OK [REASONS_NOT_COMPUTED]
golang-weekly 2011.09.21-1 Failed [UNKNOWN] XXX
golang 1:60.3-1 OK [REASONS_NOT_COMPUTED]
golang 1:60.3-1 Failed [GCC_ERROR] executable.c:787:25: error: argument to 'sizeof' in 'memset' call is the same expression as the destination; did you mean to provide an explicit length? [-Werror,-Wsizeof-pointer-memaccess]
google-gadgets 0.11.2-5 OK [REASONS_NOT_COMPUTED]
google-gadgets 0.11.2-5 Failed [GCC_ERROR] ./scriptable_enumerator.h:71:5: error: use of undeclared identifier 'RegisterMethod'
google-glog 0.3.1-2 OK [REASONS_NOT_COMPUTED]
google-glog 0.3.1-2 Failed [GCC_ERROR] src/logging.cc:1246:8: error: cannot initialize a variable of type 'void (*)() __attribute__((noreturn))' with an rvalue of type 'void (*)()'
goplay 0.4-1 OK [REASONS_NOT_COMPUTED]
goplay 0.4-1 Failed [GCC_ERROR] engine.h:153:24: error: calling a protected constructor of class 'wibble::commandline::OptionGroup'
UNKNOWN [UNKNOWN]
gosmore 0.0.0.20100711-2 OK [REASONS_NOT_COMPUTED]
gosmore 0.0.0.20100711-2 Failed [GCC_ERROR] libgosm.cpp:147:53: error: expected ')'
gource 0.37-2 OK [REASONS_NOT_COMPUTED]
gource 0.37-2 Failed [GCC_ERROR] src/core/utf8/checked.h:82:21: error: call to function 'append' that is neither visible in the template definition nor found by argument-dependent lookup
UNKNOWN [UNKNOWN]
gpe-bluetooth 0.56-3 OK [REASONS_NOT_COMPUTED]
gpe-bluetooth 0.56-3 Failed [GCC_ERROR] main.c:63:21: error: initializer element is not a compile-time constant
gpe-calendar 0.92-4 OK [REASONS_NOT_COMPUTED]
gpe-calendar 0.92-4 Failed [GCC_ERROR] calendars-widgets.c:711:38: error: expected ';' at end of declaration
gpe-timesheet 0.32-2 OK [REASONS_NOT_COMPUTED]
gpe-timesheet 0.32-2 Failed [GCC_ERROR] sql.c:531:9: error: non-void function 'find_children_cb' should return a value [-Wreturn-type]
gpiv 0.6.1-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gpivtools 0.6.0-1.1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gplots 2.10.1-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gpm 1.20.4-4 OK [REASONS_NOT_COMPUTED]
gpm 1.20.4-4 Failed [GCC_ERROR/CLANG_ERROR] prog/display-buttons.c:39:10: fatal error: 'gpm.h' file not found
gprolog 1.3.0-6.1 OK [REASONS_NOT_COMPUTED]
gprolog 1.3.0-6.1 Failed [UNKNOWN] XXX
gpsd 3.3-5 Failed [LD_ERROR] gpsclient.c:33: undefined reference to `Py_BuildValue'
gpsd 3.3-5 OK [REASONS_NOT_COMPUTED]
gpsshogi 0.4.2-1 OK [REASONS_NOT_COMPUTED]
gpsshogi 0.4.2-1 Failed [BUILDDEPS] build-dependency not installable: libboost1.46-all-dev
UNKNOWN [UNKNOWN]
grads 2.0.a9-4 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
gramophone2 0.8.13a-1 OK [REASONS_NOT_COMPUTED]
gramophone2 0.8.13a-1 Failed [GCC_ERROR] midifile.c:159:3: error: non-void function 'readheader' should return a value [-Wreturn-type]
gramps 3.3.1-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
granule 1.3.0-1 OK [REASONS_NOT_COMPUTED]
granule 1.3.0-1 Failed [GCC_ERROR] Granule.cpp:58:1: error: extraneous 'template<>' in declaration of variable 'm_default_entity_loader'
graphite2 1.0.3.real-1 OK [REASONS_NOT_COMPUTED]
graphite2 1.0.3.real-1 Failed [UNKNOWN] XXX
grcm 0.1.6-1 OK [REASONS_NOT_COMPUTED]
grcm 0.1.6-1 Failed [GCC_ERROR] callbacks.c:134:4: error: non-void function 'on_ConnectionsWindow_delete_event' should return a value [-Wreturn-type]
gregmisc 2.1.2-2 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
gringo 3.0.3-7 OK [REASONS_NOT_COMPUTED]
gringo 3.0.3-7 Failed [CLANG_ERROR] clang: error: no such file or directory: '/c'
grml2usb 0.11.5 OK [REASONS_NOT_COMPUTED]
grml2usb 0.11.5 Failed [GCC_ERROR] mbr.S:32:9: error: .code16 not supported yet
gromacs 4.5.5-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
grub2 1.99-14 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
gsmartcontrol 0.8.6-1 OK [REASONS_NOT_COMPUTED]
gsmartcontrol 0.8.6-1 Failed [GCC_ERROR] ./gsc_text_window.h:129:4: error: use of undeclared identifier 'destroy'
UNKNOWN [UNKNOWN]
gtimer 2.0.0-1 OK [REASONS_NOT_COMPUTED]
gtimer 2.0.0-1 Failed [GCC_ERROR] custom-list.c:613:3: error: non-void function 'custom_list_append_record' should return a value [-Wreturn-type]
UNKNOWN [UNKNOWN]
UNKNOWN [UNKNOWN]
gtk2hs-buildtools 0.12.1-1 OK [REASONS_NOT_COMPUTED]
gtk2hs-buildtools 0.12.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
gtkmathview 0.8.0-7 OK [REASONS_NOT_COMPUTED]
gtkmathview 0.8.0-7 Failed [GCC_ERROR] ../../../src/frontend/common/TemplateBuilder.hh:54:42: error: redefinition of 'elem'
UNKNOWN [UNKNOWN]
guile-gnome-platform 2.16.1-6.1 OK [REASONS_NOT_COMPUTED]
guile-gnome-platform 2.16.1-6.1 Failed [UNKNOWN] XXX
guiqwt 2.1.6-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
gwc 0.21.16~dfsg-3 OK [REASONS_NOT_COMPUTED]
gwc 0.21.16~dfsg-3 Failed [CLANG_ERROR] error: invalid value '6' in '-O6'
gworkspace 0.8.8-1 OK [REASONS_NOT_COMPUTED]
gworkspace 0.8.8-1 Failed [BUILDDEPS] unsatisfiable build-dependencies: gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), libgnustep-gui-dev (>= 0.12.0), libpopplerkit-dev
gxneur 0.15.0-2 OK [REASONS_NOT_COMPUTED]
gxneur 0.15.0-2 Failed [GCC_ERROR] misc.c:100:20: error: variable 'all_modifiers' is not needed and will not be emitted [-Werror,-Wunneeded-internal-declaration]
h323plus 1.21.0~dfsg-1 OK [REASONS_NOT_COMPUTED]
h323plus 1.21.0~dfsg-1 Failed [GCC_ERROR] array.h:526:9: error: use of undeclared identifier 'SetAt'
h5py 2.0.1-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
h5utils 1.12.1-1 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
haildb 2.3.2-1 Failed [UNKNOWN] XXX
haildb 2.3.2-1 OK [REASONS_NOT_COMPUTED]
handlersocket 1.0.6-80-g88bf1e0-1 OK [REASONS_NOT_COMPUTED]
handlersocket 1.0.6-80-g88bf1e0-1 Failed [GCC_ERROR] HandlerSocket.xs:497:19: error: variable length array of non-POD element type 'execute_arg'
happy 1.18.6-1 OK [REASONS_NOT_COMPUTED]
happy 1.18.6-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
hardinfo 0.5.1-1.2 OK [REASONS_NOT_COMPUTED]
hardinfo 0.5.1-1.2 Failed [CLANG_ERROR/CLANG_LD_ERROR] shell.c:1005: undefined reference to `strend'
harminv 1.3.1-8 OK [REASONS_NOT_COMPUTED]
UNKNOWN [UNKNOWN]
haskell-aeson 0.3.2.11-1 OK [REASONS_NOT_COMPUTED]
haskell-aeson 0.3.2.11-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-alut 2.1.0.2-3 OK [REASONS_NOT_COMPUTED]
haskell-alut 2.1.0.2-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-arrows 0.4.4.0-1 OK [REASONS_NOT_COMPUTED]
haskell-arrows 0.4.4.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-attempt 0.3.1.1-1 OK [REASONS_NOT_COMPUTED]
haskell-attempt 0.3.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-attoparsec-text-enumerator 0.2.0.0-2 OK [REASONS_NOT_COMPUTED]
haskell-attoparsec-text-enumerator 0.2.0.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-augeas 0.4.0-1 OK [REASONS_NOT_COMPUTED]
haskell-augeas 0.4.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-base-unicode-symbols 0.2.2.1-1 OK [REASONS_NOT_COMPUTED]
haskell-base-unicode-symbols 0.2.2.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-base64-bytestring 0.1.0.3-1 OK [REASONS_NOT_COMPUTED]
haskell-base64-bytestring 0.1.0.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-bifunctors 0.1.2-1 OK [REASONS_NOT_COMPUTED]
haskell-bifunctors 0.1.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-binary-shared 0.8-2 OK [REASONS_NOT_COMPUTED]
haskell-binary-shared 0.8-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-binary 0.5.0.2-2 OK [REASONS_NOT_COMPUTED]
haskell-binary 0.5.0.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-bindings-dsl 1.0.14-1 OK [REASONS_NOT_COMPUTED]
haskell-bindings-dsl 1.0.14-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-bitarray 0.0.1-1 OK [REASONS_NOT_COMPUTED]
haskell-bitarray 0.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-blaze-builder 0.2.1.4-1 OK [REASONS_NOT_COMPUTED]
haskell-blaze-builder 0.2.1.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-blaze-textual 0.2.0.4-1 OK [REASONS_NOT_COMPUTED]
haskell-blaze-textual 0.2.0.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-boolean 0.0.1-1 OK [REASONS_NOT_COMPUTED]
haskell-boolean 0.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-brainfuck 0.1-1 OK [REASONS_NOT_COMPUTED]
haskell-brainfuck 0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-bytestring-show 0.3.5-1 OK [REASONS_NOT_COMPUTED]
haskell-bytestring-show 0.3.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-bzlib 0.5.0.1-1 OK [REASONS_NOT_COMPUTED]
haskell-bzlib 0.5.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-cabal-install 0.10.2-3 OK [REASONS_NOT_COMPUTED]
haskell-cabal-install 0.10.2-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-cairo 0.12.0-1 OK [REASONS_NOT_COMPUTED]
haskell-cairo 0.12.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-case-insensitive 0.3.0.1-1 OK [REASONS_NOT_COMPUTED]
haskell-case-insensitive 0.3.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-categories 0.58.0.5-1 OK [REASONS_NOT_COMPUTED]
haskell-categories 0.58.0.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-cautious-file 0.1.5-3 OK [REASONS_NOT_COMPUTED]
haskell-cautious-file 0.1.5-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-chart 0.14-2 OK [REASONS_NOT_COMPUTED]
haskell-chart 0.14-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-colour 2.3.1-2 OK [REASONS_NOT_COMPUTED]
haskell-colour 2.3.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x156): undefined reference to `base_GHCziTopHandler_runIO_closure'
haskell-comonad-transformers 2.0.2-1 OK [REASONS_NOT_COMPUTED]