All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mesa appends: remove PROVIDES
@ 2013-10-24  9:29 Andreas Müller
  2013-10-24 11:23 ` Gary Thomas
  0 siblings, 1 reply; 5+ messages in thread
From: Andreas Müller @ 2013-10-24  9:29 UTC (permalink / raw)
  To: meta-ti

These came in when mesa was reworked. Nowadays they are useless and what
they try to do achieve is wrong: provider for virtual/libgsl should be
mesa-gl. The appends were left in to avoid backward revision trouble in
package feeds.

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 recipes-graphics/mesa/mesa-omap3-common.inc | 7 -------
 recipes-graphics/mesa/mesa_9.1.6.bbappend   | 3 ++-
 recipes-graphics/mesa/mesa_git.bbappend     | 3 ++-
 3 files changed, 4 insertions(+), 9 deletions(-)
 delete mode 100644 recipes-graphics/mesa/mesa-omap3-common.inc

diff --git a/recipes-graphics/mesa/mesa-omap3-common.inc b/recipes-graphics/mesa/mesa-omap3-common.inc
deleted file mode 100644
index 0340770..0000000
--- a/recipes-graphics/mesa/mesa-omap3-common.inc
+++ /dev/null
@@ -1,7 +0,0 @@
-PRINC := "${@int(PRINC) + 1}"
-
-# avoid providing conflicts for libgles-omap3 compatibles
-PROVIDES_omap3 = "virtual/libgl"
-PROVIDES_ti814x = "virtual/libgl"
-PROVIDES_ti816x = "virtual/libgl"
-PROVIDES_ti33x = "virtual/libgl"
diff --git a/recipes-graphics/mesa/mesa_9.1.6.bbappend b/recipes-graphics/mesa/mesa_9.1.6.bbappend
index 164ec1b..8445337 100644
--- a/recipes-graphics/mesa/mesa_9.1.6.bbappend
+++ b/recipes-graphics/mesa/mesa_9.1.6.bbappend
@@ -1 +1,2 @@
-require mesa-omap3-common.inc
+PRINC := "${@int(PRINC) + 1}"
+
diff --git a/recipes-graphics/mesa/mesa_git.bbappend b/recipes-graphics/mesa/mesa_git.bbappend
index 164ec1b..8445337 100644
--- a/recipes-graphics/mesa/mesa_git.bbappend
+++ b/recipes-graphics/mesa/mesa_git.bbappend
@@ -1 +1,2 @@
-require mesa-omap3-common.inc
+PRINC := "${@int(PRINC) + 1}"
+
-- 
1.8.3.1



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

* Re: [PATCH] mesa appends: remove PROVIDES
  2013-10-24  9:29 [PATCH] mesa appends: remove PROVIDES Andreas Müller
@ 2013-10-24 11:23 ` Gary Thomas
  2013-10-24 11:49   ` Andreas Müller
  0 siblings, 1 reply; 5+ messages in thread
From: Gary Thomas @ 2013-10-24 11:23 UTC (permalink / raw)
  To: meta-ti

On 2013-10-24 03:29, Andreas Müller wrote:
> These came in when mesa was reworked. Nowadays they are useless and what
> they try to do achieve is wrong: provider for virtual/libgsl should be
> mesa-gl. The appends were left in to avoid backward revision trouble in
> package feeds.

If this is the correct solution, I think these .bbappend files should be
removed completely.  They don't change anything and keeping them just to
retain the PRINC is useless because as is one cannot even build a system
which uses virtual/mesa, e.g. one using the X11 server.  In addition, the
main mesa recipe is about to be updated so they'll need changing again very
soon.

>
> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
> ---
>   recipes-graphics/mesa/mesa-omap3-common.inc | 7 -------
>   recipes-graphics/mesa/mesa_9.1.6.bbappend   | 3 ++-
>   recipes-graphics/mesa/mesa_git.bbappend     | 3 ++-
>   3 files changed, 4 insertions(+), 9 deletions(-)
>   delete mode 100644 recipes-graphics/mesa/mesa-omap3-common.inc
>
> diff --git a/recipes-graphics/mesa/mesa-omap3-common.inc b/recipes-graphics/mesa/mesa-omap3-common.inc
> deleted file mode 100644
> index 0340770..0000000
> --- a/recipes-graphics/mesa/mesa-omap3-common.inc
> +++ /dev/null
> @@ -1,7 +0,0 @@
> -PRINC := "${@int(PRINC) + 1}"
> -
> -# avoid providing conflicts for libgles-omap3 compatibles
> -PROVIDES_omap3 = "virtual/libgl"
> -PROVIDES_ti814x = "virtual/libgl"
> -PROVIDES_ti816x = "virtual/libgl"
> -PROVIDES_ti33x = "virtual/libgl"
> diff --git a/recipes-graphics/mesa/mesa_9.1.6.bbappend b/recipes-graphics/mesa/mesa_9.1.6.bbappend
> index 164ec1b..8445337 100644
> --- a/recipes-graphics/mesa/mesa_9.1.6.bbappend
> +++ b/recipes-graphics/mesa/mesa_9.1.6.bbappend
> @@ -1 +1,2 @@
> -require mesa-omap3-common.inc
> +PRINC := "${@int(PRINC) + 1}"
> +
> diff --git a/recipes-graphics/mesa/mesa_git.bbappend b/recipes-graphics/mesa/mesa_git.bbappend
> index 164ec1b..8445337 100644
> --- a/recipes-graphics/mesa/mesa_git.bbappend
> +++ b/recipes-graphics/mesa/mesa_git.bbappend
> @@ -1 +1,2 @@
> -require mesa-omap3-common.inc
> +PRINC := "${@int(PRINC) + 1}"
> +
>

-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------


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

* Re: [PATCH] mesa appends: remove PROVIDES
  2013-10-24 11:23 ` Gary Thomas
