Openembedded Core Discussions
 help / color / mirror / Atom feed
* Re: [oe-commits] Andrei Dinu : libffi upgrade to 3.0.11
       [not found] <20120914085706.2CBFC103C3@opal>
@ 2012-09-15 16:20 ` Martin Jansa
       [not found]   ` <CAK18fxGHn8aMu9Y926M2r9RQULR2VTOciBJkVD5S9awBV_j7-Q@mail.gmail.com>
  2012-09-15 17:23   ` Phil Blundell
  0 siblings, 2 replies; 12+ messages in thread
From: Martin Jansa @ 2012-09-15 16:20 UTC (permalink / raw)
  To: andrei.adrianx.dinu
  Cc: openembedded-commits, openembedded-devel, openembedded-core

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

On Fri, Sep 14, 2012 at 08:57:06AM +0000, git@git.openembedded.org wrote:
> Module: openembedded-core.git
> Branch: master
> Commit: 3e40136e8bd13b17b6d88b6acfb5ed162bb8d96a
> URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=3e40136e8bd13b17b6d88b6acfb5ed162bb8d96a
> 
> Author: Andrei Dinu <andrei.adrianx.dinu@intel.com>
> Date:   Thu Sep 13 11:26:45 2012 +0300
> 
> libffi upgrade to 3.0.11

This changes .so name from libffi5 to libffi6, breaking every recipe
depending on libffi when someone is using debian.bbclass.

This list of 374 packages is probably not complete, just what I have
built before.

http://build.shr-project.org/tests/jama/libffi5.pkgs

Cheers,

> 
> Changes :
> 
> - Added ax_append_flags.m4 and ax_check_compile_flag.m4 to the m4 directory.
>   The files were missing and aclocal.m4 was generated without those two macros.
> 
> - Added a new license md5 checksum to the recipe because the old LICENSE file
>   differs from the new one here :
> 
>         OLD : libffi - Copyright (c) 1996-2011
> 
>         NEW : libffi - Copyright (c) 1996-2012
> 
> Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
> Signed-off-by: Saul Wold <sgw@linux.intel.com>
> 
> ---
> 
>  .../libffi/0001-libffi-update-for-3.0.11.patch     |  171 ++++++++++++++++++++
>  .../libffi/{libffi_3.0.10.bb => libffi_3.0.11.bb}  |    9 +-
>  2 files changed, 176 insertions(+), 4 deletions(-)
> 
> diff --git a/meta/recipes-gnome/libffi/0001-libffi-update-for-3.0.11.patch b/meta/recipes-gnome/libffi/0001-libffi-update-for-3.0.11.patch
> new file mode 100644
> index 0000000..9592048
> --- /dev/null
> +++ b/meta/recipes-gnome/libffi/0001-libffi-update-for-3.0.11.patch
> @@ -0,0 +1,171 @@
> +From 936ab07cec90243a6a336c5aa6205f4edbeb00d5 Mon Sep 17 00:00:00 2001
> +From: Andrei Dinu <andrei.adrianx.dinu@intel.com>
> +Date: Wed, 12 Sep 2012 17:42:29 +0300
> +Subject: [PATCH] libffi update for 3.0.11
> +
> +Upstream status : Pending
> +
> +Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
> +---
> + m4/ax_append_flag.m4        |   69 +++++++++++++++++++++++++++++++++++++++++
> + m4/ax_check_compile_flag.m4 |   72 +++++++++++++++++++++++++++++++++++++++++++
> + 2 files changed, 141 insertions(+)
> + create mode 100644 m4/ax_append_flag.m4
> + create mode 100644 m4/ax_check_compile_flag.m4
> +
> +diff --git a/m4/ax_append_flag.m4 b/m4/ax_append_flag.m4
> +new file mode 100644
> +index 0000000..1d38b76
> +--- /dev/null
> ++++ b/m4/ax_append_flag.m4
> +@@ -0,0 +1,69 @@
> ++# ===========================================================================
> ++#      http://www.gnu.org/software/autoconf-archive/ax_append_flag.html
> ++# ===========================================================================
> ++#
> ++# SYNOPSIS
> ++#
> ++#   AX_APPEND_FLAG(FLAG, [FLAGS-VARIABLE])
> ++#
> ++# DESCRIPTION
> ++#
> ++#   FLAG is appended to the FLAGS-VARIABLE shell variable, with a space
> ++#   added in between.
> ++#
> ++#   If FLAGS-VARIABLE is not specified, the current language's flags (e.g.
> ++#   CFLAGS) is used.  FLAGS-VARIABLE is not changed if it already contains
> ++#   FLAG.  If FLAGS-VARIABLE is unset in the shell, it is set to exactly
> ++#   FLAG.
> ++#
> ++#   NOTE: Implementation based on AX_CFLAGS_GCC_OPTION.
> ++#
> ++# LICENSE
> ++#
> ++#   Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
> ++#   Copyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>
> ++#
> ++#   This program is free software: you can redistribute it and/or modify it
> ++#   under the terms of the GNU General Public License as published by the
> ++#   Free Software Foundation, either version 3 of the License, or (at your
> ++#   option) any later version.
> ++#
> ++#   This program is distributed in the hope that it will be useful, but
> ++#   WITHOUT ANY WARRANTY; without even the implied warranty of
> ++#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
> ++#   Public License for more details.
> ++#
> ++#   You should have received a copy of the GNU General Public License along
> ++#   with this program. If not, see <http://www.gnu.org/licenses/>.
> ++#
> ++#   As a special exception, the respective Autoconf Macro's copyright owner
> ++#   gives unlimited permission to copy, distribute and modify the configure
> ++#   scripts that are the output of Autoconf when processing the Macro. You
> ++#   need not follow the terms of the GNU General Public License when using
> ++#   or distributing such scripts, even though portions of the text of the
> ++#   Macro appear in them. The GNU General Public License (GPL) does govern
> ++#   all other use of the material that constitutes the Autoconf Macro.
> ++#
> ++#   This special exception to the GPL applies to versions of the Autoconf
> ++#   Macro released by the Autoconf Archive. When you make and distribute a
> ++#   modified version of the Autoconf Macro, you may extend this special
> ++#   exception to the GPL to apply to your modified version as well.
> ++
> ++#serial 2
> ++
> ++AC_DEFUN([AX_APPEND_FLAG],
> ++[AC_PREREQ(2.59)dnl for _AC_LANG_PREFIX
> ++AS_VAR_PUSHDEF([FLAGS], [m4_default($2,_AC_LANG_PREFIX[FLAGS])])dnl
> ++AS_VAR_SET_IF(FLAGS,
> ++  [case " AS_VAR_GET(FLAGS) " in
> ++    *" $1 "*)
> ++      AC_RUN_LOG([: FLAGS already contains $1])
> ++      ;;
> ++    *)
> ++      AC_RUN_LOG([: FLAGS="$FLAGS $1"])
> ++      AS_VAR_SET(FLAGS, ["AS_VAR_GET(FLAGS) $1"])
> ++      ;;
> ++   esac],
> ++  [AS_VAR_SET(FLAGS,["$1"])])
> ++AS_VAR_POPDEF([FLAGS])dnl
> ++])dnl AX_APPEND_FLAG
> +diff --git a/m4/ax_check_compile_flag.m4 b/m4/ax_check_compile_flag.m4
> +new file mode 100644
> +index 0000000..c3a8d69
> +--- /dev/null
> ++++ b/m4/ax_check_compile_flag.m4
> +@@ -0,0 +1,72 @@
> ++# ===========================================================================
> ++#   http://www.gnu.org/software/autoconf-archive/ax_check_compile_flag.html
> ++# ===========================================================================
> ++#
> ++# SYNOPSIS
> ++#
> ++#   AX_CHECK_COMPILE_FLAG(FLAG, [ACTION-SUCCESS], [ACTION-FAILURE], [EXTRA-FLAGS])
> ++#
> ++# DESCRIPTION
> ++#
> ++#   Check whether the given FLAG works with the current language's compiler
> ++#   or gives an error.  (Warnings, however, are ignored)
> ++#
> ++#   ACTION-SUCCESS/ACTION-FAILURE are shell commands to execute on
> ++#   success/failure.
> ++#
> ++#   If EXTRA-FLAGS is defined, it is added to the current language's default
> ++#   flags (e.g. CFLAGS) when the check is done.  The check is thus made with
> ++#   the flags: "CFLAGS EXTRA-FLAGS FLAG".  This can for example be used to
> ++#   force the compiler to issue an error when a bad flag is given.
> ++#
> ++#   NOTE: Implementation based on AX_CFLAGS_GCC_OPTION. Please keep this
> ++#   macro in sync with AX_CHECK_{PREPROC,LINK}_FLAG.
> ++#
> ++# LICENSE
> ++#
> ++#   Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
> ++#   Copyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>
> ++#
> ++#   This program is free software: you can redistribute it and/or modify it
> ++#   under the terms of the GNU General Public License as published by the
> ++#   Free Software Foundation, either version 3 of the License, or (at your
> ++#   option) any later version.
> ++#
> ++#   This program is distributed in the hope that it will be useful, but
> ++#   WITHOUT ANY WARRANTY; without even the implied warranty of
> ++#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
> ++#   Public License for more details.
> ++#
> ++#   You should have received a copy of the GNU General Public License along
> ++#   with this program. If not, see <http://www.gnu.org/licenses/>.
> ++#
> ++#   As a special exception, the respective Autoconf Macro's copyright owner
> ++#   gives unlimited permission to copy, distribute and modify the configure
> ++#   scripts that are the output of Autoconf when processing the Macro. You
> ++#   need not follow the terms of the GNU General Public License when using
> ++#   or distributing such scripts, even though portions of the text of the
> ++#   Macro appear in them. The GNU General Public License (GPL) does govern
> ++#   all other use of the material that constitutes the Autoconf Macro.
> ++#
> ++#   This special exception to the GPL applies to versions of the Autoconf
> ++#   Macro released by the Autoconf Archive. When you make and distribute a
> ++#   modified version of the Autoconf Macro, you may extend this special
> ++#   exception to the GPL to apply to your modified version as well.
> ++
> ++#serial 2
> ++
> ++AC_DEFUN([AX_CHECK_COMPILE_FLAG],
> ++[AC_PREREQ(2.59)dnl for _AC_LANG_PREFIX
> ++AS_VAR_PUSHDEF([CACHEVAR],[ax_cv_check_[]_AC_LANG_ABBREV[]flags_$4_$1])dnl
> ++AC_CACHE_CHECK([whether _AC_LANG compiler accepts $1], CACHEVAR, [
> ++  ax_check_save_flags=$[]_AC_LANG_PREFIX[]FLAGS
> ++  _AC_LANG_PREFIX[]FLAGS="$[]_AC_LANG_PREFIX[]FLAGS $4 $1"
> ++  AC_COMPILE_IFELSE([AC_LANG_PROGRAM()],
> ++    [AS_VAR_SET(CACHEVAR,[yes])],
> ++    [AS_VAR_SET(CACHEVAR,[no])])
> ++  _AC_LANG_PREFIX[]FLAGS=$ax_check_save_flags])
> ++AS_IF([test x"AS_VAR_GET(CACHEVAR)" = xyes],
> ++  [m4_default([$2], :)],
> ++  [m4_default([$3], :)])
> ++AS_VAR_POPDEF([CACHEVAR])dnl
> ++])dnl AX_CHECK_COMPILE_FLAGS
> +-- 
> +1.7.9.5
> +
> diff --git a/meta/recipes-gnome/libffi/libffi_3.0.10.bb b/meta/recipes-gnome/libffi/libffi_3.0.11.bb
> similarity index 72%
> rename from meta/recipes-gnome/libffi/libffi_3.0.10.bb
> rename to meta/recipes-gnome/libffi/libffi_3.0.11.bb
> index c06b80c..e674fd3 100644
> --- a/meta/recipes-gnome/libffi/libffi_3.0.10.bb
> +++ b/meta/recipes-gnome/libffi/libffi_3.0.11.bb
> @@ -7,14 +7,15 @@ library really only provides the lowest, machine dependent layer of a fully feat
>  A layer must exist above `libffi' that handles type conversions for values passed between the two languages."
>  
>  LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=0caa055e49a3fb6c57780595e995e2ab"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=e54c573c49435ccbbd3f6dc9e49a065e"
>  
>  PR = "r0"
>  
> -SRC_URI = "ftp://sourceware.org/pub/libffi/${BPN}-${PV}.tar.gz"
> +SRC_URI = "ftp://sourceware.org/pub/libffi/${BPN}-${PV}.tar.gz \
> +           file://0001-libffi-update-for-3.0.11.patch"
>  
> -SRC_URI[md5sum] = "79390673f5d07a8fb342bc09b5055b6f"
> -SRC_URI[sha256sum] = "f01eb9027e9eb56aeaeef636649877756d475d714ef8b47f627f65bc5f3b492f"
> +SRC_URI[md5sum] = "f69b9693227d976835b4857b1ba7d0e3"
> +SRC_URI[sha256sum] = "70bfb01356360089aa97d3e71e3edf05d195599fd822e922e50d46a0055a6283"
>  
>  EXTRA_OECONF += "--disable-builddir"
>  
> 
> 
> _______________________________________________
> Openembedded-commits mailing list
> Openembedded-commits@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-commits

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [O-core] [oe-commits] Andrei Dinu : libffi upgrade to 3.0.11
       [not found]   ` <CAK18fxGHn8aMu9Y926M2r9RQULR2VTOciBJkVD5S9awBV_j7-Q@mail.gmail.com>
@ 2012-09-15 16:37     ` Martin Jansa
  2012-09-17 10:57       ` Martin Jansa
  0 siblings, 1 reply; 12+ messages in thread
From: Martin Jansa @ 2012-09-15 16:37 UTC (permalink / raw)
  To: Andrei Gherzan
  Cc: openembedded-commits, openembedded-devel, openembedded-core

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

On Sat, Sep 15, 2012 at 07:22:43PM +0300, Andrei Gherzan wrote:
> On Sat, Sep 15, 2012 at 7:20 PM, Martin Jansa <martin.jansa@gmail.com>wrote:
> 
> > On Fri, Sep 14, 2012 at 08:57:06AM +0000, git@git.openembedded.org wrote:
> > > Module: openembedded-core.git
> > > Branch: master
> > > Commit: 3e40136e8bd13b17b6d88b6acfb5ed162bb8d96a
> > > URL:
> > http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=3e40136e8bd13b17b6d88b6acfb5ed162bb8d96a
> > >
> > > Author: Andrei Dinu <andrei.adrianx.dinu@intel.com>
> > > Date:   Thu Sep 13 11:26:45 2012 +0300
> > >
> > > libffi upgrade to 3.0.11
> >
> > This changes .so name from libffi5 to libffi6, breaking every recipe
> > depending on libffi when someone is using debian.bbclass.
> >
> > This list of 374 packages is probably not complete, just what I have
> > built before.
> >
> > http://build.shr-project.org/tests/jama/libffi5.pkgs
> 
> 
> Confirmed. Just ran into this with glib-2.0.

Something like:
| /OE/shr-core/tmp-eglibc/sysroots/x86_64-linux/usr/libexec/x86_64-oe-linux/gcc/x86_64-oe-linux/4.7.2/ld: warning: libffi.so.5, needed by /OE/shr-core/tmp-eglibc/sysroots/q
emux86-64/usr/lib/libgobject-2.0.so, not found (try using -rpath or -rpath-link)
| /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_type_void'
| /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_type_double'
| /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_prep_cif'
| /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_type_sint32'
| /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_type_float'
| /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_type_uint64'
| /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_type_sint64'
| /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_type_pointer'
| /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_type_uint32'
| /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_call'

That's easy to fix by manual rebuild, but for runtime packages we need those PR bumps :/.

I'll PR bump recipes (from my list) in meta-oe and meta-smartphone layers, 
but leave oe-core for someone else.

Cheers,

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [oe-commits] Andrei Dinu : libffi upgrade to 3.0.11
  2012-09-15 16:20 ` [oe-commits] Andrei Dinu : libffi upgrade to 3.0.11 Martin Jansa
       [not found]   ` <CAK18fxGHn8aMu9Y926M2r9RQULR2VTOciBJkVD5S9awBV_j7-Q@mail.gmail.com>
@ 2012-09-15 17:23   ` Phil Blundell
  2012-09-15 17:28     ` Martin Jansa
  1 sibling, 1 reply; 12+ messages in thread
From: Phil Blundell @ 2012-09-15 17:23 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-core, openembedded-devel, openembedded-commits

On Sat, 2012-09-15 at 18:20 +0200, Martin Jansa wrote:
> This changes .so name from libffi5 to libffi6, breaking every recipe
> depending on libffi when someone is using debian.bbclass.

How exactly do the recipes break?  The whole point of debian.bbclass is
to avoid breakage when this happens by making libffi5 and libffi6
parallel installable.  If that isn't working then there is clearly a bug
somewhere and we should fix that.

p.





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

* Re: [oe-commits] Andrei Dinu : libffi upgrade to 3.0.11
  2012-09-15 17:23   ` Phil Blundell
