From: Denys Dmytriyenko <denys@ti.com>
To: "Maupin, Chase" <chase.maupin@ti.com>
Cc: "meta-arago@arago-project.org" <meta-arago@arago-project.org>,
"Cooper Jr., Franklin" <fcooper@ti.com>
Subject: Re: [PATCH 06/11] image-gallery: Add image gallery application
Date: Wed, 4 Jun 2014 12:00:19 -0400 [thread overview]
Message-ID: <20140604160019.GN21819@edge> (raw)
In-Reply-To: <7D46E86EC0A8354091174257B2FED1015D08CBC6@DLEE11.ent.ti.com>
On Wed, Jun 04, 2014 at 11:53:45AM -0400, Maupin, Chase wrote:
> >-----Original Message-----
> >From: Dmytriyenko, Denys
> >Sent: Wednesday, June 04, 2014 10:28 AM
> >To: Maupin, Chase
> >Cc: Cooper Jr., Franklin; meta-arago@arago-project.org
> >Subject: Re: [meta-arago] [PATCH 06/11] image-gallery: Add image
> >gallery application
> >
> >On Wed, Jun 04, 2014 at 02:38:23PM +0000, Maupin, Chase wrote:
> >> >-----Original Message-----
> >> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >> >bounces@arago-project.org] On Behalf Of Cooper Jr., Franklin
> >> >Sent: Thursday, May 29, 2014 1:38 PM
> >> >To: meta-arago@arago-project.org
> >> >Cc: Cooper Jr., Franklin
> >> >Subject: [meta-arago] [PATCH 06/11] image-gallery: Add image
> >> >gallery application
> >> >
> >> >* Add new Qt application to the SDK which displays pictures
> >taken
> >> >by the camera
> >> > demo.
> >> >
> >> >Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> >> >---
> >> > .../recipes-qt/qt-apps/image-gallery_git.bb | 33
> >> >++++++++++++++++++++
> >> > 1 files changed, 33 insertions(+), 0 deletions(-)
> >> > create mode 100644 meta-arago-extras/recipes-qt/qt-apps/image-
> >> >gallery_git.bb
> >> >
> >> >diff --git a/meta-arago-extras/recipes-qt/qt-apps/image-
> >> >gallery_git.bb b/meta-arago-extras/recipes-qt/qt-apps/image-
> >> >gallery_git.bb
> >> >new file mode 100644
> >> >index 0000000..3040415
> >> >--- /dev/null
> >> >+++ b/meta-arago-extras/recipes-qt/qt-apps/image-gallery_git.bb
> >> >@@ -0,0 +1,33 @@
> >> >+DESCRIPTION = "Image Gallery"
> >> >+HOMEPAGE = "https://gitorious.org/image-gallery"
> >> >+SECTION = "multimedia"
> >> >+LICENSE = "BSD"
> >> >+LIC_FILES_CHKSUM =
> >> >"file://LICENSE;md5=9c57cc1cdee589f97cbba69e95a89a15"
> >> >+
> >> >+require recipes-core/matrix/matrix-gui-paths.inc
> >> >+
> >> >+PR = "r0"
> >>
> >> Not needed
> >
> >Why? Even though it's default, it helps remember to bump it next
> >time :)
>
> True, but I thought as we look at new releases the PR wasn't needed anymore.
> Or do we not have the version server turned on?
Ah, good point. Need to enaable PR service...
> >> >+BRANCH = "master"
> >> >+SRCREV = "8901d7c598b277e4e26a5abbcb859e7ceebd340a"
> >> >+
> >> >+SRC_URI = "git://gitorious.org/image-gallery/image-
> >> >gallery.git;protocol=git;branch=${BRANCH}"
> >> >+
> >> >+S = "${WORKDIR}/git/"
> >> >+
> >> >+BUILDDIR ?= "."
> >>
> >> I'm not entirely sure what this is for. When should this be set
> >> differently? And would it be better to use a variable like ${S}
> >rather than
> >> "."
> >
> >I have seen this variable in qt-tstat recipe and had to remove it.
> >There is no
> >need for it and moreover, there's already ${B} defined and used
> >for build dir.
> >See my recent patch re-submission for qt-tstat.
> >
> >
> >> >+inherit qt-provider
> >> >+
> >> >+do_install() {
> >> >+ install -d ${D}/usr/bin
> >>
> >> Use ${bindir}
> >
> >+1
> >
> >
> >> >+ install -m 0755 ${BUILDDIR}/image-gallery
> >> >${D}/usr/bin/image-gallery
> >>
> >> Use ${bindir}
> >
> >+1
> >
> >
> >> >+ install -d ${D}${MATRIX_APP_DIR}/qt-image-gallery
> >> >+ cp -rf matrix-files/* ${D}${MATRIX_APP_DIR}/qt-image-
> >> >gallery
> >> >+}
> >> >+
> >> >+PACKAGES += "matrix-gui-apps-image-gallery"
> >> >+
> >> >+RDEPENDS_matrix-gui-apps-image-gallery = "matrix-gui-apps-
> >images
> >> >matrix-gui-submenus-camera ${PN}"
> >> >+
> >> >+FILES_matrix-gui-apps-image-gallery += "${MATRIX_APP_DIR}/*"
> >> >--
> >> >1.7.0.4
> >> >
> >> >_______________________________________________
> >> >meta-arago mailing list
> >> >meta-arago@arago-project.org
> >> >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> >> _______________________________________________
> >> meta-arago mailing list
> >> meta-arago@arago-project.org
> >> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
next prev parent reply other threads:[~2014-06-04 16:00 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-29 18:38 [PATCH 01/11] ti-tisdk-setup: Use latest commit for create-sdcard.sh Franklin S. Cooper Jr
2014-05-29 18:38 ` [PATCH 02/11] qt example apps: Use Makefile.build instead of Makefile for the SDK makefile Franklin S. Cooper Jr
2014-06-04 14:30 ` Maupin, Chase
2014-06-09 16:25 ` Denys Dmytriyenko
2014-06-09 17:02 ` Cooper Jr., Franklin
2014-05-29 18:38 ` [PATCH 03/11] ti-tisdk-makefile: Update Qt Makefile stubs to reflect Makefile name change Franklin S. Cooper Jr
2014-06-04 14:31 ` Maupin, Chase
2014-05-29 18:38 ` [PATCH 04/11] ti-tisdk-makefile: Fix u-boot cleaning Franklin S. Cooper Jr
2014-06-04 14:31 ` Maupin, Chase
2014-05-29 18:38 ` [PATCH 05/11] matrix-gui: Add camera submenu Franklin S. Cooper Jr
2014-06-04 14:32 ` Maupin, Chase
2014-06-04 15:23 ` Denys Dmytriyenko
2014-06-04 15:28 ` Cooper Jr., Franklin
2014-06-04 15:30 ` Denys Dmytriyenko
2014-06-04 15:36 ` Cooper Jr., Franklin
2014-05-29 18:38 ` [PATCH 06/11] image-gallery: Add image gallery application Franklin S. Cooper Jr
2014-06-04 14:38 ` Maupin, Chase
2014-06-04 15:27 ` Denys Dmytriyenko
2014-06-04 15:30 ` Cooper Jr., Franklin
2014-06-05 15:19 ` Denys Dmytriyenko
2014-06-04 15:53 ` Maupin, Chase
2014-06-04 16:00 ` Denys Dmytriyenko [this message]
2014-05-29 18:38 ` [PATCH 07/11] arago-source-ipk: Create source ipk for image-gallery app Franklin S. Cooper Jr
2014-06-04 14:38 ` Maupin, Chase
2014-05-29 18:38 ` [PATCH 08/11] packagegroup-arago-tisdk-multimedia-sdk-host: Add image-gallery app sources Franklin S. Cooper Jr
2014-06-04 14:38 ` Maupin, Chase
2014-05-29 18:38 ` [PATCH 09/11] packagegroup-arago-tisdk-matrix: Add image gallery demo to Matrix Franklin S. Cooper Jr
2014-06-04 14:38 ` Maupin, Chase
2014-05-29 18:38 ` [PATCH 10/11] ti-tisdk-makefile: Add image gallery to SDK makefile for AM4x Franklin S. Cooper Jr
2014-06-04 14:39 ` Maupin, Chase
2014-05-29 18:38 ` [PATCH 11/11] packagegroup-arago-tisdk-multimedia: Add image-gallery to AM4x demo list Franklin S. Cooper Jr
2014-06-04 14:39 ` Maupin, Chase
2014-06-04 14:30 ` [PATCH 01/11] ti-tisdk-setup: Use latest commit for create-sdcard.sh Maupin, Chase
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140604160019.GN21819@edge \
--to=denys@ti.com \
--cc=chase.maupin@ti.com \
--cc=fcooper@ti.com \
--cc=meta-arago@arago-project.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.