All of lore.kernel.org
 help / color / mirror / Atom feed
* FYI, non-fatal fetch errors for ffmpeg
@ 2009-11-20  9:20 Robert P. J. Day
  2009-11-20  9:32 ` Graeme Gregory
  2009-11-20  9:40 ` Holger Hans Peter Freyther
  0 siblings, 2 replies; 4+ messages in thread
From: Robert P. J. Day @ 2009-11-20  9:20 UTC (permalink / raw)
  To: OpenEmbedded Development mailing list


  in the midst of a bb-demo-image build:

NOTE: Running task 5661 of 10078 (ID: 6173,
/home/rpjday/oe/openembedded/recipes/ffmpeg/ffmpeg_svn.bb, do_fetch)
NOTE: Running task 5662 of 10078 (ID: 9997,
/home/rpjday/oe/openembedded/recipes/xscrnsaverh/xscrnsaverh_1.0.bb,
do_populate_staging)
--2009-11-20 03:36:38--
http://www.angstrom-distribution.org/unstable/sources/trunk_svn.ffmpeg.org_.ffmpeg._20551_.tar.gz
Resolving www.angstrom-distribution.org... 188.40.83.200
Connecting to www.angstrom-distribution.org|188.40.83.200|:80...
connected.
HTTP request sent, awaiting response... 404 Not Found
2009-11-20 03:36:46 ERROR 404: Not Found.

--2009-11-20 03:36:46--
http://mirrors.openembedded.org//trunk_svn.ffmpeg.org_.ffmpeg._20551_.tar.gz
Resolving mirrors.openembedded.org... 82.197.159.157
Connecting to mirrors.openembedded.org|82.197.159.157|:80...
connected.
HTTP request sent, awaiting response... 404 Not Found
2009-11-20 03:36:46 ERROR 404: Not Found.

--2009-11-20 03:36:46--
http://sources.openembedded.org//trunk_svn.ffmpeg.org_.ffmpeg._20551_.tar.gz
Resolving sources.openembedded.org... 140.211.169.165
Connecting to sources.openembedded.org|140.211.169.165|:80...
connected.
HTTP request sent, awaiting response... 404 Not Found
2009-11-20 03:36:47 ERROR 404: Not Found.

NOTE: Legacy staging mode for
/home/rpjday/oe/openembedded/recipes/xscrnsaverh/xscrnsaverh_1.0.bb
NOTE: Running task 5663 of 10078 (ID: 10000,
/home/rpjday/oe/openembedded/recipes/xscrnsaverh/xscrnsaverh_1.0.bb,
do_package)
cp: cannot stat
`/home/rpjday/oe/angstrom-dev/work/armv7a-angstrom-linux-gnueabi/xscrnsaverh-1.0-r0/image/*':
No such file or directory
NOTE: fetch
http://www.angstrom-distribution.org/unstable/sources/trunk_svn.ffmpeg.org_.ffmpeg._20551_.tar.gz
NOTE: fetch
http://mirrors.openembedded.org//trunk_svn.ffmpeg.org_.ffmpeg._20551_.tar.gz
NOTE: fetch
http://sources.openembedded.org//trunk_svn.ffmpeg.org_.ffmpeg._20551_.tar.gz
NOTE: Fetch svn://svn.ffmpeg.org/ffmpeg/;module=trunk
A    trunk/configure
A    trunk/Doxyfile
A    trunk/ffmpeg.c
...


  obviously, the fetch of ffmpeg eventually works, but any value in
cleaning up the initial fetch errors?

rday
--


========================================================================
Robert P. J. Day                               Waterloo, Ontario, CANADA

            Linux Consulting, Training and Kernel Pedantry.

Web page:                                          http://crashcourse.ca
Twitter:                                       http://twitter.com/rpjday
========================================================================



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

* Re: FYI, non-fatal fetch errors for ffmpeg
  2009-11-20  9:20 FYI, non-fatal fetch errors for ffmpeg Robert P. J. Day
@ 2009-11-20  9:32 ` Graeme Gregory
  2009-11-20  9:40 ` Holger Hans Peter Freyther
  1 sibling, 0 replies; 4+ messages in thread
From: Graeme Gregory @ 2009-11-20  9:32 UTC (permalink / raw)
  To: openembedded-devel

On Fri, 20 Nov 2009 04:20:25 -0500 (EST)
"Robert P. J. Day" <rpjday@crashcourse.ca> wrote:

> 
>   in the midst of a bb-demo-image build:

> 
>   obviously, the fetch of ffmpeg eventually works, but any value in
> cleaning up the initial fetch errors?
> 
Is it April 1st in your locale????????

This is normal operation of fetch module. Which is long documented.

Graeme



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

* Re: FYI, non-fatal fetch errors for ffmpeg
  2009-11-20  9:20 FYI, non-fatal fetch errors for ffmpeg Robert P. J. Day
  2009-11-20  9:32 ` Graeme Gregory
