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 17:03:56 +0000 |
commit | d410a121dac784ec0069aafa88b78229ecb36917 (patch) | |
tree | cb37b9345f1b843c2cc36c5d05d16fe5e9505756 /meta/recipes-devtools/python/python-mako_0.9.1.bb | |
parent | 18e62b88e9a4e998d5e83dd26c135dee5595096f (diff) | |
download | poky-d410a121dac784ec0069aafa88b78229ecb36917.tar.gz |
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.
(From OE-Core rev: 1ad759508d834f3bcb3bb8542ae2012a2b6ef2e0)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python-mako_0.9.1.bb')
-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 @@ | |||
1 | DESCRIPTION = "Templating library for Python" | ||
2 | SECTION = "devel/python" | ||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=da2a9d126b93cab0996a8287dacc480b" | ||
5 | |||
6 | SRC_URI = "https://pypi.python.org/packages/source/M/Mako/Mako-${PV}.tar.gz" | ||
7 | SRC_URI[md5sum] = "fe3f394ef714776d09ec6133923736a7" | ||
8 | SRC_URI[sha256sum] = "ed74d72b720a97a51590dfa839f2048ceeb76cc80d1d9ea5731a5262384316ae" | ||
9 | |||
10 | S = "${WORKDIR}/Mako-${PV}" | ||
11 | |||
12 | inherit setuptools | ||
13 | |||
14 | RDEPENDS_${PN} = "python-threading \ | ||
15 | python-netclient \ | ||
16 | python-html \ | ||
17 | " | ||
18 | RDEPENDS_${PN}_class-native = "" | ||
19 | |||
20 | BBCLASSEXTEND = "native nativesdk" | ||