@ 2012-09-15 17:28     ` Martin Jansa
  2012-09-15 17:39       ` Martin Jansa
  2012-09-15 20:39       ` Phil Blundell
  0 siblings, 2 replies; 12+ messages in thread
From: Martin Jansa @ 2012-09-15 17:28 UTC (permalink / raw)
  To: Phil Blundell; +Cc: openembedded-core, openembedded-devel, openembedded-commits

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

On Sat, Sep 15, 2012 at 06:23:37PM +0100, Phil Blundell wrote:
> On Sat, 2012-09-15 at 18:20 +0200, Martin Jansa wrote:
> > This changes .so name from libffi5 to libffi6, breaking every recipe
> > depending on libffi when someone is using debian.bbclass.
> 
> How exactly do the recipes break?  The whole point of debian.bbclass is
> to avoid breakage when this happens by making libffi5 and libffi6
> parallel installable.  If that isn't working then there is clearly a bug
> somewhere and we should fix that.

libffi5 is no longer in feed, so if you try to install something from
feed which still has libffi5 in depends it will fail.

Cheers,

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [oe-commits] Andrei Dinu : libffi upgrade to 3.0.11
  2012-09-15 17:28     ` Martin Jansa
@ 2012-09-15 17:39       ` Martin Jansa
  2012-09-15 20:39       ` Phil Blundell
  1 sibling, 0 replies; 12+ messages in thread
