All of lore.kernel.org
 help / color / mirror / Atom feed
From: Denys Dmytriyenko <denys@ti.com>
To: Manisha Agrawal <manisha.agrawal@ti.com>
Cc: meta-arago@arago-project.org
Subject: Re: [morty][PATCH v2 4/6] recipes-core : packagegroups: hmi
Date: Tue, 29 Aug 2017 17:05:35 -0400	[thread overview]
Message-ID: <20170829210535.GQ8304@edge> (raw)
In-Reply-To: <42fe38bb-8c83-1013-4047-3d957411cb19@ti.com>

On Tue, Aug 29, 2017 at 03:56:56PM -0500, Manisha Agrawal wrote:
> 
> 
> On 08/29/2017 02:55 PM, Denys Dmytriyenko wrote:
> > On Tue, Aug 29, 2017 at 01:16:59PM -0400, Denys Dmytriyenko wrote:
> >> Manisha,
> >>
> >> From this:
> >>
> >>> recipes-core : packagegroups: hmi
> >> To this:
> >>
> >>> packagegroup-*-hmi: add hmi specific packagegroups
> >>
> >> On Tue, Aug 29, 2017 at 11:38:24AM -0500, Manisha Agrawal wrote:
> >>> Create packagegroup for HMI related demos. HMI is one of the focus
> >>> growth area for Sitara platform and demos planned for individual target end
> >>> equipments. Add evse-hmi demo to the packagegroup.
> >>>
> >>> Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com>
> >>> ---
> >>>  .../packagegroup-arago-tisdk-hmi-sdk-host.bb       | 26 +++++++++++++++++++++
> >>>  .../packagegroups/packagegroup-arago-tisdk-hmi.bb  | 27 ++++++++++++++++++++++
> >>>  2 files changed, 53 insertions(+)
> >>>  create mode 100755 meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi-sdk-host.bb
> >>>  create mode 100755 meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi.bb
> >>>
> >>> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi-sdk-host.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi-sdk-host.bb
> >>> new file mode 100755
> >>> index 0000000..d58536c
> >>> --- /dev/null
> >>> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi-sdk-host.bb
> >>> @@ -0,0 +1,26 @@
> >>> +DESCRIPTION = "Task to add HMI related sources into the SDK"
> >> SUMMARY is missing.
> I see either SUMMARY or DESCRIPTION in other packagefroup files. Do you
> want me to rename the DESCRIPTION as SUMMARY or you want to see more
> information as part of SUMMARY. If yes, what additional information
> should I add there.

Please see my comment for patch #1 with the link.


> >>> +LICENSE = "BSD-3-Clause"
> 
> >> By default all OE metadata is licensed under MIT. Unless you have a very 
> >> specific need to license packagegroup under BSD, I'd suggest leaving it as is. 
> >> BTW since MIT is default, LICENSE can be omitted when inheriting packagegroup.

> This was suggested by Vivek. His comment was "Any user-space demo
> applications that we develop should be in TI BSD-3-clause license, as
> that’s the most friendliest and can be used by others (RTOS, VxWorks,
> etc.)…"

A packagegroup is not a user-space demo application, hence my comment above.


> >>> +PR = "r1"
> >> Not critical, but PR can also be omitted for new recipes.
> 
> I am keeping it for now else in future I will forget to add the
> revision. If I keep it, would you suggest it to be "r0" or "r1".

Doesn't matter, but it defaults to "r0".


> >>> +PACKAGE_ARCH = "${MACHINE_ARCH}"
> >>> +
> >>> +inherit packagegroup
> >>> +
> >>> +HMI = ""
> >>> +
> >>> +HMI_append_ti43x = " \
> >>> +    evse-hmi-src \
> >>> +"
> >>> +
> >>> +HMI_append_ti33x = " \
> >>> +    evse-hmi-src \
> >>> +"
> >>> +
> >>> +
> >>> +HMI_append_omap-a15 = " \
> >>> +    evse-hmi-src \
> >>> +"
> >>> +
> >>> +RDEPENDS_${PN} = "\
> >>> +    ${HMI} \
> >>> +"
> >>> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi.bb
> >>> new file mode 100755
> >>> index 0000000..9066c72
> >>> --- /dev/null
> >>> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi.bb
> >>> @@ -0,0 +1,27 @@
> >> Same comments here.
> >>
> >>
> >>> +DESCRIPTION = "Task to add HMI related packages"
> >>> +LICENSE = "BSD-3-Clause"
> >>> +PR = "r1"
> >>> +
> >>> +PACKAGE_ARCH = "${MACHINE_ARCH}"
> >>> +
> >>> +inherit packagegroup
> >>> +
> >>> +HMI = " \
> >>> +"
> >>> +
> >>> +
> >>> +HMI_append_ti33x = " \
> >>> +    evse-hmi \
> >>> +"
> >>> +
> >>> +HMI_append_ti43x = " \
> >>> +    evse-hmi \
> >>> +"
> >>> +
> >>> +HMI_append_omap-a15 = " \
> >>> +    evse-hmi \
> >>> +"
> >>> +
> >>> +
> >>> +RDEPENDS_${PN} = "\
> >>> +"
> > Also, you seem to be missing to add anything in RDEPENDS...
> >
> >
> >>> -- 
> >>> 2.13.0
> >>>
> >> _______________________________________________
> >> meta-arago mailing list
> >> meta-arago@arago-project.org
> >> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> 


  reply	other threads:[~2017-08-29 21:05 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-29 16:38 [morty][PATCH v2 1/6] meta-arago-extras : recipe-apps : evse-hmi : new demo Manisha Agrawal
2017-08-29 16:38 ` [morty][PATCH v2 2/6] matrix : add new EVSE HMI demo Manisha Agrawal
2017-08-29 17:26   ` Denys Dmytriyenko
2017-08-29 16:38 ` [morty][PATCH v2 3/6] meta-arago-extras : matrix : recipe for evse hmi Manisha Agrawal
2017-08-29 17:20   ` Denys Dmytriyenko
2017-08-29 16:38 ` [morty][PATCH v2 4/6] recipes-core : packagegroups: hmi Manisha Agrawal
2017-08-29 17:16   ` Denys Dmytriyenko
2017-08-29 19:55     ` Denys Dmytriyenko
2017-08-29 20:56       ` Manisha Agrawal
2017-08-29 21:05         ` Denys Dmytriyenko [this message]
2017-08-29 21:17           ` Manisha Agrawal
2017-08-29 16:38 ` [morty][PATCH v2 5/6] meta-arago-distro: conf : arago-source-ipk.inc Manisha Agrawal
2017-08-29 17:32   ` Denys Dmytriyenko
2017-08-29 16:38 ` [morty][PATCH v2 6/6] arago-distro : recipes-core : tisdk-rootfs-image Manisha Agrawal
2017-08-29 17:29   ` Denys Dmytriyenko
2017-08-29 17:11 ` [morty][PATCH v2 1/6] meta-arago-extras : recipe-apps : evse-hmi : new demo Denys Dmytriyenko

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=20170829210535.GQ8304@edge \
    --to=denys@ti.com \
    --cc=manisha.agrawal@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.