diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-01-31 12:03:05 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-02-01 13:42:34 +0000 |
| commit | c2da016918d1fda5bf63d94b59863f5013e482f9 (patch) | |
| tree | 7f1c5dd99c56a405c1ebd86f497461b5c4214752 /meta/recipes-extended | |
| parent | c690181cd112ac6eac18c358b970f0ca0c73cd5f (diff) | |
| download | poky-c2da016918d1fda5bf63d94b59863f5013e482f9.tar.gz | |
meta/meta-selftest: Fix variable assignment whitespace
Recipes are much more readable with whitespace around the assignment operators.
Fix various assignments in OE-Core to show this is definitely the preferred
formatting.
(From OE-Core rev: 30ea609d3357fb3de911f2f6a5e6856c151b976a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
8 files changed, 9 insertions, 9 deletions
diff --git a/meta/recipes-extended/asciidoc/asciidoc_10.2.1.bb b/meta/recipes-extended/asciidoc/asciidoc_10.2.1.bb index 1065acdb8e..0360a342b4 100644 --- a/meta/recipes-extended/asciidoc/asciidoc_10.2.1.bb +++ b/meta/recipes-extended/asciidoc/asciidoc_10.2.1.bb | |||
| @@ -18,7 +18,7 @@ S = "${WORKDIR}/git" | |||
| 18 | 18 | ||
| 19 | # Tell xmllint where to find the DocBook XML catalogue, because right now it | 19 | # Tell xmllint where to find the DocBook XML catalogue, because right now it |
| 20 | # opens /etc/xml/catalog on the host. Depends on auto-catalogs.patch | 20 | # opens /etc/xml/catalog on the host. Depends on auto-catalogs.patch |
| 21 | export SGML_CATALOG_FILES="file://${STAGING_ETCDIR_NATIVE}/xml/catalog" | 21 | export SGML_CATALOG_FILES = "file://${STAGING_ETCDIR_NATIVE}/xml/catalog" |
| 22 | 22 | ||
| 23 | inherit setuptools3 | 23 | inherit setuptools3 |
| 24 | CLEANBROKEN = "1" | 24 | CLEANBROKEN = "1" |
diff --git a/meta/recipes-extended/baremetal-example/baremetal-helloworld_git.bb b/meta/recipes-extended/baremetal-example/baremetal-helloworld_git.bb index 6832ccc541..0e873604a4 100644 --- a/meta/recipes-extended/baremetal-example/baremetal-helloworld_git.bb +++ b/meta/recipes-extended/baremetal-example/baremetal-helloworld_git.bb | |||
| @@ -8,7 +8,7 @@ SRCREV = "db2bf750eaef7fc0832e13ada8291343bbcc3afe" | |||
| 8 | PV = "0.1+git" | 8 | PV = "0.1+git" |
| 9 | 9 | ||
| 10 | SRC_URI = "git://github.com/ahcbb6/baremetal-helloqemu.git;protocol=https;branch=master" | 10 | SRC_URI = "git://github.com/ahcbb6/baremetal-helloqemu.git;protocol=https;branch=master" |
| 11 | UPSTREAM_VERSION_UNKNOWN="1" | 11 | UPSTREAM_VERSION_UNKNOWN = "1" |
| 12 | 12 | ||
| 13 | S = "${WORKDIR}/git" | 13 | S = "${WORKDIR}/git" |
| 14 | 14 | ||
diff --git a/meta/recipes-extended/go-examples/go-helloworld_0.1.bb b/meta/recipes-extended/go-examples/go-helloworld_0.1.bb index 1e911e1694..f21cfbdf27 100644 --- a/meta/recipes-extended/go-examples/go-helloworld_0.1.bb +++ b/meta/recipes-extended/go-examples/go-helloworld_0.1.bb | |||
| @@ -12,7 +12,7 @@ UPSTREAM_CHECK_COMMITS = "1" | |||
| 12 | GO_IMPORT = "golang.org/x/example" | 12 | GO_IMPORT = "golang.org/x/example" |
| 13 | GO_INSTALL = "${GO_IMPORT}/hello" | 13 | GO_INSTALL = "${GO_IMPORT}/hello" |
| 14 | 14 | ||
| 15 | export GO111MODULE="off" | 15 | export GO111MODULE = "off" |
| 16 | 16 | ||
| 17 | inherit go | 17 | inherit go |
| 18 | 18 | ||
diff --git a/meta/recipes-extended/gzip/gzip.inc b/meta/recipes-extended/gzip/gzip.inc index 62b3e2f4f9..12232dd4da 100644 --- a/meta/recipes-extended/gzip/gzip.inc +++ b/meta/recipes-extended/gzip/gzip.inc | |||
| @@ -5,7 +5,7 @@ HOMEPAGE = "http://www.gnu.org/software/gzip/" | |||
| 5 | SECTION = "console/utils" | 5 | SECTION = "console/utils" |
| 6 | 6 | ||
| 7 | inherit autotools texinfo | 7 | inherit autotools texinfo |
| 8 | export DEFS="NO_ASM" | 8 | export DEFS = "NO_ASM" |
| 9 | 9 | ||
| 10 | EXTRA_OEMAKE:class-target = "GREP=${base_bindir}/grep" | 10 | EXTRA_OEMAKE:class-target = "GREP=${base_bindir}/grep" |
| 11 | EXTRA_OEMAKE:append:class-nativesdk = " GREP=grep" | 11 | EXTRA_OEMAKE:append:class-nativesdk = " GREP=grep" |
| @@ -30,4 +30,4 @@ ALTERNATIVE_LINK_NAME[gunzip] = "${base_bindir}/gunzip" | |||
| 30 | ALTERNATIVE_LINK_NAME[gzip] = "${base_bindir}/gzip" | 30 | ALTERNATIVE_LINK_NAME[gzip] = "${base_bindir}/gzip" |
| 31 | ALTERNATIVE_LINK_NAME[zcat] = "${base_bindir}/zcat" | 31 | ALTERNATIVE_LINK_NAME[zcat] = "${base_bindir}/zcat" |
| 32 | 32 | ||
| 33 | export CONFIG_SHELL="/bin/sh" | 33 | export CONFIG_SHELL = "/bin/sh" |
diff --git a/meta/recipes-extended/logrotate/logrotate_3.22.0.bb b/meta/recipes-extended/logrotate/logrotate_3.22.0.bb index ac14f30051..5c4a0a9807 100644 --- a/meta/recipes-extended/logrotate/logrotate_3.22.0.bb +++ b/meta/recipes-extended/logrotate/logrotate_3.22.0.bb | |||
| @@ -6,7 +6,7 @@ LICENSE = "GPL-2.0-only" | |||
| 6 | 6 | ||
| 7 | # TODO: Document coreutils dependency. Why not RDEPENDS? Why not busybox? | 7 | # TODO: Document coreutils dependency. Why not RDEPENDS? Why not busybox? |
| 8 | 8 | ||
| 9 | DEPENDS="coreutils popt" | 9 | DEPENDS = "coreutils popt" |
| 10 | 10 | ||
| 11 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | 11 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" |
| 12 | 12 | ||
diff --git a/meta/recipes-extended/perl/libxml-namespacesupport-perl_1.12.bb b/meta/recipes-extended/perl/libxml-namespacesupport-perl_1.12.bb index 568268d886..b7e4c8b223 100644 --- a/meta/recipes-extended/perl/libxml-namespacesupport-perl_1.12.bb +++ b/meta/recipes-extended/perl/libxml-namespacesupport-perl_1.12.bb | |||
| @@ -23,5 +23,5 @@ inherit cpan ptest-perl | |||
| 23 | 23 | ||
| 24 | RDEPENDS:${PN}-ptest += "perl-module-test-more" | 24 | RDEPENDS:${PN}-ptest += "perl-module-test-more" |
| 25 | 25 | ||
| 26 | BBCLASSEXTEND="native nativesdk" | 26 | BBCLASSEXTEND = "native nativesdk" |
| 27 | 27 | ||
diff --git a/meta/recipes-extended/shadow/shadow_4.17.1.bb b/meta/recipes-extended/shadow/shadow_4.17.1.bb index a70ecea1f2..7c89062646 100644 --- a/meta/recipes-extended/shadow/shadow_4.17.1.bb +++ b/meta/recipes-extended/shadow/shadow_4.17.1.bb | |||
| @@ -39,7 +39,7 @@ PAM_SRC_URI = "file://pam.d/chfn \ | |||
| 39 | 39 | ||
| 40 | inherit autotools gettext github-releases pkgconfig | 40 | inherit autotools gettext github-releases pkgconfig |
| 41 | 41 | ||
| 42 | export CONFIG_SHELL="/bin/sh" | 42 | export CONFIG_SHELL = "/bin/sh" |
| 43 | 43 | ||
| 44 | EXTRA_OECONF += " \ | 44 | EXTRA_OECONF += " \ |
| 45 | --with-group-name-max-length=24 \ | 45 | --with-group-name-max-length=24 \ |
diff --git a/meta/recipes-extended/timezone/timezone.inc b/meta/recipes-extended/timezone/timezone.inc index f1dbd7ba81..ca9e29f72d 100644 --- a/meta/recipes-extended/timezone/timezone.inc +++ b/meta/recipes-extended/timezone/timezone.inc | |||
| @@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=c679c9d6b02bc2757b3eaf8f53c43fba" | |||
| 8 | 8 | ||
| 9 | PV = "2025a" | 9 | PV = "2025a" |
| 10 | 10 | ||
| 11 | SRC_URI =" http://www.iana.org/time-zones/repository/releases/tzcode${PV}.tar.gz;name=tzcode;subdir=tz \ | 11 | SRC_URI = "http://www.iana.org/time-zones/repository/releases/tzcode${PV}.tar.gz;name=tzcode;subdir=tz \ |
| 12 | http://www.iana.org/time-zones/repository/releases/tzdata${PV}.tar.gz;name=tzdata;subdir=tz \ | 12 | http://www.iana.org/time-zones/repository/releases/tzdata${PV}.tar.gz;name=tzdata;subdir=tz \ |
| 13 | " | 13 | " |
| 14 | 14 | ||
