All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tidl-api: update to version 01.00.00.02
@ 2018-07-10 17:07 Yuan Zhao
  2018-07-10 17:11 ` Denys Dmytriyenko
  0 siblings, 1 reply; 2+ messages in thread
From: Yuan Zhao @ 2018-07-10 17:07 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Yuan Zhao <yuanzhao@ti.com>
---
 meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc | 13 +++---
 .../recipes-ti/tidl-api/tidl-api_git.bb            | 54 ++++++++++++++++++++++
 .../recipes-ti/tidl-api/tidl-examples_git.bb       | 34 ++++++++------
 3 files changed, 82 insertions(+), 19 deletions(-)
 create mode 100644 meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb

diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc b/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
index d266611c..ca9131d9 100644
--- a/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
+++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
@@ -1,11 +1,12 @@
-PV = "1.0.0.0"
+PV = "1.0.0.2"
 INC_PR = "r0"
 
 LIC_FILES_CHKSUM = "file://tidl_api_manifest.html;md5=ae816cc40db02fe06193212437ad00e8"
 
-GIT_URI = "git://git.ti.com/tidl/tidl-api.git"
-GIT_PROTOCOL = "git"
-BRANCH = "master"
+TIDL_API_GIT_URI = "git://git.ti.com/tidl/tidl-api.git"
+TIDL_API_GIT_PROTOCOL = "git"
+TIDL_API_GIT_BRANCH = "master"
+TIDL_API_GIT_SRCREV = "8bad8d86fd89fd8c482aa10ab89f3049337a9ca2"
 
-SRC_URI = "${GIT_URI};protocol=${GIT_PROTOCOL};branch=${BRANCH}"
-SRCREV = "d6326ad29c9ed4b79ebf3e0f588f247ed2cf3d2e"
+SRC_URI = "${TIDL_API_GIT_URI};protocol=${TIDL_API_GIT_PROTOCOL};branch=${TIDL_API_GIT_BRANCH}"
+SRCREV = "${TIDL_API_GIT_SRCREV}"
diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb b/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
new file mode 100644
index 00000000..9c41ef11
--- /dev/null
+++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
@@ -0,0 +1,54 @@
+SUMMARY = "TIDL API"
+DESCRIPTION = "TIDL API header and library. Refer TIDL API User's Guide for details."
+HOMEPAGE = "http://software-dl.ti.com/mctools/docs/tidl-api/intro.html"
+LICENSE = "BSD"
+
+include tidl-api.inc
+require recipes-ti/includes/ti-paths.inc
+
+PR = "${INC_PR}.0"
+
+COMPATIBLE_MACHINE = "am57xx-evm|am57xx-hs-evm"
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+DEPENDS = "opencv \
+           opencl \
+           opencl-monitor \
+           ti-cgt6x-native \
+           clocl-native \
+"
+
+RDEPENDS_${PN} += "opencl-runtime \
+                   opencv \
+"
+
+S = "${WORKDIR}/git"
+
+EXTRA_OEMAKE = " -C ${S}/tidl_api \
+                 TARGET_ROOTDIR=${STAGING_DIR_HOST} \
+                 TI_OCL_CGT_INSTALL=${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x \
+"
+
+do_compile() {
+  oe_runmake
+}
+
+CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
+
+TIDL_INSTALL_DIR = "${datadir}/ti/tidl"
+
+do_install() {
+    install -d ${D}${TIDL_INSTALL_DIR}
+    install -d ${D}${TIDL_INSTALL_DIR}/tidl_api
+    install -d ${D}${TIDL_INSTALL_DIR}/viewer
+    cp ${CP_ARGS} ${S}/tidl_api/* ${D}${TIDL_INSTALL_DIR}/tidl_api/
+    cp ${CP_ARGS} ${S}/viewer/* ${D}${TIDL_INSTALL_DIR}/viewer/
+    install ${S}/readme.md ${D}${TIDL_INSTALL_DIR}/
+}
+
+FILES_${PN} += "\
+    ${TIDL_INSTALL_DIR} \
+"
+
+
+INSANE_SKIP_${PN} = "arch ldflags textrel staticdev"
diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb b/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
index be9bb65f..3e4514fe 100644
--- a/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
+++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
@@ -1,5 +1,5 @@
-SUMMARY = "TIDL API and examples"
-DESCRIPTION = "TIDL API and examples of API usage. Refer TIDL API User's Guide for details."
+SUMMARY = "TIDL API examples"
+DESCRIPTION = "Examples of TIDL API. Refer TIDL API User's Guide for details."
 HOMEPAGE = "http://software-dl.ti.com/mctools/docs/tidl-api/intro.html"
 LICENSE = "BSD"
 
@@ -11,9 +11,16 @@ PR = "${INC_PR}.0"
 COMPATIBLE_MACHINE = "am57xx-evm|am57xx-hs-evm"
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
-DEPENDS = "opencv opencl opencl-monitor ti-cgt6x-native clocl-native"
+DEPENDS = "opencv \
+           clocl-native \
+           ti-cgt6x-native \
+           tidl-api \
+"
 
-RDEPENDS_${PN} += " opencl-runtime opencv"
+RDEPENDS_${PN} += "tidl-api \
+                   opencl-runtime \
+                   opencv \
+"
 
 S = "${WORKDIR}/git"
 
@@ -28,20 +35,21 @@ do_compile() {
 
 CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
 
+TIDL_INSTALL_DIR = "${datadir}/ti/tidl"
+
 do_install() {
-    install -d ${D}${datadir}/ti/tidl-api
-    install -d ${D}${datadir}/ti/tidl-api/examples
-    install -d ${D}${datadir}/ti/tidl-api/tidl_api
-    install -d ${D}${datadir}/ti/tidl-api/viewer
-    cp ${CP_ARGS} ${S}/examples/* ${D}${datadir}/ti/tidl-api/examples/
-    cp ${CP_ARGS} ${S}/tidl_api/* ${D}${datadir}/ti/tidl-api/tidl_api/
-    cp ${CP_ARGS} ${S}/viewer/* ${D}${datadir}/ti/tidl-api/viewer/
-    install ${S}/readme.md ${D}${datadir}/ti/tidl-api/
+    install -d ${D}${TIDL_INSTALL_DIR}
+    install -d ${D}${TIDL_INSTALL_DIR}/examples
+    cp ${CP_ARGS} ${S}/examples/* ${D}${TIDL_INSTALL_DIR}/examples/
 }
 
 FILES_${PN} += "\
-    ${datadir}/ti/tidl-api \
+    ${TIDL_INSTALL_DIR} \
 "
 
 
 INSANE_SKIP_${PN} = "arch ldflags textrel staticdev"
+
+CREATE_SRCIPK = "1"
+SRCIPK_SRC_DIR = "${S}/examples"
+SRCIPK_INSTALL_DIR = "example-applications/${PN}-${PV}"
-- 
2.14.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] tidl-api: update to version 01.00.00.02
  2018-07-10 17:07 [PATCH] tidl-api: update to version 01.00.00.02 Yuan Zhao
@ 2018-07-10 17:11 ` Denys Dmytriyenko
  0 siblings, 0 replies; 2+ messages in thread
