From patchwork Fri Mar 16 06:23:32 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [3/7] archive-patched-source.bbclass: Archive patched source Date: Fri, 16 Mar 2012 06:23:32 -0000 From: Xiaofeng Yan X-Patchwork-Id: 23617 Message-Id: <18d4f3fcef92b5f5ec310bc3149ab8b079323368.1331877464.git.xiaofeng.yan@windriver.com> To: From: Xiaofeng Yan This bbclass inherits archiver.bbclass to archive patched source [#YOCTO 1977] Signed-off-by: Xiaofeng Yan --- meta/classes/archive-patched-source.bbclass | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) create mode 100644 meta/classes/archive-patched-source.bbclass diff --git a/meta/classes/archive-patched-source.bbclass b/meta/classes/archive-patched-source.bbclass new file mode 100644 index 0000000..b3184b5 --- /dev/null +++ b/meta/classes/archive-patched-source.bbclass @@ -0,0 +1,14 @@ +# This file is for getting archiving packages with patched sources(archive 's' before do_patch stage),logs(archive 'temp' after package_write_rpm),dump data and +# creating diff file(get all environment variables and functions in building and mapping all content in 's' including patches to xxx.diff.gz. +# All archived packages will be deployed in ${DEPLOY_DIR}/sources + +inherit archiver + +# Get archiving package with patched sources including patches +do_patch[postfuncs] += "do_archive_patched_sources " + +# Get archiving package with logs(temp) and scripts(.bb and .inc files) +do_package_write_rpm[prefuncs] += "do_archive_scripts_logs_copyleft " + +# Get dump date and create diff file +do_package_write_rpm[postfuncs] += "do_dumpdata_create_diff_gz "