diff options
author | Khem Raj <raj.khem@gmail.com> | 2019-01-28 22:23:19 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-01-30 13:34:49 -0800 |
commit | 69c99033461e769f9a3359d324a1956e5b88dd78 (patch) | |
tree | d15617bcc7b04ded16589e35b83498e79861c289 /meta-python/recipes-devtools/python/python-twisted.inc | |
parent | 9ada8b1306dad1a4675765b6ea54f1eb390c13dc (diff) | |
download | meta-openembedded-69c99033461e769f9a3359d324a1956e5b88dd78.tar.gz |
python-twisted: Remove ${PN}-src
This fixes the QA errors about double defining this in PACKAGES
it seems to be removed in py3 version of recipe too so we just do it in
inc file so both recipes can use it
Fix a typo in specifying rdep
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python-twisted.inc')
-rw-r--r-- | meta-python/recipes-devtools/python/python-twisted.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-python/recipes-devtools/python/python-twisted.inc b/meta-python/recipes-devtools/python/python-twisted.inc index 01616b168b..456adf4c39 100644 --- a/meta-python/recipes-devtools/python/python-twisted.inc +++ b/meta-python/recipes-devtools/python/python-twisted.inc | |||
@@ -35,7 +35,6 @@ PACKAGES += "\ | |||
35 | " | 35 | " |
36 | 36 | ||
37 | PACKAGES =+ "\ | 37 | PACKAGES =+ "\ |
38 | ${PN}-src \ | ||
39 | ${PN}-bin \ | 38 | ${PN}-bin \ |
40 | " | 39 | " |
41 | 40 | ||
@@ -242,9 +241,10 @@ FILES_${PN}-doc += " \ | |||
242 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/_pydoctortemplates/ \ | 241 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/_pydoctortemplates/ \ |
243 | " | 242 | " |
244 | 243 | ||
245 | RDEPENDS_{PN}-src = "${PN}" | 244 | RDEPENDS_${PN}-src = "${PN}" |
246 | FILES_${PN}-src = " \ | 245 | FILES_${PN}-src = " \ |
247 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/*.py \ | 246 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/*.py \ |
248 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/*/*.py \ | 247 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/*/*.py \ |
249 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/*/*/*.py \ | 248 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/*/*/*.py \ |
250 | " | 249 | " |
250 | |||