From d38b75d3772fefbc2353c2bc4c8e198d0da02aac Mon Sep 17 00:00:00 2001 From: Thomas Klaehn Date: Sat, 16 Sep 2017 08:02:29 +0200 Subject: [PATCH] pywm: add module to console image Signed-off-by: Thomas Klaehn --- images/console-image.bb | 1 + recipes-devtools/pywm/pywm_1.0.0.bb | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 recipes-devtools/pywm/pywm_1.0.0.bb diff --git a/images/console-image.bb b/images/console-image.bb index 931c480..f4da42c 100644 --- a/images/console-image.bb +++ b/images/console-image.bb @@ -66,6 +66,7 @@ MQTT = " \ PYTHON_LIBS = " \ mypy \ + pywm \ " IMAGE_INSTALL += " \ diff --git a/recipes-devtools/pywm/pywm_1.0.0.bb b/recipes-devtools/pywm/pywm_1.0.0.bb new file mode 100644 index 0000000..0f4e499 --- /dev/null +++ b/recipes-devtools/pywm/pywm_1.0.0.bb @@ -0,0 +1,24 @@ +DESCRIPTION = "beaglebone black python pwm abstaction" +SECTION = "devtools" +LICENSE = "MIT" + +PR = "r1" +PV = "1.0.0" + +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" + +S = "${WORKDIR}/git" + +inherit setuptools +inherit allarch + +SRC_URI = " \ + git://gitlab.blackfinn.de/python/pywm.git;protocol=https;tag=${PV} \ +" +SRC_URI[md5sum] = "a60bcf593ba5080bc2463a8abe8ab7b3" + + +DEPENDS = " \ + python \ +" +