From: Martin Jansa @ 2012-09-15 17:39 UTC (permalink / raw)
  To: Phil Blundell; +Cc: openembedded-core, openembedded-devel, openembedded-commits

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

On Sat, Sep 15, 2012 at 07:28:16PM +0200, Martin Jansa wrote:
> On Sat, Sep 15, 2012 at 06:23:37PM +0100, Phil Blundell wrote:
> > On Sat, 2012-09-15 at 18:20 +0200, Martin Jansa wrote:
> > > This changes .so name from libffi5 to libffi6, breaking every recipe
> > > depending on libffi when someone is using debian.bbclass.
> > 
> > How exactly do the recipes break?  The whole point of debian.bbclass is
> > to avoid breakage when this happens by making libffi5 and libffi6
> > parallel installable.  If that isn't working then there is clearly a bug
> > somewhere and we should fix that.
> 
> libffi5 is no longer in feed, so if you try to install something from
> feed which still has libffi5 in depends it will fail.
> 
> Cheers,

also e.g. navit is using librsvg-native to create .png from .svg and
fails now
|
SRCDIR=/OE/shr-core/tmp-eglibc/work/armv4t-oe-linux-gnueabi/navit-1_0.2.0+svnr5159-r11.3/navit/navit/xpm
BUILDDIR=/OE/shr-core/tmp-eglibc/work/armv4t-oe-linux-gnueabi/navit-1_0.2.0+svnr5159-r11.3/navit/navit/xpm
./navit_svg2png
"/OE/shr-core/tmp-eglibc/sysroots/x86_64-linux/usr/bin/rsvg-convert"
"nav_destination_wh_96_96.png"
| /OE/shr-core/tmp-eglibc/sysroots/x86_64-linux/usr/bin/rsvg-convert:
error while loading shared libraries: libffi.so.5: cannot open shared
object file: No such file or directory

Fortunately navit.do_install finds that some mandatory .png files are
missing and fails too (before creating invalid .ipk in feed).

Cheers,

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [oe-commits] Andrei Dinu : libffi upgrade to 3.0.11
  2012-09-15 17:28     ` Martin Jansa
  2012-09-15 17:39       ` Martin Jansa
@ 2012-09-15 20:39       ` Phil Blundell
  2012-09-16 14:30         ` Martin Jansa
  1 sibling, 1 reply; 12+ messages in thread
From: Phil Blundell @ 2012-09-15 20:39 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-commits, openembedded-devel, openembedded-core

On Sat, 2012-09-15 at 19:28 +0200, Martin Jansa wrote:
> On Sat, Sep 15, 2012 at 06:23:37PM +0100, Phil Blundell wrote:
> > On Sat, 2012-09-15 at 18:20 +0200, Martin Jansa wrote:
> > > This changes .so name from libffi5 to libffi6, breaking every recipe
> > > depending on libffi when someone is using debian.bbclass.
> > 
> > How exactly do the recipes break?  The whole point of debian.bbclass is
> > to avoid breakage when this happens by making libffi5 and libffi6
> > parallel installable.  If that isn't working then there is clearly a bug
> > somewhere and we should fix that.
> 
> libffi5 is no longer in feed, so if you try to install something from
> feed which still has libffi5 in depends it will fail.

Ah, right.  So it's not actually the recipes which are broken, it's just
that something is wrong with whatever maintains the feed and the old
binaries are no longer installable.  I guess you need to figure out why
libffi5 is being removed and prevent that from happening.

p.





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

* Re: [oe-commits] Andrei Dinu : libffi upgrade to 3.0.11
  2012-09-15 20:39       ` Phil Blundell
@ 2012-09-16 14:30         ` Martin Jansa
  2012-09-16 18:47           ` [PATCH] recipes: bump PR to rebuild after libffi5 -> libffi6 Martin Jansa
  0 siblings, 1 reply; 12+ messages in thread
From: Martin Jansa @ 2012-09-16 14:30 UTC (permalink / raw)
  To: Phil Blundell; +Cc: openembedded-commits, openembedded-devel, openembedded-core

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

On Sat, Sep 15, 2012 at 09:39:32PM +0100, Phil Blundell wrote:
> On Sat, 2012-09-15 at 19:28 +0200, Martin Jansa wrote:
> > On Sat, Sep 15, 2012 at 06:23:37PM +0100, Phil Blundell wrote:
> > > On Sat, 2012-09-15 at 18:20 +0200, Martin Jansa wrote:
> > > > This changes .so name from libffi5 to libffi6, breaking every recipe
> > > > depending on libffi when someone is using debian.bbclass.
> > > 
> > > How exactly do the recipes break?  The whole point of debian.bbclass is
> > > to avoid breakage when this happens by making libffi5 and libffi6
> > > parallel installable.  If that isn't working then there is clearly a bug
> > > somewhere and we should fix that.
> > 
> > libffi5 is no longer in feed, so if you try to install something from
> > feed which still has libffi5 in depends it will fail.
> 
> Ah, right.  So it's not actually the recipes which are broken, it's just
> that something is wrong with whatever maintains the feed and the old
> binaries are no longer installable.  I guess you need to figure out why
> libffi5 is being removed and prevent that from happening.

Old ipk binaries are removed in package_write_ipk task.

Even when I keep those binaries in public feed (rsynced from
deploy/ipk/) then I would have to call opkg-make-index in that public
feed to keep them in Packages too.

So by default you can assume that libffi5*.ipk gets missing as soon as you
bump libffi to version with new .so name like libffi6.

And it's not only someone doing opkg install on target, do_rootfs fails
too if you have any of those affected packages in your image.

Cheers,

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* [PATCH] recipes: bump PR to rebuild after libffi5 -> libffi6
  2012-09-16 14:30         ` Martin Jansa
