1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 00:20:08 +00:00

packaging: Split deb and ipk creation into separate tasks so changing the packaging type means the new type of packages are automatically generated.

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2526 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2007-08-21 09:37:30 +00:00
parent 005bf0112c
commit 48fd37f5f9
8 changed files with 61 additions and 35 deletions
+15 -6
View File
@@ -1,8 +1,5 @@
inherit package
PACKAGE_EXTRA_DEPENDS += "tar-native"
PACKAGE_WRITE_FUNCS += "do_package_tar"
IMAGE_PKGTYPE ?= "tar"
python package_tar_fn () {
@@ -78,7 +75,7 @@ python do_package_tar () {
bb.data.setVar('OVERRIDES', '%s:%s' % (overrides, pkg), localdata)
bb.data.update_data(localdata)
# stuff
root = bb.data.getVar('ROOT', localdata)
bb.mkdirhier(root)
basedir = os.path.dirname(root)
@@ -97,6 +94,18 @@ python do_package_tar () {
ret = os.system("tar -czvf %s %s" % (tarfn, '.'))
if ret != 0:
bb.error("Creation of tar %s failed." % tarfn)
# end stuff
del localdata
}
python () {
import bb
if bb.data.getVar('PACKAGES', d, True) != '':
bb.data.setVarFlag('do_package_write_tar', 'depends', 'tar-native:do_populate_staging', d)
}
python do_package_write_tar () {
bb.build.exec_func("read_subpackage_metadata", d)
bb.build.exec_func("do_package_tar", d)
}
do_package_write_tar[dirs] = "${D}"
addtask package_write_tar before do_build after do_package