@ 2013-10-24 11:49   ` Andreas Müller
  2013-10-24 12:14     ` Dmytriyenko, Denys
  0 siblings, 1 reply; 5+ messages in thread
From: Andreas Müller @ 2013-10-24 11:49 UTC (permalink / raw)
  To: Gary Thomas; +Cc: meta-ti

On Thu, Oct 24, 2013 at 1:23 PM, Gary Thomas <gary@mlbassoc.com> wrote:
> On 2013-10-24 03:29, Andreas Müller wrote:
>>
>> These came in when mesa was reworked. Nowadays they are useless and what
>> they try to do achieve is wrong: provider for virtual/libgsl should be
>> mesa-gl. The appends were left in to avoid backward revision trouble in
>> package feeds.
>
>
> If this is the correct solution, I think these .bbappend files should be
> removed completely.  They don't change anything and keeping them just to
> retain the PRINC is useless because as is one cannot even build a system
> which uses virtual/mesa, e.g. one using the X11 server.  In addition, the
> main mesa recipe is about to be updated so they'll need changing again very
> soon.
>
So let's kick them out as soon as mesa is updated

Andreas


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

* Re: [PATCH] mesa appends: remove PROVIDES
  2013-10-24 11:49   ` Andreas Müller
@ 2013-10-24 12:14     ` Dmytriyenko, Denys
  2013-10-31  3:56       ` Khem Raj
  0 siblings, 1 reply; 5+ messages in thread
From: Dmytriyenko, Denys @ 2013-10-24 12:14 UTC (permalink / raw)
  To: gary, schnitzeltony; +Cc: meta-ti

[-- Attachment #1: Type: text/plain, Size: 1334 bytes --]

Thanks, I'll have to look at it once I'm back from ELCE...


Denys


-----Original Message-----
From: Andreas Müller [schnitzeltony@googlemail.com]
Received: Thursday, 24 Oct 2013, 12:49
To: Gary Thomas [gary@mlbassoc.com]
CC: meta-ti@yoctoproject.org [meta-ti@yoctoproject.org]
Subject: Re: [meta-ti] [PATCH] mesa appends: remove PROVIDES

On Thu, Oct 24, 2013 at 1:23 PM, Gary Thomas <gary@mlbassoc.com> wrote:
> On 2013-10-24 03:29, Andreas Müller wrote:
>>
>> These came in when mesa was reworked. Nowadays they are useless and what
>> they try to do achieve is wrong: provider for virtual/libgsl should be
>> mesa-gl. The appends were left in to avoid backward revision trouble in
>> package feeds.
>
>
> If this is the correct solution, I think these .bbappend files should be
> removed completely.  They don't change anything and keeping them just to
> retain the PRINC is useless because as is one cannot even build a system
> which uses virtual/mesa, e.g. one using the X11 server.  In addition, the
> main mesa recipe is about to be updated so they'll need changing again very
> soon.
>
So let's kick them out as soon as mesa is updated

Andreas
_______________________________________________
meta-ti mailing list
meta-ti@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-ti

[-- Attachment #2: Type: text/html, Size: 2299 bytes --]

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

* Re: [PATCH] mesa appends: remove PROVIDES
  2013-10-24 12:14     ` Dmytriyenko, Denys
@ 2013-10-31  3:56       ` Khem Raj
  0 siblings, 0 replies; 5+ messages in thread
From: Khem Raj @ 2013-10-31  3:56 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-ti

ping. I am also waiting on this patch or similar getting in into meta-ti

On Thu, Oct 24, 2013 at 5:14 AM, Dmytriyenko, Denys <denys@ti.com> wrote:
> Thanks, I'll have to look at it once I'm back from ELCE...
>
>
> Denys
>
>
>
> -----Original Message-----
> From: Andreas Müller [schnitzeltony@googlemail.com]
> Received: Thursday, 24 Oct 2013, 12:49
> To: Gary Thomas [gary@mlbassoc.com]
> CC: meta-ti@yoctoproject.org [meta-ti@yoctoproject.org]
> Subject: Re: [meta-ti] [PATCH] mesa appends: remove PROVIDES
>
> On Thu, Oct 24, 2013 at 1:23 PM, Gary Thomas <gary@mlbassoc.com> wrote:
>> On 2013-10-24 03:29, Andreas Müller wrote:
>>>
>>> These came in when mesa was reworked. Nowadays they are useless and what
>>> they try to do achieve is wrong: provider for virtual/libgsl should be
>>> mesa-gl. The appends were left in to avoid backward revision trouble in
>>> package feeds.
>>
>>
>> If this is the correct solution, I think these .bbappend files should be
>> removed completely.  They don't change anything and keeping them just to
>> retain the PRINC is useless because as is one cannot even build a system
>> which uses virtual/mesa, e.g. one using the X11 server.  In addition, the
>> main mesa recipe is about to be updated so they'll need changing again
>> very
>> soon.
>>
> So let's kick them out as soon as mesa is updated
>
> Andreas
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti
>
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti
>


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

end of thread, other threads:[~2013-10-31  3:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-24  9:29 [PATCH] mesa appends: remove PROVIDES Andreas Müller
2013-10-24 11:23 ` Gary Thomas
2013-10-24 11:49   ` Andreas Müller
2013-10-24 12:14     ` Dmytriyenko, Denys
2013-10-31  3:56       ` Khem Raj

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.