@ 2012-09-16 18:47           ` Martin Jansa
  2012-09-17 10:54             ` [PATCH] recipes: few more PR bumps " Martin Jansa
  0 siblings, 1 reply; 12+ messages in thread
From: Martin Jansa @ 2012-09-16 18:47 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta/recipes-connectivity/avahi/avahi_0.6.31.bb               | 2 +-
 meta/recipes-connectivity/gypsy/gypsy_0.9.bb                  | 2 +-
 meta/recipes-connectivity/gypsy/gypsy_git.bb                  | 2 +-
 meta/recipes-core/dbus/dbus-glib_0.100.bb                     | 2 +-
 meta/recipes-core/glib-2.0/glib-2.0_2.32.4.bb                 | 2 +-
 meta/recipes-core/glib-networking/glib-networking_2.28.7.bb   | 2 +-
 meta/recipes-devtools/python/python-dbus_1.1.1.bb             | 2 +-
 meta/recipes-devtools/python/python-gst_0.10.22.bb            | 2 +-
 meta/recipes-devtools/python/python-pygobject_2.27.91.bb      | 2 +-
 meta/recipes-devtools/python/python-pygtk_2.24.0.bb           | 2 ++
 meta/recipes-extended/polkit/polkit_0.104.bb                  | 2 +-
 meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb            | 2 +-
 meta/recipes-gnome/gnome/gconf_3.2.3.bb                       | 2 +-
 meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb              | 2 +-
 meta/recipes-gnome/gtk+/gtk+_2.24.8.bb                        | 2 +-
 meta/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb          | 2 +-
 meta/recipes-gnome/json-glib/json-glib_0.14.2.bb              | 2 +-
 meta/recipes-gnome/libglade/libglade_2.6.4.bb                 | 2 +-
 meta/recipes-gnome/librsvg/librsvg_2.32.1.bb                  | 2 +-
 meta/recipes-graphics/cairo/cairo_1.12.2.bb                   | 2 +-
 meta/recipes-graphics/pango/pango_1.30.0.bb                   | 2 +-
 meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.36.bb | 2 +-
 meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb | 2 +-
 meta/recipes-multimedia/gstreamer/gst-plugins-ugly_0.10.19.bb | 2 +-
 meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb        | 2 +-
 meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb          | 2 +-
 meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_git.bb  | 2 +-
 meta/recipes-sato/matchbox-panel-2/matchbox-panel-2_git.bb    | 2 +-
 meta/recipes-sato/webkit/webkit-gtk_1.8.2.bb                  | 2 +-
 meta/recipes-support/atk/atk_2.4.0.bb                         | 2 +-
 meta/recipes-support/libsoup/libsoup-2.4_2.38.1.bb            | 2 ++
 meta/recipes-support/vte/vte_0.28.2.bb                        | 2 +-
 32 files changed, 34 insertions(+), 30 deletions(-)

diff --git a/meta/recipes-connectivity/avahi/avahi_0.6.31.bb b/meta/recipes-connectivity/avahi/avahi_0.6.31.bb
index e56bb1d..cff0974 100644
--- a/meta/recipes-connectivity/avahi/avahi_0.6.31.bb
+++ b/meta/recipes-connectivity/avahi/avahi_0.6.31.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=2d5025d4aa3495befef8f17206a5b0a1 \
                     file://avahi-daemon/main.c;endline=21;md5=9ee77368c5407af77caaef1b07285969 \
                     file://avahi-client/client.h;endline=23;md5=f4ac741a25c4f434039ba3e18c8674cf"
 
-PR = "${INC_PR}.0"
+PR = "${INC_PR}.1"
 
 SRC_URI[md5sum] = "2f22745b8f7368ad5a0a3fddac343f2d"
 SRC_URI[sha256sum] = "8372719b24e2dd75de6f59bb1315e600db4fd092805bd1201ed0cb651a2dab48"
diff --git a/meta/recipes-connectivity/gypsy/gypsy_0.9.bb b/meta/recipes-connectivity/gypsy/gypsy_0.9.bb
index 9b99267..51207c9 100644
--- a/meta/recipes-connectivity/gypsy/gypsy_0.9.bb
+++ b/meta/recipes-connectivity/gypsy/gypsy_0.9.bb
@@ -14,7 +14,7 @@ SECTION = "x11"
 DEPENDS = "glib-2.0 dbus bluez4 dbus-glib libxslt"
 
 SRC_URI = "http://gypsy.freedesktop.org/releases/gypsy-${PV}.tar.gz"
-PR = "r0"
+PR = "r1"
 
 inherit autotools pkgconfig
 
diff --git a/meta/recipes-connectivity/gypsy/gypsy_git.bb b/meta/recipes-connectivity/gypsy/gypsy_git.bb
index 495467e..867582d 100644
--- a/meta/recipes-connectivity/gypsy/gypsy_git.bb
+++ b/meta/recipes-connectivity/gypsy/gypsy_git.bb
@@ -4,7 +4,7 @@ DEFAULT_PREFERENCE = "-1"
 
 SRCREV = "3652e1f37e82b8e63983e30fda3482cd099a8cf5"
 PV = "0.8+git${SRCPV}"
-PR = "r1"
+PR = "r2"
 
 S = "${WORKDIR}/git"
 
diff --git a/meta/recipes-core/dbus/dbus-glib_0.100.bb b/meta/recipes-core/dbus/dbus-glib_0.100.bb
index f96d04e..786cb99 100644
--- a/meta/recipes-core/dbus/dbus-glib_0.100.bb
+++ b/meta/recipes-core/dbus/dbus-glib_0.100.bb
@@ -1,6 +1,6 @@
 require dbus-glib.inc
 
-PR = "r0"
+PR = "r1"
 
 SRC_URI[md5sum] = "d33959a9c0c6a158f5ac6d640316e89e"
 SRC_URI[sha256sum] = "80ddf7584a659590103817798dd95d7e451d666f385e5e95a83abf85c46d4605"
diff --git a/meta/recipes-core/glib-2.0/glib-2.0_2.32.4.bb b/meta/recipes-core/glib-2.0/glib-2.0_2.32.4.bb
index 3a075d4..10c0b61 100644
--- a/meta/recipes-core/glib-2.0/glib-2.0_2.32.4.bb
+++ b/meta/recipes-core/glib-2.0/glib-2.0_2.32.4.bb
@@ -1,6 +1,6 @@
 require glib.inc
 
-PR = "r5"
+PR = "r6"
 PE = "1"
 
 DEPENDS += "libffi python-argparse-native zlib"
diff --git a/meta/recipes-core/glib-networking/glib-networking_2.28.7.bb b/meta/recipes-core/glib-networking/glib-networking_2.28.7.bb
index 990fb54..8c2404c 100644
--- a/meta/recipes-core/glib-networking/glib-networking_2.28.7.bb
+++ b/meta/recipes-core/glib-networking/glib-networking_2.28.7.bb
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7"
 SECTION = "libs"
 DEPENDS = "glib-2.0 gnutls intltool-native"
 
-PR = "r2"
+PR = "r3"
 
 SRC_URI = "${GNOME_MIRROR}/${BPN}/2.28/${BPN}-${PV}.tar.bz2"
 