From: Denys Dmytriyenko @ 2018-07-10 17:11 UTC (permalink / raw)
  To: Yuan Zhao; +Cc: meta-arago

On Tue, Jul 10, 2018 at 12:07:04PM -0500, Yuan Zhao wrote:
> Signed-off-by: Yuan Zhao <yuanzhao@ti.com>
> ---
>  meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc | 13 +++---
>  .../recipes-ti/tidl-api/tidl-api_git.bb            | 54 ++++++++++++++++++++++
>  .../recipes-ti/tidl-api/tidl-examples_git.bb       | 34 ++++++++------
>  3 files changed, 82 insertions(+), 19 deletions(-)
>  create mode 100644 meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
> 
> diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc b/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
> index d266611c..ca9131d9 100644
> --- a/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
> +++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
> @@ -1,11 +1,12 @@
> -PV = "1.0.0.0"
> +PV = "1.0.0.2"
>  INC_PR = "r0"
>  
>  LIC_FILES_CHKSUM = "file://tidl_api_manifest.html;md5=ae816cc40db02fe06193212437ad00e8"
>  
> -GIT_URI = "git://git.ti.com/tidl/tidl-api.git"
> -GIT_PROTOCOL = "git"
> -BRANCH = "master"
> +TIDL_API_GIT_URI = "git://git.ti.com/tidl/tidl-api.git"
> +TIDL_API_GIT_PROTOCOL = "git"
> +TIDL_API_GIT_BRANCH = "master"
> +TIDL_API_GIT_SRCREV = "8bad8d86fd89fd8c482aa10ab89f3049337a9ca2"

What's with the unnecessary abstraction? Those vars are recipe-local anyway...


> -SRC_URI = "${GIT_URI};protocol=${GIT_PROTOCOL};branch=${BRANCH}"
> -SRCREV = "d6326ad29c9ed4b79ebf3e0f588f247ed2cf3d2e"
> +SRC_URI = "${TIDL_API_GIT_URI};protocol=${TIDL_API_GIT_PROTOCOL};branch=${TIDL_API_GIT_BRANCH}"
> +SRCREV = "${TIDL_API_GIT_SRCREV}"
> diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb b/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
> new file mode 100644
> index 00000000..9c41ef11
> --- /dev/null
> +++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
> @@ -0,0 +1,54 @@
> +SUMMARY = "TIDL API"
> +DESCRIPTION = "TIDL API header and library. Refer TIDL API User's Guide for details."
> +HOMEPAGE = "http://software-dl.ti.com/mctools/docs/tidl-api/intro.html"
> +LICENSE = "BSD"
> +
> +include tidl-api.inc
> +require recipes-ti/includes/ti-paths.inc
> +
> +PR = "${INC_PR}.0"
> +
> +COMPATIBLE_MACHINE = "am57xx-evm|am57xx-hs-evm"
> +PACKAGE_ARCH = "${MACHINE_ARCH}"
> +
> +DEPENDS = "opencv \
> +           opencl \
> +           opencl-monitor \
> +           ti-cgt6x-native \
> +           clocl-native \
> +"
> +
> +RDEPENDS_${PN} += "opencl-runtime \
> +                   opencv \
> +"
> +
> +S = "${WORKDIR}/git"
> +
> +EXTRA_OEMAKE = " -C ${S}/tidl_api \
> +                 TARGET_ROOTDIR=${STAGING_DIR_HOST} \
> +                 TI_OCL_CGT_INSTALL=${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x \
> +"
> +
> +do_compile() {
> +  oe_runmake
> +}
> +
> +CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
> +
> +TIDL_INSTALL_DIR = "${datadir}/ti/tidl"
> +
> +do_install() {
> +    install -d ${D}${TIDL_INSTALL_DIR}
> +    install -d ${D}${TIDL_INSTALL_DIR}/tidl_api
> +    install -d ${D}${TIDL_INSTALL_DIR}/viewer
> +    cp ${CP_ARGS} ${S}/tidl_api/* ${D}${TIDL_INSTALL_DIR}/tidl_api/
> +    cp ${CP_ARGS} ${S}/viewer/* ${D}${TIDL_INSTALL_DIR}/viewer/
> +    install ${S}/readme.md ${D}${TIDL_INSTALL_DIR}/
> +}
> +
> +FILES_${PN} += "\
> +    ${TIDL_INSTALL_DIR} \
> +"
> +
> +
> +INSANE_SKIP_${PN} = "arch ldflags textrel staticdev"
> diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb b/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
> index be9bb65f..3e4514fe 100644
> --- a/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
> +++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
> @@ -1,5 +1,5 @@
> -SUMMARY = "TIDL API and examples"
> -DESCRIPTION = "TIDL API and examples of API usage. Refer TIDL API User's Guide for details."
> +SUMMARY = "TIDL API examples"
> +DESCRIPTION = "Examples of TIDL API. Refer TIDL API User's Guide for details."
>  HOMEPAGE = "http://software-dl.ti.com/mctools/docs/tidl-api/intro.html"
>  LICENSE = "BSD"
>  
> @@ -11,9 +11,16 @@ PR = "${INC_PR}.0"
>  COMPATIBLE_MACHINE = "am57xx-evm|am57xx-hs-evm"
>  PACKAGE_ARCH = "${MACHINE_ARCH}"
>  
> -DEPENDS = "opencv opencl opencl-monitor ti-cgt6x-native clocl-native"
> +DEPENDS = "opencv \
> +           clocl-native \
> +           ti-cgt6x-native \
> +           tidl-api \
> +"
>  
> -RDEPENDS_${PN} += " opencl-runtime opencv"
> +RDEPENDS_${PN} += "tidl-api \
> +                   opencl-runtime \
> +                   opencv \
> +"
>  
>  S = "${WORKDIR}/git"
>  
> @@ -28,20 +35,21 @@ do_compile() {
>  
>  CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
>  
> +TIDL_INSTALL_DIR = "${datadir}/ti/tidl"
> +
>  do_install() {
> -    install -d ${D}${datadir}/ti/tidl-api
> -    install -d ${D}${datadir}/ti/tidl-api/examples
> -    install -d ${D}${datadir}/ti/tidl-api/tidl_api
> -    install -d ${D}${datadir}/ti/tidl-api/viewer
> -    cp ${CP_ARGS} ${S}/examples/* ${D}${datadir}/ti/tidl-api/examples/
> -    cp ${CP_ARGS} ${S}/tidl_api/* ${D}${datadir}/ti/tidl-api/tidl_api/
> -    cp ${CP_ARGS} ${S}/viewer/* ${D}${datadir}/ti/tidl-api/viewer/
> -    install ${S}/readme.md ${D}${datadir}/ti/tidl-api/
> +    install -d ${D}${TIDL_INSTALL_DIR}
> +    install -d ${D}${TIDL_INSTALL_DIR}/examples
> +    cp ${CP_ARGS} ${S}/examples/* ${D}${TIDL_INSTALL_DIR}/examples/
>  }
>  
>  FILES_${PN} += "\
> -    ${datadir}/ti/tidl-api \
> +    ${TIDL_INSTALL_DIR} \
>  "
>  
>  
>  INSANE_SKIP_${PN} = "arch ldflags textrel staticdev"
> +
> +CREATE_SRCIPK = "1"
> +SRCIPK_SRC_DIR = "${S}/examples"
> +SRCIPK_INSTALL_DIR = "example-applications/${PN}-${PV}"
> -- 
> 2.14.1
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-07-10 17:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-10 17:07 [PATCH] tidl-api: update to version 01.00.00.02 Yuan Zhao
2018-07-10 17:11 ` Denys Dmytriyenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.