Gentoo Archives: gentoo-user

From: Matias Grana <matiasg@××××××.ar>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] emerge e17
Date: Tue, 01 Nov 2005 17:09:32
Message-Id: 20051101170355.GB32336@dm.uba.ar
In Reply to: Re: [gentoo-user] emerge e17 by Christoph Gysin
1 On Tue, Nov 01, 2005 at 05:42:18PM +0100, Christoph Gysin wrote:
2 > Fernando Meira wrote:
3 > > On 11/1/05, *Christoph Gysin* <cgysin@×××.ch <mailto:cgysin@×××.ch>> wrote:
4 > >
5 > > 赵光 wrote:
6 > > > !!! ERROR: x11-libs/ecore-9999 failed.
7 > > > !!! Function cvs_fetch, Line 332, Exitcode 1
8 > > > !!! cvs login command failed
9 > > > !!! If you need support, post the topmost build error, NOT this
10 > > status
11 > > > message
12 > > >
13 > > > look like the server refuse me
14 > >
15 > > Try again in a few hours. It is down for maintenance at the moment.
16 > >
17 > > Christoph
18 > > --
19 > > echo mailto: NOSPAM !#$.'<*>'|sed 's. ..'|tr "<*> !#:2" org@fr33z3
20 > > --
21 > > gentoo-user@g.o <mailto:gentoo-user@g.o> mailing list
22 > >
23 > > Or use the same method for the normal cvs server: wait a few hours and
24 > > try again! :)
25 >
26 > Yes, but anon cvs on sourceforge *is* busy. And merging e17 involves about 15 packages from cvs,
27 > each does its own cvs login && cvs update. That's exactly why this mirror has been provided.
28 > Actually, there's a discussion going on if this mirror should be defined in all e17 packages in the
29 > gentoo portage tree.
30 >
31 > Christoph
32
33 Someone sent this script to the enlightenment mail list. It keeps trying
34 updating/checking out each package until it gets them. I didn't try the
35 new mirror yet, but this works very well with sourceforge.
36
37 HTH,
38 Matias
39
40 ------------------------------------------------
41 #!/bin/sh
42
43 Ebuilds="eet dev-db/edb evas ecore embryo imlib2 edje epeg epsilon esmart \
44 emotion engrave ewl e e_utils e_modules imlib2_loaders \
45 entrance engage examine elicit elation entice equate \
46 envision eclair enterminus evidence elapse" #enotes iconbar imlib2_tools etox erss
47
48 if [ "$1" == "debug" ]; then
49 DEBUG="USE=\"$USE debug\" FEATURES=\"$FEATURES nostrip\""
50 fi
51 set $Ebuilds
52 while [ $# != 0 ]; do
53 while !($DEBUG emerge $1); do
54 echo ""
55 echo "emerge $1 failed! Trying again in 10 seconds..."
56 echo "still "$#" packages left..."
57 echo ""
58 sleep 10
59 done
60 shift
61 done
62 echo ""
63 echo "All done!"
64 exit 0
65 ------------------------------------------------
66
67 --
68 gentoo-user@g.o mailing list

Replies

Subject Author
Re: [gentoo-user] emerge e17 "赵光" <prolibertine@×××××.com>