summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-01-31 12:03:05 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-02-01 13:42:34 +0000
commitc2da016918d1fda5bf63d94b59863f5013e482f9 (patch)
tree7f1c5dd99c56a405c1ebd86f497461b5c4214752 /meta/recipes-extended
parentc690181cd112ac6eac18c358b970f0ca0c73cd5f (diff)
downloadpoky-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')
-rw-r--r--meta/recipes-extended/asciidoc/asciidoc_10.2.1.bb2
-rw-r--r--meta/recipes-extended/baremetal-example/baremetal-helloworld_git.bb2
-rw-r--r--meta/recipes-extended/go-examples/go-helloworld_0.1.bb2
-rw-r--r--meta/recipes-extended/gzip/gzip.inc4
-rw-r--r--meta/recipes-extended/logrotate/logrotate_3.22.0.bb2
-rw-r--r--meta/recipes-extended/perl/libxml-namespacesupport-perl_1.12.bb2
-rw-r--r--meta/recipes-extended/shadow/shadow_4.17.1.bb2
-rw-r--r--meta/recipes-extended/timezone/timezone.inc2
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
21export SGML_CATALOG_FILES="file://${STAGING_ETCDIR_NATIVE}/xml/catalog" 21export SGML_CATALOG_FILES = "file://${STAGING_ETCDIR_NATIVE}/xml/catalog"
22 22
23inherit setuptools3 23inherit setuptools3
24CLEANBROKEN = "1" 24CLEANBROKEN = "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"
8PV = "0.1+git" 8PV = "0.1+git"
9 9
10SRC_URI = "git://github.com/ahcbb6/baremetal-helloqemu.git;protocol=https;branch=master" 10SRC_URI = "git://github.com/ahcbb6/baremetal-helloqemu.git;protocol=https;branch=master"
11UPSTREAM_VERSION_UNKNOWN="1" 11UPSTREAM_VERSION_UNKNOWN = "1"
12 12
13S = "${WORKDIR}/git" 13S = "${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"
12GO_IMPORT = "golang.org/x/example" 12GO_IMPORT = "golang.org/x/example"
13GO_INSTALL = "${GO_IMPORT}/hello" 13GO_INSTALL = "${GO_IMPORT}/hello"
14 14
15export GO111MODULE="off" 15export GO111MODULE = "off"
16 16
17inherit go 17inherit 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/"
5SECTION = "console/utils" 5SECTION = "console/utils"
6 6
7inherit autotools texinfo 7inherit autotools texinfo
8export DEFS="NO_ASM" 8export DEFS = "NO_ASM"
9 9
10EXTRA_OEMAKE:class-target = "GREP=${base_bindir}/grep" 10EXTRA_OEMAKE:class-target = "GREP=${base_bindir}/grep"
11EXTRA_OEMAKE:append:class-nativesdk = " GREP=grep" 11EXTRA_OEMAKE:append:class-nativesdk = " GREP=grep"
@@ -30,4 +30,4 @@ ALTERNATIVE_LINK_NAME[gunzip] = "${base_bindir}/gunzip"
30ALTERNATIVE_LINK_NAME[gzip] = "${base_bindir}/gzip" 30ALTERNATIVE_LINK_NAME[gzip] = "${base_bindir}/gzip"
31ALTERNATIVE_LINK_NAME[zcat] = "${base_bindir}/zcat" 31ALTERNATIVE_LINK_NAME[zcat] = "${base_bindir}/zcat"
32 32
33export CONFIG_SHELL="/bin/sh" 33export 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
9DEPENDS="coreutils popt" 9DEPENDS = "coreutils popt"
10 10
11LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" 11LIC_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
24RDEPENDS:${PN}-ptest += "perl-module-test-more" 24RDEPENDS:${PN}-ptest += "perl-module-test-more"
25 25
26BBCLASSEXTEND="native nativesdk" 26BBCLASSEXTEND = "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
40inherit autotools gettext github-releases pkgconfig 40inherit autotools gettext github-releases pkgconfig
41 41
42export CONFIG_SHELL="/bin/sh" 42export CONFIG_SHELL = "/bin/sh"
43 43
44EXTRA_OECONF += " \ 44EXTRA_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
9PV = "2025a" 9PV = "2025a"
10 10
11SRC_URI =" http://www.iana.org/time-zones/repository/releases/tzcode${PV}.tar.gz;name=tzcode;subdir=tz \ 11SRC_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