Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1] eds-tools: Update it to fix the build error
@ 2012-02-14  7:56 wenzong.fan
  2012-02-14  7:56 ` [PATCH 1/1] " wenzong.fan
  2012-02-21 19:06 ` [PATCH 0/1] " Saul Wold
  0 siblings, 2 replies; 3+ messages in thread
From: wenzong.fan @ 2012-02-14  7:56 UTC (permalink / raw)
  To: openembedded-core

From: Wenzong Fan <wenzong.fan@windriver.com>

Get the latest updates to eds-tools for fixing the build error:
* libedataserver/e-data-server-module.h: No such file or directory

Also update its recipe file to reflect it has been converted to git
repo and splict the generated binaries to correct packages.

[yocto#1786]

The following changes since commit 41a83ccfe50ec69425a4828fb5836d38d3f99e67:
  Lianhao Lu (1):
        guile: fix cross configure failure

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib wenzong/1786
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=wenzong/1786

Wenzong Fan (1):
  eds-tools: Update it to fix the build error

 .../conf/distro/include/distro_tracking_fields.inc |    4 ++--
 meta/recipes-sato/eds/eds-tools_git.bb             |    8 +++++---
 2 files changed, 7 insertions(+), 5 deletions(-)




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

* [PATCH 1/1] eds-tools: Update it to fix the build error
  2012-02-14  7:56 [PATCH 0/1] eds-tools: Update it to fix the build error wenzong.fan
@ 2012-02-14  7:56 ` wenzong.fan
  2012-02-21 19:06 ` [PATCH 0/1] " Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: wenzong.fan @ 2012-02-14  7:56 UTC (permalink / raw)
  To: openembedded-core

From: Wenzong Fan <wenzong.fan@windriver.com>

The head file 'libedataserver/e-data-server-module.h' has been moved
to 'libebackend/e-data-server-module.h', just update eds-tools to get
the latest changes for fixing the path of 'e-data-server-module.h'.

Also update its recipe file to reflect it has been converted to git
repo and split all generated binaries to correct packages.

[YOCTO#1786]

Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
---
 .../conf/distro/include/distro_tracking_fields.inc |    4 ++--
 meta/recipes-sato/eds/eds-tools_git.bb             |    8 +++++---
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc
index 02aeabd..5381c18 100644
--- a/meta/conf/distro/include/distro_tracking_fields.inc
+++ b/meta/conf/distro/include/distro_tracking_fields.inc
@@ -5802,11 +5802,11 @@ DISTRO_PN_ALIAS_pn-aaina = "Intel"
 RECIPE_STATUS_pn-table = "red"
 DISTRO_PN_ALIAS_pn-table = "Intel"
 
-RECIPE_STATUS_pn-eds-tools = "red"
+RECIPE_STATUS_pn-eds-tools = "green"
 DISTRO_PN_ALIAS_pn-eds-tools = "OpenedHand"
 RECIPE_LATEST_VERSION_pn-eds-tools = "git"
 RECIPE_LAST_UPDATE_pn-eds-tools = "Oct 10, 2011"
-RECIPE_MANUAL_CHECK_DATE_pn-eds-tools = "Jan 12, 2012"
+RECIPE_MANUAL_CHECK_DATE_pn-eds-tools = "Feb 13, 2012"
 RECIPE_MAINTAINER_pn-eds-tools = "Wenzong Fan <wenzong.fan@windriver.com>"
 
 RECIPE_STATUS_pn-abiword-embedded = "red"
diff --git a/meta/recipes-sato/eds/eds-tools_git.bb b/meta/recipes-sato/eds/eds-tools_git.bb
index fedfaf5..cf0d72f 100644
--- a/meta/recipes-sato/eds/eds-tools_git.bb
+++ b/meta/recipes-sato/eds/eds-tools_git.bb
@@ -4,8 +4,8 @@ DEPENDS = "dbus-glib eds-dbus"
 RDEPENDS_${PN} = "libedata-book"
 DESCRIPTION = "Test applications for EDS"
 
-SRCREV = "882df681014cf42f75882995e507c75254b6b62f"
-PR = "r0"
+SRCREV = "5e9afbd22a021d1f0d0a0249d5995d19dd770584"
+PR = "r1"
 
 SRC_URI = "git://github.com/rossburton/eds-tools.git;protocol=git"
 
@@ -13,6 +13,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
 
 inherit autotools pkgconfig
 
-S = "${WORKDIR}/${BPN}"
+S = "${WORKDIR}/git"
 
 FILES_${PN} += "${libdir}/evolution-data-server-1.2/extensions/*.so"
+FILES_${PN} += "${libdir}/evolution-data-server-1.2/extensions/*.la"
+FILES_${PN}-dbg += "${libdir}/evolution-data-server-1.2/extensions/.debug/*.so"
-- 
1.7.0.4




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

* Re: [PATCH 0/1] eds-tools: Update it to fix the build error
  2012-02-14  7:56 [PATCH 0/1] eds-tools: Update it to fix the build error wenzong.fan
  2012-02-14  7:56 ` [PATCH 1/1] " wenzong.fan
@ 2012-02-21 19:06 ` Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2012-02-21 19:06 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 02/13/2012 11:56 PM, wenzong.fan@windriver.com wrote:
> From: Wenzong Fan<wenzong.fan@windriver.com>
>
> Get the latest updates to eds-tools for fixing the build error:
> * libedataserver/e-data-server-module.h: No such file or directory
>
> Also update its recipe file to reflect it has been converted to git
> repo and splict the generated binaries to correct packages.
>
> [yocto#1786]
>
> The following changes since commit 41a83ccfe50ec69425a4828fb5836d38d3f99e67:
>    Lianhao Lu (1):
>          guile: fix cross configure failure
>
> are available in the git repository at:
>
>    git://git.pokylinux.org/poky-contrib wenzong/1786
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=wenzong/1786
>
> Wenzong Fan (1):
>    eds-tools: Update it to fix the build error
>
>   .../conf/distro/include/distro_tracking_fields.inc |    4 ++--
>   meta/recipes-sato/eds/eds-tools_git.bb             |    8 +++++---
>   2 files changed, 7 insertions(+), 5 deletions(-)
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>

Merged into OE-core

Thanks
	Sau!



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

end of thread, other threads:[~2012-02-21 19:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-14  7:56 [PATCH 0/1] eds-tools: Update it to fix the build error wenzong.fan
2012-02-14  7:56 ` [PATCH 1/1] " wenzong.fan
2012-02-21 19:06 ` [PATCH 0/1] " Saul Wold

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