mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-07 05:10:20 +00:00
recipes: Fix variable assignment whitespace
Recipes are much more readable with whitespace around the assignment operators. Fix various assignments in meta-openembedded recipes to show this is definitely the preferred formatting. This fixes recipes with larger numbers of issues but there are just under 100 other references left to fix. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -25,4 +25,4 @@ RDEPENDS:${PN} = "python3-numpy \
|
||||
python3-json \
|
||||
"
|
||||
|
||||
export HDF5_VERSION="1.14.0"
|
||||
export HDF5_VERSION = "1.14.0"
|
||||
|
||||
@@ -8,7 +8,7 @@ inherit pypi setuptools3
|
||||
|
||||
SRC_URI[sha256sum] = "ebd733b560704c602d744eafc839db60a1ee9326e30a2a80c4adb8718adc1b24"
|
||||
|
||||
PYPI_PACKAGE="jsbeautifier"
|
||||
PYPI_PACKAGE = "jsbeautifier"
|
||||
|
||||
RDEPENDS:${PN} += "\
|
||||
python3-core \
|
||||
|
||||
@@ -7,6 +7,6 @@ SRC_URI[sha256sum] = "025f8c809a126f45a082ffa820893e6a8d990d9d7ddb68694b5a9f0a6d
|
||||
|
||||
inherit pypi setuptools3
|
||||
|
||||
PYPI_PACKAGE="pcodedmp"
|
||||
PYPI_PACKAGE = "pcodedmp"
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
|
||||
@@ -8,7 +8,7 @@ SRC_URI[sha256sum] = "dbd9047a7ac10d11a5227e97163b617ad5d665050476ff63867d971758
|
||||
|
||||
inherit pypi python_setuptools_build_meta
|
||||
|
||||
PYPI_PACKAGE= "pdm_backend"
|
||||
PYPI_PACKAGE = "pdm_backend"
|
||||
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
SUMMARY="Pylint is a Python source code analyzer"
|
||||
HOMEPAGE= "http://www.pylint.org/"
|
||||
SUMMARY = "Pylint is a Python source code analyzer"
|
||||
HOMEPAGE = "http://www.pylint.org/"
|
||||
LICENSE = "GPL-2.0-only"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=c107cf754550e65755c42985a5d4e9c9"
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ SRC_URI[sha256sum] = "8e1c8e72d0845ad2b32a47ab11a719bc2e41165ec101fd4d3fe9e92aa3
|
||||
|
||||
inherit pypi
|
||||
|
||||
PYPI_PACKAGE="rarfile"
|
||||
PYPI_PACKAGE = "rarfile"
|
||||
|
||||
RDEPENDS:${PN} += "\
|
||||
7zip \
|
||||
|
||||
@@ -5,7 +5,7 @@ LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=609ded3add9111c4c6e102f1d421d3f8"
|
||||
|
||||
# Prefix archive to avoid clashing with the main redis archives
|
||||
PYPI_ARCHIVE_NAME_PREFIX="pypi-"
|
||||
PYPI_ARCHIVE_NAME_PREFIX = "pypi-"
|
||||
|
||||
SRC_URI[sha256sum] = "16f2e22dff21d5125e8481515e386711a34cbec50f0e44413dd7d9c060a54e0f"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ SRC_URI[sha256sum] = "308ebfd98e67d898834876348b27caf41470cd853fbe2681cc7dacd8fd
|
||||
|
||||
inherit pypi setuptools3
|
||||
|
||||
PYPI_PACKAGE="unoconv"
|
||||
PYPI_PACKAGE = "unoconv"
|
||||
|
||||
RDEPENDS:${PN} += "\
|
||||
python3-setuptools \
|
||||
|
||||
@@ -8,7 +8,7 @@ SRC_URI[sha256sum] = "f5013484eaf7a20eb22d1821aaefe60b50cc329722372b5f8565d46d4a
|
||||
|
||||
inherit pypi setuptools3
|
||||
|
||||
PYPI_PACKAGE="Wand"
|
||||
PYPI_PACKAGE = "Wand"
|
||||
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
|
||||
|
||||
FILES:${PN}-doc += "${datadir}/README.rst"
|
||||
|
||||
Reference in New Issue
Block a user