Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] Mention package_tar packaging in local.conf.sample
@ 2014-07-24  9:10 Robert P. J. Day
  2014-07-24  9:16 ` Burton, Ross
  2014-07-24 12:08 ` Richard Purdie
  0 siblings, 2 replies; 5+ messages in thread
From: Robert P. J. Day @ 2014-07-24  9:10 UTC (permalink / raw)
  To: OE Core mailing list


Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>

---

  is this the appropriate comment for tarball packaging?

diff --git a/meta/conf/local.conf.sample b/meta/conf/local.conf.sample
index 555f8db..a200002 100644
--- a/meta/conf/local.conf.sample
+++ b/meta/conf/local.conf.sample
@@ -78,7 +78,8 @@ MACHINE ??= "qemux86"
 #  - 'package_deb' for debian style deb files
 #  - 'package_ipk' for ipk files are used by opkg (a debian style embedded package manager)
 #  - 'package_rpm' for rpm style packages
-# E.g.: PACKAGE_CLASSES ?= "package_rpm package_deb package_ipk"
+#  - 'package_tar' for tarball packages
+# E.g.: PACKAGE_CLASSES ?= "package_rpm package_deb package_ipk package_tar"
 # We default to ipk:
 PACKAGE_CLASSES ?= "package_ipk"


-- 

========================================================================
Robert P. J. Day                                 Ottawa, Ontario, CANADA
                        http://crashcourse.ca

Twitter:                                       http://twitter.com/rpjday
LinkedIn:                               http://ca.linkedin.com/in/rpjday
========================================================================



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

* Re: [PATCH] Mention package_tar packaging in local.conf.sample
  2014-07-24  9:10 [PATCH] Mention package_tar packaging in local.conf.sample Robert P. J. Day
@ 2014-07-24  9:16 ` Burton, Ross
  2014-07-24  9:18   ` Robert P. J. Day
  2014-07-24  9:59   ` Paul Eggleton
  2014-07-24 12:08 ` Richard Purdie
  1 sibling, 2 replies; 5+ messages in thread
From: Burton, Ross @ 2014-07-24  9:16 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: OE Core mailing list

On 24 July 2014 10:10, Robert P. J. Day <rpjday@crashcourse.ca> wrote:
> +#  - 'package_tar' for tarball packages
> +# E.g.: PACKAGE_CLASSES ?= "package_rpm package_deb package_ipk package_tar"

package_tar is pretty limited (no dependencies, so images don't work)
- is there a good reason to keep it around?  If we're going to delete
it, now is the time to do it...

Ross


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

* Re: [PATCH] Mention package_tar packaging in local.conf.sample
  2014-07-24  9:16 ` Burton, Ross
@ 2014-07-24  9:18   ` Robert P. J. Day
  2014-07-24  9:59   ` Paul Eggleton
  1 sibling, 0 replies; 5+ messages in thread
From: Robert P. J. Day @ 2014-07-24  9:18 UTC (permalink / raw)
  To: Burton, Ross; +Cc: OE Core mailing list

On Thu, 24 Jul 2014, Burton, Ross wrote:

> On 24 July 2014 10:10, Robert P. J. Day <rpjday@crashcourse.ca> wrote:
> > +#  - 'package_tar' for tarball packages
> > +# E.g.: PACKAGE_CLASSES ?= "package_rpm package_deb package_ipk package_tar"
>
> package_tar is pretty limited (no dependencies, so images don't work)
> - is there a good reason to keep it around?  If we're going to delete
> it, now is the time to do it...

  i'm fine with that, just trying to be consistent. i'm always a big
fan of throwing stuff away.

rday

-- 

========================================================================
Robert P. J. Day                                 Ottawa, Ontario, CANADA
                        http://crashcourse.ca

Twitter:                                       http://twitter.com/rpjday
LinkedIn:                               http://ca.linkedin.com/in/rpjday
========================================================================



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

* Re: [PATCH] Mention package_tar packaging in local.conf.sample
  2014-07-24  9:16 ` Burton, Ross
  2014-07-24  9:18   ` Robert P. J. Day
@ 2014-07-24  9:59   ` Paul Eggleton
  1 sibling, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2014-07-24  9:59 UTC (permalink / raw)
  To: Burton, Ross, Robert P. J. Day; +Cc: openembedded-core

On Thursday 24 July 2014 10:16:02 Burton, Ross wrote:
> On 24 July 2014 10:10, Robert P. J. Day <rpjday@crashcourse.ca> wrote:
> > +#  - 'package_tar' for tarball packages
> > +# E.g.: PACKAGE_CLASSES ?= "package_rpm package_deb package_ipk
> > package_tar"
> package_tar is pretty limited (no dependencies, so images don't work)
> - is there a good reason to keep it around?  If we're going to delete
> it, now is the time to do it...

I've really not heard of anyone using it recently. I have at least kept it 
working over the last little while, and it might possibly be useful on a 
limited basis if you want the output of certain recipes to be in the form of a 
tarball; without dependencies though as you say it's of no use beyond that. 
I'd be fine with dropping it as well if it's simply not going to be used.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


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

* Re: [PATCH] Mention package_tar packaging in local.conf.sample
  2014-07-24  9:10 [PATCH] Mention package_tar packaging in local.conf.sample Robert P. J. Day
  2014-07-24  9:16 ` Burton, Ross
@ 2014-07-24 12:08 ` Richard Purdie
  1 sibling, 0 replies; 5+ messages in thread
From: Richard Purdie @ 2014-07-24 12:08 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: OE Core mailing list

On Thu, 2014-07-24 at 05:10 -0400, Robert P. J. Day wrote:
> Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
> 
> ---
> 
>   is this the appropriate comment for tarball packaging?
> 
> diff --git a/meta/conf/local.conf.sample b/meta/conf/local.conf.sample
> index 555f8db..a200002 100644
> --- a/meta/conf/local.conf.sample
> +++ b/meta/conf/local.conf.sample
> @@ -78,7 +78,8 @@ MACHINE ??= "qemux86"
>  #  - 'package_deb' for debian style deb files
>  #  - 'package_ipk' for ipk files are used by opkg (a debian style embedded package manager)
>  #  - 'package_rpm' for rpm style packages
> -# E.g.: PACKAGE_CLASSES ?= "package_rpm package_deb package_ipk"
> +#  - 'package_tar' for tarball packages
> +# E.g.: PACKAGE_CLASSES ?= "package_rpm package_deb package_ipk package_tar"
>  # We default to ipk:
>  PACKAGE_CLASSES ?= "package_ipk"
> 

The class is pretty useless, lets leave this one less documented ;-)

I keep thinking we should delete it instead to be honest...

Cheers,

Richard



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

end of thread, other threads:[~2014-07-24 12:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-24  9:10 [PATCH] Mention package_tar packaging in local.conf.sample Robert P. J. Day
2014-07-24  9:16 ` Burton, Ross
2014-07-24  9:18   ` Robert P. J. Day
2014-07-24  9:59   ` Paul Eggleton
2014-07-24 12:08 ` Richard Purdie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox