# parse kernel ABI version out of def get_kernelversion_headers(p): import re fn = p + '/include/linux/utsrelease.h' if not os.path.isfile(fn): # after 2.6.33-rc1 fn = p + '/include/generated/utsrelease.h' if not os.path.isfile(fn): fn = p + '/include/linux/version.h' try: f = open(fn, 'r') except IOError: return None l = f.readlines() f.close() r = re.compile("#define UTS_RELEASE \"(.*)\"") for s in l: m = r.match(s) if m: return m.group(1) return None def get_kernelversion_file(p): fn = p + '/kernel-abiversion' try: with open(fn, 'r') as f: return f.readlines()[0].strip() except IOError: return None def linux_module_packages(s, d): suffix = "" return " ".join(map(lambda s: "kernel-module-%s%s" % (s.lower().replace('_', '-').replace('@', '+'), suffix), s.split())) # that's all tech-corecdp-dev'>multitech-corecdp-dev Multi-Tech CoreCDP 1.x OpenEmbedded TreeMulti-Tech Systems
summaryrefslogtreecommitdiff
path: root/packages/python/python-pygobject_2.14.2.bb
AgeCommit message (Expand)AuthorFiles
2009-01-13python-pygobject: bump 2.14.2 for python 2.6; add new 2.16.0 with DP=-1Michael 'Mickey' Lauer1
2008-10-18bb files: Revert the introduction of FILE_PRHolger Hans Peter Freyther1
2008-10-15[PR] Change PR to FILE_PR and intro PR as FILE_PR + DISTRO_PRHolger Hans Peter Freyther1
2008-09-19python-pygobject 2.14.2 increase PE to fix feeds, 2.15.x was prematureMichael Lauer1
2008-06-29python-pygobject-native: fix SRC_URI to make it buildMichael Lauer1
2008-06-22python-pygobject[-native] 2.12.3: update to 2.14.2, adjust patches and -nativ...Michael Lauer1