cornucopia: bump SRCREV
[openembedded.git] / recipes / perl / perl.inc
blob3d8b9bbcca1a095f16f0e2114ba924f362c2b73a
1 # helper functions for perl
2 def all_perl_packages(d):
3     depchains = (d.getVar("DEPCHAIN_POST", True) or "").split()
4     blacklist = ["perl-modules", "perl-misc", "perl-pod", "perl-doc", "perl-module-cpanplus-internals-source-sqlite", "perl-module-cpanplus-internals-source-sqlite-tie"]
5     for pkg in d.getVar("PACKAGES", True).split():
6         if not pkg in blacklist and not any(pkg.endswith(post) for post in depchains):
7             yield pkg