diff options
author | Bill Randle <bill.randle@gmail.com> | 2017-12-07 21:45:45 -0800 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2017-12-22 19:43:53 -0800 |
commit | 2a61ca52533395680347459a46b1cfdab9d4a124 (patch) | |
tree | 6d696685411251b71673927d38411ef37f6f084f /meta-python/recipes-devtools | |
parent | 73445a39cb1046b8a19d8409b47319c73dde4b41 (diff) | |
download | meta-openembedded-2a61ca52533395680347459a46b1cfdab9d4a124.tar.gz |
python-visitor: move core of recipe to a .inc file
Signed-off-by: Bill Randle <bill.randle@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools')
-rw-r--r-- | meta-python/recipes-devtools/python/python-visitor.inc | 6 | ||||
-rw-r--r-- | meta-python/recipes-devtools/python/python-visitor_0.1.3.bb | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/meta-python/recipes-devtools/python/python-visitor.inc b/meta-python/recipes-devtools/python/python-visitor.inc new file mode 100644 index 000000000..8c2288cf0 --- /dev/null +++ b/meta-python/recipes-devtools/python/python-visitor.inc | |||
@@ -0,0 +1,6 @@ | |||
1 | SUMMARY = "A tiny pythonic visitor implementation." | ||
2 | LICENSE = "MIT" | ||
3 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489" | ||
4 | |||
5 | SRC_URI[md5sum] = "94a024ed0ec1b02b4497c15267d319ca" | ||
6 | SRC_URI[sha256sum] = "2c737903b2b6864ebc6167eef7cf3b997126f1aa94bdf590f90f1436d23e480a" | ||
diff --git a/meta-python/recipes-devtools/python/python-visitor_0.1.3.bb b/meta-python/recipes-devtools/python/python-visitor_0.1.3.bb index 12365062d..eee25a543 100644 --- a/meta-python/recipes-devtools/python/python-visitor_0.1.3.bb +++ b/meta-python/recipes-devtools/python/python-visitor_0.1.3.bb | |||
@@ -1,8 +1,2 @@ | |||
1 | SUMMARY = "A tiny pythonic visitor implementation." | ||
2 | LICENSE = "MIT" | ||
3 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489" | ||
4 | |||
5 | SRC_URI[md5sum] = "94a024ed0ec1b02b4497c15267d319ca" | ||
6 | SRC_URI[sha256sum] = "2c737903b2b6864ebc6167eef7cf3b997126f1aa94bdf590f90f1436d23e480a" | ||
7 | |||
8 | inherit pypi setuptools | 1 | inherit pypi setuptools |
2 | require python-visitor.inc | ||