@ 2009-11-20  9:40 ` Holger Hans Peter Freyther
  2009-11-20  9:55   ` Robert P. J. Day
  1 sibling, 1 reply; 4+ messages in thread
From: Holger Hans Peter Freyther @ 2009-11-20  9:40 UTC (permalink / raw)
  To: openembedded-devel

On Friday 20 November 2009 10:20:25 Robert P. J. Day wrote:

>   obviously, the fetch of ffmpeg eventually works, but any value in
> cleaning up the initial fetch errors?

This is normal operation. The reasoning is that we want to be good to the 
upstream infrastructure and don't want all OE users hammer on the SCM Servers 
of the upstream project to checkout a static tarball.

This is why OE tries to download a snapshot from a tarball stash, in your case 
two have been tried and then it falls back to the SCM of the upstream 
directly.

Now one can argue that another output on the console would be nice... but so 
far no one has been bothered enough to do it. Help is greatly appreciated and 
I can point you to the places in bitbake and classes/base.bbclass.

possible output

Trying to find tarball for ffmpeg revision XYZ:
    ... trying www.foo-mirror.org/... FAIL
   .... trying wwww.bla-mirror.org/ ... FAIL

Couldn't find a tarball for ffmpeg revision XYZ, checking it out..

wget starts




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

* Re: FYI, non-fatal fetch errors for ffmpeg
  2009-11-20  9:40 ` Holger Hans Peter Freyther
@ 2009-11-20  9:55   ` Robert P. J. Day
  0 siblings, 0 replies; 4+ messages in thread
From: Robert P. J. Day @ 2009-11-20  9:55 UTC (permalink / raw)
  To: openembedded-devel

On Fri, 20 Nov 2009, Holger Hans Peter Freyther wrote:

> On Friday 20 November 2009 10:20:25 Robert P. J. Day wrote:
>
> >   obviously, the fetch of ffmpeg eventually works, but any value
> > in cleaning up the initial fetch errors?
>
> This is normal operation. The reasoning is that we want to be good
> to the upstream infrastructure and don't want all OE users hammer on
> the SCM Servers of the upstream project to checkout a static
> tarball.
>
> This is why OE tries to download a snapshot from a tarball stash, in
> your case two have been tried and then it falls back to the SCM of
> the upstream directly.

  i suspected it was something like that, i just wasn't sure whether,
*eventually*, tarballs are uploaded to satisfy those first attempts.
in any event, it clearly didn't stop the build.

rday

p.s.  "NOTE: Running task 6568 of 10078 ..." on my way to
beagleboard-demo-image -- so far, so good.  and guile-native has long
since been built.  yippee.  thanks for your patience.

--

========================================================================
Robert P. J. Day                               Waterloo, Ontario, CANADA

            Linux Consulting, Training and Kernel Pedantry.

Web page:                                          http://crashcourse.ca
Twitter:                                       http://twitter.com/rpjday
========================================================================



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

end of thread, other threads:[~2009-11-20  9:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-20  9:20 FYI, non-fatal fetch errors for ffmpeg Robert P. J. Day
2009-11-20  9:32 ` Graeme Gregory
2009-11-20  9:40 ` Holger Hans Peter Freyther
2009-11-20  9:55   ` Robert P. J. Day

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.