Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1] Minor fix to qt4 -dbg packages
@ 2012-09-07 22:07 Mark Hatle
  2012-09-07 22:07 ` [PATCH 1/1] qt4: Update qt4.inc to remove staticdev deps in " Mark Hatle
  2012-09-12 16:45 ` [PATCH 0/1] Minor fix to qt4 " Saul Wold
  0 siblings, 2 replies; 4+ messages in thread
From: Mark Hatle @ 2012-09-07 22:07 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 0de1827a9601143b090f751ea702fdb65a936b77:

  classes/mirrors: remove bogus gnutls mirror (2012-09-07 14:51:10 +0100)

are available in the git repository at:
  git://git.yoctoproject.org/poky-contrib mhatle/qt4
  http://git.yoctoproject.org/cgit.cgi//log/?h=mhatle/qt4

Mark Hatle (1):
  qt4: Update qt4.inc to remove staticdev deps in -dbg packages

 meta/recipes-qt/qt4/qt4-embedded.inc |    2 +-
 meta/recipes-qt/qt4/qt4-x11-free.inc |    2 +-
 meta/recipes-qt/qt4/qt4.inc          |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

-- 
1.7.3.4




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

* [PATCH 1/1] qt4: Update qt4.inc to remove staticdev deps in -dbg packages
  2012-09-07 22:07 [PATCH 0/1] Minor fix to qt4 -dbg packages Mark Hatle
@ 2012-09-07 22:07 ` Mark Hatle
  2012-09-08 21:24   ` Paul Eggleton
  2012-09-12 16:45 ` [PATCH 0/1] Minor fix to qt4 " Saul Wold
  1 sibling, 1 reply; 4+ messages in thread
From: Mark Hatle @ 2012-09-07 22:07 UTC (permalink / raw)
  To: openembedded-core

It appears that the qt4.inc had a copy/paste error relating to creating
a list of staticdev packages, that caused them to show up as dependencies
in the -dbg package.

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
 meta/recipes-qt/qt4/qt4-embedded.inc |    2 +-
 meta/recipes-qt/qt4/qt4-x11-free.inc |    2 +-
 meta/recipes-qt/qt4/qt4.inc          |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-qt/qt4/qt4-embedded.inc b/meta/recipes-qt/qt4/qt4-embedded.inc
index de1b88e..53eb652 100644
--- a/meta/recipes-qt/qt4/qt4-embedded.inc
+++ b/meta/recipes-qt/qt4/qt4-embedded.inc
@@ -2,7 +2,7 @@ DESCRIPTION = "Qt is a versatile cross-platform application framework -- this is
 SECTION = "libs"
 HOMEPAGE = "http://qt.nokia.com"
 DEPENDS += "directfb tslib"
-INC_PR = "r47"
+INC_PR = "r48"
 
 QT_BASE_LIB  ?= "libqt-embedded"
 
diff --git a/meta/recipes-qt/qt4/qt4-x11-free.inc b/meta/recipes-qt/qt4/qt4-x11-free.inc
index e229b85..0ae74f7 100644
--- a/meta/recipes-qt/qt4/qt4-x11-free.inc
+++ b/meta/recipes-qt/qt4/qt4-x11-free.inc
@@ -6,7 +6,7 @@ SECTION = "x11/libs"
 DEPENDS += "virtual/libgl virtual/libx11 fontconfig libxft libxext libxrender libxrandr libxcursor"
 PROVIDES += "qt4-x11"
 
-INC_PR = "r45"
+INC_PR = "r46"
 
 QT_GLFLAGS ?= "${@base_contains('DISTRO_FEATURES', 'opengl', '-opengl', '-no-opengl', d)} "
 QT_GLFLAGS_qemux86 = "-opengl"
diff --git a/meta/recipes-qt/qt4/qt4.inc b/meta/recipes-qt/qt4/qt4.inc
index b8c6baf..ba231ba 100644
--- a/meta/recipes-qt/qt4/qt4.inc
+++ b/meta/recipes-qt/qt4/qt4.inc
@@ -61,7 +61,7 @@ python __anonymous () {
         staticdev_packages.append("%s-staticdev" % pkg)
     for name in d.getVar("OTHER_PACKAGES", True).split():
         dbg_packages.append("%s-dbg" % name)
-        dbg_packages.append("%s-staticdev" % name)
+        staticdev_packages.append("%s-staticdev" % name)
 
     for name in d.getVar("QT_EXTRA_LIBS", True).split():
         pkg = d.getVar("QT_BASE_LIB", True) + name.lower().replace("qt", "").replace("_", "-") + "4"
-- 
1.7.3.4




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

* Re: [PATCH 1/1] qt4: Update qt4.inc to remove staticdev deps in -dbg packages
  2012-09-07 22:07 ` [PATCH 1/1] qt4: Update qt4.inc to remove staticdev deps in " Mark Hatle
