diff options
author | Ross Burton <ross.burton@intel.com> | 2014-01-14 15:19:27 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-14 16:21:37 +0000 |
commit | 1ad759508d834f3bcb3bb8542ae2012a2b6ef2e0 (patch) | |
tree | 9fc15e1e1c2c39e24b83c9654fc0b384fb6a923b /meta | |
parent | d3995ac14ba05c0420f15f264f7e9d0c3af71f74 (diff) | |
download | openembedded-core-1ad759508d834f3bcb3bb8542ae2012a2b6ef2e0.tar.gz openembedded-core-1ad759508d834f3bcb3bb8542ae2012a2b6ef2e0.tar.bz2 openembedded-core-1ad759508d834f3bcb3bb8542ae2012a2b6ef2e0.zip |
python-mako: add (from meta-oe)
python-mako is needed for Piglit. This recipe is taken from meta-oe, and
upgraded to the latest upstream version.
Checksums updated as the upstream LICENSE file contains the copyright dates.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/python-mako_0.9.1.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python-mako_0.9.1.bb b/meta/recipes-devtools/python/python-mako_0.9.1.bb new file mode 100644 index 0000000000..84071c83ec --- /dev/null +++ b/meta/recipes-devtools/python/python-mako_0.9.1.bb @@ -0,0 +1,20 @@ +DESCRIPTION = "Templating library for Python" +SECTION = "devel/python" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=da2a9d126b93cab0996a8287dacc480b" + +SRC_URI = "https://pypi.python.org/packages/source/M/Mako/Mako-${PV}.tar.gz" +SRC_URI[md5sum] = "fe3f394ef714776d09ec6133923736a7" +SRC_URI[sha256sum] = "ed74d72b720a97a51590dfa839f2048ceeb76cc80d1d9ea5731a5262384316ae" + +S = "${WORKDIR}/Mako-${PV}" + +inherit setuptools + +RDEPENDS_${PN} = "python-threading \ + python-netclient \ + python-html \ +" +RDEPENDS_${PN}_class-native = "" + +BBCLASSEXTEND = "native nativesdk" |