forked from bioconda/bioconda-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-fail-blacklist
1295 lines (1164 loc) · 31.5 KB
/
build-fail-blacklist
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
# ../../utils//fileType/FileRecordTypeChecker.h:120:21: error: 'constexpr' needed for in-class initialization of static data member 'const float FileRecordTypeChecker::PERCENTAGE_PRINTABLE' of non-integral type [-fpermissive]
recipes/bedtools/2.20.1
recipes/bedtools/2.19.1
# last-pair-probs.cc:501:10: error: cannot convert 'std::istream {aka std::basic_istream<char>}' to 'bool' in return
recipes/last/638
# This vendors bowtie2, which breaks the noarch: python setting
recipes/humann2
# vendors bzip2, samtools, etc.
recipes/rvtests
# Source URL no longer exists
recipes/python-mailund-newick
recipes/piret
# Requires obsolete matplotlib versions incompatible with our gfortran pinnings
recipes/riboplot
# Not compatible with newer gcc https://github.com/rrwick/Porechop/issues/76
recipes/porechop
# Requires libXext.so.6 in the container
recipes/samsifter
# C++ syntax error: ../../lib/srprism/query_acct.hpp:118:51: error: expected primary-expression before ')' token { return query_info_[qn].MaxErr< paired >(); }
recipes/srprism
# Mulled test never completes
recipes/comparative-annotation-toolkit
# compilation or other errors in bulk
recipes/perl-bio-rna-rnaalisplit
recipes/perl-bio-eutilities
recipes/perl-bio-samtools
recipes/transcomb
recipes/pbmm2
recipes/detonate
recipes/pbbam
recipes/bmtagger
# Packages failing in bulk that haven't yet received more attention
recipes/qiimetomaaslin
recipes/glimmerhmm
recipes/python-omero
recipes/sequencetools
recipes/groopm
recipes/egglib
recipes/biolite
recipes/idr-py
recipes/pauda
recipes/hicbrowser
recipes/bcftools-gtc2vcf-plugin/1.9
recipes/perl-biox-workflow-command
recipes/optitype
recipes/vqsr_cnn
recipes/bam-readcount
recipes/rapid
recipes/mqc
recipes/panx/1.6.0
recipes/panx/1.5.0
recipes/roprofile
recipes/chanjo
recipes/xxmotif
recipes/phylip
recipes/metasnv
recipes/gqt
recipes/diamond_add_taxonomy
recipes/shapemapper
recipes/igdiscover
recipes/rnftools
recipes/tiptoft
recipes/embassy-phylip
recipes/triform2
recipes/haploclique/1.3.1
recipes/andi
recipes/lcfit
recipes/treekin/0.4.2
recipes/blast/2.5.0
recipes/quast
recipes/tadarida-c
recipes/w4mclstrpeakpics
# Requests python3, but is written for python2
recipes/ctat-mutations
# Unclear that the following old versions are still needed
recipes/augustus/3.2.3
recipes/hmmer/2.3.2
recipes/bamtools/2.3.0
recipes/bowtie/1.1.1
recipes/htseq/0.6.1.post1
recipes/htseq/0.6.1
recipes/htseq/0.7.2
recipes/htseq/0.9.1
recipes/freebayes/1.1.0.46
recipes/blast-legacy/2.2.22
recipes/perl-extutils-makemaker/7.24
recipes/tabix/0.2.5
recipes/tabix/0.2.6
recipes/cyvcf2/0.7.2
recipes/rsem/1.2.21
recipes/stringtie/1.2.2
recipes/stringtie/1.2.4
recipes/stringtie/1.3.0
recipes/stringtie/1.3.3
recipes/art/3.11.14
recipes/bcbiogff/0.6.2
recipes/biopet/0.8.0
recipes/metfrag/2.3.1
recipes/metfrag/2.4.2
recipes/varscan/2.4.2
recipes/bbmap/37.10
recipes/bbmap/37.17
recipes/bbmap/37.52
recipes/bbmap/37.99
recipes/gatk4/4.0.3.0
recipes/mira/3.4.1.1
recipes/mira/4.9.5
recipes/mira/4.9.6
recipes/ngmlr/0.2.3
recipes/ngmlr/0.2.4
recipes/rnastructure/5.7
recipes/rnastructure/6.0
# Seems to download maven and then have java issues
recipes/megagta
# The build string needs to be modified to account for the [nocairo] feature
recipes/genometools-genometools/1.5.10-nocairo
# Unknown issues
recipes/smina
recipes/cmv
recipes/fwdpp
recipes/parafly
recipes/smashbenchmarking
recipes/saffrontree
recipes/slclust
# tracking master branch
recipes/frc
# OSX failures - library loading
recipes/r-pscbs/0.61.0
# CMake Error at build-common/cmake/VersionHelper.cmake:11 (list):
recipes/somatic-sniper
# need to fix the download location, the checksum changes everytime
recipes/osra/2.1.0
# can't find file to patch at input line 3
recipes/erds
# non-standard test
recipes/fermikit
# build-error
recipes/mimodd
# error: possibly undefined macro: AM_GNU_GETTEXT
recipes/xcftools
# See https://github.com/bioconda/bioconda-recipes/pull/9458
recipes/spingo
# CMake Error: The source directory "/opt/conda/conda-bld/sqlitebrowser_1529759350498/work" does not appear to contain CMakeLists.txt.
recipes/sqlitebrowser
# no test, website down
recipes/sprinkles
# link not founds
recipes/soapcoverage
# download error
recipes/soapaligner
# missing tarball
recipes/sloika
recipes/genometools
recipes/nanonet
recipes/knot
recipes/moreutils
recipes/jali
recipes/intervalstats
# missing dep
recipes/oligotyping
recipes/oligotyping/2.0
# missing file
recipes/shiver
# missing binary
recipes/semeta
# Various C++ errors
recipes/rdock
# WARNING (talloc,lib/libpytalloc-util.so.2.1.9): did not find - or even know where to look for: /lib64/libm.so.6
recipes/talloc
# Skipped: vnl from /opt/recipe defines build/skip for this configuration ({'c_compiler': 'toolchain_c'}).
recipes/vnl
# something wrong with the test
recipes/remurna
# https://github.com/bcgsc/abyss/issues/130 and https://github.com/bioconda/bioconda-recipes/pull/6131
recipes/abyss/1.9.0
recipes/abyss/1.5.2
# Test uses a program that makes incorrect assumptions about shebangs (you can't reliably use "#!/usr/bin/env program --arguments")
recipes/amos
# aclocal error, but also downloads mauve tarballs, but there is now a mauve pkgs, is it still needed?
recipes/libmuscle
# compilation error
recipes/osra/2.0.1
recipes/lightning
# unable to access jarfile
recipes/effectivet3
# url broken
recipes/e-pcr
# linker error
recipes/discovar-denovo
# seqan errors
recipes/bowtie/1.0.0
# depends on perl-pcap
recipes/brass
# oh no TPP is failing, it was a nightmare to get it to compile in the first place :(
recipes/tpp
# perl dependency estmapper not available for 5.26
recipes/wgs-assembler
# python dep click missing
recipes/qiime/1.9.1
# requires wgs-assembler, which has a build fail
recipes/sprai
# missing dependency
recipes/genomebaser
recipes/garnet
recipes/tablet
# RuntimeError: Setuptools downloading is disabled in conda build. Be sure to add all dependencies in the meta.yaml url=https://pypi.org/simple/funcsigs/
recipes/pytest-marks
recipes/hivtrace
recipes/imfusion/0.3.0
recipes/imfusion/0.3.2
recipes/poretools/0.5.1
recipes/hubward
recipes/phylotoast
# git checkout problem
recipes/pbdagcon
recipes/icqsol
recipes/pout2mzid
# checksum always fails
recipes/ms
# GL missing, needs the extended base image
recipes/emperor
# sed: can't read /opt/conda/conda-bld/idba_1530055808563/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/bin/aclocal: No such file or directory
recipes/idba
# PREFIX/lib is a directory
recipes/proot
# bin/g++: Command not found
recipes/metavelvet/1.1.01
recipes/metavelvet-sl
recipes/metavelvet
# cp: target `/opt/conda/conda-bld/meryl_1530057980094/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho/include/' is not a directory
recipes/meryl
recipes/metavelvet-sl-pipeline
# Conflicting numpy and qiime
recipes/koeken
# no clue currently
recipes/hap.py
# cp: cannot stat `./mapsembler2_extremities/build/mapsembler2_extremities': No such file or directory
recipes/mapsembler2
# Local abort before MPI_INIT completed completed successfully, but am not able to aggregate error messages, and not able to guarantee that all other processes were killed!
recipes/primerprospector
# missing URL
recipes/intemap
# zlib missing
recipes/polymutt
recipes/prophyle/0.2.1
recipes/dsk
# /opt/rh/devtoolset-2/root/usr/libexec/gcc/x86_64-redhat-linux/4.8.2/ld: cannot find -lc
recipes/piler
# no clue
recipes/portcullis/1.1.1
recipes/portcullis/1.1.0
# Skipped: guidescan from /opt/recipe defines build/skip for this configuration ({'numpy': '1.9', 'c_compiler': 'toolchain_c', 'openblas': '0.2.20'}).
recipes/guidescan
# installation error inside the container?
recipes/relocate2/2.0.1
recipes/relocate2
# /usr/bin/env: python -Es: No such file or directory
recipes/pizzly
# compiles its own zlib
recipes/plink2
# natsort conflicts with python
recipes/qcumber
# Tests failed for spanki-0.5.1-py27h24bf2e0_1.tar.bz2 - moving package to /opt/conda/conda-bld/broken
recipes/spanki
# perl issues
recipes/vcftools/0.1.11
# broken pipe
recipes/antarna
# hashFunction.c:94: Error: invalid instruction suffix for `push'
recipes/soapdenovo2
# tarball missing and should be migrated I guess
recipes/ant
recipes/ngseqbasic
recipes/footprint
# missing bioc package
recipes/customprodb
# runtime dep missing in Docker?
recipes/bio-vcf
# boost missing, requires boost < 1.65
recipes/bellmans-gapc
# needs bellmans-gapc rebuild
recipes/pkiss
# fail in Docker test
recipes/fiji/20151222
# flexbar not found
recipes/flexbar/3.3.0
# Error: Could not find or load main class edu.duke.igsp.gkde.Main
recipes/fseq
# node error
recipes/azure-cli
recipes/arvados-cli
# takes to long to install
recipes/bcbio-rnaseq
# missing python requirements?
recipes/illuminate
# perl bad interpreter
recipes/cmfinder/0.2
# dotnet not found
recipes/canvas
#ImportError: cannot import name faces
recipes/cansnper
# URL not found
recipes/bumbershoot
# perl
recipes/vcftools/0.1.10
# checking whether the C compiler works... no
recipes/fastme
# perl script could not be found
recipes/rnaclust
# Incompatible boost and bellmans-gapc
recipes/rnashapes/3.3.0
# Unknown issues
recipes/export2graphlan
recipes/lorma
recipes/microbecensus
recipes/minialign
recipes/nspdk
recipes/dreamtools
recipes/biomaj
recipes/cas-offinder
recipes/odose
# Outdated recipe, replaced by perl-bio-samtools
recipes/perl-bio-db-sam
# bad perl interpreter, needs patching a perl script
recipes/krona/2.6
recipes/krona/2.5
# /opt/conda/conda-bld/pash_1531691261758/_test_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_place/lib/ruby/2.4.0/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- brl/util/textFileUtil (LoadError)
recipes/pash
# can't open file setup.py
recipes/meneco/1.5.2
# Permission denied ESTscan
recipes/perl-estscan2/2.1
# Uses deprecated POSIX::tmpnam() function, not maintained, partially replaced by estscan 3.0
recipes/perl-btlib/0.19
# takes a long time and then fails?
recipes/kmerinshort
# chmod: cannot access `genblast_v1.0.4': No such file or directory
recipes/genblasta
# ImportError: cannot import name 'aveQual'
recipes/nanosplit
# ../short_read_connector.sh: line 299: /opt/conda/conda-bld/shortreadconnector_1531045819227/work/build/bin/SRC_linker_ram: No such file or directory
recipes/short-read-connector
# Cpp no such file or dir
recipes/genepop
# Error: Unable to access jarfile
recipes/gfinisher
# gsl missing but specified
recipes/gfold
# missing python dep
recipes/hurry.filesize
# compilation error, missing boost header
recipes/k-slam
# failing
recipes/igblast/1.4.0
# missing fortran lib, will fix this upstream
recipes/ig-checkfcs
# np-likeness scorer no such file or directory
recipes/np-likeness-scorer
# Throws an error during testing
recipes/reago
# Error during mulled testing on circleci
recipes/ra-integrate
# real long build-time
recipes/perl-bio-viennangs
# /boost/intrusive/list.hpp:123:22: error: ‘const bool boost::intrusive::list_impl<boost::intrusive::bhtraits<dng::pileup::Node, boost::intrusive::list_node_traits<void*>, (boost::intrusive::link_mode_type)0u, boost::intrusive::dft_tag, 1u>, long unsigned int, true, void>::safemode_or_autounlink’ is private
recipes/denovogear
# /opt/rh/devtoolset-2/root/usr/libexec/gcc/x86_64-redhat-linux/4.8.2/ld: cannot find -lboost_system
recipes/metaprob
# Fails testing
recipes/cap-mirseq
# OSX related errors, Linux should be fine. Most of the non-perl issues are due to LLVM used as a compiler, GCC should be fine
recipes/cgat-scripts
recipes/shorah
recipes/smalt
recipes/perl-pod-coverage-trustpod/0.100003
recipes/perl-symbol-util/0.0203
recipes/perl-test-pod-coverage/1.10
recipes/oases
recipes/metavelvet-sl-feature-extraction
recipes/music
recipes/kraken-ea
recipes/gnu-getopt
recipes/ghmm
recipes/domclust
recipes/bwa/0.6.2
recipes/disco/1.2
recipes/c-ares
recipes/cassiopee
recipes/flock
recipes/cmfinder
recipes/cortex_con
recipes/cosi2
recipes/cufflinks
recipes/edlib
recipes/esimsa
recipes/fastuniq
recipes/fgap
recipes/funcannot
recipes/genepender
recipes/genometester4
recipes/ghostx
recipes/libbambamc/0.5.00
recipes/ls-gkm
recipes/mosaik
recipes/mustang
recipes/ngmerge
recipes/nlstradamus
recipes/ntcard
recipes/ocrad/0.21
recipes/panoct
recipes/perl-estscan1/1.3
recipes/pygresql
recipes/real
recipes/rmap
recipes/rnabob
recipes/sam
recipes/secimtools
recipes/sff2fastq
recipes/snpomatic
recipes/soapdenovo2-gapcloser
recipes/spectral_hk
recipes/swiftlink
recipes/tedna
recipes/transtermhp
recipes/perl-dbm-deep
recipes/carna
# R packages not in CRAN, please feel free to remove from the blacklist if you actually use any of these!
recipes/r-ampvis
recipes/r-boutroslabplottinggeneral
recipes/r-cimpl
recipes/r-DGEclustering
recipes/r-dpeak
recipes/r-genometricorr
recipes/r-george
recipes/r-intego
recipes/r-lme4qtl
recipes/r-mmgenome
recipes/r-nastiseq
recipes/r-ncbit
recipes/r-ngsplot
recipes/r-ngsplot-hg19
recipes/r-ngsplot-hg38
recipes/r-ngsplot-mm10
recipes/r-peer
recipes/r-phewas
recipes/r-pore
recipes/r-qorts
recipes/r-rBLAST
recipes/r-rubic
recipes/r-scimpute
recipes/r-soap-nmr
recipes/r-xmlrpc
recipes/r-zerone
# Marked as build fails in bioconductor release 3.10
recipes/bioconductor-rchemcpp
recipes/bioconductor-rhvdm
recipes/bioconductor-platecore
recipes/bioconductor-charm
recipes/bioconductor-charmdata
recipes/bioconductor-pathnet
recipes/bioconductor-exomepeak
recipes/bioconductor-sepa
recipes/bioconductor-cnpbayes
recipes/bioconductor-condcomp
recipes/bioconductor-brainimager
recipes/bioconductor-mbqn
recipes/bioconductor-brainflowprobes
recipes/bioconductor-biocset
recipes/bioconductor-mlm4omics
# stringify can't find libmysqlclient.18
recipes/ucsc-overlapselect
recipes/ucsc-pslmap
recipes/ucsc-pslcdnafilter
# Source seems to have moved
recipes/discovar
# missing dependency r-dagitty
recipes/r-pcalg
recipes/bioconductor-epinem
recipes/bioconductor-mnem
recipes/bioconductor-mirlab
# Source no longer exists at the URL
recipes/recon
# compilation errors
recipes/bioconductor-sictools
recipes/bioconductor-iclusterplus
recipes/bioconductor-bgmix
recipes/bioconductor-msgfplus
recipes/bioconductor-msgfgui
recipes/bioconductor-rcwl
recipes/bioconductor-rcwlpipelines
recipes/bioconductor-chemmineob
recipes/bioconductor-netboost
recipes/bioconductor-discorhythm
recipes/bioconductor-interactivedisplay
recipes/bioconductor-rsbml
recipes/bioconductor-biggr
recipes/bioconductor-omicspca
recipes/bioconductor-scalign
recipes/bioconductor-hilbertvisgui
recipes/bioconductor-bgx
recipes/bioconductor-mafdb.gnomad.r2.1.grch38
recipes/bioconductor-mafdb.gnomad.r3.0.grch38
recipes/bioconductor-mafdb.gnomad.r2.1.hs37d5
# Needs a root5 rebuild
recipes/bioconductor-xps
# never completes
recipes/bioconductor-cancer
# Packages that should be moved to conda-forge
recipes/argutils
recipes/aria2
recipes/autolog
recipes/avro-python2
recipes/avro-python3
recipes/bitstring
recipes/cityhash
recipes/collectl
recipes/elasticluster
recipes/epydoc
recipes/esmre
recipes/forked-path
recipes/gcs-oauth2-boto-plugin
recipes/gnuplot-py
recipes/justbackoff
recipes/kid
recipes/minimock
recipes/myriad
recipes/neurodocker
recipes/nose-capturestderr
recipes/pdfkit
recipes/perl-aceperl
recipes/perl-acme-damn
recipes/perl-algorithm-cluster
recipes/perl-algorithm-dependency
recipes/perl-algorithm-diff
recipes/perl-algorithm-munkres
recipes/perl-aliased
recipes/perl-apache-test
recipes/perl-appconfig
recipes/perl-app-cpanminus
recipes/perl-archive-extract
recipes/perl-archive-tar
recipes/perl-archive-tar-wrapper
recipes/perl-archive-zip
recipes/perl-array-compare
recipes/perl-array-set
recipes/perl-array-utils
recipes/perl-attribute-handlers
recipes/perl-authen-sasl-saslprep
recipes/perl-autodie
recipes/perl-autoloader
recipes/perl-b
recipes/perl-b-debug
recipes/perl-b-hooks-endofscope
recipes/perl-bignum
recipes/perl-bit-vector
recipes/perl-blib
recipes/perl-bloom-faster
recipes/perl-border-style
recipes/perl-btlib
recipes/perl-bundle-bioperl
recipes/perl-business-isbn
recipes/perl-business-isbn-data
recipes/perl-cache-cache
recipes/perl-cairo
recipes/perl-canary-stability
recipes/perl-capture-tiny
recipes/perl-carp
recipes/perl-carp-clan
recipes/perl-cgi
recipes/perl-cg-pipeline
recipes/perl-class-accessor
recipes/perl-class-data-inheritable
recipes/perl-class-inspector
recipes/perl-class-load
recipes/perl-class-load-xs
recipes/perl-class-methodmaker
recipes/perl-class-method-modifiers
recipes/perl-class-singleton
recipes/perl-class-std
recipes/perl-class-std-fast
recipes/perl-class-xsaccessor
recipes/perl-clone
recipes/perl-clone-choose
recipes/perl-clone-pp
recipes/perl-color-theme
recipes/perl-common-sense
recipes/perl-compress-bgzf
recipes/perl-compress-raw-bzip2
recipes/perl-compress-raw-zlib
recipes/perl-config-any
recipes/perl-config-autoconf
recipes/perl-config-general
recipes/perl-config-simple
recipes/perl-config-tiny
recipes/perl-constant
recipes/perl-const-fast
recipes/perl-convert-binary-c
recipes/perl-convert-binhex
recipes/perl-cpan-meta
recipes/perl-cpan-meta-check
recipes/perl-cpan-meta-requirements
recipes/perl-cpan-meta-validator
recipes/perl-cpan-meta-yaml
recipes/perl-cpan-shell
recipes/perl-crypt-openssl-random
recipes/perl-crypt-openssl-rsa
recipes/perl-crypt-rc4
recipes/perl-data-compare
recipes/perl-data-dump
recipes/perl-data-dumper
recipes/perl-data-lock
recipes/perl-data-match
recipes/perl-data-munge
recipes/perl-data-optlist
recipes/perl-data-stag
recipes/perl-data-utilities
recipes/perl-data-uuid
recipes/perl-data-visitor
recipes/perl-data-walk
recipes/perl-date-format
recipes/perl-date-manip
recipes/perl-datetime
recipes/perl-datetime-format-strptime
recipes/perl-datetime-locale
recipes/perl-datetime-timezone
recipes/perl-dbd-mysql
recipes/perl-dbd-pg
recipes/perl-dbd-sqlite
recipes/perl-db-file
recipes/perl-dbi
recipes/perl-dbm-deep
recipes/perl-devel-assert
recipes/perl-devel-checkbin
recipes/perl-devel-checkos
recipes/perl-devel-cover
recipes/perl-devel-cycle
recipes/perl-devel-globaldestruction
recipes/perl-devel-overloadinfo
recipes/perl-devel-size
recipes/perl-devel-stacktrace
recipes/perl-devel-symdump
recipes/perl-digest-crc32
recipes/perl-digest-hmac
recipes/perl-digest-md5
recipes/perl-digest-md5-file
recipes/perl-digest-perl-md5
recipes/perl-digest-sha
recipes/perl-digest-sha1
recipes/perl-dist-checkconflicts
recipes/perl-dumbbench
recipes/perl-dynaloader
recipes/perl-email-date-format
recipes/perl-encode
recipes/perl-encode-locale
recipes/perl-env
recipes/perl-env-path
recipes/perl-error
recipes/perl-escape-houdini
recipes/perl-eval-closure
recipes/perl-excel-writer-xlsx
recipes/perl-exception-class
recipes/perl-experimental
recipes/perl-exporter
recipes/perl-exporter-tidy
recipes/perl-exporter-tiny
recipes/perl-extutils-cbuilder
recipes/perl-extutils-config
recipes/perl-extutils-constant
recipes/perl-extutils-cppguess
recipes/perl-extutils-depends
recipes/perl-extutils-helpers
recipes/perl-extutils-installpaths
recipes/perl-extutils-makemaker
recipes/perl-extutils-manifest
recipes/perl-extutils-parsexs
recipes/perl-extutils-pkgconfig
recipes/perl-fastx-reader
recipes/perl-file-chdir
recipes/perl-file-compare
recipes/perl-file-copy-link
recipes/perl-file-copy-recursive
recipes/perl-file-copy-recursive-reduced
recipes/perl-file-details
recipes/perl-filedirutil
recipes/perl-file-fetch
recipes/perl-file-find
recipes/perl-file-find-rule
recipes/perl-file-grep
recipes/perl-file-homedir
recipes/perl-file-listing
recipes/perl-file-next
recipes/perl-file-path
recipes/perl-file-pushd
recipes/perl-file-readbackwards
recipes/perl-file-remove
recipes/perl-file-share
recipes/perl-file-sharedir
recipes/perl-file-sharedir-install
recipes/perl-file-slurp
recipes/perl-file-slurper
recipes/perl-file-slurp-tiny
recipes/perl-file-sort
recipes/perl-file-spec
recipes/perl-filesys-df
recipes/perl-file-tee
recipes/perl-file-temp
recipes/perl-file-touch
recipes/perl-file-util
recipes/perl-file-which
recipes/perl-filter-simple
recipes/perl-findbin
recipes/perl-findbin-libs
recipes/perl-findbin-real
recipes/perl-font-afm
recipes/perl-font-ttf
recipes/perl-forks
recipes/perl-gd
recipes/perl-gdgraph
recipes/perl-gdgraph-histogram
recipes/perl-gdtextutil
recipes/perl-getopt-argvfile
recipes/perl-getopt-long
recipes/perl-getopt-long-descriptive
recipes/perl-git-wrapper
recipes/perl-git-wrapper-plus
recipes/perl-go-perl
recipes/perl-graph
recipes/perl-graphics-colornames
recipes/perl-graphics-colorobject
recipes/perl-graph-readwrite
recipes/perl-graphviz
recipes/perl-hash-merge
recipes/perl-hash-util-fieldhash-compat
recipes/perl-heap
recipes/perl-heap-simple
recipes/perl-heap-simple-perl
recipes/perl-heap-simple-xs
recipes/perl-hook-lexwrap
recipes/perl-hpc-runner-command
recipes/perl-hpc-runner-command-plugin-logger-sqlite
recipes/perl-html-element-extended
recipes/perl-html-entities-numbered
recipes/perl-html-form
recipes/perl-html-formatter
recipes/perl-html-parser
recipes/perl-html-tableextract
recipes/perl-html-tagset
recipes/perl-html-template
recipes/perl-html-tidy
recipes/perl-html-tree
recipes/perl-html-treebuilder-xpath
recipes/perl-http-cookies
recipes/perl-http-daemon
recipes/perl-http-date
recipes/perl-http-message
recipes/perl-http-negotiate
recipes/perl-http-server-simple
recipes/perl-http-tiny
recipes/perl-image-exiftool
recipes/perl-image-info
recipes/perl-image-size
recipes/perl-importer
recipes/perl-import-into
recipes/perl-indirect
recipes/perl-inline
recipes/perl-inline-c
recipes/perl-integer
recipes/perl-io-all
recipes/perl-io-compress
recipes/perl-io-compress-deflate
recipes/perl-io-gzip
recipes/perl-io-handle
recipes/perl-io-html
recipes/perl-io-interactive
recipes/perl-io-prompt
recipes/perl-io-scalar
recipes/perl-io-sessiondata
recipes/perl-io-socket-inet6
recipes/perl-io-socket-ssl
recipes/perl-io-string
recipes/perl-io-stringy
recipes/perl-io-tty
recipes/perl-io-uncompress-bunzip2
recipes/perl-io-uncompress-gunzip
recipes/perl-io-uncompress-rawinflate
recipes/perl-io-zlib
recipes/perl-ipc-cmd
recipes/perl-ipc-run
recipes/perl-ipc-run3
recipes/perl-ipc-sharelite
recipes/perl-ipc-system-simple
recipes/perl-jcode
recipes/perl-json
recipes/perl-json-create
recipes/perl-json-maybexs
recipes/perl-json-parse
recipes/perl-json-pp
recipes/perl-json-xs
recipes/perl-lib
recipes/perl-libwww-perl
recipes/perl-libxml-perl
recipes/perl-list-compare
recipes/perl-list-moreutils
recipes/perl-list-moreutils-xs
recipes/perl-list-someutils
recipes/perl-list-uniq
recipes/perl-locale
recipes/perl-locale-maketext-simple
recipes/perl-local-lib
recipes/perl-log-any
recipes/perl-logger-simple
recipes/perl-log-log4perl
recipes/perl-lwp-mediatypes
recipes/perl-lwp-protocol-https
recipes/perl-lwp-simple
recipes/perl-lyve-set
recipes/perl-mac-propertylist
recipes/perl-mac-systemdirectory
recipes/perl-mailtools
recipes/perl-math-base-convert
recipes/perl-math-bezier
recipes/perl-math-bigint
recipes/perl-math-bigrat
recipes/perl-math-cdf
recipes/perl-math-combinatorics
recipes/perl-math-complex
recipes/perl-math-derivative
recipes/perl-math-random
recipes/perl-math-random-mt-auto
recipes/perl-math-round
recipes/perl-math-spline
recipes/perl-math-utils
recipes/perl-math-vecstat
recipes/perl-mce
recipes/perl-mce-shared
recipes/perl-memoize
recipes/perl-mime-base64
recipes/perl-mime-lite
recipes/perl-mime-quotedprint
recipes/perl-mime-tools
recipes/perl-mime-types
recipes/perl-mixin-linewise
recipes/perl-mldbm
recipes/perl-mldbm-sync
recipes/perl-module-build
recipes/perl-module-build-tiny
recipes/perl-module-corelist
recipes/perl-module-extract-use
recipes/perl-module-fromperlver
recipes/perl-module-implementation
recipes/perl-module-list
recipes/perl-module-load
recipes/perl-module-load-conditional
recipes/perl-module-loaded
recipes/perl-module-metadata
recipes/perl-module-pluggable
recipes/perl-module-runtime
recipes/perl-module-runtime-conflicts
recipes/perl-module-scandeps
recipes/perl-module-util
recipes/perl-moo
recipes/perl-moose
recipes/perl-moosex-app
recipes/perl-moosex-app-role-log4perl
recipes/perl-moosex-clone
recipes/perl-moosex-fileattribute
recipes/perl-moosex-getopt
recipes/perl-moosex-nonmoose
recipes/perl-moosex-object-pluggable