From: Holger Freyther Date: Sun, 12 Feb 2006 20:37:04 +0000 (+0000) Subject: org.openembedded.dev/classes/insane.bbclass: X-Git-Tag: Release-2010-05/1~9453^2~2371^2^2~6 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e916c45ab468cc9e7852bee0a6a06253343d0970;p=openembedded.git org.openembedded.dev/classes/insane.bbclass: -Add the skeleton for the QA bbclass --- diff --git a/classes/insane.bbclass b/classes/insane.bbclass new file mode 100644 index 0000000000..067fa64dff --- /dev/null +++ b/classes/insane.bbclass @@ -0,0 +1,32 @@ +# +# BB Class inspired by ebuild.sh +# +# As I will be copying code from from ebuild.sh this is +# Copyright Gentoo Foundation 1999-2006 +# GPLv2 +# +# This class will test files after installation for certain +# security issues and other kind of issues. +# +# Checks we do: +# -Check the ownership and permissions +# -Check the RUNTIME path for the $TMPDIR +# +# Checks that are planned: +# -Check installed and stages .la files + + +# +# We need to have the scanelf utility as soon as +# possible. +# +DEPENDS_prepend = " pax-utilities-native " + +# We play a special package function +inherit packages + + +PACKAGEFUNCS += "do_package_qa" + +python do_package_qa () { +}