diff options
author | Koen Kooi <koen@openembedded.org> | 2005-09-05 15:31:15 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-05 15:31:15 +0000 |
commit | a7e0429eeb5117c75fff0e2da0e07bc1a89f0dfc (patch) | |
tree | 63b8033f437c37706beac1338a813d679ca4cef7 | |
parent | 81f8eae17311d69807ef85d3b31cc020c7276d02 (diff) | |
parent | c21cf2500b321c5988cd137178d395d13e74e68b (diff) |
merge of 4d61b91c4301e551e3af7c94c94703dd49b8a5c3
and a9ca95824a4fece974acb09126b3dc72162d45c0
-rw-r--r-- | classes/base.bbclass | 12 | ||||
-rw-r--r-- | packages/tinyscheme/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/tinyscheme/tinyscheme_1.35.bb | 21 |
3 files changed, 31 insertions, 2 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass index 37254b94ba..066f7af9da 100644 --- a/classes/base.bbclass +++ b/classes/base.bbclass @@ -496,8 +496,16 @@ python base_eventhandler() { note(msg) if name.startswith("BuildStarted"): - statusvars = ['TARGET_ARCH', 'TARGET_OS', 'MACHINE', 'DISTRO', - 'TARGET_FPU'] + bb.data.setVar( 'BB_VERSION', bb.__version__, e.data ) + path_to_bbfiles = bb.data.getVar( 'BBFILES', e.data, 1 ) + path_to_packages = path_to_bbfiles[:path_to_bbfiles.index( "packages" )] + monotone_revision = "<unknown>" + try: + monotone_revision = file( "%s/MT/revision" % path_to_packages ).read().strip() + except IOError: + pass + bb.data.setVar( 'OE_REVISION', monotone_revision, e.data ) + statusvars = ['BB_VERSION', 'OE_REVISION', 'TARGET_ARCH', 'TARGET_OS', 'MACHINE', 'DISTRO', 'TARGET_FPU'] statuslines = ["%-13s = \"%s\"" % (i, bb.data.getVar(i, e.data, 1) or '') for i in statusvars] statusmsg = "\nOE Build Configuration:\n%s\n" % '\n'.join(statuslines) print statusmsg diff --git a/packages/tinyscheme/.mtn2git_empty b/packages/tinyscheme/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/tinyscheme/.mtn2git_empty diff --git a/packages/tinyscheme/tinyscheme_1.35.bb b/packages/tinyscheme/tinyscheme_1.35.bb new file mode 100644 index 0000000000..f66a322c6f --- /dev/null +++ b/packages/tinyscheme/tinyscheme_1.35.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "TinyScheme is a lightweight Scheme interpreter that implements as large a subset of R5RS \ +as was possible without getting very large and complicated." +SECTION = "devel" +LICENSE = "BSD" + +SRC_URI = "http://tinyscheme.sourceforge.net/tinyscheme-${PV}.tar.gz" + +EXTRA_OEMAKE = "-e scheme libtinyscheme.so" + +export LD="${CCLD}" + +do_install() { + install -d ${D}${bindir} + install -d ${D}${libdir} + oe_libinstall -so libtinyscheme ${D}${libdir} + install -m 0755 scheme ${D}${bindir} +} + +PACKAGES =+ "libtinyscheme" +FILES_libtinyscheme = "${libdir}" +FILES_${PN} = "${bindir}" |