diff --git a/meta/recipes-devtools/python/python-dbus_1.1.1.bb b/meta/recipes-devtools/python/python-dbus_1.1.1.bb
index 51d5bc2..5bf01a6 100644
--- a/meta/recipes-devtools/python/python-dbus_1.1.1.bb
+++ b/meta/recipes-devtools/python/python-dbus_1.1.1.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "http://www.freedesktop.org/Software/dbus"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=f5612614133e9a2f2dad527d97554670"
 DEPENDS = "expat dbus dbus-glib virtual/libintl python-pyrex-native"
-PR = "r0"
+PR = "r1"
 
 SRC_URI = "http://dbus.freedesktop.org/releases/dbus-python/dbus-python-${PV}.tar.gz"
 
diff --git a/meta/recipes-devtools/python/python-gst_0.10.22.bb b/meta/recipes-devtools/python/python-gst_0.10.22.bb
index 7bd6d06..8b041c3 100644
--- a/meta/recipes-devtools/python/python-gst_0.10.22.bb
+++ b/meta/recipes-devtools/python/python-gst_0.10.22.bb
@@ -3,7 +3,7 @@ SECTION = "devel/python"
 LICENSE = "LGPLv2.1"
 DEPENDS = "gstreamer gst-plugins-base python-pygobject"
 RDEPENDS_${PN} += "python-pygtk"
-PR = "r1"
+PR = "r2"
 
 SRC_URI = "http://gstreamer.freedesktop.org/src/gst-python/gst-python-${PV}.tar.bz2 \
            file://python-path.patch"
diff --git a/meta/recipes-devtools/python/python-pygobject_2.27.91.bb b/meta/recipes-devtools/python/python-pygobject_2.27.91.bb
index d79ab2f..d08668e 100644
--- a/meta/recipes-devtools/python/python-pygobject_2.27.91.bb
+++ b/meta/recipes-devtools/python/python-pygobject_2.27.91.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7"
 DEPENDS = "python python-pygobject-native glib-2.0"
 DEPENDS_virtclass-native = "glib-2.0-native"
 RDEPENDS_virtclass-native = ""
-PR = "r4"
+PR = "r5"
 
 MAJ_VER = "${@d.getVar('PV',1).split('.')[0]}.${@d.getVar('PV',1).split('.')[1]}"
 
diff --git a/meta/recipes-devtools/python/python-pygtk_2.24.0.bb b/meta/recipes-devtools/python/python-pygtk_2.24.0.bb
index 20d54a3..4747d98 100644
--- a/meta/recipes-devtools/python/python-pygtk_2.24.0.bb
+++ b/meta/recipes-devtools/python/python-pygtk_2.24.0.bb
@@ -8,6 +8,8 @@ SRCNAME = "pygtk"
 LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7"
 
+PR = "r1"
+
 SRC_URI = "ftp://ftp.gnome.org/pub/gnome/sources/pygtk/2.24/${SRCNAME}-${PV}.tar.bz2 \
            file://fix-gtkunixprint.patch \
            file://prevent_to_get_display_during_import.patch \
diff --git a/meta/recipes-extended/polkit/polkit_0.104.bb b/meta/recipes-extended/polkit/polkit_0.104.bb
index e548cbc..52e6618 100644
--- a/meta/recipes-extended/polkit/polkit_0.104.bb
+++ b/meta/recipes-extended/polkit/polkit_0.104.bb
@@ -11,7 +11,7 @@ DEPENDS = "expat glib-2.0 intltool-native gobject-introspection-stub"
 PACKAGECONFIG = "${@base_contains('DISTRO_FEATURES', 'pam', 'pam', '', d)}"
 PACKAGECONFIG[pam] = "--with-authfw=pam,--with-authfw=shadow,libpam,libpam"
 
-PR = "r6"
+PR = "r7"
 
 PAM_SRC_URI = "file://polkit-1_pam.patch"
 SRC_URI = "http://hal.freedesktop.org/releases/polkit-${PV}.tar.gz \
diff --git a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb
index 99f6cb4..82a7eaa 100644
--- a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb
+++ b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb
@@ -21,7 +21,7 @@ SRC_URI = "http://ftp.acc.umu.se/pub/GNOME/sources/gdk-pixbuf/2.24/gdk-pixbuf-${
 SRC_URI[md5sum] = "72f39b34b20f68148c1609bd27415412"
 SRC_URI[sha256sum] = "da7a3f00db360913716368e19e336402755cafa93769f3cfa28a969303e4bee1"
 
-PR = "r6"
+PR = "r7"
 
 inherit autotools pkgconfig gettext
 
diff --git a/meta/recipes-gnome/gnome/gconf_3.2.3.bb b/meta/recipes-gnome/gnome/gconf_3.2.3.bb
index 8388684..dc3520f 100644
--- a/meta/recipes-gnome/gnome/gconf_3.2.3.bb
+++ b/meta/recipes-gnome/gnome/gconf_3.2.3.bb
@@ -9,7 +9,7 @@ POLKIT_libc-uclibc = ""
 DEPENDS = "glib-2.0 dbus dbus-glib libxml2 intltool-native ${POLKIT} gobject-introspection-stub"
 DEPENDS_virtclass-native = "glib-2.0-native dbus-native dbus-glib-native libxml2-native intltool-native gnome-common-native gobject-introspection-stub-native"
 
-PR = "r11"
+PR = "r12"
 
 inherit gnomebase gtk-doc
 
diff --git a/meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb b/meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb
index 1fd42b4..d822721 100644
--- a/meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb
+++ b/meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
 
 SECTION = "x11/gnome"
 
-PR = "r8"
+PR = "r9"
 
 inherit autotools gnome gtk-doc pkgconfig
 
diff --git a/meta/recipes-gnome/gtk+/gtk+_2.24.8.bb b/meta/recipes-gnome/gtk+/gtk+_2.24.8.bb
index 529f8e1..34b78ac 100644
--- a/meta/recipes-gnome/gtk+/gtk+_2.24.8.bb
+++ b/meta/recipes-gnome/gtk+/gtk+_2.24.8.bb
@@ -27,7 +27,7 @@ SRC_URI = "http://download.gnome.org/sources/gtk+/2.24/gtk+-${PV}.tar.bz2 \
 #        file://combo-arrow-size.patch;striplevel=0
 #            file://configurefix.patch
 
-PR = "r5"
+PR = "r6"
 
 SRC_URI[md5sum] = "0413187f7e596aef00ccd1b54776ff03"
 SRC_URI[sha256sum] = "ac2325a65312922a6722a7c02a389f3f4072d79e13131485cc7b7226e2537043"
diff --git a/meta/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb b/meta/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb
index c544870..259517e 100644
--- a/meta/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb
+++ b/meta/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1"
 SECTION = "x11/base"
 DEPENDS = "gtk+"
 
-PR = "r2"
+PR = "r3"
 
 PACKAGES_DYNAMIC = "gtk-engine-* gtk-theme-*"
 
diff --git a/meta/recipes-gnome/json-glib/json-glib_0.14.2.bb b/meta/recipes-gnome/json-glib/json-glib_0.14.2.bb
index 18db4e7..a4cbd51 100644
--- a/meta/recipes-gnome/json-glib/json-glib_0.14.2.bb
+++ b/meta/recipes-gnome/json-glib/json-glib_0.14.2.bb
@@ -8,7 +8,7 @@ HOMEPAGE = "http://live.gnome.org/JsonGlib"
 LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34"
 
-PR = "r1"
+PR = "r2"
 
 DEPENDS = "glib-2.0"
 
diff --git a/meta/recipes-gnome/libglade/libglade_2.6.4.bb b/meta/recipes-gnome/libglade/libglade_2.6.4.bb
index 0b01dc1..c8a2fac 100644
--- a/meta/recipes-gnome/libglade/libglade_2.6.4.bb
+++ b/meta/recipes-gnome/libglade/libglade_2.6.4.bb
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605 \
                     file://glade/glade-gtk.c;endline=22;md5=766f993433e2642fec87936d319990ff"
 
 SECTION = "libs"
-PR = "r4"
+PR = "r5"
 DEPENDS = "zlib gdk-pixbuf gtk+"
 
 inherit autotools pkgconfig gnome gtk-doc
diff --git a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
index 6bb5fe2..12ae310 100644
--- a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
+++ b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
@@ -11,7 +11,7 @@ DEPENDS = "gtk+ libcroco cairo libxml2"
 DEPENDS_virtclass-native = "cairo-native pango-native gdk-pixbuf-native"
 BBCLASSEXTEND = "native"
 
-PR = "r9"
+PR = "r10"
 
 inherit autotools pkgconfig gnome gtk-doc
 
diff --git a/meta/recipes-graphics/cairo/cairo_1.12.2.bb b/meta/recipes-graphics/cairo/cairo_1.12.2.bb
index c2e7cc6..f4c2d58 100644
--- a/meta/recipes-graphics/cairo/cairo_1.12.2.bb
+++ b/meta/recipes-graphics/cairo/cairo_1.12.2.bb
@@ -2,7 +2,7 @@ require cairo.inc
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=e73e999e0c72b5ac9012424fa157ad77"
 
-PR = "r0"
+PR = "r1"
 
 SRC_URI = "http://cairographics.org/releases/cairo-${PV}.tar.xz"
 
diff --git a/meta/recipes-graphics/pango/pango_1.30.0.bb b/meta/recipes-graphics/pango/pango_1.30.0.bb
index 25101f2..de562b1 100644
--- a/meta/recipes-graphics/pango/pango_1.30.0.bb
+++ b/meta/recipes-graphics/pango/pango_1.30.0.bb
@@ -2,7 +2,7 @@ require pango.inc
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7"
 
-PR = "r0"
+PR = "r1"
 
 GNOME_COMPRESS_TYPE="xz"
 
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.36.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.36.bb
index 99f28e9..88fa74d 100644
--- a/meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.36.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.36.bb
@@ -15,7 +15,7 @@ SRC_URI += "file://gst-plugins-base-tremor.patch \
 SRC_URI[md5sum] = "776c73883e567f67b9c4a2847d8d041a"
 SRC_URI[sha256sum] = "2cd3b0fa8e9b595db8f514ef7c2bdbcd639a0d63d154c00f8c9b609321f49976"
 
-PR = "r4"
+PR = "r5"
 
 inherit gettext
 
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb
index e095b38..641de7c 100644
--- a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
 
 DEPENDS += "gst-plugins-base gconf cairo jpeg libpng zlib libid3tag flac \
 	    speex libsoup-2.4 pulseaudio"
-PR = "r4"
+PR = "r5"
 
 inherit gettext gconf
 
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-ugly_0.10.19.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-ugly_0.10.19.bb
index 125d09c..a9da76e 100644
--- a/meta/recipes-multimedia/gstreamer/gst-plugins-ugly_0.10.19.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-plugins-ugly_0.10.19.bb
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
                     file://gst/mpegstream/gstmpegparse.h;beginline=1;endline=18;md5=ff65467b0c53cdfa98d0684c1bc240a9"
 
 DEPENDS += "gst-plugins-base libid3tag libmad mpeg2dec liba52 lame"
-PR = "r1"
+PR = "r2"
 
 inherit gettext
 
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb b/meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb
index 278c20e..4ca4429 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605 \
                     file://gst/gst.h;beginline=1;endline=21;md5=8e5fe5e87d33a04479fde862e238eaa4"
 DEPENDS = "glib-2.0 libxml2 bison-native flex-native"
 
-PR = "r0"
+PR = "r1"
 
 SRC_URI = "http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.bz2 \
            file://check_fix.patch \
diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb b/meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb
index e39b69e..2f3728f 100644
--- a/meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb
+++ b/meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb
@@ -1,6 +1,6 @@
 require pulseaudio.inc
 
-PR = "r3"
+PR = "r4"
 
 DEPENDS += "libjson gdbm speex libxml-parser-perl-native"
 
diff --git a/meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_git.bb b/meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_git.bb
index 4c03541..430e343 100644
--- a/meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_git.bb
+++ b/meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_git.bb
@@ -12,7 +12,7 @@ RDEPENDS_${PN} = "formfactor dbus-wait"
 SECTION = "x11"
 SRCREV = "b38f24036cff3be6c2fbcf9ca9881803e69003ac"
 PV = "0.0+git${SRCPV}"
-PR = "r2"
+PR = "r3"
 
 SRC_URI = "git://git.yoctoproject.org/${BPN};protocol=git \
            file://configure_fix.patch;maxrev=1819 \
diff --git a/meta/recipes-sato/matchbox-panel-2/matchbox-panel-2_git.bb b/meta/recipes-sato/matchbox-panel-2/matchbox-panel-2_git.bb
index 52ccc6f..9678713 100644
--- a/meta/recipes-sato/matchbox-panel-2/matchbox-panel-2_git.bb
+++ b/meta/recipes-sato/matchbox-panel-2/matchbox-panel-2_git.bb
@@ -13,7 +13,7 @@ DEPENDS += " ${@base_contains("MACHINE_FEATURES", "apm", "apmd", "",d)}"
 
 SRCREV = "cdf7a22716b87468f10573f622d5c7a58a684e35"
 PV = "0.0+git${SRCPV}"
-PR = "r5"
+PR = "r6"
 
 RPROVIDES_${PN} = "matchbox-panel"
 RREPLACES_${PN} = "matchbox-panel"
diff --git a/meta/recipes-sato/webkit/webkit-gtk_1.8.2.bb b/meta/recipes-sato/webkit/webkit-gtk_1.8.2.bb
index 8beb6eb..bba9a80 100644
--- a/meta/recipes-sato/webkit/webkit-gtk_1.8.2.bb
+++ b/meta/recipes-sato/webkit/webkit-gtk_1.8.2.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://Source/WebCore/rendering/RenderApplet.h;endline=22;md
                     file://Source/WebKit/gtk/webkit/webkit.h;endline=21;md5=b4fbe9f4a944f1d071dba1d2c76b3351 \
                     file://Source/JavaScriptCore/parser/Parser.h;endline=23;md5=b57c8a2952a8d0e655988fa0ecb2bf7f"
 
-PR = "r1"
+PR = "r2"
 
 # Choice of language backends - icu has issues on Big Endian machines so use pango
 ICU_LIB = "icu"
diff --git a/meta/recipes-support/atk/atk_2.4.0.bb b/meta/recipes-support/atk/atk_2.4.0.bb
index e2de5d6..4a2d853 100644
--- a/meta/recipes-support/atk/atk_2.4.0.bb
+++ b/meta/recipes-support/atk/atk_2.4.0.bb
@@ -7,7 +7,7 @@ LICENSE = "GPLv2+ & LGPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7 \
                     file://atk/atkutil.c;endline=20;md5=db21b0bdbef9da4dc6eb122debc9f9bc \
                     file://atk/atk.h;endline=20;md5=c58238d688c24387376d6c69d06248a7"
-PR = "r0"
+PR = "r1"
 
 DEPENDS = "glib-2.0"
 
diff --git a/meta/recipes-support/libsoup/libsoup-2.4_2.38.1.bb b/meta/recipes-support/libsoup/libsoup-2.4_2.38.1.bb
index c04918e..486c38b 100644
--- a/meta/recipes-support/libsoup/libsoup-2.4_2.38.1.bb
+++ b/meta/recipes-support/libsoup/libsoup-2.4_2.38.1.bb
@@ -5,6 +5,8 @@ BUGTRACKER = "https://bugzilla.gnome.org/"
 LICENSE = "LGPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2"
 
+PR = "r1"
+
 SECTION = "x11/gnome/libs"
 
 DEPENDS = "glib-2.0 gnutls libxml2 libproxy sqlite3 libgnome-keyring"
