All of lore.kernel.org
 help / color / mirror / Atom feed
* [2011.03-maintenance] fakeroot: Move from not fetchable 1.14.5 to 1.15.1
@ 2011-06-10 13:48 George C. Huntington III
  2011-06-10 14:00 ` George C. Huntington III
  2011-06-10 22:44 ` Tom Rini
  0 siblings, 2 replies; 5+ messages in thread
From: George C. Huntington III @ 2011-06-10 13:48 UTC (permalink / raw)
  To: openembedded-devel

From: Florian Boor <florian.boor@kernelconcepts.de>

Fakeroot 1.14.5 was not fetchable any more. Updating to 1.15.1.

Test environment:
    BB_VERSION        = "1.10.2"
    METADATA_BRANCH   = "org.openembedded.dev"
    TARGET_ARCH       = "arm"
    TARGET_OS         = "linux-gnueabi"
    MACHINE           = "mainstone"
    DISTRO            = "minimal"
    DISTRO_VERSION    = "dev-snapshot-20110504"
    TARGET_FPU        = "soft"

Signed-off-by: Florian Boor <florian.boor@kernelconcepts.de>
---
 recipes/fakeroot/fakeroot-1.14.5/fix-prefix.patch  |   15 ---------------
 .../fakeroot-1.14.5/quiet-getopt-check.patch       |   12 ------------
 recipes/fakeroot/fakeroot-1.15.1/fix-prefix.patch  |   15 +++++++++++++++
 .../fakeroot-1.15.1/quiet-getopt-check.patch       |   12 ++++++++++++
 recipes/fakeroot/fakeroot_1.14.5.bb                |   10 ----------
 recipes/fakeroot/fakeroot_1.15.1.bb                |   10 ++++++++++
 6 files changed, 37 insertions(+), 37 deletions(-)
 delete mode 100644 recipes/fakeroot/fakeroot-1.14.5/fix-prefix.patch
 delete mode 100644 recipes/fakeroot/fakeroot-1.14.5/quiet-getopt-check.patch
 create mode 100644 recipes/fakeroot/fakeroot-1.15.1/fix-prefix.patch
 create mode 100644 recipes/fakeroot/fakeroot-1.15.1/quiet-getopt-check.patch
 delete mode 100644 recipes/fakeroot/fakeroot_1.14.5.bb
 create mode 100644 recipes/fakeroot/fakeroot_1.15.1.bb

