diff options
| author | Roy Li <rongqing.li@windriver.com> | 2014-07-30 14:11:18 +0800 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-08-01 14:23:46 +0200 |
| commit | a1db099fc7015497174f5aabf4fe273e5b4c5304 (patch) | |
| tree | 3679c78878edb8e51cbce928f81f0035b60eccc1 | |
| parent | 9ee63821708901d535b87d28042b512bd1a67eca (diff) | |
| download | meta-openembedded-a1db099fc7015497174f5aabf4fe273e5b4c5304.tar.gz | |
python-decorator: add recipe
Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
| -rw-r--r-- | meta-python/recipes-devtools/python/python-decorator_3.4.0.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python-decorator_3.4.0.bb b/meta-python/recipes-devtools/python/python-decorator_3.4.0.bb new file mode 100644 index 0000000000..43166304a2 --- /dev/null +++ b/meta-python/recipes-devtools/python/python-decorator_3.4.0.bb | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | SUMMARY = "Python decorator utilities" | ||
| 2 | HOMEPAGE = "http://pypi.python.org/pypi/decorator/" | ||
| 3 | DESCRIPTION = "\ | ||
| 4 | The aim of the decorator module it to simplify the usage of decorators \ | ||
| 5 | for the average programmer, and to popularize decorators by showing \ | ||
| 6 | various non-trivial examples. Of course, as all techniques, decorators \ | ||
| 7 | can be abused and you should not try to solve every problem with a \ | ||
| 8 | decorator, just because you can." | ||
| 9 | |||
| 10 | SECTION = "devel/python" | ||
| 11 | LICENSE = "BSD" | ||
| 12 | LIC_FILES_CHKSUM = "file://documentation3.py;beginline=848;endline=877;md5=0b56661417fb7b841afc8892e14ba241" | ||
| 13 | |||
| 14 | SRCNAME = "decorator" | ||
| 15 | |||
| 16 | SRC_URI = "https://pypi.python.org/packages/source/d/decorator/decorator-${PV}.tar.gz" | ||
| 17 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 18 | |||
| 19 | inherit setuptools | ||
| 20 | |||
| 21 | SRC_URI[md5sum] = "1e8756f719d746e2fc0dd28b41251356" | ||
| 22 | SRC_URI[sha256sum] = "c20b404cbb7ee5cebd506688e0114e3cd76f5ce233805a51f36e1a7988d9d783" | ||