@ 2012-09-08 21:24   ` Paul Eggleton
  0 siblings, 0 replies; 4+ messages in thread
From: Paul Eggleton @ 2012-09-08 21:24 UTC (permalink / raw)
  To: openembedded-core

On Friday 07 September 2012 17:07:11 Mark Hatle wrote:
> It appears that the qt4.inc had a copy/paste error relating to creating
> a list of staticdev packages, that caused them to show up as dependencies
> in the -dbg package.
> 
> Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
> ---
>  meta/recipes-qt/qt4/qt4-embedded.inc |    2 +-
>  meta/recipes-qt/qt4/qt4-x11-free.inc |    2 +-
>  meta/recipes-qt/qt4/qt4.inc          |    2 +-
>  3 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/meta/recipes-qt/qt4/qt4-embedded.inc
> b/meta/recipes-qt/qt4/qt4-embedded.inc index de1b88e..53eb652 100644
> --- a/meta/recipes-qt/qt4/qt4-embedded.inc
> +++ b/meta/recipes-qt/qt4/qt4-embedded.inc
> @@ -2,7 +2,7 @@ DESCRIPTION = "Qt is a versatile cross-platform application
> framework -- this is SECTION = "libs"
>  HOMEPAGE = "http://qt.nokia.com"
>  DEPENDS += "directfb tslib"
> -INC_PR = "r47"
> +INC_PR = "r48"
> 
>  QT_BASE_LIB  ?= "libqt-embedded"
> 
> diff --git a/meta/recipes-qt/qt4/qt4-x11-free.inc
> b/meta/recipes-qt/qt4/qt4-x11-free.inc index e229b85..0ae74f7 100644
> --- a/meta/recipes-qt/qt4/qt4-x11-free.inc
> +++ b/meta/recipes-qt/qt4/qt4-x11-free.inc
> @@ -6,7 +6,7 @@ SECTION = "x11/libs"
>  DEPENDS += "virtual/libgl virtual/libx11 fontconfig libxft libxext
> libxrender libxrandr libxcursor" PROVIDES += "qt4-x11"
> 
> -INC_PR = "r45"
> +INC_PR = "r46"
> 
>  QT_GLFLAGS ?= "${@base_contains('DISTRO_FEATURES', 'opengl', '-opengl',
> '-no-opengl', d)} " QT_GLFLAGS_qemux86 = "-opengl"
> diff --git a/meta/recipes-qt/qt4/qt4.inc b/meta/recipes-qt/qt4/qt4.inc
> index b8c6baf..ba231ba 100644
> --- a/meta/recipes-qt/qt4/qt4.inc
> +++ b/meta/recipes-qt/qt4/qt4.inc
> @@ -61,7 +61,7 @@ python __anonymous () {
>          staticdev_packages.append("%s-staticdev" % pkg)
>      for name in d.getVar("OTHER_PACKAGES", True).split():
>          dbg_packages.append("%s-dbg" % name)
> -        dbg_packages.append("%s-staticdev" % name)
> +        staticdev_packages.append("%s-staticdev" % name)
> 
>      for name in d.getVar("QT_EXTRA_LIBS", True).split():
>          pkg = d.getVar("QT_BASE_LIB", True) + name.lower().replace("qt",
> "").replace("_", "-") + "4"

Acked-by: Paul Eggleton <paul.eggleton@linux.intel.com>

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre



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

* Re: [PATCH 0/1] Minor fix to qt4 -dbg packages
  2012-09-07 22:07 [PATCH 0/1] Minor fix to qt4 -dbg packages Mark Hatle
  2012-09-07 22:07 ` [PATCH 1/1] qt4: Update qt4.inc to remove staticdev deps in " Mark Hatle
@ 2012-09-12 16:45 ` Saul Wold
  1 sibling, 0 replies; 4+ messages in thread
From: Saul Wold @ 2012-09-12 16:45 UTC (permalink / raw)
  To: Mark Hatle; +Cc: openembedded-core

On 09/07/2012 03:07 PM, Mark Hatle wrote:
> The following changes since commit 0de1827a9601143b090f751ea702fdb65a936b77:
>
>    classes/mirrors: remove bogus gnutls mirror (2012-09-07 14:51:10 +0100)
>
> are available in the git repository at:
>    git://git.yoctoproject.org/poky-contrib mhatle/qt4
>    http://git.yoctoproject.org/cgit.cgi//log/?h=mhatle/qt4
>
> Mark Hatle (1):
>    qt4: Update qt4.inc to remove staticdev deps in -dbg packages
>
>   meta/recipes-qt/qt4/qt4-embedded.inc |    2 +-
>   meta/recipes-qt/qt4/qt4-x11-free.inc |    2 +-
>   meta/recipes-qt/qt4/qt4.inc          |    2 +-
>   3 files changed, 3 insertions(+), 3 deletions(-)
>
Merged into OE-Core

Thanks
	Sau!




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

end of thread, other threads:[~2012-09-12 16:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-07 22:07 [PATCH 0/1] Minor fix to qt4 -dbg packages Mark Hatle
2012-09-07 22:07 ` [PATCH 1/1] qt4: Update qt4.inc to remove staticdev deps in " Mark Hatle
2012-09-08 21:24   ` Paul Eggleton
2012-09-12 16:45 ` [PATCH 0/1] Minor fix to qt4 " Saul Wold

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