diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-11-13 14:32:47 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-14 13:39:49 +0000 |
commit | a6e3916d519ad0ba8349e19ee43c79ae0d06eec8 (patch) | |
tree | 3472746dcfe18c5737c9a36e6108bcf2c277aedb /meta/classes | |
parent | 5f6ccc6926f6b239b109239b22cd77a1cb121c3c (diff) | |
download | poky-a6e3916d519ad0ba8349e19ee43c79ae0d06eec8.tar.gz |
classes/pkg_distribute: remove
This appears to be a very old way of archiving recipes and associated
files. We have better ways of doing this now, and nobody appears to be
using this class - even OE-Classic had no current references to it.
(From OE-Core rev: e3141844ef84d8a48efa81e0c9c85821ced16f7c)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/pkg_distribute.bbclass | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/meta/classes/pkg_distribute.bbclass b/meta/classes/pkg_distribute.bbclass deleted file mode 100644 index 9f249a0dfe..0000000000 --- a/meta/classes/pkg_distribute.bbclass +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | PKG_DISTRIBUTECOMMAND[func] = "1" | ||
2 | python do_distribute_packages () { | ||
3 | cmd = d.getVar('PKG_DISTRIBUTECOMMAND', True) | ||
4 | if not cmd: | ||
5 | raise bb.build.FuncFailed("Unable to distribute packages, PKG_DISTRIBUTECOMMAND not defined") | ||
6 | bb.build.exec_func('PKG_DISTRIBUTECOMMAND', d) | ||
7 | } | ||
8 | |||
9 | addtask distribute_packages before do_build after do_fetch | ||
10 | |||
11 | PKG_DIST_LOCAL ?= "symlink" | ||
12 | PKG_DISTRIBUTEDIR ?= "${DEPLOY_DIR}/packages" | ||
13 | |||
14 | PKG_DISTRIBUTECOMMAND () { | ||
15 | p=`dirname ${FILE}` | ||
16 | d=`basename $p` | ||
17 | mkdir -p ${PKG_DISTRIBUTEDIR} | ||
18 | case "${PKG_DIST_LOCAL}" in | ||
19 | copy) | ||
20 | # use this weird tar command to copy because we want to | ||
21 | # exclude the BitKeeper directories | ||
22 | test -e ${PKG_DISTRIBUTEDIR}/${d} || mkdir ${PKG_DISTRIBUTEDIR}/${d}; | ||
23 | (cd ${p}; tar -c --exclude SCCS -f - . ) | tar -C ${PKG_DISTRIBUTEDIR}/${d} -xpf - | ||
24 | ;; | ||
25 | symlink) | ||
26 | ln -sf $p ${PKG_DISTRIBUTEDIR}/ | ||
27 | ;; | ||
28 | esac | ||
29 | } | ||