summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-connectivity
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-01-31 13:52:13 +0000
committerKhem Raj <raj.khem@gmail.com>2025-01-31 10:34:03 -0800
commitbd6a1bb27844cb3c839ada75a5796c611dabf14a (patch)
treec759e40c4bf189fef9a5b34ae31b698e7de9c71b /meta-networking/recipes-connectivity
parent86980f2df271c4a798efe9fc40023b2db6911f47 (diff)
downloadmeta-openembedded-bd6a1bb27844cb3c839ada75a5796c611dabf14a.tar.gz
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>
Diffstat (limited to 'meta-networking/recipes-connectivity')
-rw-r--r--meta-networking/recipes-connectivity/rdate/rdate_1.5.bb2
-rw-r--r--meta-networking/recipes-connectivity/samba/samba_4.19.8.bb14
2 files changed, 8 insertions, 8 deletions
diff --git a/meta-networking/recipes-connectivity/rdate/rdate_1.5.bb b/meta-networking/recipes-connectivity/rdate/rdate_1.5.bb
index 67e7c1c615..5c9e0c8643 100644
--- a/meta-networking/recipes-connectivity/rdate/rdate_1.5.bb
+++ b/meta-networking/recipes-connectivity/rdate/rdate_1.5.bb
@@ -5,7 +5,7 @@ DESCRIPTION = "The rdate utility retrieves the date and time from \
5 time of the machine that you queried. \ 5 time of the machine that you queried. \
6" 6"
7 7
8HOMEPAGE= "https://www.aelius.com/njh/rdate/" 8HOMEPAGE = "https://www.aelius.com/njh/rdate/"
9SECTION = "Applications/System" 9SECTION = "Applications/System"
10 10
11LICENSE = "GPL-2.0-only" 11LICENSE = "GPL-2.0-only"
diff --git a/meta-networking/recipes-connectivity/samba/samba_4.19.8.bb b/meta-networking/recipes-connectivity/samba/samba_4.19.8.bb
index 09d5608df0..beff73b1b3 100644
--- a/meta-networking/recipes-connectivity/samba/samba_4.19.8.bb
+++ b/meta-networking/recipes-connectivity/samba/samba_4.19.8.bb
@@ -12,7 +12,7 @@ ${SAMBA_MIRROR} http://mirror.internode.on.net/pub/samba \n \
12${SAMBA_MIRROR} http://www.mirrorservice.org/sites/ftp.samba.org \n \ 12${SAMBA_MIRROR} http://www.mirrorservice.org/sites/ftp.samba.org \n \
13" 13"
14 14
15export PYTHONHASHSEED="1" 15export PYTHONHASHSEED = "1"
16 16
17SRC_URI = "${SAMBA_MIRROR}/stable/samba-${PV}.tar.gz \ 17SRC_URI = "${SAMBA_MIRROR}/stable/samba-${PV}.tar.gz \
18 file://smb.conf \ 18 file://smb.conf \
@@ -69,7 +69,7 @@ SYSTEMD_AUTO_ENABLE:${PN}-ad-dc = "disable"
69 69
70#cross_compile cannot use preforked process, since fork process earlier than point subproces.popen 70#cross_compile cannot use preforked process, since fork process earlier than point subproces.popen
71#to cross Popen 71#to cross Popen
72export WAF_NO_PREFORK="yes" 72export WAF_NO_PREFORK = "yes"
73 73
74# Use krb5. Build active domain controller. 74# Use krb5. Build active domain controller.
75# 75#
@@ -95,16 +95,16 @@ PACKAGECONFIG[libbsd] = "--with-libbsd,--without-libbsd,libbsd"
95PACKAGECONFIG[ad-dc] = "--with-experimental-mit-ad-dc,--without-ad-dc,python3-markdown python3-dnspython," 95PACKAGECONFIG[ad-dc] = "--with-experimental-mit-ad-dc,--without-ad-dc,python3-markdown python3-dnspython,"
96PACKAGECONFIG[mitkrb5] = "--with-system-mitkrb5 --with-system-mitkdc=/usr/sbin/krb5kdc,,krb5," 96PACKAGECONFIG[mitkrb5] = "--with-system-mitkrb5 --with-system-mitkdc=/usr/sbin/krb5kdc,,krb5,"
97 97
98SAMBA4_IDMAP_MODULES="idmap_ad,idmap_rid,idmap_adex,idmap_hash,idmap_tdb2" 98SAMBA4_IDMAP_MODULES = "idmap_ad,idmap_rid,idmap_adex,idmap_hash,idmap_tdb2"
99SAMBA4_PDB_MODULES="pdb_tdbsam,${@bb.utils.contains('PACKAGECONFIG', 'ldap', 'pdb_ldap,', '', d)}pdb_ads,pdb_smbpasswd,pdb_wbc_sam,pdb_samba4" 99SAMBA4_PDB_MODULES = "pdb_tdbsam,${@bb.utils.contains('PACKAGECONFIG', 'ldap', 'pdb_ldap,', '', d)}pdb_ads,pdb_smbpasswd,pdb_wbc_sam,pdb_samba4"
100SAMBA4_AUTH_MODULES="auth_unix,auth_wbc,auth_server,auth_netlogond,auth_script,auth_samba4" 100SAMBA4_AUTH_MODULES = "auth_unix,auth_wbc,auth_server,auth_netlogond,auth_script,auth_samba4"
101SAMBA4_MODULES="${SAMBA4_IDMAP_MODULES},${SAMBA4_PDB_MODULES},${SAMBA4_AUTH_MODULES}" 101SAMBA4_MODULES = "${SAMBA4_IDMAP_MODULES},${SAMBA4_PDB_MODULES},${SAMBA4_AUTH_MODULES}"
102 102
103# These libraries are supposed to replace others supplied by packages, but decorate the names of 103# These libraries are supposed to replace others supplied by packages, but decorate the names of
104# .so files so there will not be a conflict. This is not done consistantly, so be very careful 104# .so files so there will not be a conflict. This is not done consistantly, so be very careful
105# when adding to this list. 105# when adding to this list.
106# 106#
107SAMBA4_LIBS="heimdal,NONE" 107SAMBA4_LIBS = "heimdal,NONE"
108 108
109EXTRA_OECONF += "--enable-fhs \ 109EXTRA_OECONF += "--enable-fhs \
110 --with-piddir=/run \ 110 --with-piddir=/run \