All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] Package upgrades
@ 2013-08-08 13:46 Cristiana Voicu
  2013-08-08 13:46 ` [PATCH 1/5] ed: upgrade to 1.9 Cristiana Voicu
                   ` (4 more replies)
  0 siblings, 5 replies; 12+ messages in thread
From: Cristiana Voicu @ 2013-08-08 13:46 UTC (permalink / raw)
  To: openembedded-core

Hi,

Tests done:
 * build tested on AB running following nightlies: x86, x86_64, ppc, mips, arm;
 * checked with rpm if the packages were installed; basic functionality for kmod,
systemtap, atk, mkfontscale and ed

Thanks,
Cristiana

The following changes since commit f63e7f4323368c0d6fe7a1d44393a7e15652d4f2:

  subversion: Add patch to use neon 0.30 (2013-08-07 07:43:47 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib cvoicu/work2
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=cvoicu/work2

Cristiana Voicu (5):
  ed: upgrade to 1.9
  mkfontscale: upgrade to 1.1.1
  atk: upgrade to 2.9.3
  systemtap: upgrade to 2.3
  kmod: upgrade to 14

 meta/recipes-extended/ed/{ed_1.8.bb => ed_1.9.bb}  |    7 +++----
 .../{mkfontscale_1.1.0.bb => mkfontscale_1.1.1.bb} |    6 ++----
 meta/recipes-kernel/kmod/kmod-native_git.bb        |    1 -
 meta/recipes-kernel/kmod/kmod.inc                  |    5 ++---
 ...-man-page-generation-because-we-don-t-hav.patch |   21 ++++++++++----------
 .../kmod/kmod/fix-undefined-O_CLOEXEC.patch        |    5 ++---
 meta/recipes-kernel/kmod/kmod_git.bb               |    3 +--
 meta/recipes-kernel/systemtap/systemtap_git.bb     |    2 --
 meta/recipes-kernel/systemtap/systemtap_git.inc    |    4 ++--
 .../atk/{atk_2.8.0.bb => atk_2.9.3.bb}             |    4 ++--
 10 files changed, 25 insertions(+), 33 deletions(-)
 rename meta/recipes-extended/ed/{ed_1.8.bb => ed_1.9.bb} (68%)
 rename meta/recipes-graphics/xorg-app/{mkfontscale_1.1.0.bb => mkfontscale_1.1.1.bb} (78%)
 rename meta/recipes-support/atk/{atk_2.8.0.bb => atk_2.9.3.bb} (79%)

-- 
1.7.9.5



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

* [PATCH 1/5] ed: upgrade to 1.9
  2013-08-08 13:46 [PATCH 0/5] Package upgrades Cristiana Voicu
@ 2013-08-08 13:46 ` Cristiana Voicu
  2013-08-08 13:46 ` [PATCH 2/5] mkfontscale: upgrade to 1.1.1 Cristiana Voicu
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 12+ messages in thread
From: Cristiana Voicu @ 2013-08-08 13:46 UTC (permalink / raw)
  To: openembedded-core

LIC_FILES_CHKSUM changed because some lines were
in addition in main.c file. Those lines are related to exit
status.

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
---
 meta/recipes-extended/ed/{ed_1.8.bb => ed_1.9.bb} |    7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
 rename meta/recipes-extended/ed/{ed_1.8.bb => ed_1.9.bb} (68%)

diff --git a/meta/recipes-extended/ed/ed_1.8.bb b/meta/recipes-extended/ed/ed_1.9.bb
similarity index 68%
rename from meta/recipes-extended/ed/ed_1.8.bb
rename to meta/recipes-extended/ed/ed_1.9.bb
index c6b5075..bd00c52 100644
--- a/meta/recipes-extended/ed/ed_1.8.bb
+++ b/meta/recipes-extended/ed/ed_1.9.bb
@@ -5,18 +5,17 @@ BUGTRACKER = ""
 LICENSE = "GPLv3+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \
                     file://ed.h;endline=20;md5=375a20cc2545ac1115eeb7b323c60ae3 \
-                    file://main.c;endline=24;md5=1b31246da5e3864d7b30094ff76bf7ed"
+                    file://main.c;endline=17;md5=14dbb325c1f2d4daf50e0aa5c5038e96"
 
 SECTION = "base"
-PR = "r0"
 
 # LSB states that ed should be in /bin/
 bindir = "${base_bindir}"
 
 SRC_URI = "${GNU_MIRROR}/ed/ed-${PV}.tar.gz"
 
-SRC_URI[md5sum] = "2268d2344b3c52d23730acb2e3c942fe"
-SRC_URI[sha256sum] = "64c138d33b1ea4b9daa88e045da0619e2a43cb99a9d378417d20163f410a7273"
+SRC_URI[md5sum] = "565b6d1d5a9a8816b9b304fc4ed9405d"
+SRC_URI[sha256sum] = "d5b372cfadf073001823772272fceac2cfa87552c5cd5a8efc1c8aae61f45a88"
 
 do_configure() {
 	${S}/configure
-- 
1.7.9.5



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

* [PATCH 2/5] mkfontscale: upgrade to 1.1.1
  2013-08-08 13:46 [PATCH 0/5] Package upgrades Cristiana Voicu
  2013-08-08 13:46 ` [PATCH 1/5] ed: upgrade to 1.9 Cristiana Voicu
@ 2013-08-08 13:46 ` Cristiana Voicu
  2013-08-08 13:46 ` [PATCH 3/5] atk: upgrade to 2.9.3 Cristiana Voicu
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 12+ messages in thread
From: Cristiana Voicu @ 2013-08-08 13:46 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
---
 .../{mkfontscale_1.1.0.bb => mkfontscale_1.1.1.bb} |    6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
 rename meta/recipes-graphics/xorg-app/{mkfontscale_1.1.0.bb => mkfontscale_1.1.1.bb} (78%)

diff --git a/meta/recipes-graphics/xorg-app/mkfontscale_1.1.0.bb b/meta/recipes-graphics/xorg-app/mkfontscale_1.1.1.bb
similarity index 78%
rename from meta/recipes-graphics/xorg-app/mkfontscale_1.1.0.bb
rename to meta/recipes-graphics/xorg-app/mkfontscale_1.1.1.bb
index d98057b..3d248d1 100644
--- a/meta/recipes-graphics/xorg-app/mkfontscale_1.1.0.bb
+++ b/meta/recipes-graphics/xorg-app/mkfontscale_1.1.1.bb
@@ -10,11 +10,9 @@ is used by the mkfontdir program."
 
 DEPENDS += " zlib libfontenc freetype virtual/libx11"
 
-PR = "${INC_PR}.0"
-
 BBCLASSEXTEND = "native"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=2e0d129d05305176d1a790e0ac1acb7f"
 
-SRC_URI[md5sum] = "414fcb053418fb1418e3a39f4a37e0f7"
-SRC_URI[sha256sum] = "ce55f862679b8ec127d7f7315ac04a8d64a0d90a0309a70dc56c1ba3f9806994"
+SRC_URI[md5sum] = "03de3f15db678e277f5ef9c013aca1ad"
+SRC_URI[sha256sum] = "244017992477ced2397a44fd0ddcfb0f1d9899128613f5c4db81471163b0b731"
-- 
1.7.9.5



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

* [PATCH 3/5] atk: upgrade to 2.9.3
  2013-08-08 13:46 [PATCH 0/5] Package upgrades Cristiana Voicu
  2013-08-08 13:46 ` [PATCH 1/5] ed: upgrade to 1.9 Cristiana Voicu
  2013-08-08 13:46 ` [PATCH 2/5] mkfontscale: upgrade to 1.1.1 Cristiana Voicu
@ 2013-08-08 13:46 ` Cristiana Voicu
  2013-08-08 15:36   ` Burton, Ross
  2013-08-08 13:46 ` [PATCH 4/5] systemtap: upgrade to 2.3 Cristiana Voicu
  2013-08-08 13:46 ` [PATCH 5/5] kmod: upgrade to 14 Cristiana Voicu
  4 siblings, 1 reply; 12+ messages in thread
From: Cristiana Voicu @ 2013-08-08 13:46 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
---
 .../atk/{atk_2.8.0.bb => atk_2.9.3.bb}             |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-support/atk/{atk_2.8.0.bb => atk_2.9.3.bb} (79%)

diff --git a/meta/recipes-support/atk/atk_2.8.0.bb b/meta/recipes-support/atk/atk_2.9.3.bb
similarity index 79%
rename from meta/recipes-support/atk/atk_2.8.0.bb
rename to meta/recipes-support/atk/atk_2.9.3.bb
index 9a36ae4..e7cc67c 100644
--- a/meta/recipes-support/atk/atk_2.8.0.bb
+++ b/meta/recipes-support/atk/atk_2.9.3.bb
@@ -14,8 +14,8 @@ inherit gnomebase gtk-doc
 
 GNOME_COMPRESS_TYPE = "xz"
 
-SRC_URI[archive.md5sum] = "c652bd25530825d604dae1c1ebd2da02"
-SRC_URI[archive.sha256sum] = "b22519176226f3e07cf6d932b77852e6b6be4780977770704b32d0f4e0686df4"
+SRC_URI[archive.md5sum] = "467447fa3d733394481c214d619690df"
+SRC_URI[archive.sha256sum] = "5fdb79c729cfad45042c3e0f55d01f57fdde3b8379b6cb5bbeb8b37478d4456d"
 
 BBCLASSEXTEND = "native"
 
-- 
1.7.9.5



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

* [PATCH 4/5] systemtap: upgrade to 2.3
  2013-08-08 13:46 [PATCH 0/5] Package upgrades Cristiana Voicu
                   ` (2 preceding siblings ...)
  2013-08-08 13:46 ` [PATCH 3/5] atk: upgrade to 2.9.3 Cristiana Voicu
@ 2013-08-08 13:46 ` Cristiana Voicu
  2013-08-09 16:23   ` Saul Wold
                     ` (2 more replies)
  2013-08-08 13:46 ` [PATCH 5/5] kmod: upgrade to 14 Cristiana Voicu
  4 siblings, 3 replies; 12+ messages in thread
From: Cristiana Voicu @ 2013-08-08 13:46 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
---
 meta/recipes-kernel/systemtap/systemtap_git.bb  |    2 --
 meta/recipes-kernel/systemtap/systemtap_git.inc |    4 ++--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb
index 9bba5a9..a0db074 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.bb
+++ b/meta/recipes-kernel/systemtap/systemtap_git.bb
@@ -10,8 +10,6 @@ RDEPENDS_${PN} += "python bash"
 RDEPENDS_${PN}_class-native += "python-native"
 RDEPENDS_${PN}_class-nativesdk += "python-native"
 
-PR = "r1"
-
 EXTRA_OECONF += "--with-libelf=${STAGING_DIR_TARGET} --without-rpm \
             --without-nss --without-avahi \
             --disable-server --disable-grapher "
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
index 7be6c2b..0632746 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.inc
+++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
@@ -1,8 +1,8 @@
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
 
-SRCREV = "addec813fed4c712d6ea752f6e4f23e602b87fad"
-PV = "2.1+git${SRCPV}"
+SRCREV = "e58138572ebddac9498b93c76770eeca7d45e3b1"
+PV = "2.3+git${SRCPV}"
 
 SRC_URI = "git://sourceware.org/git/systemtap.git;protocol=git \
            file://docproc-build-fix.patch \
-- 
1.7.9.5



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

* [PATCH 5/5] kmod: upgrade to 14
  2013-08-08 13:46 [PATCH 0/5] Package upgrades Cristiana Voicu
                   ` (3 preceding siblings ...)
  2013-08-08 13:46 ` [PATCH 4/5] systemtap: upgrade to 2.3 Cristiana Voicu
@ 2013-08-08 13:46 ` Cristiana Voicu
  2013-08-09  0:44   ` Saul Wold
  4 siblings, 1 reply; 12+ messages in thread
From: Cristiana Voicu @ 2013-08-08 13:46 UTC (permalink / raw)
  To: openembedded-core

Made some changes on patches to apply correctly.

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
---
 meta/recipes-kernel/kmod/kmod-native_git.bb        |    1 -
 meta/recipes-kernel/kmod/kmod.inc                  |    5 ++---
 ...-man-page-generation-because-we-don-t-hav.patch |   21 ++++++++++----------
 .../kmod/kmod/fix-undefined-O_CLOEXEC.patch        |    5 ++---
 meta/recipes-kernel/kmod/kmod_git.bb               |    3 +--
 5 files changed, 16 insertions(+), 19 deletions(-)

diff --git a/meta/recipes-kernel/kmod/kmod-native_git.bb b/meta/recipes-kernel/kmod/kmod-native_git.bb
index 8cbcdf8..afa3ad0 100644
--- a/meta/recipes-kernel/kmod/kmod-native_git.bb
+++ b/meta/recipes-kernel/kmod/kmod-native_git.bb
@@ -4,7 +4,6 @@
 require kmod.inc
 inherit native
 
-PR = "${INC_PR}.1"
 SRC_URI += "file://fix-undefined-O_CLOEXEC.patch"
 
 do_install_append (){
diff --git a/meta/recipes-kernel/kmod/kmod.inc b/meta/recipes-kernel/kmod/kmod.inc
index a780b6c..b07fc58 100644
--- a/meta/recipes-kernel/kmod/kmod.inc
+++ b/meta/recipes-kernel/kmod/kmod.inc
@@ -7,8 +7,7 @@ HOMEPAGE = "http://packages.profusion.mobi/kmod/"
 LICENSE = "GPL-2.0+ & LGPL-2.1+"
 LICENSE_libkmod = "LGPL-2.1+"
 SECTION = "base"
-PV = "9"
-INC_PR = "r0"
+PV = "14"
 
 DEPENDS += "pkgconfig-native"
 
@@ -24,7 +23,7 @@ SRC_URI = "git://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git \
            file://ptest.patch \
           "
 
-SRCREV = "62081c0f68905b22f375156d4532fd37fa5c8d33"
+SRCREV = "3b38c7fcb58be4ddc34f90454c5f5dc3693d2d85"
 
 S = "${WORKDIR}/git"
 
diff --git a/meta/recipes-kernel/kmod/kmod/0001-man-disable-man-page-generation-because-we-don-t-hav.patch b/meta/recipes-kernel/kmod/kmod/0001-man-disable-man-page-generation-because-we-don-t-hav.patch
index 5361b84..b5a8e08 100644
--- a/meta/recipes-kernel/kmod/kmod/0001-man-disable-man-page-generation-because-we-don-t-hav.patch
+++ b/meta/recipes-kernel/kmod/kmod/0001-man-disable-man-page-generation-because-we-don-t-hav.patch
@@ -11,16 +11,17 @@ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
  Makefile.am |    2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)
 
-diff --git a/Makefile.am b/Makefile.am
-index 141c102..a8bdfd1 100644
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -1,4 +1,4 @@
--SUBDIRS = . libkmod/docs man
-+SUBDIRS = . libkmod/docs
+Index: git/Makefile.am
+===================================================================
+--- git.orig/Makefile.am
++++ git/Makefile.am
+@@ -1,9 +1,5 @@
+ SUBDIRS = . libkmod/docs
  
+-if BUILD_MANPAGES
+-SUBDIRS += man
+-endif
+-
  DISTCLEAN_LOCAL_HOOKS =
  EXTRA_DIST =
--- 
-1.7.8.4
-
+ CLEANFILES =
diff --git a/meta/recipes-kernel/kmod/kmod/fix-undefined-O_CLOEXEC.patch b/meta/recipes-kernel/kmod/kmod/fix-undefined-O_CLOEXEC.patch
index 3177e9a..49728c2 100644
--- a/meta/recipes-kernel/kmod/kmod/fix-undefined-O_CLOEXEC.patch
+++ b/meta/recipes-kernel/kmod/kmod/fix-undefined-O_CLOEXEC.patch
@@ -4,9 +4,8 @@ Index: git/libkmod/libkmod-private.h
 ===================================================================
 --- git.orig/libkmod/libkmod-private.h
 +++ git/libkmod/libkmod-private.h
-@@ -1,6 +1,10 @@
- #ifndef _LIBKMOD_PRIVATE_H_
- #define _LIBKMOD_PRIVATE_H_
+@@ -1,5 +1,9 @@
+ #pragma once
  
 +#ifndef O_CLOEXEC
 +# define O_CLOEXEC 0
diff --git a/meta/recipes-kernel/kmod/kmod_git.bb b/meta/recipes-kernel/kmod/kmod_git.bb
index f92ff72..28ce194 100644
--- a/meta/recipes-kernel/kmod/kmod_git.bb
+++ b/meta/recipes-kernel/kmod/kmod_git.bb
@@ -3,8 +3,7 @@
 
 require kmod.inc
 
-PR = "${INC_PR}.0"
-PV = "9+git${SRCPV}"
+PV = "14+git${SRCPV}"
 
 PROVIDES += "module-init-tools-insmod-static module-init-tools-depmod module-init-tools"
 RPROVIDES_${PN} += "module-init-tools-insmod-static module-init-tools-depmod module-init-tools"
-- 
1.7.9.5



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

* Re: [PATCH 3/5] atk: upgrade to 2.9.3
  2013-08-08 13:46 ` [PATCH 3/5] atk: upgrade to 2.9.3 Cristiana Voicu
@ 2013-08-08 15:36   ` Burton, Ross
  0 siblings, 0 replies; 12+ messages in thread
From: Burton, Ross @ 2013-08-08 15:36 UTC (permalink / raw)
  To: Cristiana Voicu; +Cc: openembedded-core

On 8 August 2013 14:46, Cristiana Voicu <cristiana.voicu@intel.com> wrote:
> Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
> ---
>  .../atk/{atk_2.8.0.bb => atk_2.9.3.bb}             |    4 ++--

ATK is GNOME, so 2.[odd] are development releases.  Drop this upgrade
from the series and see if there's a 2.8.x to upgrade to.

(also, the regex can be fixed, see Emelia's patch to stop alerts for
development GStreamer releases)

Ross


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

* Re: [PATCH 5/5] kmod: upgrade to 14
  2013-08-08 13:46 ` [PATCH 5/5] kmod: upgrade to 14 Cristiana Voicu
@ 2013-08-09  0:44   ` Saul Wold
  0 siblings, 0 replies; 12+ messages in thread
From: Saul Wold @ 2013-08-09  0:44 UTC (permalink / raw)
  To: Cristiana Voicu; +Cc: openembedded-core

On 08/08/2013 06:46 AM, Cristiana Voicu wrote:
> Made some changes on patches to apply correctly.
>

Seems to be an issue with building the kmod-native_git  Autobuilder 
failed to build this, one example:

http://autobuilder.yoctoproject.org:8011/builders/build-appliance/builds/245/steps/Building%20Images_1/logs/stdio

I have removed it for now.

Thanks
	Sau!

> Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
> ---
>   meta/recipes-kernel/kmod/kmod-native_git.bb        |    1 -
>   meta/recipes-kernel/kmod/kmod.inc                  |    5 ++---
>   ...-man-page-generation-because-we-don-t-hav.patch |   21 ++++++++++----------
>   .../kmod/kmod/fix-undefined-O_CLOEXEC.patch        |    5 ++---
>   meta/recipes-kernel/kmod/kmod_git.bb               |    3 +--
>   5 files changed, 16 insertions(+), 19 deletions(-)
>
> diff --git a/meta/recipes-kernel/kmod/kmod-native_git.bb b/meta/recipes-kernel/kmod/kmod-native_git.bb
> index 8cbcdf8..afa3ad0 100644
> --- a/meta/recipes-kernel/kmod/kmod-native_git.bb
> +++ b/meta/recipes-kernel/kmod/kmod-native_git.bb
> @@ -4,7 +4,6 @@
>   require kmod.inc
>   inherit native
>
> -PR = "${INC_PR}.1"
>   SRC_URI += "file://fix-undefined-O_CLOEXEC.patch"
>
>   do_install_append (){
> diff --git a/meta/recipes-kernel/kmod/kmod.inc b/meta/recipes-kernel/kmod/kmod.inc
> index a780b6c..b07fc58 100644
> --- a/meta/recipes-kernel/kmod/kmod.inc
> +++ b/meta/recipes-kernel/kmod/kmod.inc
> @@ -7,8 +7,7 @@ HOMEPAGE = "http://packages.profusion.mobi/kmod/"
>   LICENSE = "GPL-2.0+ & LGPL-2.1+"
>   LICENSE_libkmod = "LGPL-2.1+"
>   SECTION = "base"
> -PV = "9"
> -INC_PR = "r0"
> +PV = "14"
>
>   DEPENDS += "pkgconfig-native"
>
> @@ -24,7 +23,7 @@ SRC_URI = "git://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git \
>              file://ptest.patch \
>             "
>
> -SRCREV = "62081c0f68905b22f375156d4532fd37fa5c8d33"
> +SRCREV = "3b38c7fcb58be4ddc34f90454c5f5dc3693d2d85"
>
>   S = "${WORKDIR}/git"
>
> diff --git a/meta/recipes-kernel/kmod/kmod/0001-man-disable-man-page-generation-because-we-don-t-hav.patch b/meta/recipes-kernel/kmod/kmod/0001-man-disable-man-page-generation-because-we-don-t-hav.patch
> index 5361b84..b5a8e08 100644
> --- a/meta/recipes-kernel/kmod/kmod/0001-man-disable-man-page-generation-because-we-don-t-hav.patch
> +++ b/meta/recipes-kernel/kmod/kmod/0001-man-disable-man-page-generation-because-we-don-t-hav.patch
> @@ -11,16 +11,17 @@ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
>    Makefile.am |    2 +-
>    1 files changed, 1 insertions(+), 1 deletions(-)
>
> -diff --git a/Makefile.am b/Makefile.am
> -index 141c102..a8bdfd1 100644
> ---- a/Makefile.am
> -+++ b/Makefile.am
> -@@ -1,4 +1,4 @@
> --SUBDIRS = . libkmod/docs man
> -+SUBDIRS = . libkmod/docs
> +Index: git/Makefile.am
> +===================================================================
> +--- git.orig/Makefile.am
> ++++ git/Makefile.am
> +@@ -1,9 +1,5 @@
> + SUBDIRS = . libkmod/docs
>
> +-if BUILD_MANPAGES
> +-SUBDIRS += man
> +-endif
> +-
>    DISTCLEAN_LOCAL_HOOKS =
>    EXTRA_DIST =
> ---
> -1.7.8.4
> -
> + CLEANFILES =
> diff --git a/meta/recipes-kernel/kmod/kmod/fix-undefined-O_CLOEXEC.patch b/meta/recipes-kernel/kmod/kmod/fix-undefined-O_CLOEXEC.patch
> index 3177e9a..49728c2 100644
> --- a/meta/recipes-kernel/kmod/kmod/fix-undefined-O_CLOEXEC.patch
> +++ b/meta/recipes-kernel/kmod/kmod/fix-undefined-O_CLOEXEC.patch
> @@ -4,9 +4,8 @@ Index: git/libkmod/libkmod-private.h
>   ===================================================================
>   --- git.orig/libkmod/libkmod-private.h
>   +++ git/libkmod/libkmod-private.h
> -@@ -1,6 +1,10 @@
> - #ifndef _LIBKMOD_PRIVATE_H_
> - #define _LIBKMOD_PRIVATE_H_
> +@@ -1,5 +1,9 @@
> + #pragma once
>
>   +#ifndef O_CLOEXEC
>   +# define O_CLOEXEC 0
> diff --git a/meta/recipes-kernel/kmod/kmod_git.bb b/meta/recipes-kernel/kmod/kmod_git.bb
> index f92ff72..28ce194 100644
> --- a/meta/recipes-kernel/kmod/kmod_git.bb
> +++ b/meta/recipes-kernel/kmod/kmod_git.bb
> @@ -3,8 +3,7 @@
>
>   require kmod.inc
>
> -PR = "${INC_PR}.0"
> -PV = "9+git${SRCPV}"
> +PV = "14+git${SRCPV}"
>
>   PROVIDES += "module-init-tools-insmod-static module-init-tools-depmod module-init-tools"
>   RPROVIDES_${PN} += "module-init-tools-insmod-static module-init-tools-depmod module-init-tools"
>


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

* Re: [PATCH 4/5] systemtap: upgrade to 2.3
  2013-08-08 13:46 ` [PATCH 4/5] systemtap: upgrade to 2.3 Cristiana Voicu
@ 2013-08-09 16:23   ` Saul Wold
  2013-08-13  7:10   ` [PATCH_V2] " Cristiana Voicu
  2013-08-13  7:39   ` [PATCH_V3] " Cristiana Voicu
  2 siblings, 0 replies; 12+ messages in thread
From: Saul Wold @ 2013-08-09 16:23 UTC (permalink / raw)
  To: Cristiana Voicu; +Cc: openembedded-core

On 08/08/2013 06:46 AM, Cristiana Voicu wrote:
> Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
> ---
>   meta/recipes-kernel/systemtap/systemtap_git.bb  |    2 --
>   meta/recipes-kernel/systemtap/systemtap_git.inc |    4 ++--
>   2 files changed, 2 insertions(+), 4 deletions(-)
>

The autobuilder caught this interesting little configuration issue when 
the host has Java installed:
> | checking for javac... yes
> | checking for jar... yes
> | java found, will try to configure Byteman support
> | checking for /usr/lib/jvm/java... configure: error: cannot check for file existence when cross compiling
> | Configure failed. The contents of all config.log files follows to aid debugging
> | ERROR: oe_runconf failed

You will need to disable the javac and jar checking either by patching 
the configure.ac or by adding some cached ac_cv... values to 
EXTRA_OECONF (preferred).


Sau!

> diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb
> index 9bba5a9..a0db074 100644
> --- a/meta/recipes-kernel/systemtap/systemtap_git.bb
> +++ b/meta/recipes-kernel/systemtap/systemtap_git.bb
> @@ -10,8 +10,6 @@ RDEPENDS_${PN} += "python bash"
>   RDEPENDS_${PN}_class-native += "python-native"
>   RDEPENDS_${PN}_class-nativesdk += "python-native"
>
> -PR = "r1"
> -
>   EXTRA_OECONF += "--with-libelf=${STAGING_DIR_TARGET} --without-rpm \
>               --without-nss --without-avahi \
>               --disable-server --disable-grapher "
> diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
> index 7be6c2b..0632746 100644
> --- a/meta/recipes-kernel/systemtap/systemtap_git.inc
> +++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
> @@ -1,8 +1,8 @@
>   LICENSE = "GPLv2"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
>
> -SRCREV = "addec813fed4c712d6ea752f6e4f23e602b87fad"
> -PV = "2.1+git${SRCPV}"
> +SRCREV = "e58138572ebddac9498b93c76770eeca7d45e3b1"
> +PV = "2.3+git${SRCPV}"
>
>   SRC_URI = "git://sourceware.org/git/systemtap.git;protocol=git \
>              file://docproc-build-fix.patch \
>


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

* [PATCH_V2] systemtap: upgrade to 2.3
  2013-08-08 13:46 ` [PATCH 4/5] systemtap: upgrade to 2.3 Cristiana Voicu
  2013-08-09 16:23   ` Saul Wold
@ 2013-08-13  7:10   ` Cristiana Voicu
  2013-08-13  7:29     ` Voicu, Cristiana
  2013-08-13  7:39   ` [PATCH_V3] " Cristiana Voicu
  2 siblings, 1 reply; 12+ messages in thread
From: Cristiana Voicu @ 2013-08-13  7:10 UTC (permalink / raw)
  To: openembedded-core

Disabled javac and jar.

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
---
 meta/recipes-kernel/systemtap/systemtap_git.bb  |    6 +++---
 meta/recipes-kernel/systemtap/systemtap_git.inc |    4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb
index 9bba5a9..2a42086 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.bb
+++ b/meta/recipes-kernel/systemtap/systemtap_git.bb
@@ -10,11 +10,11 @@ RDEPENDS_${PN} += "python bash"
 RDEPENDS_${PN}_class-native += "python-native"
 RDEPENDS_${PN}_class-nativesdk += "python-native"
 
-PR = "r1"
-
 EXTRA_OECONF += "--with-libelf=${STAGING_DIR_TARGET} --without-rpm \
             --without-nss --without-avahi \
-            --disable-server --disable-grapher "
+            --disable-server --disable-grapher \
+            ac_cv_prog_have_javac=no \
+            ac_cv_prog_have_jar=no "
 
 STAP_DOCS ?= "--disable-docs --disable-publican --disable-refdocs"
 
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
index 7be6c2b..0632746 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.inc
+++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
@@ -1,8 +1,8 @@
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
 
-SRCREV = "addec813fed4c712d6ea752f6e4f23e602b87fad"
-PV = "2.1+git${SRCPV}"
+SRCREV = "e58138572ebddac9498b93c76770eeca7d45e3b1"
+PV = "2.3+git${SRCPV}"
 
 SRC_URI = "git://sourceware.org/git/systemtap.git;protocol=git \
            file://docproc-build-fix.patch \
-- 
1.7.9.5



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

* Re: [PATCH_V2] systemtap: upgrade to 2.3
  2013-08-13  7:10   ` [PATCH_V2] " Cristiana Voicu
@ 2013-08-13  7:29     ` Voicu, Cristiana
  0 siblings, 0 replies; 12+ messages in thread
From: Voicu, Cristiana @ 2013-08-13  7:29 UTC (permalink / raw)
  To: Voicu, Cristiana, openembedded-core

Just saw that there is a little change for systemtap on master and this patch will fail.
I will send a new version.
Cristiana

-----Original Message-----
From: Voicu, Cristiana 
Sent: Tuesday, August 13, 2013 10:11 AM
To: openembedded-core@lists.openembedded.org
Cc: Voicu, Cristiana
Subject: [PATCH_V2] systemtap: upgrade to 2.3

Disabled javac and jar.

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
---
 meta/recipes-kernel/systemtap/systemtap_git.bb  |    6 +++---
 meta/recipes-kernel/systemtap/systemtap_git.inc |    4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb
index 9bba5a9..2a42086 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.bb
+++ b/meta/recipes-kernel/systemtap/systemtap_git.bb
@@ -10,11 +10,11 @@ RDEPENDS_${PN} += "python bash"
 RDEPENDS_${PN}_class-native += "python-native"
 RDEPENDS_${PN}_class-nativesdk += "python-native"
 
-PR = "r1"
-
 EXTRA_OECONF += "--with-libelf=${STAGING_DIR_TARGET} --without-rpm \
             --without-nss --without-avahi \
-            --disable-server --disable-grapher "
+            --disable-server --disable-grapher \
+            ac_cv_prog_have_javac=no \
+            ac_cv_prog_have_jar=no "
 
 STAP_DOCS ?= "--disable-docs --disable-publican --disable-refdocs"
 
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
index 7be6c2b..0632746 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.inc
+++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
@@ -1,8 +1,8 @@
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
 
-SRCREV = "addec813fed4c712d6ea752f6e4f23e602b87fad"
-PV = "2.1+git${SRCPV}"
+SRCREV = "e58138572ebddac9498b93c76770eeca7d45e3b1"
+PV = "2.3+git${SRCPV}"
 
 SRC_URI = "git://sourceware.org/git/systemtap.git;protocol=git \
            file://docproc-build-fix.patch \
-- 
1.7.9.5



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

* [PATCH_V3] systemtap: upgrade to 2.3
  2013-08-08 13:46 ` [PATCH 4/5] systemtap: upgrade to 2.3 Cristiana Voicu
  2013-08-09 16:23   ` Saul Wold
  2013-08-13  7:10   ` [PATCH_V2] " Cristiana Voicu
@ 2013-08-13  7:39   ` Cristiana Voicu
  2 siblings, 0 replies; 12+ messages in thread
From: Cristiana Voicu @ 2013-08-13  7:39 UTC (permalink / raw)
  To: openembedded-core

Disabled javac and jar.

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
---
 meta/recipes-kernel/systemtap/systemtap_git.bb  |    6 +++---
 meta/recipes-kernel/systemtap/systemtap_git.inc |    4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb
index 4f60f6b..bcc826a 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.bb
+++ b/meta/recipes-kernel/systemtap/systemtap_git.bb
@@ -10,11 +10,11 @@ RDEPENDS_${PN} += "python bash"
 RDEPENDS_${PN}_class-native += "python-native"
 RDEPENDS_${PN}_class-nativesdk += "python-native"
 
-PR = "r1"
-
 EXTRA_OECONF += "--with-libelf=${STAGING_DIR_TARGET} --without-rpm \
             --without-nss --without-avahi --without-dyninst \
-            --disable-server --disable-grapher "
+            --disable-server --disable-grapher \
+            ac_cv_prog_have_javac=no \
+            ac_cv_prog_have_jar=no "
 
 STAP_DOCS ?= "--disable-docs --disable-publican --disable-refdocs"
 
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
index 7be6c2b..0632746 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.inc
+++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
@@ -1,8 +1,8 @@
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
 
-SRCREV = "addec813fed4c712d6ea752f6e4f23e602b87fad"
-PV = "2.1+git${SRCPV}"
+SRCREV = "e58138572ebddac9498b93c76770eeca7d45e3b1"
+PV = "2.3+git${SRCPV}"
 
 SRC_URI = "git://sourceware.org/git/systemtap.git;protocol=git \
            file://docproc-build-fix.patch \
-- 
1.7.9.5



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

end of thread, other threads:[~2013-08-13  7:38 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-08 13:46 [PATCH 0/5] Package upgrades Cristiana Voicu
2013-08-08 13:46 ` [PATCH 1/5] ed: upgrade to 1.9 Cristiana Voicu
2013-08-08 13:46 ` [PATCH 2/5] mkfontscale: upgrade to 1.1.1 Cristiana Voicu
2013-08-08 13:46 ` [PATCH 3/5] atk: upgrade to 2.9.3 Cristiana Voicu
2013-08-08 15:36   ` Burton, Ross
2013-08-08 13:46 ` [PATCH 4/5] systemtap: upgrade to 2.3 Cristiana Voicu
2013-08-09 16:23   ` Saul Wold
2013-08-13  7:10   ` [PATCH_V2] " Cristiana Voicu
2013-08-13  7:29     ` Voicu, Cristiana
2013-08-13  7:39   ` [PATCH_V3] " Cristiana Voicu
2013-08-08 13:46 ` [PATCH 5/5] kmod: upgrade to 14 Cristiana Voicu
2013-08-09  0:44   ` Saul Wold

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.