Skip to content

Commit

Permalink
Changes for the Yocto 4.0
Browse files Browse the repository at this point in the history
    :Release Notes:
      Changes for the Yocto 4.0

    :Detailed Notes:
     - fixed syntax
  • Loading branch information
nickyzero committed Dec 2, 2022
1 parent c509bea commit 3322e17
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 30 deletions.
4 changes: 2 additions & 2 deletions js-services/build-config/com.example.service.js.bb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020 LG Electronics, Inc.
# Copyright (c) 2020-2022 LG Electronics, Inc.

SUMMARY = "JS Service Sample"
AUTHOR = "Author's name <Author's e-mail>"
Expand All @@ -13,4 +13,4 @@ inherit webos_submissions
inherit webos_cmake
inherit webos_system_bus

FILES_${PN} += "${webos_servicesdir}/${PN}/*"
FILES:${PN} += "${webos_servicesdir}/${PN}/*"
8 changes: 4 additions & 4 deletions js-services/build-config/webos-local.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020 LG Electronics, Inc.
# Copyright (c) 2020-2022 LG Electronics, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,6 +15,6 @@
# SPDX-License-Identifier: Apache-2.0

INHERIT += "externalsrc"
EXTERNALSRC_pn-com.example.service.js = "/home/username/project/com.example.service.js/"
EXTERNALSRC_BUILD_pn-com.example.service.js = "/home/username/project/com.example.service.js/build/"
PR_append_pn-com.example.service.js =".local0"
EXTERNALSRC:pn-com.example.service.js = "/home/username/project/com.example.service.js/"
EXTERNALSRC_BUILD:pn-com.example.service.js = "/home/username/project/com.example.service.js/build/"
PR:append:pn-com.example.service.js =".local0"
5 changes: 3 additions & 2 deletions native-apps/built-in/build-config/com.example.app.nativeqt.bb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020 LG Electronics, Inc.
# Copyright (c) 2020-2022 LG Electronics, Inc.

SUMMARY = "Native Qt App"
SECTION = "webos/apps"
Expand All @@ -13,7 +13,8 @@ DEPENDS = "qtbase luna-service2 glib-2.0 libpbnjson"
inherit webos_submissions
inherit webos_qmake6
inherit webos_app
inherit webos_pkgconfig

OE_QMAKE_PATH_HEADERS = "${OE_QMAKE_PATH_QT_HEADERS}"

FILES_${PN} += "${webos_applicationsdir}"
FILES:${PN} += "${webos_applicationsdir}"
8 changes: 4 additions & 4 deletions native-apps/built-in/build-config/webos-local.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020 LG Electronics, Inc.
# Copyright (c) 2020-2022 LG Electronics, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,6 +15,6 @@
# SPDX-License-Identifier: Apache-2.0

INHERIT += "externalsrc"
EXTERNALSRC_pn-com.example.app.nativeqt = "/home/username/project/com.example.app.nativeqt/"
EXTERNALSRC_BUILD_pn-com.example.app.nativeqt = "/home/username/project/com.example.app.nativeqt/build/"
PR_append_pn-com.example.app.nativeqt =".local0"
EXTERNALSRC:pn-com.example.app.nativeqt = "/home/username/project/com.example.app.nativeqt/"
EXTERNALSRC_BUILD:pn-com.example.app.nativeqt = "/home/username/project/com.example.app.nativeqt/build/"
PR:append:pn-com.example.app.nativeqt =".local0"
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020 LG Electronics, Inc.
# Copyright (c) 2020-2022 LG Electronics, Inc.

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

inherit webos_component
inherit webos_submissions
inherit webos_daemon
inherit webos_cmake
inherit webos_system_bus

8 changes: 4 additions & 4 deletions native-services/built-in/build-config/webos-local.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020 LG Electronics, Inc.
# Copyright (c) 2020-2022 LG Electronics, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,7 +15,7 @@
# SPDX-License-Identifier: Apache-2.0

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

6 changes: 3 additions & 3 deletions qml-apps/build-config/com.example.app.qml.bb
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Copyright (c) 2020 LG Electronics, Inc.
# Copyright (c) 2020-2022 LG Electronics, Inc.

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

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

WEBOS_VERSION="1.0.0"
PR = "r0"
Expand All @@ -15,4 +15,4 @@ inherit webos_qmake6
inherit webos_submissions
inherit webos_app

FILES_${PN} += "${webos_applicationsdir}"
FILES:${PN} += "${webos_applicationsdir}"
8 changes: 4 additions & 4 deletions qml-apps/build-config/webos-local.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020 LG Electronics, Inc.
# Copyright (c) 2020-2022 LG Electronics, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,6 +15,6 @@
# SPDX-License-Identifier: Apache-2.0

INHERIT += "externalsrc"
EXTERNALSRC_pn-com.example.app.qml = "/home/username/project/com.example.app.qml/"
EXTERNALSRC_BUILD_pn-com.example.app.qml = "/home/username/project/com.example.app.qml/build/"
PR_append_pn-com.example.app.qml =".local0"
EXTERNALSRC:pn-com.example.app.qml = "/home/username/project/com.example.app.qml/"
EXTERNALSRC_BUILD:pn-com.example.app.qml = "/home/username/project/com.example.app.qml/build/"
PR:append:pn-com.example.app.qml =".local0"
4 changes: 2 additions & 2 deletions web-apps/build-config/com.example.app.web.bb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020 LG Electronics, Inc.
# Copyright (c) 2020-2022 LG Electronics, Inc.

SECTION = "webos/apps"
LICENSE = "Apache-2.0"
Expand All @@ -13,4 +13,4 @@ inherit webos_cmake
inherit webos_app
inherit webos_arch_indep

FILES_${PN} += "${webos_applicationsdir}"
FILES:${PN} += "${webos_applicationsdir}"
8 changes: 4 additions & 4 deletions web-apps/build-config/webos-local.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020 LG Electronics, Inc.
# Copyright (c) 2020-2022 LG Electronics, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,6 +15,6 @@
# SPDX-License-Identifier: Apache-2.0

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

0 comments on commit 3322e17

Please sign in to comment.