diff --git a/recipes/fakeroot/fakeroot-1.14.5/fix-prefix.patch b/recipes/fakeroot/fakeroot-1.14.5/fix-prefix.patch
deleted file mode 100644
index 72e7528..0000000
--- a/recipes/fakeroot/fakeroot-1.14.5/fix-prefix.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-This is not needed, kept just for reference.
-
---- fakeroot-1.14.5.orig/scripts/fakeroot.in	2009-11-15 04:09:21.000000000 +0100
-+++ fakeroot-1.14.5/scripts/fakeroot.in	2011-01-12 20:10:02.897300394 +0100
-@@ -30,8 +30,8 @@ fatal ()
- }
- 
- # strip /bin/fakeroot to find install prefix
--FAKEROOT_PREFIX=@prefix@
--FAKEROOT_BINDIR=@bindir@
-+FAKEROOT_BINDIR=`dirname $0`
-+FAKEROOT_PREFIX=`dirname ${FAKEROOT_BINDIR}`
- 
- USEABSLIBPATH=@LDPRELOADABS@
- LIB=lib@fakeroot_transformed@@DLSUFFIX@
diff --git a/recipes/fakeroot/fakeroot-1.14.5/quiet-getopt-check.patch b/recipes/fakeroot/fakeroot-1.14.5/quiet-getopt-check.patch
deleted file mode 100644
index bcb9083..0000000
--- a/recipes/fakeroot/fakeroot-1.14.5/quiet-getopt-check.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-busybox provided getopt prints the help-text on stderr.
---- fakeroot-1.14.5.orig/scripts/fakeroot.in	2009-11-15 04:09:21.000000000 +0100
-+++ fakeroot-1.14.5/scripts/fakeroot.in	2011-01-12 20:11:50.059891996 +0100
-@@ -43,7 +43,7 @@ export FAKED_MODE
- 
- libfound=no
- 
--GETOPTEST=`getopt --version`
-+GETOPTEST=`getopt --version 2> /dev/null`
- case $GETOPTEST in
- getopt*) # GNU getopt
-     FAKE_TEMP=`getopt -l lib: -l faked: -l unknown-is-real -l fd-base: -l version -l help -- +l:f:i:s:ub:vh "$@"`
diff --git a/recipes/fakeroot/fakeroot-1.15.1/fix-prefix.patch b/recipes/fakeroot/fakeroot-1.15.1/fix-prefix.patch
new file mode 100644
index 0000000..72e7528
--- /dev/null
+++ b/recipes/fakeroot/fakeroot-1.15.1/fix-prefix.patch
@@ -0,0 +1,15 @@
+This is not needed, kept just for reference.
+
+--- fakeroot-1.14.5.orig/scripts/fakeroot.in	2009-11-15 04:09:21.000000000 +0100
++++ fakeroot-1.14.5/scripts/fakeroot.in	2011-01-12 20:10:02.897300394 +0100
+@@ -30,8 +30,8 @@ fatal ()
+ }
+ 
+ # strip /bin/fakeroot to find install prefix
+-FAKEROOT_PREFIX=@prefix@
+-FAKEROOT_BINDIR=@bindir@
++FAKEROOT_BINDIR=`dirname $0`
++FAKEROOT_PREFIX=`dirname ${FAKEROOT_BINDIR}`
+ 
+ USEABSLIBPATH=@LDPRELOADABS@
+ LIB=lib@fakeroot_transformed@@DLSUFFIX@
diff --git a/recipes/fakeroot/fakeroot-1.15.1/quiet-getopt-check.patch b/recipes/fakeroot/fakeroot-1.15.1/quiet-getopt-check.patch
new file mode 100644
index 0000000..bcb9083
--- /dev/null
+++ b/recipes/fakeroot/fakeroot-1.15.1/quiet-getopt-check.patch
@@ -0,0 +1,12 @@
+busybox provided getopt prints the help-text on stderr.
+--- fakeroot-1.14.5.orig/scripts/fakeroot.in	2009-11-15 04:09:21.000000000 +0100
++++ fakeroot-1.14.5/scripts/fakeroot.in	2011-01-12 20:11:50.059891996 +0100
+@@ -43,7 +43,7 @@ export FAKED_MODE
+ 
+ libfound=no
+ 
+-GETOPTEST=`getopt --version`
++GETOPTEST=`getopt --version 2> /dev/null`
+ case $GETOPTEST in
+ getopt*) # GNU getopt
+     FAKE_TEMP=`getopt -l lib: -l faked: -l unknown-is-real -l fd-base: -l version -l help -- +l:f:i:s:ub:vh "$@"`
diff --git a/recipes/fakeroot/fakeroot_1.14.5.bb b/recipes/fakeroot/fakeroot_1.14.5.bb
deleted file mode 100644
index ff6844d..0000000
--- a/recipes/fakeroot/fakeroot_1.14.5.bb
+++ /dev/null
@@ -1,10 +0,0 @@
-require fakeroot.inc
-PR = "${INC_PR}.0"
-
-SRC_URI =+ "\
-  ${DEBIAN_MIRROR}/main/f/fakeroot/fakeroot_${PV}.orig.tar.bz2 \
-  file://quiet-getopt-check.patch \
-"
-
-SRC_URI[md5sum] = "659a1f3a36554abfc2a3eaad2fdc0604"
-SRC_URI[sha256] = "b035c834944bf9482027f48c388de8492e96609825265ac03f05408d0b3aae68"
diff --git a/recipes/fakeroot/fakeroot_1.15.1.bb b/recipes/fakeroot/fakeroot_1.15.1.bb
new file mode 100644
index 0000000..4c625ca
--- /dev/null
+++ b/recipes/fakeroot/fakeroot_1.15.1.bb
@@ -0,0 +1,10 @@
+require fakeroot.inc
+PR = "${INC_PR}.0"
+
+SRC_URI =+ "\
+  ${DEBIAN_MIRROR}/main/f/fakeroot/fakeroot_${PV}.orig.tar.bz2 \
+  file://quiet-getopt-check.patch \
+"
+
+SRC_URI[md5sum] = "248c408b1e06e776c5739871b49bd968"
+SRC_URI[sha256sum] = "45fbb9ad611f33224cc09954963dde563cc80fe58c76feb25b6e98550b81729a"
-- 
1.7.4.1




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