diff --git a/meta/recipes-support/vte/vte_0.28.2.bb b/meta/recipes-support/vte/vte_0.28.2.bb
index 2cb1871..1fe66e7 100644
--- a/meta/recipes-support/vte/vte_0.28.2.bb
+++ b/meta/recipes-support/vte/vte_0.28.2.bb
@@ -2,7 +2,7 @@ require vte.inc
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7"
 
-PR = "r4"
+PR = "r5"
 
 SRC_URI[archive.md5sum] = "f07a4bf943194f94b7f142db8f7f36dc"
 SRC_URI[archive.sha256sum] = "8d04e202b617373dfb47689e5e628febe2c58840b34cccc4af4feb88c48df903"
-- 
1.7.12




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

* [PATCH] recipes: few more PR bumps to rebuild after libffi5 -> libffi6
  2012-09-16 18:47           ` [PATCH] recipes: bump PR to rebuild after libffi5 -> libffi6 Martin Jansa
@ 2012-09-17 10:54             ` Martin Jansa
  2012-09-17 17:17               ` [PATCH] libtelepathy: PR bump " Martin Jansa
  0 siblings, 1 reply; 12+ messages in thread
From: Martin Jansa @ 2012-09-17 10:54 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta/recipes-connectivity/bluez/gst-plugin-bluetooth_4.101.bb           | 2 +-
 meta/recipes-connectivity/galago/libgalago_0.5.2.bb                     | 2 +-
 meta/recipes-connectivity/gupnp/gssdp_0.10.0.bb                         | 2 +-
 meta/recipes-connectivity/gupnp/gupnp-av_0.8.0.bb                       | 2 +-
 meta/recipes-connectivity/gupnp/gupnp_0.16.1.bb                         | 2 +-
 meta/recipes-connectivity/telepathy/telepathy-glib_0.19.8.bb            | 2 +-
 meta/recipes-connectivity/telepathy/telepathy-mission-control_5.13.0.bb | 2 +-
 meta/recipes-gnome/gtkhtml2/gtkhtml2_svn.bb                             | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/meta/recipes-connectivity/bluez/gst-plugin-bluetooth_4.101.bb b/meta/recipes-connectivity/bluez/gst-plugin-bluetooth_4.101.bb
index 49135ab..f2dc0da 100644
--- a/meta/recipes-connectivity/bluez/gst-plugin-bluetooth_4.101.bb
+++ b/meta/recipes-connectivity/bluez/gst-plugin-bluetooth_4.101.bb
@@ -1,7 +1,7 @@
 require bluez4.inc
 require recipes-multimedia/gstreamer/gst-plugins-package.inc
 
-PR = "r0"
+PR = "r1"
 
 SRC_URI[md5sum] = "fb42cb7038c380eb0e2fa208987c96ad"
 SRC_URI[sha256sum] = "59738410ade9f0e61a13c0f77d9aaffaafe49ba9418107e4ad75fe52846f7487"
diff --git a/meta/recipes-connectivity/galago/libgalago_0.5.2.bb b/meta/recipes-connectivity/galago/libgalago_0.5.2.bb
index 1a5dd23..2071952 100644
--- a/meta/recipes-connectivity/galago/libgalago_0.5.2.bb
+++ b/meta/recipes-connectivity/galago/libgalago_0.5.2.bb
@@ -13,7 +13,7 @@ SRC_URI =	"http://www.galago-project.org/files/releases/source/${BPN}/${BPN}-${P
 
 SRC_URI[md5sum] = "7ec92f2ecba1309ac4b71b4b4d8d0a0d"
 SRC_URI[sha256sum] = "9b7c9845e2f661dbf5c2595e67bc7afd48f090ac2c033726c89d7f0e90791dfa"
-PR = "r2"
+PR = "r3"
 
 inherit autotools pkgconfig gettext
 
diff --git a/meta/recipes-connectivity/gupnp/gssdp_0.10.0.bb b/meta/recipes-connectivity/gupnp/gssdp_0.10.0.bb
index b87c755..9dc05e5 100644
--- a/meta/recipes-connectivity/gupnp/gssdp_0.10.0.bb
+++ b/meta/recipes-connectivity/gupnp/gssdp_0.10.0.bb
@@ -4,7 +4,7 @@ LICENSE = "LGPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7"
 DEPENDS = "glib-2.0 libsoup-2.4 gobject-introspection-stub"
 
-PR = "r2"
+PR = "r3"
 
 SRC_URI = "http://gupnp.org/sites/all/files/sources/${BPN}-${PV}.tar.gz"
 
diff --git a/meta/recipes-connectivity/gupnp/gupnp-av_0.8.0.bb b/meta/recipes-connectivity/gupnp/gupnp-av_0.8.0.bb
index ae96eda..598aa4d 100644
--- a/meta/recipes-connectivity/gupnp/gupnp-av_0.8.0.bb
+++ b/meta/recipes-connectivity/gupnp/gupnp-av_0.8.0.bb
@@ -7,7 +7,7 @@ DEPENDS = "gupnp"
 
 SRC_URI = "http://gupnp.org/sites/all/files/sources/${BPN}-${PV}.tar.gz"
 
-PR = "r1"
+PR = "r2"
 
 inherit autotools pkgconfig
 
diff --git a/meta/recipes-connectivity/gupnp/gupnp_0.16.1.bb b/meta/recipes-connectivity/gupnp/gupnp_0.16.1.bb
index 84e0679..c226c9e 100644
--- a/meta/recipes-connectivity/gupnp/gupnp_0.16.1.bb
+++ b/meta/recipes-connectivity/gupnp/gupnp_0.16.1.bb
@@ -10,7 +10,7 @@ SRC_URI = "http://gupnp.org/sites/all/files/sources/${BPN}-${PV}.tar.gz"
 SRC_URI[md5sum] = "021bb237741532af4bca50157ff326e4"
 SRC_URI[sha256sum] = "f01a1f4fd36ce161a3df29fa83e1a0a2fb40d3c9f30f6b403e7791688ad24cfe"
 
-PR = "r1"
+PR = "r2"
 
 EXTRA_OECONF = "--disable-introspection"
 
diff --git a/meta/recipes-connectivity/telepathy/telepathy-glib_0.19.8.bb b/meta/recipes-connectivity/telepathy/telepathy-glib_0.19.8.bb
index 2b072bb..6bf27b2 100644
--- a/meta/recipes-connectivity/telepathy/telepathy-glib_0.19.8.bb
+++ b/meta/recipes-connectivity/telepathy/telepathy-glib_0.19.8.bb
@@ -3,7 +3,7 @@ DESCRIPTION = "Telepathy Framework: GLib-based helper library for connection man
 HOMEPAGE = "http://telepathy.freedesktop.org/wiki/"
 DEPENDS = "glib-2.0 dbus python-native-runtime dbus-native dbus-glib"
 LICENSE = "LGPLv2.1+"
-PR = "r0"
+PR = "r1"
 
 SRC_URI = "http://telepathy.freedesktop.org/releases/telepathy-glib/${BPN}-${PV}.tar.gz"
 
diff --git a/meta/recipes-connectivity/telepathy/telepathy-mission-control_5.13.0.bb b/meta/recipes-connectivity/telepathy/telepathy-mission-control_5.13.0.bb
index f1f4c1e..55ae117 100644
--- a/meta/recipes-connectivity/telepathy/telepathy-mission-control_5.13.0.bb
+++ b/meta/recipes-connectivity/telepathy/telepathy-mission-control_5.13.0.bb
@@ -8,7 +8,7 @@ DEPENDS = "libtelepathy dbus-glib gconf"
 
 SRC_URI = "http://telepathy.freedesktop.org/releases/telepathy-mission-control/telepathy-mission-control-${PV}.tar.gz"
 
-PR = "r0"
+PR = "r1"
 
 inherit autotools pkgconfig
 
diff --git a/meta/recipes-gnome/gtkhtml2/gtkhtml2_svn.bb b/meta/recipes-gnome/gtkhtml2/gtkhtml2_svn.bb
index da74a82..2fafcec 100644
--- a/meta/recipes-gnome/gtkhtml2/gtkhtml2_svn.bb
+++ b/meta/recipes-gnome/gtkhtml2/gtkhtml2_svn.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=55ca817ccb7d5b5b66355690e9abc605"
 
 SRCREV = "1161"
 PV = "2.11.0+svnr${SRCPV}"
-PR = "r3"
+PR = "r4"
 
 SRC_URI = "svn://svn.gnome.org/svn/gtkhtml2/;module=trunk;protocol=http \
            http://git.yoctoproject.org/cgit/cgit.cgi/web-patches/plain/css-stylesheet-user.patch;striplevel=0;name=patch2 \
-- 
1.7.12




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

* Re: [O-core] [oe-commits] Andrei Dinu : libffi upgrade to 3.0.11
  2012-09-15 16:37     ` [O-core] " Martin Jansa
