summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-03-19 13:07:48 -0700
committerKhem Raj <raj.khem@gmail.com>2025-03-20 08:46:56 -0700
commiteac1f5b9c0b1b81aa24827be94e4a1a91cd49eee (patch)
tree86ff05514e9c1c8262e7353b4df496ba7d4fb221 /meta-oe/recipes-devtools
parent42727bb3c0b230a819b73e3f6cea8ecffc02cf69 (diff)
downloadmeta-openembedded-eac1f5b9c0b1b81aa24827be94e4a1a91cd49eee.tar.gz
recipes: Fix variable assignment whitespace
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools')
-rw-r--r--meta-oe/recipes-devtools/cloc/cloc_1.98.bb2
-rw-r--r--meta-oe/recipes-devtools/cppgenerate/cppgenerate_0.3.bb2
-rw-r--r--meta-oe/recipes-devtools/cpuid/cpuid_20230614.bb2
-rw-r--r--meta-oe/recipes-devtools/mercurial/mercurial_6.6.3.bb2
-rw-r--r--meta-oe/recipes-devtools/perfetto/perfetto.bb2
-rw-r--r--meta-oe/recipes-devtools/perl/libdev-checklib-perl_1.16.bb2
-rw-r--r--meta-oe/recipes-devtools/perl/libpcsc-perl_1.4.15.bb2
-rw-r--r--meta-oe/recipes-devtools/tcltk/tk8_8.6.15.bb2
-rw-r--r--meta-oe/recipes-devtools/tcltk/tk_9.0.1.bb2
9 files changed, 9 insertions, 9 deletions
diff --git a/meta-oe/recipes-devtools/cloc/cloc_1.98.bb b/meta-oe/recipes-devtools/cloc/cloc_1.98.bb
index acf882cc76..6d349c1e58 100644
--- a/meta-oe/recipes-devtools/cloc/cloc_1.98.bb
+++ b/meta-oe/recipes-devtools/cloc/cloc_1.98.bb
@@ -1,7 +1,7 @@
1SUMMARY = "Count blank lines, comment lines, and physical lines of source code \ 1SUMMARY = "Count blank lines, comment lines, and physical lines of source code \
2in many programming languages." 2in many programming languages."
3 3
4LICENSE="GPL-2.0-only" 4LICENSE = "GPL-2.0-only"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=2c1c00f9d3ed9e24fa69b932b7e7aff2" 5LIC_FILES_CHKSUM = "file://LICENSE;md5=2c1c00f9d3ed9e24fa69b932b7e7aff2"
6 6
7SRC_URI = "https://github.com/AlDanial/cloc/releases/download/v${PV}/${BP}.tar.gz" 7SRC_URI = "https://github.com/AlDanial/cloc/releases/download/v${PV}/${BP}.tar.gz"
diff --git a/meta-oe/recipes-devtools/cppgenerate/cppgenerate_0.3.bb b/meta-oe/recipes-devtools/cppgenerate/cppgenerate_0.3.bb
index 0d7bdc83dc..961c94205f 100644
--- a/meta-oe/recipes-devtools/cppgenerate/cppgenerate_0.3.bb
+++ b/meta-oe/recipes-devtools/cppgenerate/cppgenerate_0.3.bb
@@ -11,4 +11,4 @@ S = "${WORKDIR}/git"
11 11
12inherit cmake 12inherit cmake
13 13
14BBCLASSEXTEND="native nativesdk" 14BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-oe/recipes-devtools/cpuid/cpuid_20230614.bb b/meta-oe/recipes-devtools/cpuid/cpuid_20230614.bb
index 8fdbe21737..36614ca19d 100644
--- a/meta-oe/recipes-devtools/cpuid/cpuid_20230614.bb
+++ b/meta-oe/recipes-devtools/cpuid/cpuid_20230614.bb
@@ -3,7 +3,7 @@ DESCRIPTION = "cpuid dumps detailed information about the CPU(s) gathered \
3from the CPUID instruction, and also determines the exact model of CPU(s). \ 3from the CPUID instruction, and also determines the exact model of CPU(s). \
4It supports Intel, AMD, and VIA CPUs, as well as older Transmeta, Cyrix, \ 4It supports Intel, AMD, and VIA CPUs, as well as older Transmeta, Cyrix, \
5UMC, NexGen, Rise, and SiS CPUs" 5UMC, NexGen, Rise, and SiS CPUs"
6HOMEPAGE="http://www.etallen.com/cpuid.html" 6HOMEPAGE = "http://www.etallen.com/cpuid.html"
7LICENSE = "GPL-2.0-only" 7LICENSE = "GPL-2.0-only"
8LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263" 8LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263"
9 9
diff --git a/meta-oe/recipes-devtools/mercurial/mercurial_6.6.3.bb b/meta-oe/recipes-devtools/mercurial/mercurial_6.6.3.bb
index 395a330790..9331cd16fe 100644
--- a/meta-oe/recipes-devtools/mercurial/mercurial_6.6.3.bb
+++ b/meta-oe/recipes-devtools/mercurial/mercurial_6.6.3.bb
@@ -16,7 +16,7 @@ S = "${WORKDIR}/mercurial-${PV}"
16 16
17BBCLASSEXTEND = "native" 17BBCLASSEXTEND = "native"
18 18
19export LDSHARED="${CCLD} -shared" 19export LDSHARED = "${CCLD} -shared"
20 20
21EXTRA_OEMAKE = "STAGING_LIBDIR=${STAGING_LIBDIR} STAGING_INCDIR=${STAGING_INCDIR} \ 21EXTRA_OEMAKE = "STAGING_LIBDIR=${STAGING_LIBDIR} STAGING_INCDIR=${STAGING_INCDIR} \
22 PREFIX=${prefix}" 22 PREFIX=${prefix}"
diff --git a/meta-oe/recipes-devtools/perfetto/perfetto.bb b/meta-oe/recipes-devtools/perfetto/perfetto.bb
index d2a6fbe654..5a5d4de899 100644
--- a/meta-oe/recipes-devtools/perfetto/perfetto.bb
+++ b/meta-oe/recipes-devtools/perfetto/perfetto.bb
@@ -44,7 +44,7 @@ SRCREV_libunwind = "419b03c0b8f20d6da9ddcb0d661a94a97cdd7dad"
44SRCREV_zlib = "6d3f6aa0f87c9791ca7724c279ef61384f331dfd" 44SRCREV_zlib = "6d3f6aa0f87c9791ca7724c279ef61384f331dfd"
45SRCREV_zstd = "77211fcc5e08c781734a386402ada93d0d18d093" 45SRCREV_zstd = "77211fcc5e08c781734a386402ada93d0d18d093"
46 46
47SRCREV_FORMAT .="_bionic_core_lzma_libprocinfo_logging_unwinding_protobuf_libbase_libcxx_libcxxabi_libunwind_zlib_zstd" 47SRCREV_FORMAT .= "_bionic_core_lzma_libprocinfo_logging_unwinding_protobuf_libbase_libcxx_libcxxabi_libunwind_zlib_zstd"
48 48
49SRC_URI[gn.sha256sum] = "f706aaa0676e3e22f5fc9ca482295d7caee8535d1869f99efa2358177b64f5cd" 49SRC_URI[gn.sha256sum] = "f706aaa0676e3e22f5fc9ca482295d7caee8535d1869f99efa2358177b64f5cd"
50 50
diff --git a/meta-oe/recipes-devtools/perl/libdev-checklib-perl_1.16.bb b/meta-oe/recipes-devtools/perl/libdev-checklib-perl_1.16.bb
index 74a09e7bf8..21e46f5521 100644
--- a/meta-oe/recipes-devtools/perl/libdev-checklib-perl_1.16.bb
+++ b/meta-oe/recipes-devtools/perl/libdev-checklib-perl_1.16.bb
@@ -25,4 +25,4 @@ do_install:append() {
25 -e "/use strict;/ause warnings;" ${D}${bindir}/use-devel-checklib 25 -e "/use strict;/ause warnings;" ${D}${bindir}/use-devel-checklib
26} 26}
27 27
28BBCLASSEXTEND="native" 28BBCLASSEXTEND = "native"
diff --git a/meta-oe/recipes-devtools/perl/libpcsc-perl_1.4.15.bb b/meta-oe/recipes-devtools/perl/libpcsc-perl_1.4.15.bb
index ff1552a99b..1bdb332a75 100644
--- a/meta-oe/recipes-devtools/perl/libpcsc-perl_1.4.15.bb
+++ b/meta-oe/recipes-devtools/perl/libpcsc-perl_1.4.15.bb
@@ -21,4 +21,4 @@ DEPENDS += "pcsc-lite"
21 21
22RDEPENDS:${PN} += "perl-module-carp" 22RDEPENDS:${PN} += "perl-module-carp"
23 23
24BBCLASSEXTEND="native" 24BBCLASSEXTEND = "native"
diff --git a/meta-oe/recipes-devtools/tcltk/tk8_8.6.15.bb b/meta-oe/recipes-devtools/tcltk/tk8_8.6.15.bb
index 9474f3e897..8518fb8dfe 100644
--- a/meta-oe/recipes-devtools/tcltk/tk8_8.6.15.bb
+++ b/meta-oe/recipes-devtools/tcltk/tk8_8.6.15.bb
@@ -51,7 +51,7 @@ EXTRA_OECONF = "\
51 --libdir=${libdir} \ 51 --libdir=${libdir} \
52" 52"
53 53
54export TK_LIBRARY='${libdir}/tk${VER}' 54export TK_LIBRARY = '${libdir}/tk${VER}'
55 55
56do_install:append() { 56do_install:append() {
57 ln -sf libtk${VER}.so ${D}${libdir}/libtk${VER}.so.0 57 ln -sf libtk${VER}.so ${D}${libdir}/libtk${VER}.so.0
diff --git a/meta-oe/recipes-devtools/tcltk/tk_9.0.1.bb b/meta-oe/recipes-devtools/tcltk/tk_9.0.1.bb
index b898e047b0..8701686b11 100644
--- a/meta-oe/recipes-devtools/tcltk/tk_9.0.1.bb
+++ b/meta-oe/recipes-devtools/tcltk/tk_9.0.1.bb
@@ -46,7 +46,7 @@ EXTRA_OECONF = "\
46 --libdir=${libdir} \ 46 --libdir=${libdir} \
47" 47"
48 48
49export TK_LIBRARY='${libdir}/tk${VER}' 49export TK_LIBRARY = '${libdir}/tk${VER}'
50 50
51do_install:append() { 51do_install:append() {
52 ln -sf wish${VER} ${D}${bindir}/wish 52 ln -sf wish${VER} ${D}${bindir}/wish