* Re: [2011.03-maintenance] fakeroot: Move from not fetchable 1.14.5 to 1.15.1
  2011-06-10 13:48 [2011.03-maintenance] fakeroot: Move from not fetchable 1.14.5 to 1.15.1 George C. Huntington III
@ 2011-06-10 14:00 ` George C. Huntington III
  2011-06-10 22:44 ` Tom Rini
  1 sibling, 0 replies; 5+ messages in thread
From: George C. Huntington III @ 2011-06-10 14:00 UTC (permalink / raw)
  To: openembedded-devel

please apply to 2011.03-maintenance branch

Cherry-picked from 085dc5e99abf98772bfb44f3f25320418d500740
Tested-By: George C. Huntington III <gchiii@mtiemail.com>

On 06/10/2011 09:48 AM, George C. Huntington III wrote:
> From: Florian Boor <florian.boor@kernelconcepts.de>
>
> Fakeroot 1.14.5 was not fetchable any more. Updating to 1.15.1.
>
> Test environment:
>     BB_VERSION        = "1.10.2"
>     METADATA_BRANCH   = "org.openembedded.dev"
>     TARGET_ARCH       = "arm"
>     TARGET_OS         = "linux-gnueabi"
>     MACHINE           = "mainstone"
>     DISTRO            = "minimal"
>     DISTRO_VERSION    = "dev-snapshot-20110504"
>     TARGET_FPU        = "soft"
>
> Signed-off-by: Florian Boor <florian.boor@kernelconcepts.de>
> ---
>  recipes/fakeroot/fakeroot-1.14.5/fix-prefix.patch  |   15 ---------------
>  .../fakeroot-1.14.5/quiet-getopt-check.patch       |   12 ------------
>  recipes/fakeroot/fakeroot-1.15.1/fix-prefix.patch  |   15 +++++++++++++++
>  .../fakeroot-1.15.1/quiet-getopt-check.patch       |   12 ++++++++++++
>  recipes/fakeroot/fakeroot_1.14.5.bb                |   10 ----------
>  recipes/fakeroot/fakeroot_1.15.1.bb                |   10 ++++++++++
>  6 files changed, 37 insertions(+), 37 deletions(-)
>  delete mode 100644 recipes/fakeroot/fakeroot-1.14.5/fix-prefix.patch
>  delete mode 100644 recipes/fakeroot/fakeroot-1.14.5/quiet-getopt-check.patch
>  create mode 100644 recipes/fakeroot/fakeroot-1.15.1/fix-prefix.patch
>  create mode 100644 recipes/fakeroot/fakeroot-1.15.1/quiet-getopt-check.patch
>  delete mode 100644 recipes/fakeroot/fakeroot_1.14.5.bb
>  create mode 100644 recipes/fakeroot/fakeroot_1.15.1.bb
>
> diff --git a/recipes/fakeroot/fakeroot-1.14.5/fix-prefix.patch b/recipes/fakeroot/fakeroot-1.14.5/fix-prefix.patch
> deleted file mode 100644
> index 72e7528..0000000
> --- a/recipes/fakeroot/fakeroot-1.14.5/fix-prefix.patch
> +++ /dev/null
> @@ -1,15 +0,0 @@
> -This is not needed, kept just for reference.
> -
> ---- fakeroot-1.14.5.orig/scripts/fakeroot.in	2009-11-15 04:09:21.000000000 +0100
> -+++ fakeroot-1.14.5/scripts/fakeroot.in	2011-01-12 20:10:02.897300394 +0100
> -@@ -30,8 +30,8 @@ fatal ()
> - }
> - 
> - # strip /bin/fakeroot to find install prefix
> --FAKEROOT_PREFIX=@prefix@
> --FAKEROOT_BINDIR=@bindir@
> -+FAKEROOT_BINDIR=`dirname $0`
> -+FAKEROOT_PREFIX=`dirname ${FAKEROOT_BINDIR}`
> - 
> - USEABSLIBPATH=@LDPRELOADABS@
> - LIB=lib@fakeroot_transformed@@DLSUFFIX@
> diff --git a/recipes/fakeroot/fakeroot-1.14.5/quiet-getopt-check.patch b/recipes/fakeroot/fakeroot-1.14.5/quiet-getopt-check.patch
> deleted file mode 100644
> index bcb9083..0000000
> --- a/recipes/fakeroot/fakeroot-1.14.5/quiet-getopt-check.patch
> +++ /dev/null
> @@ -1,12 +0,0 @@
> -busybox provided getopt prints the help-text on stderr.
> ---- fakeroot-1.14.5.orig/scripts/fakeroot.in	2009-11-15 04:09:21.000000000 +0100
> -+++ fakeroot-1.14.5/scripts/fakeroot.in	2011-01-12 20:11:50.059891996 +0100
> -@@ -43,7 +43,7 @@ export FAKED_MODE
> - 
> - libfound=no
> - 
> --GETOPTEST=`getopt --version`
> -+GETOPTEST=`getopt --version 2> /dev/null`
> - case $GETOPTEST in
> - getopt*) # GNU getopt
> -     FAKE_TEMP=`getopt -l lib: -l faked: -l unknown-is-real -l fd-base: -l version -l help -- +l:f:i:s:ub:vh "$@"`
> diff --git a/recipes/fakeroot/fakeroot-1.15.1/fix-prefix.patch b/recipes/fakeroot/fakeroot-1.15.1/fix-prefix.patch
> new file mode 100644
> index 0000000..72e7528
> --- /dev/null
> +++ b/recipes/fakeroot/fakeroot-1.15.1/fix-prefix.patch
> @@ -0,0 +1,15 @@
> +This is not needed, kept just for reference.
> +
> +--- fakeroot-1.14.5.orig/scripts/fakeroot.in	2009-11-15 04:09:21.000000000 +0100
> ++++ fakeroot-1.14.5/scripts/fakeroot.in	2011-01-12 20:10:02.897300394 +0100
> +@@ -30,8 +30,8 @@ fatal ()
> + }
> + 
> + # strip /bin/fakeroot to find install prefix
> +-FAKEROOT_PREFIX=@prefix@
> +-FAKEROOT_BINDIR=@bindir@
> ++FAKEROOT_BINDIR=`dirname $0`
> ++FAKEROOT_PREFIX=`dirname ${FAKEROOT_BINDIR}`
> + 
> + USEABSLIBPATH=@LDPRELOADABS@
> + LIB=lib@fakeroot_transformed@@DLSUFFIX@
> diff --git a/recipes/fakeroot/fakeroot-1.15.1/quiet-getopt-check.patch b/recipes/fakeroot/fakeroot-1.15.1/quiet-getopt-check.patch
> new file mode 100644
> index 0000000..bcb9083
> --- /dev/null
> +++ b/recipes/fakeroot/fakeroot-1.15.1/quiet-getopt-check.patch
> @@ -0,0 +1,12 @@
> +busybox provided getopt prints the help-text on stderr.
> +--- fakeroot-1.14.5.orig/scripts/fakeroot.in	2009-11-15 04:09:21.000000000 +0100
> ++++ fakeroot-1.14.5/scripts/fakeroot.in	2011-01-12 20:11:50.059891996 +0100
> +@@ -43,7 +43,7 @@ export FAKED_MODE
> + 
> + libfound=no
> + 
> +-GETOPTEST=`getopt --version`
> ++GETOPTEST=`getopt --version 2> /dev/null`
> + case $GETOPTEST in
> + getopt*) # GNU getopt
> +     FAKE_TEMP=`getopt -l lib: -l faked: -l unknown-is-real -l fd-base: -l version -l help -- +l:f:i:s:ub:vh "$@"`
> diff --git a/recipes/fakeroot/fakeroot_1.14.5.bb b/recipes/fakeroot/fakeroot_1.14.5.bb
> deleted file mode 100644
> index ff6844d..0000000
> --- a/recipes/fakeroot/fakeroot_1.14.5.bb
> +++ /dev/null
> @@ -1,10 +0,0 @@
> -require fakeroot.inc
> -PR = "${INC_PR}.0"
> -
> -SRC_URI =+ "\
> -  ${DEBIAN_MIRROR}/main/f/fakeroot/fakeroot_${PV}.orig.tar.bz2 \
> -  file://quiet-getopt-check.patch \
> -"
> -
> -SRC_URI[md5sum] = "659a1f3a36554abfc2a3eaad2fdc0604"
> -SRC_URI[sha256] = "b035c834944bf9482027f48c388de8492e96609825265ac03f05408d0b3aae68"
> diff --git a/recipes/fakeroot/fakeroot_1.15.1.bb b/recipes/fakeroot/fakeroot_1.15.1.bb
> new file mode 100644
> index 0000000..4c625ca
> --- /dev/null
> +++ b/recipes/fakeroot/fakeroot_1.15.1.bb
> @@ -0,0 +1,10 @@
> +require fakeroot.inc
> +PR = "${INC_PR}.0"
> +
> +SRC_URI =+ "\
> +  ${DEBIAN_MIRROR}/main/f/fakeroot/fakeroot_${PV}.orig.tar.bz2 \
> +  file://quiet-getopt-check.patch \
> +"
> +
> +SRC_URI[md5sum] = "248c408b1e06e776c5739871b49bd968"
> +SRC_URI[sha256sum] = "45fbb9ad611f33224cc09954963dde563cc80fe58c76feb25b6e98550b81729a"
>   



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

