* [PATCH 0/5] recipe upgrades
@ 2011-10-18 20:14 nitin.a.kamble
2011-10-18 20:14 ` [PATCH 1/5] x86 tune files: set baselib for x32 tune as libx32 nitin.a.kamble
` (4 more replies)
0 siblings, 5 replies; 17+ messages in thread
From: nitin.a.kamble @ 2011-10-18 20:14 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
The following changes since commit b4757833c3548b5ee3a1cce58e2f059b3f63cb09:
fontconfig: fix fix-pkgconfig.patch (2011-10-18 18:18:36 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib nitin/upgrades
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/upgrades
Nitin A Kamble (5):
x86 tune files: set baselib for x32 tune as libx32
gmp: also generate the libgmpcxx library
python-scons: upgrade from 2.0.1 to 2.1.0
python-dbus: upgrade from 0.83.2 to 0.84.0
distro-tracking: update data for few of my recipes
.../conf/distro/include/distro_tracking_fields.inc | 38 ++++++++++++--------
meta/conf/machine/include/ia32/arch-ia32.inc | 2 +-
meta/conf/machine/include/tune-core2.inc | 2 +-
...python-dbus_0.83.2.bb => python-dbus_0.84.0.bb} | 4 +-
...ative_2.0.1.bb => python-scons-native_2.1.0.bb} | 3 +-
...python-scons_2.0.1.bb => python-scons_2.1.0.bb} | 6 ++--
meta/recipes-support/gmp/gmp.inc | 2 +
meta/recipes-support/gmp/gmp_4.2.1.bb | 2 +-
meta/recipes-support/gmp/gmp_5.0.2.bb | 2 +-
9 files changed, 35 insertions(+), 26 deletions(-)
rename meta/recipes-devtools/python/{python-dbus_0.83.2.bb => python-dbus_0.84.0.bb} (83%)
rename meta/recipes-devtools/python/{python-scons-native_2.0.1.bb => python-scons-native_2.1.0.bb} (89%)
rename meta/recipes-devtools/python/{python-scons_2.0.1.bb => python-scons_2.1.0.bb} (51%)
--
1.7.4.4
^ permalink raw reply [flat|nested] 17+ messages in thread* [PATCH 1/5] x86 tune files: set baselib for x32 tune as libx32
2011-10-18 20:14 [PATCH 0/5] recipe upgrades nitin.a.kamble
@ 2011-10-18 20:14 ` nitin.a.kamble
2011-10-18 20:14 ` [PATCH 2/5] gmp: also generate the libgmpcxx library nitin.a.kamble
` (3 subsequent siblings)
4 siblings, 0 replies; 17+ messages in thread
From: nitin.a.kamble @ 2011-10-18 20:14 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
meta/conf/machine/include/ia32/arch-ia32.inc | 2 +-
meta/conf/machine/include/tune-core2.inc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/conf/machine/include/ia32/arch-ia32.inc b/meta/conf/machine/include/ia32/arch-ia32.inc
index a52e33a..ee91983 100644
--- a/meta/conf/machine/include/ia32/arch-ia32.inc
+++ b/meta/conf/machine/include/ia32/arch-ia32.inc
@@ -44,6 +44,6 @@ PACKAGE_EXTRA_ARCHS_tune-x86-64 = "x86_64"
AVAILTUNES += "x86-64-x32"
TUNE_FEATURES_tune-x86-64-x32 ?= "mx32"
-BASE_LIB_tune-x86-64-x32 ?= "lib"
+BASE_LIB_tune-x86-64-x32 ?= "libx32"
PACKAGE_EXTRA_ARCHS_tune-x86-64-x32 = "x86_64-x32"
TUNE_PKGARCH .= "${@bb.utils.contains("TUNE_FEATURES", "mx32", "-x32", "", d)}"
diff --git a/meta/conf/machine/include/tune-core2.inc b/meta/conf/machine/include/tune-core2.inc
index 78f8f4d..565a39c 100644
--- a/meta/conf/machine/include/tune-core2.inc
+++ b/meta/conf/machine/include/tune-core2.inc
@@ -20,5 +20,5 @@ PACKAGE_EXTRA_ARCHS_tune-core2-64 = "${PACKAGE_EXTRA_ARCHS_tune-x86-64} core2-64
AVAILTUNES += "core2-64-x32"
TUNE_FEATURES_tune-core2-64-x32 ?= "${TUNE_FEATURES_tune-x86-64-x32} core2"
-BASE_LIB_tune-core2-64-x32 ?= "lib"
+BASE_LIB_tune-core2-64-x32 ?= "libx32"
PACKAGE_EXTRA_ARCHS_tune-core2-64-x32 = "${PACKAGE_EXTRA_ARCHS_tune-x86-64-x32} core2-64-x32"
--
1.7.4.4
^ permalink raw reply related [flat|nested] 17+ messages in thread* [PATCH 2/5] gmp: also generate the libgmpcxx library
2011-10-18 20:14 [PATCH 0/5] recipe upgrades nitin.a.kamble
2011-10-18 20:14 ` [PATCH 1/5] x86 tune files: set baselib for x32 tune as libx32 nitin.a.kamble
@ 2011-10-18 20:14 ` nitin.a.kamble
2011-10-18 20:53 ` Khem Raj
2011-10-18 20:15 ` [PATCH 3/5] python-scons: upgrade from 2.0.1 to 2.1.0 nitin.a.kamble
` (2 subsequent siblings)
4 siblings, 1 reply; 17+ messages in thread
From: nitin.a.kamble @ 2011-10-18 20:14 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
meta/recipes-support/gmp/gmp.inc | 2 ++
meta/recipes-support/gmp/gmp_4.2.1.bb | 2 +-
meta/recipes-support/gmp/gmp_5.0.2.bb | 2 +-
3 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-support/gmp/gmp.inc b/meta/recipes-support/gmp/gmp.inc
index 66349e6..77ce10d 100644
--- a/meta/recipes-support/gmp/gmp.inc
+++ b/meta/recipes-support/gmp/gmp.inc
@@ -14,3 +14,5 @@ ARM_INSTRUCTION_SET = "arm"
acpaths = ""
BBCLASSEXTEND = "native nativesdk"
+
+EXTRA_OECONF += " --enable-cxx=yes"
diff --git a/meta/recipes-support/gmp/gmp_4.2.1.bb b/meta/recipes-support/gmp/gmp_4.2.1.bb
index 74da6b8..97ac4b2 100644
--- a/meta/recipes-support/gmp/gmp_4.2.1.bb
+++ b/meta/recipes-support/gmp/gmp_4.2.1.bb
@@ -6,7 +6,7 @@ LICENSE = "LGPLv2.1+"
LIC_FILES_CHKSUM = "file://COPYING;md5=892f569a555ba9c07a568a7c0c4fa63a \
file://COPYING.LIB;md5=fbc093901857fcd118f065f900982c24 \
file://gmp-h.in;startline=6;endline=21;md5=5e25ffd16996faba8c1cd27b04b16099"
-PR = "r0"
+PR = "r1"
SRC_URI = "${GNU_MIRROR}/gmp/${BP}.tar.bz2 \
file://disable-stdc.patch"
diff --git a/meta/recipes-support/gmp/gmp_5.0.2.bb b/meta/recipes-support/gmp/gmp_5.0.2.bb
index 03fef45..f80971e 100644
--- a/meta/recipes-support/gmp/gmp_5.0.2.bb
+++ b/meta/recipes-support/gmp/gmp_5.0.2.bb
@@ -2,7 +2,7 @@ require gmp.inc
LICENSE="LGPLv3&GPLv3"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
file://version.c;endline=18;md5=d8c56b52b9092346b9f93b4da65ef790"
-PR = "r0"
+PR = "r1"
SRC_URI_append += "file://sh4-asmfix.patch \
file://use-includedir.patch "
--
1.7.4.4
^ permalink raw reply related [flat|nested] 17+ messages in thread* Re: [PATCH 2/5] gmp: also generate the libgmpcxx library
2011-10-18 20:14 ` [PATCH 2/5] gmp: also generate the libgmpcxx library nitin.a.kamble
@ 2011-10-18 20:53 ` Khem Raj
2011-10-18 21:06 ` Kamble, Nitin A
0 siblings, 1 reply; 17+ messages in thread
From: Khem Raj @ 2011-10-18 20:53 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On (18/10/11 13:14), nitin.a.kamble@intel.com wrote:
> From: Nitin A Kamble <nitin.a.kamble@intel.com>
>
> Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
> ---
> meta/recipes-support/gmp/gmp.inc | 2 ++
> meta/recipes-support/gmp/gmp_4.2.1.bb | 2 +-
> meta/recipes-support/gmp/gmp_5.0.2.bb | 2 +-
> 3 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-support/gmp/gmp.inc b/meta/recipes-support/gmp/gmp.inc
> index 66349e6..77ce10d 100644
> --- a/meta/recipes-support/gmp/gmp.inc
> +++ b/meta/recipes-support/gmp/gmp.inc
> @@ -14,3 +14,5 @@ ARM_INSTRUCTION_SET = "arm"
> acpaths = ""
>
> BBCLASSEXTEND = "native nativesdk"
> +
> +EXTRA_OECONF += " --enable-cxx=yes"
if you want 'yes' then just --enable-cxx is enough have you tried with
--enable-cxx=detect that would make sure that C++ compiler and runtime
is ok. Secondly is this option needed for native recipes too ?
> diff --git a/meta/recipes-support/gmp/gmp_4.2.1.bb b/meta/recipes-support/gmp/gmp_4.2.1.bb
> index 74da6b8..97ac4b2 100644
> --- a/meta/recipes-support/gmp/gmp_4.2.1.bb
> +++ b/meta/recipes-support/gmp/gmp_4.2.1.bb
> @@ -6,7 +6,7 @@ LICENSE = "LGPLv2.1+"
> LIC_FILES_CHKSUM = "file://COPYING;md5=892f569a555ba9c07a568a7c0c4fa63a \
> file://COPYING.LIB;md5=fbc093901857fcd118f065f900982c24 \
> file://gmp-h.in;startline=6;endline=21;md5=5e25ffd16996faba8c1cd27b04b16099"
> -PR = "r0"
> +PR = "r1"
>
> SRC_URI = "${GNU_MIRROR}/gmp/${BP}.tar.bz2 \
> file://disable-stdc.patch"
> diff --git a/meta/recipes-support/gmp/gmp_5.0.2.bb b/meta/recipes-support/gmp/gmp_5.0.2.bb
> index 03fef45..f80971e 100644
> --- a/meta/recipes-support/gmp/gmp_5.0.2.bb
> +++ b/meta/recipes-support/gmp/gmp_5.0.2.bb
> @@ -2,7 +2,7 @@ require gmp.inc
> LICENSE="LGPLv3&GPLv3"
> LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
> file://version.c;endline=18;md5=d8c56b52b9092346b9f93b4da65ef790"
> -PR = "r0"
> +PR = "r1"
>
> SRC_URI_append += "file://sh4-asmfix.patch \
> file://use-includedir.patch "
> --
> 1.7.4.4
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
--
-Khem
^ permalink raw reply [flat|nested] 17+ messages in thread* Re: [PATCH 2/5] gmp: also generate the libgmpcxx library
2011-10-18 20:53 ` Khem Raj
@ 2011-10-18 21:06 ` Kamble, Nitin A
2011-10-18 21:13 ` Khem Raj
0 siblings, 1 reply; 17+ messages in thread
From: Kamble, Nitin A @ 2011-10-18 21:06 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
> -----Original Message-----
> From: openembedded-core-bounces@lists.openembedded.org
> [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf Of
> Khem Raj
> Sent: Tuesday, October 18, 2011 1:54 PM
> To: Patches and discussions about the oe-core layer
> Subject: Re: [OE-core] [PATCH 2/5] gmp: also generate the libgmpcxx
> library
>
> On (18/10/11 13:14), nitin.a.kamble@intel.com wrote:
> > From: Nitin A Kamble <nitin.a.kamble@intel.com>
> >
> > Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
> > ---
> > meta/recipes-support/gmp/gmp.inc | 2 ++
> > meta/recipes-support/gmp/gmp_4.2.1.bb | 2 +-
> > meta/recipes-support/gmp/gmp_5.0.2.bb | 2 +-
> > 3 files changed, 4 insertions(+), 2 deletions(-)
> >
> > diff --git a/meta/recipes-support/gmp/gmp.inc b/meta/recipes-
> support/gmp/gmp.inc
> > index 66349e6..77ce10d 100644
> > --- a/meta/recipes-support/gmp/gmp.inc
> > +++ b/meta/recipes-support/gmp/gmp.inc
> > @@ -14,3 +14,5 @@ ARM_INSTRUCTION_SET = "arm"
> > acpaths = ""
> >
> > BBCLASSEXTEND = "native nativesdk"
> > +
> > +EXTRA_OECONF += " --enable-cxx=yes"
>
> if you want 'yes' then just --enable-cxx is enough have you tried with
> --enable-cxx=detect that would make sure that C++ compiler and runtime
> is ok. Secondly is this option needed for native recipes too ?
Thanks Khem for your comments. This option is also needed for native recipe to avoid having gmp-devel installed on the build system. "--enable-cxx=detect" can be used, but I am not sure if it is the best way yet, I think we always have c++ as part of gcc, not having c++ is not a case to worry. And if "detect" tests if c++ & runtime are not working as expected, then it should not disable the enable-cxx option with that reason; better would be to get a recipe build failure. So I still favor keeping the option as "--enable-cxx" until I can see the merit of "detect".
Thanks,
Nitin
>
> > diff --git a/meta/recipes-support/gmp/gmp_4.2.1.bb b/meta/recipes-
> support/gmp/gmp_4.2.1.bb
> > index 74da6b8..97ac4b2 100644
> > --- a/meta/recipes-support/gmp/gmp_4.2.1.bb
> > +++ b/meta/recipes-support/gmp/gmp_4.2.1.bb
> > @@ -6,7 +6,7 @@ LICENSE = "LGPLv2.1+"
> > LIC_FILES_CHKSUM =
> "file://COPYING;md5=892f569a555ba9c07a568a7c0c4fa63a \
> >
> file://COPYING.LIB;md5=fbc093901857fcd118f065f900982c24 \
> > file://gmp-
> h.in;startline=6;endline=21;md5=5e25ffd16996faba8c1cd27b04b16099"
> > -PR = "r0"
> > +PR = "r1"
> >
> > SRC_URI = "${GNU_MIRROR}/gmp/${BP}.tar.bz2 \
> > file://disable-stdc.patch"
> > diff --git a/meta/recipes-support/gmp/gmp_5.0.2.bb b/meta/recipes-
> support/gmp/gmp_5.0.2.bb
> > index 03fef45..f80971e 100644
> > --- a/meta/recipes-support/gmp/gmp_5.0.2.bb
> > +++ b/meta/recipes-support/gmp/gmp_5.0.2.bb
> > @@ -2,7 +2,7 @@ require gmp.inc
> > LICENSE="LGPLv3&GPLv3"
> > LIC_FILES_CHKSUM =
> "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
> >
> file://version.c;endline=18;md5=d8c56b52b9092346b9f93b4da65ef790"
> > -PR = "r0"
> > +PR = "r1"
> >
> > SRC_URI_append += "file://sh4-asmfix.patch \
> > file://use-includedir.patch "
> > --
> > 1.7.4.4
> >
> >
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
> --
> -Khem
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 17+ messages in thread* Re: [PATCH 2/5] gmp: also generate the libgmpcxx library
2011-10-18 21:06 ` Kamble, Nitin A
@ 2011-10-18 21:13 ` Khem Raj
2011-10-19 0:06 ` Kamble, Nitin A
0 siblings, 1 reply; 17+ messages in thread
From: Khem Raj @ 2011-10-18 21:13 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On (18/10/11 14:06), Kamble, Nitin A wrote:
>
>
> > -----Original Message-----
> > From: openembedded-core-bounces@lists.openembedded.org
> > [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf Of
> > Khem Raj
> > Sent: Tuesday, October 18, 2011 1:54 PM
> > To: Patches and discussions about the oe-core layer
> > Subject: Re: [OE-core] [PATCH 2/5] gmp: also generate the libgmpcxx
> > library
> >
> > On (18/10/11 13:14), nitin.a.kamble@intel.com wrote:
> > > From: Nitin A Kamble <nitin.a.kamble@intel.com>
> > >
> > > Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
> > > ---
> > > meta/recipes-support/gmp/gmp.inc | 2 ++
> > > meta/recipes-support/gmp/gmp_4.2.1.bb | 2 +-
> > > meta/recipes-support/gmp/gmp_5.0.2.bb | 2 +-
> > > 3 files changed, 4 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/meta/recipes-support/gmp/gmp.inc b/meta/recipes-
> > support/gmp/gmp.inc
> > > index 66349e6..77ce10d 100644
> > > --- a/meta/recipes-support/gmp/gmp.inc
> > > +++ b/meta/recipes-support/gmp/gmp.inc
> > > @@ -14,3 +14,5 @@ ARM_INSTRUCTION_SET = "arm"
> > > acpaths = ""
> > >
> > > BBCLASSEXTEND = "native nativesdk"
> > > +
> > > +EXTRA_OECONF += " --enable-cxx=yes"
> >
> > if you want 'yes' then just --enable-cxx is enough have you tried with
> > --enable-cxx=detect that would make sure that C++ compiler and runtime
> > is ok. Secondly is this option needed for native recipes too ?
>
> Thanks Khem for your comments. This option is also needed for native recipe to avoid having gmp-devel installed on the build system. "--enable-cxx=detect" can be used, but I am not sure if it is the best way yet, I think we always have c++ as part of gcc, not having c++ is not a case to worry. And if "detect" tests if c++ & runtime are not working as expected, then it should not disable the enable-cxx option with that reason; better would be to get a recipe build failure. So I still favor keeping the option as "--enable-cxx" until I can see the merit of "detect".
detect can make sure that compilers are working as it expects them to
be. so likely less issues when it is used later.
>
> Thanks,
> Nitin
>
> >
> > > diff --git a/meta/recipes-support/gmp/gmp_4.2.1.bb b/meta/recipes-
> > support/gmp/gmp_4.2.1.bb
> > > index 74da6b8..97ac4b2 100644
> > > --- a/meta/recipes-support/gmp/gmp_4.2.1.bb
> > > +++ b/meta/recipes-support/gmp/gmp_4.2.1.bb
> > > @@ -6,7 +6,7 @@ LICENSE = "LGPLv2.1+"
> > > LIC_FILES_CHKSUM =
> > "file://COPYING;md5=892f569a555ba9c07a568a7c0c4fa63a \
> > >
> > file://COPYING.LIB;md5=fbc093901857fcd118f065f900982c24 \
> > > file://gmp-
> > h.in;startline=6;endline=21;md5=5e25ffd16996faba8c1cd27b04b16099"
> > > -PR = "r0"
> > > +PR = "r1"
> > >
> > > SRC_URI = "${GNU_MIRROR}/gmp/${BP}.tar.bz2 \
> > > file://disable-stdc.patch"
> > > diff --git a/meta/recipes-support/gmp/gmp_5.0.2.bb b/meta/recipes-
> > support/gmp/gmp_5.0.2.bb
> > > index 03fef45..f80971e 100644
> > > --- a/meta/recipes-support/gmp/gmp_5.0.2.bb
> > > +++ b/meta/recipes-support/gmp/gmp_5.0.2.bb
> > > @@ -2,7 +2,7 @@ require gmp.inc
> > > LICENSE="LGPLv3&GPLv3"
> > > LIC_FILES_CHKSUM =
> > "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
> > >
> > file://version.c;endline=18;md5=d8c56b52b9092346b9f93b4da65ef790"
> > > -PR = "r0"
> > > +PR = "r1"
> > >
> > > SRC_URI_append += "file://sh4-asmfix.patch \
> > > file://use-includedir.patch "
> > > --
> > > 1.7.4.4
> > >
> > >
> > > _______________________________________________
> > > Openembedded-core mailing list
> > > Openembedded-core@lists.openembedded.org
> > > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
> >
> > --
> > -Khem
> >
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
--
-Khem
^ permalink raw reply [flat|nested] 17+ messages in thread* Re: [PATCH 2/5] gmp: also generate the libgmpcxx library
2011-10-18 21:13 ` Khem Raj
@ 2011-10-19 0:06 ` Kamble, Nitin A
0 siblings, 0 replies; 17+ messages in thread
From: Kamble, Nitin A @ 2011-10-19 0:06 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
> -----Original Message-----
> From: openembedded-core-bounces@lists.openembedded.org
> [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf Of
> Khem Raj
> Sent: Tuesday, October 18, 2011 2:14 PM
> To: Patches and discussions about the oe-core layer
> Subject: Re: [OE-core] [PATCH 2/5] gmp: also generate the libgmpcxx
> library
>
> On (18/10/11 14:06), Kamble, Nitin A wrote:
> >
> >
> > > -----Original Message-----
> > > From: openembedded-core-bounces@lists.openembedded.org
> > > [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf
> Of
> > > Khem Raj
> > > Sent: Tuesday, October 18, 2011 1:54 PM
> > > To: Patches and discussions about the oe-core layer
> > > Subject: Re: [OE-core] [PATCH 2/5] gmp: also generate the libgmpcxx
> > > library
> > >
> > > On (18/10/11 13:14), nitin.a.kamble@intel.com wrote:
> > > > From: Nitin A Kamble <nitin.a.kamble@intel.com>
> > > >
> > > > Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
> > > > ---
> > > > meta/recipes-support/gmp/gmp.inc | 2 ++
> > > > meta/recipes-support/gmp/gmp_4.2.1.bb | 2 +-
> > > > meta/recipes-support/gmp/gmp_5.0.2.bb | 2 +-
> > > > 3 files changed, 4 insertions(+), 2 deletions(-)
> > > >
> > > > diff --git a/meta/recipes-support/gmp/gmp.inc b/meta/recipes-
> > > support/gmp/gmp.inc
> > > > index 66349e6..77ce10d 100644
> > > > --- a/meta/recipes-support/gmp/gmp.inc
> > > > +++ b/meta/recipes-support/gmp/gmp.inc
> > > > @@ -14,3 +14,5 @@ ARM_INSTRUCTION_SET = "arm"
> > > > acpaths = ""
> > > >
> > > > BBCLASSEXTEND = "native nativesdk"
> > > > +
> > > > +EXTRA_OECONF += " --enable-cxx=yes"
> > >
> > > if you want 'yes' then just --enable-cxx is enough have you tried
> with
> > > --enable-cxx=detect that would make sure that C++ compiler and
> runtime
> > > is ok. Secondly is this option needed for native recipes too ?
> >
> > Thanks Khem for your comments. This option is also needed for native
> recipe to avoid having gmp-devel installed on the build system. "--
> enable-cxx=detect" can be used, but I am not sure if it is the best way
> yet, I think we always have c++ as part of gcc, not having c++ is not a
> case to worry. And if "detect" tests if c++ & runtime are not working
> as expected, then it should not disable the enable-cxx option with that
> reason; better would be to get a recipe build failure. So I still favor
> keeping the option as "--enable-cxx" until I can see the merit of
> "detect".
>
> detect can make sure that compilers are working as it expects them to
> be. so likely less issues when it is used later.
Khem,
When detect fails then configure will get an error, and will not proceed with disabling cxx, so that is good.
# If --enable-cxx=yes but a C++ compiler can't be found, then abort.
if test $want_cxx = no && test $enable_cxx = yes; then
as_fn_error $? "C++ compiler not available, see config.log for details" "$LINENO" 5
fi
Thanks,
Nitin
>
> >
> > Thanks,
> > Nitin
> >
> > >
> > > > diff --git a/meta/recipes-support/gmp/gmp_4.2.1.bb
> b/meta/recipes-
> > > support/gmp/gmp_4.2.1.bb
> > > > index 74da6b8..97ac4b2 100644
> > > > --- a/meta/recipes-support/gmp/gmp_4.2.1.bb
> > > > +++ b/meta/recipes-support/gmp/gmp_4.2.1.bb
> > > > @@ -6,7 +6,7 @@ LICENSE = "LGPLv2.1+"
> > > > LIC_FILES_CHKSUM =
> > > "file://COPYING;md5=892f569a555ba9c07a568a7c0c4fa63a \
> > > >
> > > file://COPYING.LIB;md5=fbc093901857fcd118f065f900982c24 \
> > > > file://gmp-
> > > h.in;startline=6;endline=21;md5=5e25ffd16996faba8c1cd27b04b16099"
> > > > -PR = "r0"
> > > > +PR = "r1"
> > > >
> > > > SRC_URI = "${GNU_MIRROR}/gmp/${BP}.tar.bz2 \
> > > > file://disable-stdc.patch"
> > > > diff --git a/meta/recipes-support/gmp/gmp_5.0.2.bb
> b/meta/recipes-
> > > support/gmp/gmp_5.0.2.bb
> > > > index 03fef45..f80971e 100644
> > > > --- a/meta/recipes-support/gmp/gmp_5.0.2.bb
> > > > +++ b/meta/recipes-support/gmp/gmp_5.0.2.bb
> > > > @@ -2,7 +2,7 @@ require gmp.inc
> > > > LICENSE="LGPLv3&GPLv3"
> > > > LIC_FILES_CHKSUM =
> > > "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
> > > >
> > > file://version.c;endline=18;md5=d8c56b52b9092346b9f93b4da65ef790"
> > > > -PR = "r0"
> > > > +PR = "r1"
> > > >
> > > > SRC_URI_append += "file://sh4-asmfix.patch \
> > > > file://use-includedir.patch "
> > > > --
> > > > 1.7.4.4
> > > >
> > > >
> > > > _______________________________________________
> > > > Openembedded-core mailing list
> > > > Openembedded-core@lists.openembedded.org
> > > > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-
> core
> > >
> > > --
> > > -Khem
> > >
> > > _______________________________________________
> > > Openembedded-core mailing list
> > > Openembedded-core@lists.openembedded.org
> > > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-
> core
> >
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
> --
> -Khem
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH 3/5] python-scons: upgrade from 2.0.1 to 2.1.0
2011-10-18 20:14 [PATCH 0/5] recipe upgrades nitin.a.kamble
2011-10-18 20:14 ` [PATCH 1/5] x86 tune files: set baselib for x32 tune as libx32 nitin.a.kamble
2011-10-18 20:14 ` [PATCH 2/5] gmp: also generate the libgmpcxx library nitin.a.kamble
@ 2011-10-18 20:15 ` nitin.a.kamble
2011-10-18 20:54 ` Khem Raj
2011-10-18 20:15 ` [PATCH 4/5] python-dbus: upgrade from 0.83.2 to 0.84.0 nitin.a.kamble
2011-10-18 20:15 ` [PATCH 5/5] distro-tracking: update data for few of my recipes nitin.a.kamble
4 siblings, 1 reply; 17+ messages in thread
From: nitin.a.kamble @ 2011-10-18 20:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
...ative_2.0.1.bb => python-scons-native_2.1.0.bb} | 3 +--
...python-scons_2.0.1.bb => python-scons_2.1.0.bb} | 6 +++---
2 files changed, 4 insertions(+), 5 deletions(-)
rename meta/recipes-devtools/python/{python-scons-native_2.0.1.bb => python-scons-native_2.1.0.bb} (89%)
rename meta/recipes-devtools/python/{python-scons_2.0.1.bb => python-scons_2.1.0.bb} (51%)
diff --git a/meta/recipes-devtools/python/python-scons-native_2.0.1.bb b/meta/recipes-devtools/python/python-scons-native_2.1.0.bb
similarity index 89%
rename from meta/recipes-devtools/python/python-scons-native_2.0.1.bb
rename to meta/recipes-devtools/python/python-scons-native_2.1.0.bb
index f7646a2..083ad15 100644
--- a/meta/recipes-devtools/python/python-scons-native_2.0.1.bb
+++ b/meta/recipes-devtools/python/python-scons-native_2.1.0.bb
@@ -2,5 +2,4 @@ require python-scons_${PV}.bb
inherit native
DEPENDS = "python-native"
RDEPENDS_${PN} = ""
-PR = "r1"
-
+PR = "r0"
diff --git a/meta/recipes-devtools/python/python-scons_2.0.1.bb b/meta/recipes-devtools/python/python-scons_2.1.0.bb
similarity index 51%
rename from meta/recipes-devtools/python/python-scons_2.0.1.bb
rename to meta/recipes-devtools/python/python-scons_2.1.0.bb
index 1c7939e..22df333 100644
--- a/meta/recipes-devtools/python/python-scons_2.0.1.bb
+++ b/meta/recipes-devtools/python/python-scons_2.1.0.bb
@@ -1,15 +1,15 @@
DESCRIPTION = "A Software Construction Tool"
SECTION = "devel/python"
LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=8481211ebbeaed9cdc7ad5a3b0c98aaf"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=ab8b65435c2e520ed18e67459f1f9bb9"
SRCNAME = "scons"
PR = "r0"
SRC_URI = "${SOURCEFORGE_MIRROR}/scons/scons-${PV}.tar.gz"
-SRC_URI[md5sum] = "beca648b894cdbf85383fffc79516d18"
-SRC_URI[sha256sum] = "0a8151da41c4a26c776c84f44f747ce03e093d43be3e83b38c14a76ab3256762"
+SRC_URI[md5sum] = "47daf989e303a045b76c11236df719df"
+SRC_URI[sha256sum] = "4139ed14f60dd2ebcd47c59984d14705636180eb27b3d1b2949489e514b1921d"
S = "${WORKDIR}/${SRCNAME}-${PV}"
inherit distutils
--
1.7.4.4
^ permalink raw reply related [flat|nested] 17+ messages in thread* Re: [PATCH 3/5] python-scons: upgrade from 2.0.1 to 2.1.0
2011-10-18 20:15 ` [PATCH 3/5] python-scons: upgrade from 2.0.1 to 2.1.0 nitin.a.kamble
@ 2011-10-18 20:54 ` Khem Raj
2011-10-18 21:07 ` Kamble, Nitin A
0 siblings, 1 reply; 17+ messages in thread
From: Khem Raj @ 2011-10-18 20:54 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On (18/10/11 13:15), nitin.a.kamble@intel.com wrote:
> From: Nitin A Kamble <nitin.a.kamble@intel.com>
>
> Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
> ---
> ...ative_2.0.1.bb => python-scons-native_2.1.0.bb} | 3 +--
> ...python-scons_2.0.1.bb => python-scons_2.1.0.bb} | 6 +++---
> 2 files changed, 4 insertions(+), 5 deletions(-)
> rename meta/recipes-devtools/python/{python-scons-native_2.0.1.bb => python-scons-native_2.1.0.bb} (89%)
> rename meta/recipes-devtools/python/{python-scons_2.0.1.bb => python-scons_2.1.0.bb} (51%)
>
> diff --git a/meta/recipes-devtools/python/python-scons-native_2.0.1.bb b/meta/recipes-devtools/python/python-scons-native_2.1.0.bb
> similarity index 89%
> rename from meta/recipes-devtools/python/python-scons-native_2.0.1.bb
> rename to meta/recipes-devtools/python/python-scons-native_2.1.0.bb
> index f7646a2..083ad15 100644
> --- a/meta/recipes-devtools/python/python-scons-native_2.0.1.bb
> +++ b/meta/recipes-devtools/python/python-scons-native_2.1.0.bb
> @@ -2,5 +2,4 @@ require python-scons_${PV}.bb
> inherit native
> DEPENDS = "python-native"
> RDEPENDS_${PN} = ""
> -PR = "r1"
> -
> +PR = "r0"
> diff --git a/meta/recipes-devtools/python/python-scons_2.0.1.bb b/meta/recipes-devtools/python/python-scons_2.1.0.bb
> similarity index 51%
> rename from meta/recipes-devtools/python/python-scons_2.0.1.bb
> rename to meta/recipes-devtools/python/python-scons_2.1.0.bb
> index 1c7939e..22df333 100644
> --- a/meta/recipes-devtools/python/python-scons_2.0.1.bb
> +++ b/meta/recipes-devtools/python/python-scons_2.1.0.bb
> @@ -1,15 +1,15 @@
> DESCRIPTION = "A Software Construction Tool"
> SECTION = "devel/python"
> LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=8481211ebbeaed9cdc7ad5a3b0c98aaf"
> +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=ab8b65435c2e520ed18e67459f1f9bb9"
a little commentary on what changed in license text would be nice here
^ permalink raw reply [flat|nested] 17+ messages in thread* Re: [PATCH 3/5] python-scons: upgrade from 2.0.1 to 2.1.0
2011-10-18 20:54 ` Khem Raj
@ 2011-10-18 21:07 ` Kamble, Nitin A
2011-10-18 21:14 ` Khem Raj
0 siblings, 1 reply; 17+ messages in thread
From: Kamble, Nitin A @ 2011-10-18 21:07 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
> -----Original Message-----
> From: openembedded-core-bounces@lists.openembedded.org
> [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf Of
> Khem Raj
> Sent: Tuesday, October 18, 2011 1:54 PM
> To: Patches and discussions about the oe-core layer
> Subject: Re: [OE-core] [PATCH 3/5] python-scons: upgrade from 2.0.1 to
> 2.1.0
>
> On (18/10/11 13:15), nitin.a.kamble@intel.com wrote:
> > From: Nitin A Kamble <nitin.a.kamble@intel.com>
> >
> > Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
> > ---
> > ...ative_2.0.1.bb => python-scons-native_2.1.0.bb} | 3 +--
> > ...python-scons_2.0.1.bb => python-scons_2.1.0.bb} | 6 +++---
> > 2 files changed, 4 insertions(+), 5 deletions(-)
> > rename meta/recipes-devtools/python/{python-scons-native_2.0.1.bb =>
> python-scons-native_2.1.0.bb} (89%)
> > rename meta/recipes-devtools/python/{python-scons_2.0.1.bb =>
> python-scons_2.1.0.bb} (51%)
> >
> > diff --git a/meta/recipes-devtools/python/python-scons-
> native_2.0.1.bb b/meta/recipes-devtools/python/python-scons-
> native_2.1.0.bb
> > similarity index 89%
> > rename from meta/recipes-devtools/python/python-scons-native_2.0.1.bb
> > rename to meta/recipes-devtools/python/python-scons-native_2.1.0.bb
> > index f7646a2..083ad15 100644
> > --- a/meta/recipes-devtools/python/python-scons-native_2.0.1.bb
> > +++ b/meta/recipes-devtools/python/python-scons-native_2.1.0.bb
> > @@ -2,5 +2,4 @@ require python-scons_${PV}.bb
> > inherit native
> > DEPENDS = "python-native"
> > RDEPENDS_${PN} = ""
> > -PR = "r1"
> > -
> > +PR = "r0"
> > diff --git a/meta/recipes-devtools/python/python-scons_2.0.1.bb
> b/meta/recipes-devtools/python/python-scons_2.1.0.bb
> > similarity index 51%
> > rename from meta/recipes-devtools/python/python-scons_2.0.1.bb
> > rename to meta/recipes-devtools/python/python-scons_2.1.0.bb
> > index 1c7939e..22df333 100644
> > --- a/meta/recipes-devtools/python/python-scons_2.0.1.bb
> > +++ b/meta/recipes-devtools/python/python-scons_2.1.0.bb
> > @@ -1,15 +1,15 @@
> > DESCRIPTION = "A Software Construction Tool"
> > SECTION = "devel/python"
> > LICENSE = "MIT"
> > -LIC_FILES_CHKSUM =
> "file://LICENSE.txt;md5=8481211ebbeaed9cdc7ad5a3b0c98aaf"
> > +LIC_FILES_CHKSUM =
> "file://LICENSE.txt;md5=ab8b65435c2e520ed18e67459f1f9bb9"
>
> a little commentary on what changed in license text would be nice here
The change is copyright year to 2011 :)
Nitin
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 17+ messages in thread* Re: [PATCH 3/5] python-scons: upgrade from 2.0.1 to 2.1.0
2011-10-18 21:07 ` Kamble, Nitin A
@ 2011-10-18 21:14 ` Khem Raj
0 siblings, 0 replies; 17+ messages in thread
From: Khem Raj @ 2011-10-18 21:14 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On (18/10/11 14:07), Kamble, Nitin A wrote:
>
>
> > -----Original Message-----
> > From: openembedded-core-bounces@lists.openembedded.org
> > [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf Of
> > Khem Raj
> > Sent: Tuesday, October 18, 2011 1:54 PM
> > To: Patches and discussions about the oe-core layer
> > Subject: Re: [OE-core] [PATCH 3/5] python-scons: upgrade from 2.0.1 to
> > 2.1.0
> >
> > On (18/10/11 13:15), nitin.a.kamble@intel.com wrote:
> > > From: Nitin A Kamble <nitin.a.kamble@intel.com>
> > >
> > > Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
> > > ---
> > > ...ative_2.0.1.bb => python-scons-native_2.1.0.bb} | 3 +--
> > > ...python-scons_2.0.1.bb => python-scons_2.1.0.bb} | 6 +++---
> > > 2 files changed, 4 insertions(+), 5 deletions(-)
> > > rename meta/recipes-devtools/python/{python-scons-native_2.0.1.bb =>
> > python-scons-native_2.1.0.bb} (89%)
> > > rename meta/recipes-devtools/python/{python-scons_2.0.1.bb =>
> > python-scons_2.1.0.bb} (51%)
> > >
> > > diff --git a/meta/recipes-devtools/python/python-scons-
> > native_2.0.1.bb b/meta/recipes-devtools/python/python-scons-
> > native_2.1.0.bb
> > > similarity index 89%
> > > rename from meta/recipes-devtools/python/python-scons-native_2.0.1.bb
> > > rename to meta/recipes-devtools/python/python-scons-native_2.1.0.bb
> > > index f7646a2..083ad15 100644
> > > --- a/meta/recipes-devtools/python/python-scons-native_2.0.1.bb
> > > +++ b/meta/recipes-devtools/python/python-scons-native_2.1.0.bb
> > > @@ -2,5 +2,4 @@ require python-scons_${PV}.bb
> > > inherit native
> > > DEPENDS = "python-native"
> > > RDEPENDS_${PN} = ""
> > > -PR = "r1"
> > > -
> > > +PR = "r0"
> > > diff --git a/meta/recipes-devtools/python/python-scons_2.0.1.bb
> > b/meta/recipes-devtools/python/python-scons_2.1.0.bb
> > > similarity index 51%
> > > rename from meta/recipes-devtools/python/python-scons_2.0.1.bb
> > > rename to meta/recipes-devtools/python/python-scons_2.1.0.bb
> > > index 1c7939e..22df333 100644
> > > --- a/meta/recipes-devtools/python/python-scons_2.0.1.bb
> > > +++ b/meta/recipes-devtools/python/python-scons_2.1.0.bb
> > > @@ -1,15 +1,15 @@
> > > DESCRIPTION = "A Software Construction Tool"
> > > SECTION = "devel/python"
> > > LICENSE = "MIT"
> > > -LIC_FILES_CHKSUM =
> > "file://LICENSE.txt;md5=8481211ebbeaed9cdc7ad5a3b0c98aaf"
> > > +LIC_FILES_CHKSUM =
> > "file://LICENSE.txt;md5=ab8b65435c2e520ed18e67459f1f9bb9"
> >
> > a little commentary on what changed in license text would be nice here
>
> The change is copyright year to 2011 :)
Adding that to commit log would be nice.
> Nitin
>
> >
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
--
-Khem
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH 4/5] python-dbus: upgrade from 0.83.2 to 0.84.0
2011-10-18 20:14 [PATCH 0/5] recipe upgrades nitin.a.kamble
` (2 preceding siblings ...)
2011-10-18 20:15 ` [PATCH 3/5] python-scons: upgrade from 2.0.1 to 2.1.0 nitin.a.kamble
@ 2011-10-18 20:15 ` nitin.a.kamble
2011-10-18 20:15 ` [PATCH 5/5] distro-tracking: update data for few of my recipes nitin.a.kamble
4 siblings, 0 replies; 17+ messages in thread
From: nitin.a.kamble @ 2011-10-18 20:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
...python-dbus_0.83.2.bb => python-dbus_0.84.0.bb} | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-devtools/python/{python-dbus_0.83.2.bb => python-dbus_0.84.0.bb} (83%)
diff --git a/meta/recipes-devtools/python/python-dbus_0.83.2.bb b/meta/recipes-devtools/python/python-dbus_0.84.0.bb
similarity index 83%
rename from meta/recipes-devtools/python/python-dbus_0.83.2.bb
rename to meta/recipes-devtools/python/python-dbus_0.84.0.bb
index 323dae5..fff8649 100644
--- a/meta/recipes-devtools/python/python-dbus_0.83.2.bb
+++ b/meta/recipes-devtools/python/python-dbus_0.84.0.bb
@@ -8,8 +8,8 @@ PR = "r0"
SRC_URI = "http://dbus.freedesktop.org/releases/dbus-python/dbus-python-${PV}.tar.gz"
-SRC_URI[md5sum] = "4ebcaa905bdcb4132b915196b0a3691b"
-SRC_URI[sha256sum] = "883729c98f40790021e3be0f7028ae863ee1c4a7b922a5578c1342592adfff64"
+SRC_URI[md5sum] = "fe69a2613e824463e74f10913708c88a"
+SRC_URI[sha256sum] = "b85bc7aaf1a976627ca461b1ca7b0c4ddddff709f52fe44c9b2d1d7d8fac5906"
S = "${WORKDIR}/dbus-python-${PV}"
inherit distutils-base autotools pkgconfig
--
1.7.4.4
^ permalink raw reply related [flat|nested] 17+ messages in thread* [PATCH 5/5] distro-tracking: update data for few of my recipes
2011-10-18 20:14 [PATCH 0/5] recipe upgrades nitin.a.kamble
` (3 preceding siblings ...)
2011-10-18 20:15 ` [PATCH 4/5] python-dbus: upgrade from 0.83.2 to 0.84.0 nitin.a.kamble
@ 2011-10-18 20:15 ` nitin.a.kamble
2011-10-18 20:55 ` Khem Raj
4 siblings, 1 reply; 17+ messages in thread
From: nitin.a.kamble @ 2011-10-18 20:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../conf/distro/include/distro_tracking_fields.inc | 38 ++++++++++++--------
1 files changed, 23 insertions(+), 15 deletions(-)
diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc
index abc2cbf..f82189d 100644
--- a/meta/conf/distro/include/distro_tracking_fields.inc
+++ b/meta/conf/distro/include/distro_tracking_fields.inc
@@ -3005,11 +3005,19 @@ RECIPE_STATUS_pn-run-postinsts="green" # all local code
RECIPE_LATEST_VERSION_pn-postinsts="1.0"
RECIPE_MAINTAINER_pn-postinsts = "Nitin A Kamble <nitin.a.kamble@intel.com>"
-RECIPE_STATUS_pn-nasm="green"
+RECIPE_STATUS_pn-nasm="green"
RECIPE_LATEST_VERSION_pn-nasm="2.07"
-RECIPE_MANUAL_CHECK_DATE_pn-nasm = "Jul 06, 2011"
+RECIPE_MANUAL_CHECK_DATE_pn-nasm = "Oct 18, 2011"
+RECIPE_LAST_UPDATE_pn-nasm = "Jun 23, 2010"
RECIPE_MAINTAINER_pn-nasm = "Nitin A Kamble <nitin.a.kamble@intel.com>"
+RECIPE_STATUS_pn-btrfs-tools="green"
+RECIPE_LATEST_VERSION_pn-btrfs-tools="git"
+RECIPE_MANUAL_CHECK_DATE_pn-btrfs-tools = "Oct 18, 2011"
+RECIPE_LAST_UPDATE_pn-btrfs-tools = "Jun 09, 2011"
+RECIPE_MAINTAINER_pn-btrfs-tools = "Nitin A Kamble <nitin.a.kamble@intel.com>"
+DISTRO_PN_ALIAS_pn-btrfs-tools = "Debian=btrfs-tools Fedora=btrfs-progs"
+
RECIPE_STATUS_pn-perl="red" # upgrade needed
RECIPE_LATEST_VERSION_pn-perl="5.12.1"
RECIPE_LAST_UPDATE_pn-perl = "May 27, 2007"
@@ -3020,9 +3028,9 @@ RECIPE_LATEST_VERSION_pn-prelink="1.0+git0+0x909470ee441237563d6236c505cb2d02ddc
RECIPE_LAST_UPDATE_pn-perl = "Jul 23, 2010"
RECIPE_MAINTAINER_pn-prelink = "Mark Hatle <mark.hatle@windriver.com>"
-RECIPE_STATUS_pn-python-dbus="red"
-RECIPE_LATEST_VERSION_pn-python-dbus="0.83.1"
-RECIPE_LAST_UPDATE_pn-python-dbus = "Jul 7, 2010"
+RECIPE_STATUS_pn-python-dbus="green"
+RECIPE_LATEST_VERSION_pn-python-dbus="0.84.0"
+RECIPE_LAST_UPDATE_pn-python-dbus = "Oct 18, 2011"
RECIPE_MAINTAINER_pn-python-dbus = "Nitin A Kamble <nitin.a.kamble@intel.com>"
DISTRO_PN_ALIAS_pn-python-dbus = "Ubuntu=python-dbus Debian=python-dbus Mandriva=python-dbus"
@@ -3062,7 +3070,8 @@ RECIPE_MAINTAINER_pn-python-pyrex = "Nitin A Kamble <nitin.a.kamble@intel.com>"
DISTRO_PN_ALIAS_pn-python-pyrex = "Mandriva=python-pyrex Ubuntu=python-pyrex"
RECIPE_STATUS_pn-python-scons="green"
-RECIPE_LATEST_VERSION_pn-python-scons="2.0.1"
+RECIPE_LATEST_VERSION_pn-python-scons="2.1.0"
+RECIPE_LAST_UPDATE_pn-python-scons = "Oct 18, 2011"
DISTRO_PN_ALIAS_pn-python-scons = "Fedora=scons OpenSuSE=scons Ubuntu=scons Mandriva=scons Debian=scons"
RECIPE_LAST_UPDATE_pn-python-scons = "Nov 8, 2010"
RECIPE_MAINTAINER_pn-python-scons = "Nitin A Kamble <nitin.a.kamble@intel.com>"
@@ -3087,15 +3096,16 @@ RECIPE_LATEST_VERSION_pn-unifdef="2.6.18+git"
RECIPE_MAINTAINER_pn-unifdef = "Nitin A Kamble <nitin.a.kamble@intel.com>"
RECIPE_STATUS_pn-gnu-config="green"
-RECIPE_LATEST_VERSION_pn-gnu-config="0.0+git3155524"
+RECIPE_LATEST_VERSION_pn-gnu-config="svn"
DISTRO_PN_ALIAS_pn-gnu-config = "OpenedHand"
RECIPE_LAST_UPDATE_pn-gnu-config = "Jun 21, 2010"
-RECIPE_MANUAL_CHECK_DATE_pn-gnu-config = "Jul 06, 2011"
+RECIPE_MANUAL_CHECK_DATE_pn-gnu-config = "Oct 18, 2011"
RECIPE_MAINTAINER_pn-gnu-config = "Nitin A Kamble <nitin.a.kamble@intel.com>"
RECIPE_STATUS_pn-mpfr="green"
-RECIPE_LATEST_VERSION_pn-mpfr="3.0.0"
-RECIPE_MANUAL_CHECK_DATE_pn-mpfr = "Jul 06, 2011"
+RECIPE_LATEST_VERSION_pn-mpfr="3.0.1"
+RECIPE_MANUAL_CHECK_DATE_pn-mpfr = "Oct 18, 2011"
+RECIPE_LAST_UPDATE_pn-mpfr = "Apr 07, 2011"
RECIPE_MAINTAINER_pn-mpfr = "Nitin A Kamble <nitin.a.kamble@intel.com>"
RECIPE_STATUS_pn-gmp="green"
@@ -3110,9 +3120,10 @@ RECIPE_MANUAL_CHECK_DATE_pn-libmpc = "Jan 25, 2011"
RECIPE_MAINTAINER_pn-libmpc = "Nitin A Kamble <nitin.a.kamble@intel.com>"
DISTRO_PN_ALIAS_pn-libmpc = "Fedora=libmpc OpenSuse=libmpc2"
-RECIPE_STATUS_pn-byacc="red"
+RECIPE_STATUS_pn-byacc="green"
RECIPE_LATEST_VERSION_pn-byacc="20101229"
-RECIPE_MANUAL_CHECK_DATE_pn-byacc = "Jul 06, 2011"
+RECIPE_MANUAL_CHECK_DATE_pn-byacc = "Oct 18, 2011"
+RECIPE_LAST_UPDATE_pn-byacc = "Oct 18, 2010"
RECIPE_MAINTAINER_pn-byacc = "Nitin A Kamble <nitin.a.kamble@intel.com>"
RECIPE_STATUS_pn-libconvert-asn1-perl="green"
@@ -5922,9 +5933,6 @@ RECIPE_COMMENTS_pn-pseudo = "Yocto Project maintained"
RECIPE_MANUAL_CHECK_DATE_pn-pseudo = "Jun 06, 2011"
DISTRO_PN_ALIAS_pn-pseudo = "Windriver"
-DISTRO_PN_ALIAS_pn-btrfs-tools = "Debian=btrfs-tools Fedora=btrfs-progs"
-RECIPE_MAINTAINER_pn-btrfs-tools = "Nitin A Kamble <nitin.a.kamble@intel.com>"
-
DISTRO_PN_ALIAS_pn-rt-tests = "Debian=rt-tests Ubuntu=rt-tests"
RECIPE_MAINTAINER_pn-rt-tests = "Darren Hart <dvhart@linux.intel.com>"
--
1.7.4.4
^ permalink raw reply related [flat|nested] 17+ messages in thread* Re: [PATCH 5/5] distro-tracking: update data for few of my recipes
2011-10-18 20:15 ` [PATCH 5/5] distro-tracking: update data for few of my recipes nitin.a.kamble
@ 2011-10-18 20:55 ` Khem Raj
0 siblings, 0 replies; 17+ messages in thread
From: Khem Raj @ 2011-10-18 20:55 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On (18/10/11 13:15), nitin.a.kamble@intel.com wrote:
> From: Nitin A Kamble <nitin.a.kamble@intel.com>
>
> Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
subject line could be specific on whats updates instead of my
> ---
> .../conf/distro/include/distro_tracking_fields.inc | 38 ++++++++++++--------
> 1 files changed, 23 insertions(+), 15 deletions(-)
>
> diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc
> index abc2cbf..f82189d 100644
> --- a/meta/conf/distro/include/distro_tracking_fields.inc
> +++ b/meta/conf/distro/include/distro_tracking_fields.inc
> @@ -3005,11 +3005,19 @@ RECIPE_STATUS_pn-run-postinsts="green" # all local code
> RECIPE_LATEST_VERSION_pn-postinsts="1.0"
> RECIPE_MAINTAINER_pn-postinsts = "Nitin A Kamble <nitin.a.kamble@intel.com>"
>
> -RECIPE_STATUS_pn-nasm="green"
> +RECIPE_STATUS_pn-nasm="green"
> RECIPE_LATEST_VERSION_pn-nasm="2.07"
> -RECIPE_MANUAL_CHECK_DATE_pn-nasm = "Jul 06, 2011"
> +RECIPE_MANUAL_CHECK_DATE_pn-nasm = "Oct 18, 2011"
> +RECIPE_LAST_UPDATE_pn-nasm = "Jun 23, 2010"
> RECIPE_MAINTAINER_pn-nasm = "Nitin A Kamble <nitin.a.kamble@intel.com>"
>
> +RECIPE_STATUS_pn-btrfs-tools="green"
> +RECIPE_LATEST_VERSION_pn-btrfs-tools="git"
> +RECIPE_MANUAL_CHECK_DATE_pn-btrfs-tools = "Oct 18, 2011"
> +RECIPE_LAST_UPDATE_pn-btrfs-tools = "Jun 09, 2011"
> +RECIPE_MAINTAINER_pn-btrfs-tools = "Nitin A Kamble <nitin.a.kamble@intel.com>"
> +DISTRO_PN_ALIAS_pn-btrfs-tools = "Debian=btrfs-tools Fedora=btrfs-progs"
> +
> RECIPE_STATUS_pn-perl="red" # upgrade needed
> RECIPE_LATEST_VERSION_pn-perl="5.12.1"
> RECIPE_LAST_UPDATE_pn-perl = "May 27, 2007"
> @@ -3020,9 +3028,9 @@ RECIPE_LATEST_VERSION_pn-prelink="1.0+git0+0x909470ee441237563d6236c505cb2d02ddc
> RECIPE_LAST_UPDATE_pn-perl = "Jul 23, 2010"
> RECIPE_MAINTAINER_pn-prelink = "Mark Hatle <mark.hatle@windriver.com>"
>
> -RECIPE_STATUS_pn-python-dbus="red"
> -RECIPE_LATEST_VERSION_pn-python-dbus="0.83.1"
> -RECIPE_LAST_UPDATE_pn-python-dbus = "Jul 7, 2010"
> +RECIPE_STATUS_pn-python-dbus="green"
> +RECIPE_LATEST_VERSION_pn-python-dbus="0.84.0"
> +RECIPE_LAST_UPDATE_pn-python-dbus = "Oct 18, 2011"
> RECIPE_MAINTAINER_pn-python-dbus = "Nitin A Kamble <nitin.a.kamble@intel.com>"
> DISTRO_PN_ALIAS_pn-python-dbus = "Ubuntu=python-dbus Debian=python-dbus Mandriva=python-dbus"
>
> @@ -3062,7 +3070,8 @@ RECIPE_MAINTAINER_pn-python-pyrex = "Nitin A Kamble <nitin.a.kamble@intel.com>"
> DISTRO_PN_ALIAS_pn-python-pyrex = "Mandriva=python-pyrex Ubuntu=python-pyrex"
>
> RECIPE_STATUS_pn-python-scons="green"
> -RECIPE_LATEST_VERSION_pn-python-scons="2.0.1"
> +RECIPE_LATEST_VERSION_pn-python-scons="2.1.0"
> +RECIPE_LAST_UPDATE_pn-python-scons = "Oct 18, 2011"
> DISTRO_PN_ALIAS_pn-python-scons = "Fedora=scons OpenSuSE=scons Ubuntu=scons Mandriva=scons Debian=scons"
> RECIPE_LAST_UPDATE_pn-python-scons = "Nov 8, 2010"
> RECIPE_MAINTAINER_pn-python-scons = "Nitin A Kamble <nitin.a.kamble@intel.com>"
> @@ -3087,15 +3096,16 @@ RECIPE_LATEST_VERSION_pn-unifdef="2.6.18+git"
> RECIPE_MAINTAINER_pn-unifdef = "Nitin A Kamble <nitin.a.kamble@intel.com>"
>
> RECIPE_STATUS_pn-gnu-config="green"
> -RECIPE_LATEST_VERSION_pn-gnu-config="0.0+git3155524"
> +RECIPE_LATEST_VERSION_pn-gnu-config="svn"
> DISTRO_PN_ALIAS_pn-gnu-config = "OpenedHand"
> RECIPE_LAST_UPDATE_pn-gnu-config = "Jun 21, 2010"
> -RECIPE_MANUAL_CHECK_DATE_pn-gnu-config = "Jul 06, 2011"
> +RECIPE_MANUAL_CHECK_DATE_pn-gnu-config = "Oct 18, 2011"
> RECIPE_MAINTAINER_pn-gnu-config = "Nitin A Kamble <nitin.a.kamble@intel.com>"
>
> RECIPE_STATUS_pn-mpfr="green"
> -RECIPE_LATEST_VERSION_pn-mpfr="3.0.0"
> -RECIPE_MANUAL_CHECK_DATE_pn-mpfr = "Jul 06, 2011"
> +RECIPE_LATEST_VERSION_pn-mpfr="3.0.1"
> +RECIPE_MANUAL_CHECK_DATE_pn-mpfr = "Oct 18, 2011"
> +RECIPE_LAST_UPDATE_pn-mpfr = "Apr 07, 2011"
> RECIPE_MAINTAINER_pn-mpfr = "Nitin A Kamble <nitin.a.kamble@intel.com>"
>
> RECIPE_STATUS_pn-gmp="green"
> @@ -3110,9 +3120,10 @@ RECIPE_MANUAL_CHECK_DATE_pn-libmpc = "Jan 25, 2011"
> RECIPE_MAINTAINER_pn-libmpc = "Nitin A Kamble <nitin.a.kamble@intel.com>"
> DISTRO_PN_ALIAS_pn-libmpc = "Fedora=libmpc OpenSuse=libmpc2"
>
> -RECIPE_STATUS_pn-byacc="red"
> +RECIPE_STATUS_pn-byacc="green"
> RECIPE_LATEST_VERSION_pn-byacc="20101229"
> -RECIPE_MANUAL_CHECK_DATE_pn-byacc = "Jul 06, 2011"
> +RECIPE_MANUAL_CHECK_DATE_pn-byacc = "Oct 18, 2011"
> +RECIPE_LAST_UPDATE_pn-byacc = "Oct 18, 2010"
> RECIPE_MAINTAINER_pn-byacc = "Nitin A Kamble <nitin.a.kamble@intel.com>"
>
> RECIPE_STATUS_pn-libconvert-asn1-perl="green"
> @@ -5922,9 +5933,6 @@ RECIPE_COMMENTS_pn-pseudo = "Yocto Project maintained"
> RECIPE_MANUAL_CHECK_DATE_pn-pseudo = "Jun 06, 2011"
> DISTRO_PN_ALIAS_pn-pseudo = "Windriver"
>
> -DISTRO_PN_ALIAS_pn-btrfs-tools = "Debian=btrfs-tools Fedora=btrfs-progs"
> -RECIPE_MAINTAINER_pn-btrfs-tools = "Nitin A Kamble <nitin.a.kamble@intel.com>"
> -
> DISTRO_PN_ALIAS_pn-rt-tests = "Debian=rt-tests Ubuntu=rt-tests"
> RECIPE_MAINTAINER_pn-rt-tests = "Darren Hart <dvhart@linux.intel.com>"
>
> --
> 1.7.4.4
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
--
-Khem
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH 0/5] Recipe upgrades
@ 2011-10-25 21:32 Scott Garman
2011-10-27 7:31 ` Richard Purdie
0 siblings, 1 reply; 17+ messages in thread
From: Scott Garman @ 2011-10-25 21:32 UTC (permalink / raw)
To: openembedded-core
Hello,
Here is a set of some straightfoward recipe upgrades: sudo, grep,
mtools, and openssh.
Build testing: These have been successfully built for all 5 qemu
architectures.
Runtime testing: I have performed basic runtime testing for all of
these recipe upgrades as well within a qemux86 session.
The following changes since commit f586aaa8d00361a9597a546d665077c75cf4d520:
libxml-parser-perl, libxml-simple-perl, expat, sgmlspl-native, git: bump PR to rebuild after perl upgrade (2011-10-25 08:36:01 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib sgarman/recipe-upgrades-final
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/recipe-upgrades-final
Scott Garman (5):
sudo: upgrade to 1.8.3
grep: upgrade to 2.9
mtools: upgrade to 4.0.17
openssh: upgrade to 5.9p1
distro_tracking_fields: updates for sudo, mtools, grep, and openssh
.../conf/distro/include/distro_tracking_fields.inc | 32 ++++++++++----------
.../openssh/{openssh-5.8p2 => openssh-5.9p1}/init | 0
.../{openssh-5.8p2 => openssh-5.9p1}/nostrip.patch | 0
.../{openssh-5.8p2 => openssh-5.9p1}/ssh_config | 0
.../openssh/{openssh-5.8p2 => openssh-5.9p1}/sshd | 0
.../{openssh-5.8p2 => openssh-5.9p1}/sshd_config | 0
.../openssh/{openssh_5.8p2.bb => openssh_5.9p1.bb} | 4 +-
.../mtools/{mtools_4.0.16.bb => mtools_4.0.17.bb} | 4 +-
.../grep/{grep_2.8.bb => grep_2.9.bb} | 4 +-
.../sudo/{sudo_1.8.1p2.bb => sudo_1.8.3.bb} | 6 ++--
10 files changed, 25 insertions(+), 25 deletions(-)
rename meta/recipes-connectivity/openssh/{openssh-5.8p2 => openssh-5.9p1}/init (100%)
rename meta/recipes-connectivity/openssh/{openssh-5.8p2 => openssh-5.9p1}/nostrip.patch (100%)
rename meta/recipes-connectivity/openssh/{openssh-5.8p2 => openssh-5.9p1}/ssh_config (100%)
rename meta/recipes-connectivity/openssh/{openssh-5.8p2 => openssh-5.9p1}/sshd (100%)
rename meta/recipes-connectivity/openssh/{openssh-5.8p2 => openssh-5.9p1}/sshd_config (100%)
rename meta/recipes-connectivity/openssh/{openssh_5.8p2.bb => openssh_5.9p1.bb} (96%)
rename meta/recipes-devtools/mtools/{mtools_4.0.16.bb => mtools_4.0.17.bb} (80%)
rename meta/recipes-extended/grep/{grep_2.8.bb => grep_2.9.bb} (88%)
rename meta/recipes-extended/sudo/{sudo_1.8.1p2.bb => sudo_1.8.3.bb} (82%)
--
1.7.5.4
^ permalink raw reply [flat|nested] 17+ messages in thread* Re: [PATCH 0/5] Recipe upgrades
2011-10-25 21:32 [PATCH 0/5] Recipe upgrades Scott Garman
@ 2011-10-27 7:31 ` Richard Purdie
0 siblings, 0 replies; 17+ messages in thread
From: Richard Purdie @ 2011-10-27 7:31 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Tue, 2011-10-25 at 14:32 -0700, Scott Garman wrote:
> Hello,
>
> Here is a set of some straightfoward recipe upgrades: sudo, grep,
> mtools, and openssh.
>
> Build testing: These have been successfully built for all 5 qemu
> architectures.
>
> Runtime testing: I have performed basic runtime testing for all of
> these recipe upgrades as well within a qemux86 session.
>
> The following changes since commit f586aaa8d00361a9597a546d665077c75cf4d520:
>
> libxml-parser-perl, libxml-simple-perl, expat, sgmlspl-native, git: bump PR to rebuild after perl upgrade (2011-10-25 08:36:01 +0100)
>
> are available in the git repository at:
> git://git.pokylinux.org/poky-contrib sgarman/recipe-upgrades-final
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/recipe-upgrades-final
>
> Scott Garman (5):
> sudo: upgrade to 1.8.3
> grep: upgrade to 2.9
> mtools: upgrade to 4.0.17
> openssh: upgrade to 5.9p1
I've merged the above, the distro tracking had feedback from Saul.
Cheers,
Richard
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH 0/5] Recipe upgrades
@ 2021-06-06 22:20 Tim Orling
0 siblings, 0 replies; 17+ messages in thread
From: Tim Orling @ 2021-06-06 22:20 UTC (permalink / raw)
To: openembedded-core; +Cc: Tim Orling
Update maintainer email.
Upgrade python3-scons and fix upstream check.
AUH upgrades to:
* python3-hypothesis
* python3-importlib-metadata
* at-spi2-core
Tested on qemux86-64 core-image-full-cmdline and core-image-weston
The following changes since commit d6b62b5a9d6c64971b9f981a4732791658150e43:
nativesdk-libdnf: fix installed and not shipped files (2021-06-03 23:09:18 +0100)
are available in the Git repository at:
git://push.openembedded.org/openembedded-core-contrib timo/recipe-upgrades-20210606
Tim Orling (5):
maintainers.inc: update email address
python3-scons: upgrade 3.1.2 -> 4.1.0; simplify
python3-hypothesis: upgrade 6.13.7 -> 6.13.14
python3-importlib-metadata: upgrade 4.3.0 -> 4.5.0
at-spi2-core: upgrade 2.40.1 -> 2.40.2
meta/conf/distro/include/maintainers.inc | 68 +++++++++----------
....13.7.bb => python3-hypothesis_6.13.14.bb} | 4 +-
...bb => python3-importlib-metadata_4.5.0.bb} | 2 +-
...3.1.2.bb => python3-scons-native_4.1.0.bb} | 0
.../0001-Fix-man-page-installation.patch | 46 +++++++++++++
.../python/python3-scons_3.1.2.bb | 34 ----------
.../python/python3-scons_4.1.0.bb | 27 ++++++++
...-core_2.40.1.bb => at-spi2-core_2.40.2.bb} | 2 +-
8 files changed, 111 insertions(+), 72 deletions(-)
rename meta/recipes-devtools/python/{python3-hypothesis_6.13.7.bb => python3-hypothesis_6.13.14.bb} (77%)
rename meta/recipes-devtools/python/{python3-importlib-metadata_4.3.0.bb => python3-importlib-metadata_4.5.0.bb} (88%)
rename meta/recipes-devtools/python/{python3-scons-native_3.1.2.bb => python3-scons-native_4.1.0.bb} (100%)
create mode 100644 meta/recipes-devtools/python/python3-scons/0001-Fix-man-page-installation.patch
delete mode 100644 meta/recipes-devtools/python/python3-scons_3.1.2.bb
create mode 100644 meta/recipes-devtools/python/python3-scons_4.1.0.bb
rename meta/recipes-support/atk/{at-spi2-core_2.40.1.bb => at-spi2-core_2.40.2.bb} (94%)
--
2.29.2
^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2021-06-06 22:20 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-18 20:14 [PATCH 0/5] recipe upgrades nitin.a.kamble
2011-10-18 20:14 ` [PATCH 1/5] x86 tune files: set baselib for x32 tune as libx32 nitin.a.kamble
2011-10-18 20:14 ` [PATCH 2/5] gmp: also generate the libgmpcxx library nitin.a.kamble
2011-10-18 20:53 ` Khem Raj
2011-10-18 21:06 ` Kamble, Nitin A
2011-10-18 21:13 ` Khem Raj
2011-10-19 0:06 ` Kamble, Nitin A
2011-10-18 20:15 ` [PATCH 3/5] python-scons: upgrade from 2.0.1 to 2.1.0 nitin.a.kamble
2011-10-18 20:54 ` Khem Raj
2011-10-18 21:07 ` Kamble, Nitin A
2011-10-18 21:14 ` Khem Raj
2011-10-18 20:15 ` [PATCH 4/5] python-dbus: upgrade from 0.83.2 to 0.84.0 nitin.a.kamble
2011-10-18 20:15 ` [PATCH 5/5] distro-tracking: update data for few of my recipes nitin.a.kamble
2011-10-18 20:55 ` Khem Raj
-- strict thread matches above, loose matches on Subject: below --
2011-10-25 21:32 [PATCH 0/5] Recipe upgrades Scott Garman
2011-10-27 7:31 ` Richard Purdie
2021-06-06 22:20 Tim Orling
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox