From f5b38f9db0cebb0c7c9d9d72fa98a4ff5241db20 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 20 Dec 2006 00:00:03 +0000 Subject: Remove DISTRO_TYPE, replacing with IMAGE_FEATURES. Documentation is in local.conf.sample git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1053 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- meta/packages/tasks/task-oh-sdk.bb | 89 ++++++++++++++++++++------------------ meta/packages/tasks/task-oh.bb | 21 +++++++-- 2 files changed, 63 insertions(+), 47 deletions(-) (limited to 'meta/packages/tasks') diff --git a/meta/packages/tasks/task-oh-sdk.bb b/meta/packages/tasks/task-oh-sdk.bb index a142816306..ac3aaec746 100644 --- a/meta/packages/tasks/task-oh-sdk.bb +++ b/meta/packages/tasks/task-oh-sdk.bb @@ -1,10 +1,13 @@ DESCRIPTON = "Software Development Tasks for OpenedHand Poky" -PR = "r11" +PR = "r12" DEPENDS = "task-oh" ALLOW_EMPTY = "1" -PACKAGEFUNCS =+ 'generate_sdk_pkgs' +#PACKAGEFUNCS =+ 'generate_sdk_pkgs' -PACKAGES = "task-oh-sdk" +PACKAGES = "\ + task-oh-sdk \ + task-oh-sdk-dbg \ + task-oh-sdk-dev" RDEPENDS_task-oh-sdk = "\ autoconf \ @@ -19,43 +22,43 @@ RDEPENDS_task-oh-sdk = "\ pkgconfig \ distcc" -python generate_sdk_pkgs () { - ohpkgs = read_pkgdata('task-oh', d)['PACKAGES'] - pkgs = bb.data.getVar('PACKAGES', d, 1).split() - for pkg in ohpkgs.split(): - newpkg = pkg.replace('task-oh', 'task-oh-sdk') - - # for each of the task packages, add a corresponding sdk task - pkgs.append(newpkg) - - # for each sdk task, take the rdepends of the non-sdk task, and turn - # that into rrecommends upon the -dev versions of those, not unlike - # the package depchain code - spkgdata = read_subpkgdata(pkg, d) - - rdepends = explode_deps(spkgdata.get('RDEPENDS_%s' % pkg) or '') - rreclist = [] - - for depend in rdepends: - split_depend = depend.split(' (') - name = split_depend[0].strip() - if packaged('%s-dev' % name, d): - rreclist.append('%s-dev' % name) - else: - deppkgdata = read_subpkgdata(name, d) - rdepends2 = explode_deps(deppkgdata.get('RDEPENDS_%s' % name) or '') - for depend in rdepends2: - split_depend = depend.split(' (') - name = split_depend[0].strip() - if packaged('%s-dev' % name, d): - rreclist.append('%s-dev' % name) - - oldrrec = bb.data.getVar('RRECOMMENDS_%s' % newpkg, d) or '' - bb.data.setVar('RRECOMMENDS_%s' % newpkg, oldrrec + ' ' + ' '.join(rreclist), d) - # bb.note('RRECOMMENDS_%s = "%s"' % (newpkg, bb.data.getVar('RRECOMMENDS_%s' % newpkg, d))) - - # bb.note('pkgs is %s' % pkgs) - bb.data.setVar('PACKAGES', ' '.join(pkgs), d) -} - -PACKAGES_DYNAMIC = "task-oh-sdk-*" +#python generate_sdk_pkgs () { +# ohpkgs = read_pkgdata('task-oh', d)['PACKAGES'] +# pkgs = bb.data.getVar('PACKAGES', d, 1).split() +# for pkg in ohpkgs.split(): +# newpkg = pkg.replace('task-oh', 'task-oh-sdk') +# +# # for each of the task packages, add a corresponding sdk task +# pkgs.append(newpkg) +# +# # for each sdk task, take the rdepends of the non-sdk task, and turn +# # that into rrecommends upon the -dev versions of those, not unlike +# # the package depchain code +# spkgdata = read_subpkgdata(pkg, d) +# +# rdepends = explode_deps(spkgdata.get('RDEPENDS_%s' % pkg) or '') +# rreclist = [] +# +# for depend in rdepends: +# split_depend = depend.split(' (') +# name = split_depend[0].strip() +# if packaged('%s-dev' % name, d): +# rreclist.append('%s-dev' % name) +# else: +# deppkgdata = read_subpkgdata(name, d) +# rdepends2 = explode_deps(deppkgdata.get('RDEPENDS_%s' % name) or '') +# for depend in rdepends2: +# split_depend = depend.split(' (') +# name = split_depend[0].strip() +# if packaged('%s-dev' % name, d): +# rreclist.append('%s-dev' % name) +# +# oldrrec = bb.data.getVar('RRECOMMENDS_%s' % newpkg, d) or '' +# bb.data.setVar('RRECOMMENDS_%s' % newpkg, oldrrec + ' ' + ' '.join(rreclist), d) +# # bb.note('RRECOMMENDS_%s = "%s"' % (newpkg, bb.data.getVar('RRECOMMENDS_%s' % newpkg, d))) +# +# # bb.note('pkgs is %s' % pkgs) +# bb.data.setVar('PACKAGES', ' '.join(pkgs), d) +#} +# +#PACKAGES_DYNAMIC = "task-oh-sdk-*" diff --git a/meta/packages/tasks/task-oh.bb b/meta/packages/tasks/task-oh.bb index d7f9b055a1..5b9ce8ce81 100644 --- a/meta/packages/tasks/task-oh.bb +++ b/meta/packages/tasks/task-oh.bb @@ -1,14 +1,28 @@ -DESCRIPTION = "Tasks for OpenedHand Poky" -PR = "r43" +pDESCRIPTION = "Tasks for OpenedHand Poky" +PR = "r44" PACKAGES = "\ task-oh-base \ + task-oh-base-dbg \ + task-oh-base-dev \ task-oh-boot \ + task-oh-boot-dbg \ + task-oh-boot-dev \ task-oh-standard \ + task-oh-standard-dbg \ + task-oh-standard-dev \ task-oh-boot-extras \ + task-oh-boot-extras-dbg \ + task-oh-boot-extras-dev \ task-oh-boot-min-extras \ + task-oh-boot-min-extras-dbg \ + task-oh-boot-min-extras-dev \ task-oh-devtools \ - task-oh-testapps" + task-oh-devtools-dbg \ + task-oh-devtools-dev \ + task-oh-testapps \ + task-oh-testapps-dbg \ + task-oh-testapps-dev" XSERVER ?= "xserver-kdrive-fbdev" @@ -29,7 +43,6 @@ RDEPENDS_task-oh-boot = "\ ipkg \ update-alternatives \ module-init-tools-depmod" -# linux-hotplug \ RDEPENDS_task-oh-boot-extras = "\ task-base" -- cgit v1.2.3-54-g00ecf