diff options
| -rw-r--r-- | meta-python/recipes-devtools/python/python-flufl-enum_4.0.1.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python-flufl-enum_4.0.1.bb b/meta-python/recipes-devtools/python/python-flufl-enum_4.0.1.bb new file mode 100644 index 0000000000..a7376db5d1 --- /dev/null +++ b/meta-python/recipes-devtools/python/python-flufl-enum_4.0.1.bb | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | SUMMARY = "A Python enumeration package." | ||
| 2 | DESCRIPTION = "The flufl.enum library is a Python enumeration package. Its goal is to provide simple, \ | ||
| 3 | specific, concise semantics in an easy to read and write syntax. flufl.enum has just enough of the \ | ||
| 4 | features needed to make enumerations useful, but without a lot of extra baggage to weigh them down. " | ||
| 5 | HOMEPAGE = "https://pypi.python.org/pypi/flufl.enum" | ||
| 6 | SECTION = "devel/python" | ||
| 7 | |||
| 8 | LICENSE = "LGPLv3" | ||
| 9 | LIC_FILES_CHKSUM = "file://PKG-INFO;md5=1fa25baed15d3be23c902636379438e8" | ||
| 10 | |||
| 11 | SRCNAME = "flufl.enum" | ||
| 12 | |||
| 13 | SRC_URI = " \ | ||
| 14 | http://pypi.python.org/packages/source/f/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \ | ||
| 15 | " | ||
| 16 | |||
| 17 | SRC_URI[md5sum] = "b3ad23761a78232bc78499ced7cb85d9" | ||
| 18 | SRC_URI[sha256sum] = "4af7e7cf2dcc7517251570c7ef9ad194e30ee4b6f860eba500c03954ae95f9d8" | ||
| 19 | |||
| 20 | inherit setuptools | ||
| 21 | |||
| 22 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 23 | |||
| 24 | PACKAGES =+ "\ | ||
| 25 | ${PN}-test \ | ||
| 26 | " | ||
| 27 | |||
| 28 | FILES_${PN}-doc += "\ | ||
| 29 | ${libdir}/${PYTHON_DIR}/site-packages/flufl/enum/*.rst \ | ||
| 30 | ${libdir}/${PYTHON_DIR}/site-packages/flufl/enum/docs \ | ||
| 31 | " | ||
| 32 | |||
| 33 | FILES_${PN}-test += "${libdir}/${PYTHON_DIR}/site-packages/flufl/enum/tests" | ||
