Skip to content

Commit 3322e17

Browse files
committed
Changes for the Yocto 4.0
:Release Notes: Changes for the Yocto 4.0 :Detailed Notes: - fixed syntax
1 parent c509bea commit 3322e17

File tree

10 files changed

+32
-30
lines changed

10 files changed

+32
-30
lines changed

js-services/build-config/com.example.service.js.bb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020 LG Electronics, Inc.
1+
# Copyright (c) 2020-2022 LG Electronics, Inc.
22

33
SUMMARY = "JS Service Sample"
44
AUTHOR = "Author's name <Author's e-mail>"
@@ -13,4 +13,4 @@ inherit webos_submissions
1313
inherit webos_cmake
1414
inherit webos_system_bus
1515

16-
FILES_${PN} += "${webos_servicesdir}/${PN}/*"
16+
FILES:${PN} += "${webos_servicesdir}/${PN}/*"

js-services/build-config/webos-local.conf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020 LG Electronics, Inc.
1+
# Copyright (c) 2020-2022 LG Electronics, Inc.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -15,6 +15,6 @@
1515
# SPDX-License-Identifier: Apache-2.0
1616

1717
INHERIT += "externalsrc"
18-
EXTERNALSRC_pn-com.example.service.js = "/home/username/project/com.example.service.js/"
19-
EXTERNALSRC_BUILD_pn-com.example.service.js = "/home/username/project/com.example.service.js/build/"
20-
PR_append_pn-com.example.service.js =".local0"
18+
EXTERNALSRC:pn-com.example.service.js = "/home/username/project/com.example.service.js/"
19+
EXTERNALSRC_BUILD:pn-com.example.service.js = "/home/username/project/com.example.service.js/build/"
20+
PR:append:pn-com.example.service.js =".local0"

native-apps/built-in/build-config/com.example.app.nativeqt.bb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020 LG Electronics, Inc.
1+
# Copyright (c) 2020-2022 LG Electronics, Inc.
22

33
SUMMARY = "Native Qt App"
44
SECTION = "webos/apps"
@@ -13,7 +13,8 @@ DEPENDS = "qtbase luna-service2 glib-2.0 libpbnjson"
1313
inherit webos_submissions
1414
inherit webos_qmake6
1515
inherit webos_app
16+
inherit webos_pkgconfig
1617

1718
OE_QMAKE_PATH_HEADERS = "${OE_QMAKE_PATH_QT_HEADERS}"
1819

19-
FILES_${PN} += "${webos_applicationsdir}"
20+
FILES:${PN} += "${webos_applicationsdir}"

native-apps/built-in/build-config/webos-local.conf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020 LG Electronics, Inc.
1+
# Copyright (c) 2020-2022 LG Electronics, Inc.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -15,6 +15,6 @@
1515
# SPDX-License-Identifier: Apache-2.0
1616

1717
INHERIT += "externalsrc"
18-
EXTERNALSRC_pn-com.example.app.nativeqt = "/home/username/project/com.example.app.nativeqt/"
19-
EXTERNALSRC_BUILD_pn-com.example.app.nativeqt = "/home/username/project/com.example.app.nativeqt/build/"
20-
PR_append_pn-com.example.app.nativeqt =".local0"
18+
EXTERNALSRC:pn-com.example.app.nativeqt = "/home/username/project/com.example.app.nativeqt/"
19+
EXTERNALSRC_BUILD:pn-com.example.app.nativeqt = "/home/username/project/com.example.app.nativeqt/build/"
20+
PR:append:pn-com.example.app.nativeqt =".local0"

native-services/built-in/build-config/com.example.service.native.bb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020 LG Electronics, Inc.
1+
# Copyright (c) 2020-2022 LG Electronics, Inc.
22

33
SUMMARY = "Native service sample"
44
AUTHOR = "Author's name <Author's e-mail>"
@@ -12,6 +12,7 @@ PR = "r0"
1212

1313
inherit webos_component
1414
inherit webos_submissions
15+
inherit webos_daemon
1516
inherit webos_cmake
1617
inherit webos_system_bus
1718