* Re: [2011.03-maintenance] fakeroot: Move from not fetchable 1.14.5 to 1.15.1
  2011-06-10 13:48 [2011.03-maintenance] fakeroot: Move from not fetchable 1.14.5 to 1.15.1 George C. Huntington III
  2011-06-10 14:00 ` George C. Huntington III
@ 2011-06-10 22:44 ` Tom Rini
  2011-06-13 14:11   ` George C. Huntington, III
  1 sibling, 1 reply; 5+ messages in thread
From: Tom Rini @ 2011-06-10 22:44 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 06/10/2011 06:48 AM, George C. Huntington III wrote:
> From: Florian Boor <florian.boor@kernelconcepts.de>
> 
> Fakeroot 1.14.5 was not fetchable any more. Updating to 1.15.1.
> 
> Test environment:
>     BB_VERSION        = "1.10.2"
>     METADATA_BRANCH   = "org.openembedded.dev"
>     TARGET_ARCH       = "arm"
>     TARGET_OS         = "linux-gnueabi"
>     MACHINE           = "mainstone"
>     DISTRO            = "minimal"
>     DISTRO_VERSION    = "dev-snapshot-20110504"
>     TARGET_FPU        = "soft"
> 
> Signed-off-by: Florian Boor <florian.boor@kernelconcepts.de>

For 2011.03-maintenance I'm going to NAK this.  A mirror setup is
required as we aren't trying to keep up to date with the tzdata/tzcode
mess and these are available via the angstrom mirror (and if needed
could be put on the regular OE mirror).  Thanks for your interest in the
stable branch, all the same!

- -- 
Tom Rini
Mentor Graphics Corporation
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJN8p4uAAoJEI4NMjfc3nJxBFQH/3V2UzwjerwjMX2fWcRfAyBC
Gbm0uVhc81JmO1csGyXkVsm8iNURI0sNvq+bvOJ/ZKOgaFcITuTjWPhhM5rUYPC/
bt2X8w6s996FISA0BewfTg3c+znf3ybfH+s5aecEyT81FpbiBeKnhiQ+suQHagOR
f9Ev/DsWGko5PQYRXQNxcHXouw+tT+JSt6+0jSr2qZD1vEr8GC5iuwpjIAuC32ja
0mKvNBhrk5mE1RTC7LozRIqJQbGl3GqDnyvm5I4AUGRsR9r5M6M5D2+6sAGv1JJH
aamhmSXND5NfJgmrETQNXL5AAhDCfxy958s4SPRGmf+StAn8Sr15pqEaigJoGkY=
=mMob
-----END PGP SIGNATURE-----



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

* Re: [2011.03-maintenance] fakeroot: Move from not fetchable 1.14.5 to 1.15.1
  2011-06-10 22:44 ` Tom Rini
@ 2011-06-13 14:11   ` George C. Huntington, III
  2011-06-13 14:23     ` Koen Kooi
  0 siblings, 1 reply; 5+ messages in thread
From: George C. Huntington, III @ 2011-06-13 14:11 UTC (permalink / raw)
  To: openembedded-devel

I've tried to find the fakeroot_1.14.5.orig.tar.bz2, does anyone have this
mirrored?


On Fri, Jun 10, 2011 at 6:44 PM, Tom Rini <tom_rini@mentor.com> wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> On 06/10/2011 06:48 AM, George C. Huntington III wrote:
> > From: Florian Boor <florian.boor@kernelconcepts.de>
> >
> > Fakeroot 1.14.5 was not fetchable any more. Updating to 1.15.1.
> >
> > Test environment:
> >     BB_VERSION        = "1.10.2"
> >     METADATA_BRANCH   = "org.openembedded.dev"
> >     TARGET_ARCH       = "arm"
> >     TARGET_OS         = "linux-gnueabi"
> >     MACHINE           = "mainstone"
> >     DISTRO            = "minimal"
> >     DISTRO_VERSION    = "dev-snapshot-20110504"
> >     TARGET_FPU        = "soft"
> >
> > Signed-off-by: Florian Boor <florian.boor@kernelconcepts.de>
>
> For 2011.03-maintenance I'm going to NAK this.  A mirror setup is
> required as we aren't trying to keep up to date with the tzdata/tzcode
> mess and these are available via the angstrom mirror (and if needed
> could be put on the regular OE mirror).  Thanks for your interest in the
> stable branch, all the same!
>
> - --
> Tom Rini
> Mentor Graphics Corporation
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.10 (GNU/Linux)
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
>
> iQEcBAEBAgAGBQJN8p4uAAoJEI4NMjfc3nJxBFQH/3V2UzwjerwjMX2fWcRfAyBC
> Gbm0uVhc81JmO1csGyXkVsm8iNURI0sNvq+bvOJ/ZKOgaFcITuTjWPhhM5rUYPC/
> bt2X8w6s996FISA0BewfTg3c+znf3ybfH+s5aecEyT81FpbiBeKnhiQ+suQHagOR
> f9Ev/DsWGko5PQYRXQNxcHXouw+tT+JSt6+0jSr2qZD1vEr8GC5iuwpjIAuC32ja
> 0mKvNBhrk5mE1RTC7LozRIqJQbGl3GqDnyvm5I4AUGRsR9r5M6M5D2+6sAGv1JJH
> aamhmSXND5NfJgmrETQNXL5AAhDCfxy958s4SPRGmf+StAn8Sr15pqEaigJoGkY=
> =mMob
> -----END PGP SIGNATURE-----
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>


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

