diff options
| author | Martin Jansa <Martin.Jansa@gmail.com> | 2021-07-29 19:58:04 +0200 |
|---|---|---|
| committer | Andrei Gherzan <andrei@gherzan.com> | 2021-08-04 12:30:12 +0300 |
| commit | 9ea7aa2cd2cdc775425797b689e782718896ea50 (patch) | |
| tree | 3831e2403262e27cd178a213b82c2ed8ad91e9a6 /recipes-devtools | |
| parent | 8dc3a310883ea87cd9900442f46f20bb08e57583 (diff) | |
| download | meta-raspberrypi-9ea7aa2cd2cdc775425797b689e782718896ea50.tar.gz | |
Convert to new override syntax
This is the result of automated script conversion:
oe-core/scripts/contrib/convert-overrides.py .
converting the metadata to use ":" as the override character instead of "_".
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes-devtools')
11 files changed, 19 insertions, 19 deletions
diff --git a/recipes-devtools/bcm2835/bcm2835_1.52.bb b/recipes-devtools/bcm2835/bcm2835_1.52.bb index eef6afd..87252bb 100644 --- a/recipes-devtools/bcm2835/bcm2835_1.52.bb +++ b/recipes-devtools/bcm2835/bcm2835_1.52.bb | |||
| @@ -17,7 +17,7 @@ SRC_URI[sha256sum] = "b9fd10f7a80aadaed28a77168709b7c519568a63b6e98d0a50e9c5fe31 | |||
| 17 | 17 | ||
| 18 | inherit autotools | 18 | inherit autotools |
| 19 | 19 | ||
| 20 | do_compile_append() { | 20 | do_compile:append() { |
| 21 | # Now compiling the examples provided by the package | 21 | # Now compiling the examples provided by the package |
| 22 | mkdir -p ${B}/examples | 22 | mkdir -p ${B}/examples |
| 23 | for file in `ls ${S}/examples`; do | 23 | for file in `ls ${S}/examples`; do |
| @@ -25,7 +25,7 @@ do_compile_append() { | |||
| 25 | done | 25 | done |
| 26 | } | 26 | } |
| 27 | 27 | ||
| 28 | do_install_append() { | 28 | do_install:append() { |
| 29 | install -d ${D}/${libdir}/${BPN} | 29 | install -d ${D}/${libdir}/${BPN} |
| 30 | for file in ${B}/examples/* | 30 | for file in ${B}/examples/* |
| 31 | do | 31 | do |
| @@ -35,8 +35,8 @@ do_install_append() { | |||
| 35 | 35 | ||
| 36 | PACKAGES += "${PN}-tests" | 36 | PACKAGES += "${PN}-tests" |
| 37 | 37 | ||
| 38 | RDEPENDS_${PN}-dev = "" | 38 | RDEPENDS:${PN}-dev = "" |
| 39 | 39 | ||
| 40 | FILES_${PN} = "" | 40 | FILES:${PN} = "" |
| 41 | FILES_${PN}-tests = "${libdir}/${BPN}" | 41 | FILES:${PN}-tests = "${libdir}/${BPN}" |
| 42 | FILES_${PN}-dbg += "${libdir}/${BPN}/.debug" | 42 | FILES:${PN}-dbg += "${libdir}/${BPN}/.debug" |
diff --git a/recipes-devtools/pi-blaster/pi-blaster_git.bb b/recipes-devtools/pi-blaster/pi-blaster_git.bb index fdaf16c..4aa7427 100644 --- a/recipes-devtools/pi-blaster/pi-blaster_git.bb +++ b/recipes-devtools/pi-blaster/pi-blaster_git.bb | |||
| @@ -15,8 +15,8 @@ SRCREV = "befd8ef36e5066e4d444ef47fe4020787e541248" | |||
| 15 | inherit update-rc.d autotools | 15 | inherit update-rc.d autotools |
| 16 | 16 | ||
| 17 | INITSCRIPT_PACKAGES = "${PN}" | 17 | INITSCRIPT_PACKAGES = "${PN}" |
| 18 | INITSCRIPT_NAME_${PN} = "${PN}.boot.sh" | 18 | INITSCRIPT_NAME:${PN} = "${PN}.boot.sh" |
| 19 | INITSCRIPT_PARAMS_${PN} = "defaults 15 85" | 19 | INITSCRIPT_PARAMS:${PN} = "defaults 15 85" |
| 20 | 20 | ||
| 21 | COMPATIBLE_MACHINE = "^rpi$" | 21 | COMPATIBLE_MACHINE = "^rpi$" |
| 22 | 22 | ||
diff --git a/recipes-devtools/python/python3-adafruit-blinka_6.2.2.bb b/recipes-devtools/python/python3-adafruit-blinka_6.2.2.bb index dc9e680..4659ad9 100644 --- a/recipes-devtools/python/python3-adafruit-blinka_6.2.2.bb +++ b/recipes-devtools/python/python3-adafruit-blinka_6.2.2.bb | |||
| @@ -12,7 +12,7 @@ inherit setuptools3 | |||
| 12 | 12 | ||
| 13 | DEPENDS += "python3-setuptools-scm-native" | 13 | DEPENDS += "python3-setuptools-scm-native" |
| 14 | 14 | ||
| 15 | do_install_append() { | 15 | do_install:append() { |
| 16 | # it ships ./bcm283x/pulseio/libgpiod_pulsein which is a prebuilt | 16 | # it ships ./bcm283x/pulseio/libgpiod_pulsein which is a prebuilt |
| 17 | # 32bit binary therefore we should make this specific to 32bit rpi machines (based on bcm283x) only | 17 | # 32bit binary therefore we should make this specific to 32bit rpi machines (based on bcm283x) only |
| 18 | if [ ${@bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', '1', '0', d)} = "0" ]; then | 18 | if [ ${@bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', '1', '0', d)} = "0" ]; then |
| @@ -20,11 +20,11 @@ do_install_append() { | |||
| 20 | fi | 20 | fi |
| 21 | } | 21 | } |
| 22 | 22 | ||
| 23 | RDEPENDS_${PN} += " \ | 23 | RDEPENDS:${PN} += " \ |
| 24 | libgpiod \ | 24 | libgpiod \ |
| 25 | python3-adafruit-platformdetect \ | 25 | python3-adafruit-platformdetect \ |
| 26 | python3-adafruit-pureio \ | 26 | python3-adafruit-pureio \ |
| 27 | python3-core \ | 27 | python3-core \ |
| 28 | " | 28 | " |
| 29 | 29 | ||
| 30 | RDEPENDS_${PN}_append_rpi = " rpi-gpio" | 30 | RDEPENDS:${PN}:append:rpi = " rpi-gpio" |
diff --git a/recipes-devtools/python/python3-adafruit-circuitpython-busdevice_5.0.5.bb b/recipes-devtools/python/python3-adafruit-circuitpython-busdevice_5.0.5.bb index 7c1a267..7cccd58 100644 --- a/recipes-devtools/python/python3-adafruit-circuitpython-busdevice_5.0.5.bb +++ b/recipes-devtools/python/python3-adafruit-circuitpython-busdevice_5.0.5.bb | |||
| @@ -12,7 +12,7 @@ inherit setuptools3 | |||
| 12 | 12 | ||
| 13 | DEPENDS += "python3-setuptools-scm-native" | 13 | DEPENDS += "python3-setuptools-scm-native" |
| 14 | 14 | ||
| 15 | RDEPENDS_${PN} += " \ | 15 | RDEPENDS:${PN} += " \ |
| 16 | python3-adafruit-blinka \ | 16 | python3-adafruit-blinka \ |
| 17 | python3-core \ | 17 | python3-core \ |
| 18 | " | 18 | " |
diff --git a/recipes-devtools/python/python3-adafruit-circuitpython-motor_3.2.6.bb b/recipes-devtools/python/python3-adafruit-circuitpython-motor_3.2.6.bb index b0475e6..c5da4ac 100644 --- a/recipes-devtools/python/python3-adafruit-circuitpython-motor_3.2.6.bb +++ b/recipes-devtools/python/python3-adafruit-circuitpython-motor_3.2.6.bb | |||
| @@ -12,7 +12,7 @@ inherit setuptools3 | |||
| 12 | 12 | ||
| 13 | DEPENDS += "python3-setuptools-scm-native" | 13 | DEPENDS += "python3-setuptools-scm-native" |
| 14 | 14 | ||
| 15 | RDEPENDS_${PN} += " \ | 15 | RDEPENDS:${PN} += " \ |
| 16 | python3-adafruit-blinka \ | 16 | python3-adafruit-blinka \ |
| 17 | python3-core \ | 17 | python3-core \ |
| 18 | " | 18 | " |
diff --git a/recipes-devtools/python/python3-adafruit-circuitpython-motorkit_1.6.1.bb b/recipes-devtools/python/python3-adafruit-circuitpython-motorkit_1.6.1.bb index 12a63f3..eacca3e 100644 --- a/recipes-devtools/python/python3-adafruit-circuitpython-motorkit_1.6.1.bb +++ b/recipes-devtools/python/python3-adafruit-circuitpython-motorkit_1.6.1.bb | |||
| @@ -12,7 +12,7 @@ inherit setuptools3 | |||
| 12 | 12 | ||
| 13 | DEPENDS += "python3-setuptools-scm-native" | 13 | DEPENDS += "python3-setuptools-scm-native" |
| 14 | 14 | ||
| 15 | RDEPENDS_${PN} += " \ | 15 | RDEPENDS:${PN} += " \ |
| 16 | python3-adafruit-blinka \ | 16 | python3-adafruit-blinka \ |
| 17 | python3-adafruit-circuitpython-busdevice \ | 17 | python3-adafruit-circuitpython-busdevice \ |
| 18 | python3-adafruit-circuitpython-motor \ | 18 | python3-adafruit-circuitpython-motor \ |
diff --git a/recipes-devtools/python/python3-adafruit-circuitpython-pca9685_3.3.4.bb b/recipes-devtools/python/python3-adafruit-circuitpython-pca9685_3.3.4.bb index a46b130..23cd786 100644 --- a/recipes-devtools/python/python3-adafruit-circuitpython-pca9685_3.3.4.bb +++ b/recipes-devtools/python/python3-adafruit-circuitpython-pca9685_3.3.4.bb | |||
| @@ -12,7 +12,7 @@ inherit setuptools3 | |||
| 12 | 12 | ||
| 13 | DEPENDS += "python3-setuptools-scm-native" | 13 | DEPENDS += "python3-setuptools-scm-native" |
| 14 | 14 | ||
| 15 | RDEPENDS_${PN} += " \ | 15 | RDEPENDS:${PN} += " \ |
| 16 | python3-adafruit-blinka \ | 16 | python3-adafruit-blinka \ |
| 17 | python3-adafruit-circuitpython-busdevice \ | 17 | python3-adafruit-circuitpython-busdevice \ |
| 18 | python3-adafruit-circuitpython-register \ | 18 | python3-adafruit-circuitpython-register \ |
diff --git a/recipes-devtools/python/python3-adafruit-circuitpython-register_1.9.4.bb b/recipes-devtools/python/python3-adafruit-circuitpython-register_1.9.4.bb index 7d0377b..ccf5eaa 100644 --- a/recipes-devtools/python/python3-adafruit-circuitpython-register_1.9.4.bb +++ b/recipes-devtools/python/python3-adafruit-circuitpython-register_1.9.4.bb | |||
| @@ -12,4 +12,4 @@ DEPENDS += "python3-setuptools-scm-native" | |||
| 12 | 12 | ||
| 13 | inherit setuptools3 | 13 | inherit setuptools3 |
| 14 | 14 | ||
| 15 | RDEPENDS_${PN} += "python3-core" | 15 | RDEPENDS:${PN} += "python3-core" |
diff --git a/recipes-devtools/python/python3-adafruit-platformdetect_3.1.1.bb b/recipes-devtools/python/python3-adafruit-platformdetect_3.1.1.bb index 0574c53..b88affa 100644 --- a/recipes-devtools/python/python3-adafruit-platformdetect_3.1.1.bb +++ b/recipes-devtools/python/python3-adafruit-platformdetect_3.1.1.bb | |||
| @@ -12,4 +12,4 @@ inherit setuptools3 | |||
| 12 | 12 | ||
| 13 | DEPENDS += "python3-setuptools-scm-native" | 13 | DEPENDS += "python3-setuptools-scm-native" |
| 14 | 14 | ||
| 15 | RDEPENDS_${PN} += "python3-core" | 15 | RDEPENDS:${PN} += "python3-core" |
diff --git a/recipes-devtools/python/python3-adafruit-pureio_1.1.8.bb b/recipes-devtools/python/python3-adafruit-pureio_1.1.8.bb index a59e6f5..63c7166 100644 --- a/recipes-devtools/python/python3-adafruit-pureio_1.1.8.bb +++ b/recipes-devtools/python/python3-adafruit-pureio_1.1.8.bb | |||
| @@ -12,7 +12,7 @@ inherit setuptools3 | |||
| 12 | 12 | ||
| 13 | DEPENDS += "python3-setuptools-scm-native" | 13 | DEPENDS += "python3-setuptools-scm-native" |
| 14 | 14 | ||
| 15 | RDEPENDS_${PN} += " \ | 15 | RDEPENDS:${PN} += " \ |
| 16 | python3-core \ | 16 | python3-core \ |
| 17 | python3-ctypes \ | 17 | python3-ctypes \ |
| 18 | python3-fcntl \ | 18 | python3-fcntl \ |
diff --git a/recipes-devtools/python/rpio_0.10.0.bb b/recipes-devtools/python/rpio_0.10.0.bb index d5653cb..1c8075f 100644 --- a/recipes-devtools/python/rpio_0.10.0.bb +++ b/recipes-devtools/python/rpio_0.10.0.bb | |||
| @@ -14,7 +14,7 @@ inherit setuptools3 | |||
| 14 | 14 | ||
| 15 | COMPATIBLE_MACHINE = "^rpi$" | 15 | COMPATIBLE_MACHINE = "^rpi$" |
| 16 | 16 | ||
| 17 | RDEPENDS_${PN} = "\ | 17 | RDEPENDS:${PN} = "\ |
| 18 | python3-logging \ | 18 | python3-logging \ |
| 19 | python3-threading \ | 19 | python3-threading \ |
| 20 | " | 20 | " |
