recipes-devtools: cleanup

Signed-off-by: Thomas Klaehn <thomas.klaehn@u-blox.com>
This commit is contained in:
Thomas Klaehn 2019-01-21 20:37:03 +01:00
parent 44eb397f1c
commit 696eefc352
7 changed files with 3 additions and 161 deletions

View File

@ -70,9 +70,6 @@ MQTT = " \
"
PYTHON_LIBS = " \
pypio \
pywm \
ultrasonic-distance \
"
IMAGE_INSTALL += " \
@ -83,7 +80,6 @@ IMAGE_INSTALL += " \
${WIFI_SUPPORT} \
${MQTT} \
${PYTHON_LIBS} \
vl53l0x-api \
"
set_local_timezone() {

View File

@ -24,9 +24,9 @@
# Offline mode (for use in constructing flash images offline)
#option offline_root target
src/gz all https://opkg.blackfinn.de/rocko/all
src/gz beaglebone https://opkg.blackfinn.de/rocko/beaglebone
src/gz cortexa8hf-neon https://opkg.blackfinn.de/rocko/cortexa8hf-neon
src/gz all https://opkg.blackfinn.de/sumo/all
src/gz beaglebone https://opkg.blackfinn.de/sumo/beaglebone
src/gz cortexa8hf-neon https://opkg.blackfinn.de/sumo/cortexa8hf-neon
# Default destination for installed packages
dest root /

View File

@ -1,28 +0,0 @@
DESCRIPTION = "python hardware abstraction"
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://git.blackfinn.de/python/pypio.git;protocol=https;tag=${PV} \
"
SRC_URI[md5sum] = "a60bcf593ba5080bc2463a8abe8ab7b3"
DEPENDS = " \
python \
"
RDEPENDS_${PN} = " \
\
"

View File

@ -1,24 +0,0 @@
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://git.blackfinn.de/python/pywm.git;protocol=https;tag=${PV} \
"
SRC_URI[md5sum] = "a60bcf593ba5080bc2463a8abe8ab7b3"
DEPENDS = " \
python \
"

View File

@ -1,28 +0,0 @@
DESCRIPTION = "python hardware abstraction"
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://git.blackfinn.de/python/ultrasonic-distance.git;protocol=https;tag=${PV} \
"
SRC_URI[md5sum] = "a60bcf593ba5080bc2463a8abe8ab7b3"
DEPENDS = " \
python \
"
RDEPENDS_${PN} = " \
pypio \
"

View File

@ -1,28 +0,0 @@
DESCRIPTION = "python hardware abstraction"
SECTION = "devtools"
LICENSE = "MIT"
PR = "r1"
PV = "1.1.0"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
S = "${WORKDIR}/git"
inherit setuptools
inherit allarch
SRC_URI = " \
git://git.blackfinn.de/python/ultrasonic-distance.git;protocol=https;tag=${PV} \
"
SRC_URI[md5sum] = "a60bcf593ba5080bc2463a8abe8ab7b3"
DEPENDS = " \
python \
"
RDEPENDS_${PN} = " \
pypio \
"

View File

@ -1,46 +0,0 @@
DESCRIPTION = " "
SECTION = "devtools"
LICENSE = "MIT"
PR = "r1"
PV = "1.0.0"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
S = "${WORKDIR}/git"
SRC_URI = " \
git://git.blackfinn.de/tkl/vl53l0x-api.git;protocol=https;tag=${PV} \
"
SRC_URI[md5sum] = "a60bcf593ba5080bc2463a8abe8ab7b3"
DEPENDS = " \
\
"
RDEPENDS_${PN} = " \
\
"
TARGET_CC_ARCH += "${LDFLAGS}"
INSANE_SKIP_${PN}-dev += "dev-elf"
do_install() {
install -d ${D}${libdir}
install -d ${D}${includedir}
install -m 0644 ${S}/bin/libvl53l0x.so ${D}${libdir}/
install -m 0644 ${S}/Api/core/inc/vl53l0x_api.h ${D}${includedir}
install -m 0644 ${S}/platform/inc/vl53l0x_platform.h ${D}${includedir}
}
PACKAGES = "${PN} ${PN}-dbg ${PN}-dev"
FILES_${PN} = "${libdir}/libvl53l0x.so"
FILES_${PN}-dev = " \
${includedir}/vl53l0x_api.h \
${includedir}/vl53l0x_platform.h \
"