diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2018-07-27 14:59:25 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-30 12:44:35 +0100 |
commit | 76fbee59374d282c9d7e62db95c0968745411777 (patch) | |
tree | 1b6632e8e8eeae5cac71841b4b87c844ec92cafa /meta | |
parent | ac134ce9be6e15c7e6b49c14173903855df14318 (diff) | |
download | poky-76fbee59374d282c9d7e62db95c0968745411777.tar.gz |
python3-extras: add it for python3-testtools
- The python3-testtools RDEPENDS on it.
- The original one is python-extras_1.0.0.bb which is from meta-openstack
layer, I divided it into python-extras.inc and python3-extras_1.0.0.bb, and
extended to nativesdk.
(From OE-Core rev: 0176e798364689774bed4ac4bd0e345c32ea3078)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
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-extras.inc | 12 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3-extras_1.0.0.bb | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python-extras.inc b/meta/recipes-devtools/python/python-extras.inc new file mode 100644 index 0000000000..b5e11b711a --- /dev/null +++ b/meta/recipes-devtools/python/python-extras.inc | |||
@@ -0,0 +1,12 @@ | |||
1 | SUMMARY = "Useful extra bits for Python - things that should be in the standard library" | ||
2 | HOMEPAGE = "https://pypi.python.org/pypi/extras/" | ||
3 | SECTION = "devel/python" | ||
4 | LICENSE = "Apache-2.0" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=6d108f338b2f68fe48ac366c4650bd8b" | ||
6 | |||
7 | inherit pypi | ||
8 | |||
9 | SRC_URI[md5sum] = "3a63ad60cf8f0186c9e3a02f55ec5b14" | ||
10 | SRC_URI[sha256sum] = "132e36de10b9c91d5d4cc620160a476e0468a88f16c9431817a6729611a81b4e" | ||
11 | |||
12 | BBCLASSEXTEND = "nativesdk" | ||
diff --git a/meta/recipes-devtools/python/python3-extras_1.0.0.bb b/meta/recipes-devtools/python/python3-extras_1.0.0.bb new file mode 100644 index 0000000000..76f87f2640 --- /dev/null +++ b/meta/recipes-devtools/python/python3-extras_1.0.0.bb | |||
@@ -0,0 +1,2 @@ | |||
1 | inherit setuptools3 | ||
2 | require python-extras.inc | ||