diff options
author | Richard Purdie <richard@openedhand.com> | 2006-11-20 15:19:39 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-11-20 15:19:39 +0000 |
commit | e09dab061470154bb14d172f79c5589d232b3c12 (patch) | |
tree | 0657681c4a60c3e7903591a0641a18d0ea6b7ac0 /meta/classes/tinderclient.bbclass | |
parent | 4015d48fcfec627821e9dd420b6c37fa1c60369e (diff) | |
download | openembedded-core-e09dab061470154bb14d172f79c5589d232b3c12.tar.gz openembedded-core-e09dab061470154bb14d172f79c5589d232b3c12.tar.bz2 openembedded-core-e09dab061470154bb14d172f79c5589d232b3c12.zip |
classes: Sync with OE - mainly quoting fixes or other minor updates
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@885 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/tinderclient.bbclass')
-rw-r--r-- | meta/classes/tinderclient.bbclass | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/meta/classes/tinderclient.bbclass b/meta/classes/tinderclient.bbclass index d36ef0b343..3f5183cc8f 100644 --- a/meta/classes/tinderclient.bbclass +++ b/meta/classes/tinderclient.bbclass @@ -60,7 +60,18 @@ def tinder_format_http_post(d,status,log): "os" : os.uname()[0], "os_version" : os.uname()[2], "compiler" : "gcc", - "clobber" : data.getVar('TINDER_CLOBBER', d, True) + "clobber" : data.getVar('TINDER_CLOBBER', d, True), + "srcdate" : data.getVar('SRCDATE', d, True), + "PN" : data.getVar('PN', d, True), + "PV" : data.getVar('PV', d, True), + "PR" : data.getVar('PR', d, True), + "FILE" : data.getVar('FILE', d, True) or "N/A", + "TARGETARCH" : data.getVar('TARGET_ARCH', d, True), + "TARGETFPU" : data.getVar('TARGET_FPU', d, True) or "Unknown", + "TARGETOS" : data.getVar('TARGET_OS', d, True) or "Unknown", + "MACHINE" : data.getVar('MACHINE', d, True) or "Unknown", + "DISTRO" : data.getVar('DISTRO', d, True) or "Unknown", + "zecke-rocks" : "sure", } # optionally add the status |