native-services/built-in/build-config/webos-local.conf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020 LG Electronics, Inc.
1+
# Copyright (c) 2020-2022 LG Electronics, Inc.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
1515
# SPDX-License-Identifier: Apache-2.0
1616

1717
INHERIT += "externalsrc"
18-
EXTERNALSRC_pn-com.example.service.native = "/home/username/project/com.example.service.native/"
19-
EXTERNALSRC_BUILD_pn-com.example.service.native = "/home/username/project/com.example.service.native/build/"
20-
PR_append_pn-com.example.service.native =".local0"
18+
EXTERNALSRC:pn-com.example.service.native = "/home/username/project/com.example.service.native/"
19+
EXTERNALSRC_BUILD:pn-com.example.service.native = "/home/username/project/com.example.service.native/build/"
20+
PR:append:pn-com.example.service.native =".local0"
2121

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Copyright (c) 2020 LG Electronics, Inc.
1+
# Copyright (c) 2020-2022 LG Electronics, Inc.
22

33
SUMMARY = "QML App"
44
SECTION = "webos/apps"
55
LICENSE = "Apache-2.0"
66
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
77

88
DEPENDS = "qtbase qt-features-webos qtdeclarative pmloglib"
9-
RDEPENDS_${PN} += "qml-webos-framework qml-webos-bridge"
9+
RDEPENDS:${PN} += "qml-webos-framework qml-webos-bridge"
1010

1111
WEBOS_VERSION="1.0.0"
1212
PR = "r0"
@@ -15,4 +15,4 @@ inherit webos_qmake6
1515
inherit webos_submissions
1616
inherit webos_app
1717

18-
FILES_${PN} += "${webos_applicationsdir}"
18+
FILES:${PN} += "${webos_applicationsdir}"

qml-apps/build-config/webos-local.conf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020 LG Electronics, Inc.
1+
# Copyright (c) 2020-2022 LG Electronics, Inc.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -15,6 +15,6 @@
1515
# SPDX-License-Identifier: Apache-2.0
1616

1717
INHERIT += "externalsrc"
18-
EXTERNALSRC_pn-com.example.app.qml = "/home/username/project/com.example.app.qml/"
19-
EXTERNALSRC_BUILD_pn-com.example.app.qml = "/home/username/project/com.example.app.qml/build/"
20-
PR_append_pn-com.example.app.qml =".local0"
18+
EXTERNALSRC:pn-com.example.app.qml = "/home/username/project/com.example.app.qml/"
19+
EXTERNALSRC_BUILD:pn-com.example.app.qml = "/home/username/project/com.example.app.qml/build/"
20+
PR:append:pn-com.example.app.qml =".local0"

web-apps/build-config/com.example.app.web.bb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020 LG Electronics, Inc.
1+
# Copyright (c) 2020-2022 LG Electronics, Inc.
22

33
SECTION = "webos/apps"
44
LICENSE = "Apache-2.0"
@@ -13,4 +13,4 @@ inherit webos_cmake
1313
inherit webos_app
1414
inherit webos_arch_indep
1515

16-
FILES_${PN} += "${webos_applicationsdir}"
16+
FILES:${PN} += "${webos_applicationsdir}"

web-apps/build-config/webos-local.conf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020 LG Electronics, Inc.
1+
# Copyright (c) 2020-2022 LG Electronics, Inc.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -15,6 +15,6 @@
1515
# SPDX-License-Identifier: Apache-2.0
1616

1717
INHERIT += "externalsrc"
18-
EXTERNALSRC_pn-com.example.app.web = "/home/username/project/com.example.app.web/"
19-
EXTERNALSRC_BUILD_pn-com.example.app.web = "/home/username/project/com.example.app.web/build/"
20-
PR_append_pn-com.example.app.web =".local0"
18+
EXTERNALSRC:pn-com.example.app.web = "/home/username/project/com.example.app.web/"
19+
EXTERNALSRC_BUILD:pn-com.example.app.web = "/home/username/project/com.example.app.web/build/"
20+
PR:append:pn-com.example.app.web =".local0"

0 commit comments

Comments
 (0)