* Re: [2011.03-maintenance] fakeroot: Move from not fetchable 1.14.5 to 1.15.1
  2011-06-13 14:11   ` George C. Huntington, III
@ 2011-06-13 14:23     ` Koen Kooi
  0 siblings, 0 replies; 5+ messages in thread
From: Koen Kooi @ 2011-06-13 14:23 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

The angstrom mirror has that, among other goodies

On 13-06-11 16:11, George C. Huntington, III wrote:
> I've tried to find the fakeroot_1.14.5.orig.tar.bz2, does anyone have this
> mirrored?
> 
> 
> On Fri, Jun 10, 2011 at 6:44 PM, Tom Rini <tom_rini@mentor.com> wrote:
> 
> On 06/10/2011 06:48 AM, George C. Huntington III wrote:
>>>> From: Florian Boor <florian.boor@kernelconcepts.de>
>>>>
>>>> Fakeroot 1.14.5 was not fetchable any more. Updating to 1.15.1.
>>>>
>>>> Test environment:
>>>>     BB_VERSION        = "1.10.2"
>>>>     METADATA_BRANCH   = "org.openembedded.dev"
>>>>     TARGET_ARCH       = "arm"
>>>>     TARGET_OS         = "linux-gnueabi"
>>>>     MACHINE           = "mainstone"
>>>>     DISTRO            = "minimal"
>>>>     DISTRO_VERSION    = "dev-snapshot-20110504"
>>>>     TARGET_FPU        = "soft"
>>>>
>>>> Signed-off-by: Florian Boor <florian.boor@kernelconcepts.de>
> 
> For 2011.03-maintenance I'm going to NAK this.  A mirror setup is
> required as we aren't trying to keep up to date with the tzdata/tzcode
> mess and these are available via the angstrom mirror (and if needed
> could be put on the regular OE mirror).  Thanks for your interest in the
> stable branch, all the same!
> 
>>
_______________________________________________
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>>

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFN9h1lMkyGM64RGpERAmawAKChxN1zI85TyiLwV5PVKFMbIEb+ZQCfbdsr
rul9gWorOumVf8PVOX4gg/A=
=XLwJ
-----END PGP SIGNATURE-----




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

end of thread, other threads:[~2011-06-13 14:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-10 13:48 [2011.03-maintenance] fakeroot: Move from not fetchable 1.14.5 to 1.15.1 George C. Huntington III
2011-06-10 14:00 ` George C. Huntington III
2011-06-10 22:44 ` Tom Rini
2011-06-13 14:11   ` George C. Huntington, III
2011-06-13 14:23     ` Koen Kooi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.