@ 2012-09-17 10:57       ` Martin Jansa
  0 siblings, 0 replies; 12+ messages in thread
From: Martin Jansa @ 2012-09-17 10:57 UTC (permalink / raw)
  To: Andrei Gherzan
  Cc: openembedded-commits, openembedded-devel, openembedded-core

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

On Sat, Sep 15, 2012 at 06:37:39PM +0200, Martin Jansa wrote:
> On Sat, Sep 15, 2012 at 07:22:43PM +0300, Andrei Gherzan wrote:
> > On Sat, Sep 15, 2012 at 7:20 PM, Martin Jansa <martin.jansa@gmail.com>wrote:
> > 
> > > On Fri, Sep 14, 2012 at 08:57:06AM +0000, git@git.openembedded.org wrote:
> > > > Module: openembedded-core.git
> > > > Branch: master
> > > > Commit: 3e40136e8bd13b17b6d88b6acfb5ed162bb8d96a
> > > > URL:
> > > http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=3e40136e8bd13b17b6d88b6acfb5ed162bb8d96a
> > > >
> > > > Author: Andrei Dinu <andrei.adrianx.dinu@intel.com>
> > > > Date:   Thu Sep 13 11:26:45 2012 +0300
> > > >
> > > > libffi upgrade to 3.0.11
> > >
> > > This changes .so name from libffi5 to libffi6, breaking every recipe
> > > depending on libffi when someone is using debian.bbclass.
> > >
> > > This list of 374 packages is probably not complete, just what I have
> > > built before.
> > >
> > > http://build.shr-project.org/tests/jama/libffi5.pkgs
> > 
> > 
> > Confirmed. Just ran into this with glib-2.0.
> 
> Something like:
> | /OE/shr-core/tmp-eglibc/sysroots/x86_64-linux/usr/libexec/x86_64-oe-linux/gcc/x86_64-oe-linux/4.7.2/ld: warning: libffi.so.5, needed by /OE/shr-core/tmp-eglibc/sysroots/q
> emux86-64/usr/lib/libgobject-2.0.so, not found (try using -rpath or -rpath-link)
> | /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_type_void'
> | /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_type_double'
> | /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_prep_cif'
> | /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_type_sint32'
> | /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_type_float'
> | /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_type_uint64'
> | /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_type_sint64'
> | /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_type_pointer'
> | /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_type_uint32'
> | /OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/lib/libgobject-2.0.so: undefined reference to `ffi_call'
> 
> That's easy to fix by manual rebuild, but for runtime packages we need those PR bumps :/.
> 
> I'll PR bump recipes (from my list) in meta-oe and meta-smartphone layers, 
> but leave oe-core for someone else.

PR bumps for recipes from my list sent to oe-core too, but again it's
probably not complete (only stuff included in one of images I build).

Someone should build world-image to test the rest..

Cheers,
-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* [PATCH] libtelepathy: PR bump to rebuild after libffi5 -> libffi6
  2012-09-17 10:54             ` [PATCH] recipes: few more PR bumps " Martin Jansa
@ 2012-09-17 17:17               ` Martin Jansa
  2012-09-19 17:45                 ` Saul Wold
  0 siblings, 1 reply; 12+ messages in thread
From: Martin Jansa @ 2012-09-17 17:17 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta/recipes-connectivity/telepathy/libtelepathy_0.3.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-connectivity/telepathy/libtelepathy_0.3.3.bb b/meta/recipes-connectivity/telepathy/libtelepathy_0.3.3.bb
index a7c6667..ee131ee 100644
--- a/meta/recipes-connectivity/telepathy/libtelepathy_0.3.3.bb
+++ b/meta/recipes-connectivity/telepathy/libtelepathy_0.3.3.bb
@@ -8,7 +8,7 @@ DEPENDS = "glib-2.0 dbus dbus-glib telepathy-glib"
 LICENSE = "LGPLv2.1+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
                     file://src/tp-conn.c;beginline=1;endline=19;md5=4c58069f77d601cc59200bce5396c7cb"
-PR = "r4"
+PR = "r5"
 
 SRC_URI = "http://telepathy.freedesktop.org/releases/libtelepathy/libtelepathy-${PV}.tar.gz \
            file://prefer_python_2.5.patch \
-- 
1.7.12




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

* Re: [PATCH] libtelepathy: PR bump to rebuild after libffi5 -> libffi6
  2012-09-17 17:17               ` [PATCH] libtelepathy: PR bump " Martin Jansa
@ 2012-09-19 17:45                 ` Saul Wold
  0 siblings, 0 replies; 12+ messages in thread
From: Saul Wold @ 2012-09-19 17:45 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-core

On 09/17/2012 10:17 AM, Martin Jansa wrote:
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>   meta/recipes-connectivity/telepathy/libtelepathy_0.3.3.bb | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-connectivity/telepathy/libtelepathy_0.3.3.bb b/meta/recipes-connectivity/telepathy/libtelepathy_0.3.3.bb
> index a7c6667..ee131ee 100644
> --- a/meta/recipes-connectivity/telepathy/libtelepathy_0.3.3.bb
> +++ b/meta/recipes-connectivity/telepathy/libtelepathy_0.3.3.bb
> @@ -8,7 +8,7 @@ DEPENDS = "glib-2.0 dbus dbus-glib telepathy-glib"
>   LICENSE = "LGPLv2.1+"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
>                       file://src/tp-conn.c;beginline=1;endline=19;md5=4c58069f77d601cc59200bce5396c7cb"
> -PR = "r4"
> +PR = "r5"
>
>   SRC_URI = "http://telepathy.freedesktop.org/releases/libtelepathy/libtelepathy-${PV}.tar.gz \
>              file://prefer_python_2.5.patch \
>

Merged the 3 of these PR Bumps into OE-Core

Thanks
	Sau!




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

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

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20120914085706.2CBFC103C3@opal>
2012-09-15 16:20 ` [oe-commits] Andrei Dinu : libffi upgrade to 3.0.11 Martin Jansa
     [not found]   ` <CAK18fxGHn8aMu9Y926M2r9RQULR2VTOciBJkVD5S9awBV_j7-Q@mail.gmail.com>
2012-09-15 16:37     ` [O-core] " Martin Jansa
2012-09-17 10:57       ` Martin Jansa
2012-09-15 17:23   ` Phil Blundell
2012-09-15 17:28     ` Martin Jansa
2012-09-15 17:39       ` Martin Jansa
2012-09-15 20:39       ` Phil Blundell
2012-09-16 14:30         ` Martin Jansa
2012-09-16 18:47           ` [PATCH] recipes: bump PR to rebuild after libffi5 -> libffi6 Martin Jansa
2012-09-17 10:54             ` [PATCH] recipes: few more PR bumps " Martin Jansa
2012-09-17 17:17               ` [PATCH] libtelepathy: PR bump " Martin Jansa
2012-09-19 17:45                 ` Saul Wold

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