* [PATCH 0/2] PATCH: fix Bug #820
@ 2011-03-09 10:42 Dexuan Cui
2011-03-09 10:42 ` [PATCH 1/2] oprofileui: upgrade to the latest version maintained by the Yocto project Dexuan Cui
2011-03-09 10:42 ` [PATCH 2/2] distro_tracking_fields.inc: update the info for oprofileui Dexuan Cui
0 siblings, 2 replies; 3+ messages in thread
From: Dexuan Cui @ 2011-03-09 10:42 UTC (permalink / raw)
To: poky
From: Dexuan Cui <dexuan.cui@intel.com>
Oprofileui at http://labs.o-hand.com/oprofileui/ is not maintained now, so
we should change SRC_URI to the one maintained by the Yocto project. This
one includes new bugfixes.
BTW, we need to push the patches into both master and bernard.
Pull URL: git://git.pokylinux.org/poky-contrib.git
Branch: dcui/master
Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dcui/master
Thanks,
Dexuan Cui <dexuan.cui@intel.com>
---
Dexuan Cui (2):
oprofileui: upgrade to the latest version maintained by the Yocto
project
distro_tracking_fields.inc: update the info for oprofileui
.../conf/distro/include/distro_tracking_fields.inc | 11 ++++++-----
.../conf/distro/include/poky-default-revisions.inc | 2 +-
meta/recipes-kernel/oprofile/oprofileui-git.inc | 10 ++++++++++
meta/recipes-kernel/oprofile/oprofileui-svn.inc | 9 ---------
meta/recipes-kernel/oprofile/oprofileui_git.bb | 2 ++
meta/recipes-kernel/oprofile/oprofileui_svn.bb | 2 --
6 files changed, 19 insertions(+), 17 deletions(-)
create mode 100644 meta/recipes-kernel/oprofile/oprofileui-git.inc
delete mode 100644 meta/recipes-kernel/oprofile/oprofileui-svn.inc
create mode 100644 meta/recipes-kernel/oprofile/oprofileui_git.bb
delete mode 100644 meta/recipes-kernel/oprofile/oprofileui_svn.bb
--
1.7.2
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/2] oprofileui: upgrade to the latest version maintained by the Yocto project
2011-03-09 10:42 [PATCH 0/2] PATCH: fix Bug #820 Dexuan Cui
@ 2011-03-09 10:42 ` Dexuan Cui
2011-03-09 10:42 ` [PATCH 2/2] distro_tracking_fields.inc: update the info for oprofileui Dexuan Cui
1 sibling, 0 replies; 3+ messages in thread
From: Dexuan Cui @ 2011-03-09 10:42 UTC (permalink / raw)
To: poky
From: Dexuan Cui <dexuan.cui@intel.com>
Oprofileui at http://labs.o-hand.com/oprofileui/ is not maintained now, so
we should change SRC_URI to the one maintained by the Yocto project. This
one includes new bugfixes.
This fixes [YOCTO #820]
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
---
.../conf/distro/include/poky-default-revisions.inc | 2 +-
meta/recipes-kernel/oprofile/oprofileui-git.inc | 10 ++++++++++
meta/recipes-kernel/oprofile/oprofileui-svn.inc | 9 ---------
meta/recipes-kernel/oprofile/oprofileui_git.bb | 2 ++
meta/recipes-kernel/oprofile/oprofileui_svn.bb | 2 --
5 files changed, 13 insertions(+), 12 deletions(-)
create mode 100644 meta/recipes-kernel/oprofile/oprofileui-git.inc
delete mode 100644 meta/recipes-kernel/oprofile/oprofileui-svn.inc
create mode 100644 meta/recipes-kernel/oprofile/oprofileui_git.bb
delete mode 100644 meta/recipes-kernel/oprofile/oprofileui_svn.bb
diff --git a/meta/conf/distro/include/poky-default-revisions.inc b/meta/conf/distro/include/poky-default-revisions.inc
index 36202a1..aee1749 100644
--- a/meta/conf/distro/include/poky-default-revisions.inc
+++ b/meta/conf/distro/include/poky-default-revisions.inc
@@ -146,7 +146,7 @@ SRCREV_pn-opkg-nogpg-native ??= "${OPKGSRCREV}"
SRCREV_pn-opkg-nogpg-nativesdk ??= "${OPKGSRCREV}"
SRCREV_pn-opkg-utils-native ??= "4747"
SRCREV_pn-opkg-utils ??= "4747"
-SRCREV_pn-oprofileui ??= "197"
+SRCREV_pn-oprofileui ??= "e2d998d8a55dc1e49d1588841f83eff8e6809753"
SRCREV_pn-tcf-agent ??= "1078"
SRCREV_pn-osc-native ??= "9096"
SRCREV_pn-owl-video ??= "394"
diff --git a/meta/recipes-kernel/oprofile/oprofileui-git.inc b/meta/recipes-kernel/oprofile/oprofileui-git.inc
new file mode 100644
index 0000000..b4a573b
--- /dev/null
+++ b/meta/recipes-kernel/oprofile/oprofileui-git.inc
@@ -0,0 +1,10 @@
+require oprofileui.inc
+
+PV = "0.0+git${SRCPV}"
+PR = "r2"
+
+S = "${WORKDIR}/git"
+
+# Oprofileui at http://labs.o-hand.com/oprofileui/ is not maintained now.
+SRC_URI = "git://git.pokylinux.org/oprofileui;protocol=git \
+ file://dso_linking_change_build_fix.patch "
diff --git a/meta/recipes-kernel/oprofile/oprofileui-svn.inc b/meta/recipes-kernel/oprofile/oprofileui-svn.inc
deleted file mode 100644
index 5d40914..0000000
--- a/meta/recipes-kernel/oprofile/oprofileui-svn.inc
+++ /dev/null
@@ -1,9 +0,0 @@
-require oprofileui.inc
-
-PV = "0.0+svnr${SRCPV}"
-PR = "r1"
-
-S = "${WORKDIR}/trunk"
-
-SRC_URI = "svn://svn.o-hand.com/repos/oprofileui;module=trunk;proto=http \
- file://dso_linking_change_build_fix.patch "
diff --git a/meta/recipes-kernel/oprofile/oprofileui_git.bb b/meta/recipes-kernel/oprofile/oprofileui_git.bb
new file mode 100644
index 0000000..705f4e1
--- /dev/null
+++ b/meta/recipes-kernel/oprofile/oprofileui_git.bb
@@ -0,0 +1,2 @@
+require oprofileui-git.inc
+
diff --git a/meta/recipes-kernel/oprofile/oprofileui_svn.bb b/meta/recipes-kernel/oprofile/oprofileui_svn.bb
deleted file mode 100644
index 39e10b4..0000000
--- a/meta/recipes-kernel/oprofile/oprofileui_svn.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-require oprofileui-svn.inc
-
--
1.7.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] distro_tracking_fields.inc: update the info for oprofileui
2011-03-09 10:42 [PATCH 0/2] PATCH: fix Bug #820 Dexuan Cui
2011-03-09 10:42 ` [PATCH 1/2] oprofileui: upgrade to the latest version maintained by the Yocto project Dexuan Cui
@ 2011-03-09 10:42 ` Dexuan Cui
1 sibling, 0 replies; 3+ messages in thread
From: Dexuan Cui @ 2011-03-09 10:42 UTC (permalink / raw)
To: poky
From: Dexuan Cui <dexuan.cui@intel.com>
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
---
.../conf/distro/include/distro_tracking_fields.inc | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc
index 1b05341..cadfac2 100644
--- a/meta/conf/distro/include/distro_tracking_fields.inc
+++ b/meta/conf/distro/include/distro_tracking_fields.inc
@@ -2681,13 +2681,14 @@ RECIPE_MAINTAINER_pn-libsamplerate0 = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-oprofileui = "green"
DISTRO_PN_ALIAS_pn-oprofileui = "Fedora=oprofileui Ubuntu=oprofile-gui Debian=oprofile-gui"
RECIPE_DEPENDENCY_CHECK_pn-oprofileui = "not done"
-RECIPE_LATEST_VERSION_pn-oprofileui = "0.0+svnr197"
-RECIPE_NO_OF_PATCHES_pn-oprofileui = "0"
+RECIPE_LATEST_VERSION_pn-oprofileui = "0.0+git0+e2d998d8a55dc1e49d1588841f83eff8e6809753"
+RECIPE_NO_OF_PATCHES_pn-oprofileui = "1"
+RECIPE_PATCH_pn-oprofileui+dso_linking_change_build_fix = "fix the build by explicitely passing -lm to linker"
RECIPE_INTEL_SECTION_pn-oprofileui = "sdk-tools"
-RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-oprofileui = "13 days"
-RECIPE_LATEST_RELEASE_DATE_pn-oprofileui = "07/2008"
+RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-oprofileui = "5 months"
+RECIPE_LATEST_RELEASE_DATE_pn-oprofileui = "Dec 10, 2010"
RECIPE_COMMENTS_pn-oprofileui = ""
-RECIPE_LAST_UPDATE_pn-oprofileui = "Jul 20, 2010"
+RECIPE_LAST_UPDATE_pn-oprofileui = "Mar 9, 2011"
RECIPE_MAINTAINER_pn-oprofileui = "Dexuan Cui <dexuan.cui@intel.com>"
RECIPE_STATUS_pn-oprofile = "green"
--
1.7.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-03-09 10:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-09 10:42 [PATCH 0/2] PATCH: fix Bug #820 Dexuan Cui
2011-03-09 10:42 ` [PATCH 1/2] oprofileui: upgrade to the latest version maintained by the Yocto project Dexuan Cui
2011-03-09 10:42 ` [PATCH 2/2] distro_tracking_fields.inc: update the info for oprofileui Dexuan Cui
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.