From d901bade0b2b6b65bd218056658bf028dbde6fbf Mon Sep 17 00:00:00 2001 From: Mark Asselstine Date: Sat, 9 Jan 2016 14:27:21 -0500 Subject: python-monotonic: add new recipe to fulfil dependencies This package is required by uprevs of trove, nova, several oslo packages, to name a few. Adding this package so that it is available for these uprevs as we move to openstack liberty. This python module provides access to the value, in fractions of a second, of a clock. Signed-off-by: Mark Asselstine Signed-off-by: Bruce Ashfield --- .../python/python-monotonic_git.bb | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 meta-openstack/recipes-devtools/python/python-monotonic_git.bb (limited to 'meta-openstack/recipes-devtools/python/python-monotonic_git.bb') diff --git a/meta-openstack/recipes-devtools/python/python-monotonic_git.bb b/meta-openstack/recipes-devtools/python/python-monotonic_git.bb new file mode 100644 index 0000000..2552409 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-monotonic_git.bb @@ -0,0 +1,31 @@ +DESCRIPTION = "An implementation of time.monotonic()" +HOMEPAGE = "https://github.com/atdt/monotonic" +SECTION = "devel/python" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=d2794c0df5b907fdace235a619d80314" + +PV = "0.4" +SRCREV = "93b3d3ba63597e57b20333db4e33ca0f48debf2a" + +SRCNAME = "monotonic" +SRC_URI = "git://github.com/atdt/${SRCNAME}.git" + +S = "${WORKDIR}/git" + +inherit distutils + +DEPENDS += " \ + python-pbr \ + " + +RDEPENDS_${PN} += " \ + python-pbr \ + " + +do_install_append() { + # Using these "longest" paths will ensure needed shorter paths will be created + install -d ${D}/${libdir}/python2.7/site-packages/${SRCNAME}.egg-info + + install -m 644 ${S}/${SRCNAME}.py ${D}/${libdir}/python2.7/site-packages/ + install -m 644 ${S}/${SRCNAME}.egg-info/* ${D}/${libdir}/python2.7/site-packages/${SRCNAME}.egg-info/ +} -- cgit v1.2.3-54-g00ecf