ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [Comm] GCC from CVS error
@ 2002-12-16 19:47 A.L. Klyutchenya
  2002-12-16 22:21 ` Vitaly Lipatov
  0 siblings, 1 reply; 4+ messages in thread
From: A.L. Klyutchenya @ 2002-12-16 19:47 UTC (permalink / raw)
  To: Community

Народ, кто обновляет GCC через CVS
сейчас (уже давно, правда) не могу обновиться, ругается:
GCC
cvs [update aborted]: connect to localhost(127.0.0.1):2401 
failed: Connection refused
cvs [update aborted]: connect to localhost(127.0.0.1):2401 
failed: Connection refused
cvs [update aborted]: connect to localhost(127.0.0.1):2401 
failed: Connection refused
cvs [update aborted]: connect to localhost(127.0.0.1):2401 
failed: Connection refused
cvs [checkout aborted]: connect to localhost(127.0.0.1):2401 
failed: Connection refused
cvs [update aborted]: connect to localhost(127.0.0.1):2401 
failed: Connection refused

скрипт обновления:

#! /bin/sh
CVSROOT=:pserver:anoncvs@gcc.gnu.org:/cvs/gcc
#CVSROOT=:pserver:anoncvs@sources.redhat.com:/cvs/gcc
#CVSROOT=:pserver:anoncvs@subversions.gnu.org:/cvsroot/gcc
export CVSROOT
cvs upd CVSROOT
cvs upd gcc
cvs upd wwwdocs
cvs upd benchmarks
cvs co boehm-gc
cvs upd egcs


пробую все, из заремленных - шишь эмоций :-(

Что не так? :-(

-- 
ВсехБлаг!       А. Л. Клютченя
 mail:	asoneofus@kde.ru
 www:	http://www.qt.kde.ru
 icq:	113679387



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

* Re: [Comm] GCC from CVS error
  2002-12-16 19:47 [Comm] GCC from CVS error A.L. Klyutchenya
@ 2002-12-16 22:21 ` Vitaly Lipatov
  2002-12-16 23:04   ` A.L. Klyutchenya
  0 siblings, 1 reply; 4+ messages in thread
From: Vitaly Lipatov @ 2002-12-16 22:21 UTC (permalink / raw)
  To: community

On Понедельник 16 Декабрь 2002 22:47, A.L. Klyutchenya wrote:
> Народ, кто обновляет GCC через CVS
> сейчас (уже давно, правда) не могу обновиться, ругается:
> GCC
> cvs [update aborted]: connect to localhost(127.0.0.1):2401
> failed: Connection refused
Глупость какая-то. А чего он на localhost лезет-то?
> скрипт обновления:
>
> #! /bin/sh
> CVSROOT=:pserver:anoncvs@gcc.gnu.org:/cvs/gcc
> #CVSROOT=:pserver:anoncvs@sources.redhat.com:/cvs/gcc
> #CVSROOT=:pserver:anoncvs@subversions.gnu.org:/cvsroot/gcc
> export CVSROOT
> cvs upd CVSROOT
> cvs upd gcc
> cvs upd wwwdocs
> cvs upd benchmarks
> cvs co boehm-gc
> cvs upd egcs
>
>
> пробую все, из заремленных - шишь эмоций :-(
>
> Что не так? :-(
а если $cvs -d:pserver:anoncvs@gcc.gnu.org:/cvs/gcc checkout gcc

-- 
Lav
Виталий Липатов
Санкт-Петербург
GNU! ALT Linux Team! LaTeX! LyX!


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

* Re: [Comm] GCC from CVS error
  2002-12-16 22:21 ` Vitaly Lipatov
@ 2002-12-16 23:04   ` A.L. Klyutchenya
  2002-12-16 23:15     ` A.L. Klyutchenya
  0 siblings, 1 reply; 4+ messages in thread
From: A.L. Klyutchenya @ 2002-12-16 23:04 UTC (permalink / raw)
  To: community

17 Декабрь 2002 01:21, Vitaly Lipatov написал:
> On Понедельник 16 Декабрь 2002 22:47, A.L. Klyutchenya wrote:
> > Народ, кто обновляет GCC через CVS
> > сейчас (уже давно, правда) не могу обновиться, ругается:
> > GCC
> > cvs [update aborted]: connect to localhost(127.0.0.1):2401
> > failed: Connection refused
>
> Глупость какая-то. А чего он на localhost лезет-то?
>
> > скрипт обновления:
> >
> > #! /bin/sh
> > CVSROOT=:pserver:anoncvs@gcc.gnu.org:/cvs/gcc
> > #CVSROOT=:pserver:anoncvs@sources.redhat.com:/cvs/gcc
> > #CVSROOT=:pserver:anoncvs@subversions.gnu.org:/cvsroot/gcc
> > export CVSROOT
> > cvs upd CVSROOT
> > cvs upd gcc
> > cvs upd wwwdocs
> > cvs upd benchmarks
> > cvs co boehm-gc
> > cvs upd egcs
> >
> >
> > пробую все, из заремленных - шишь эмоций :-(
> >
> > Что не так? :-(
>
> а если $cvs -d:pserver:anoncvs@gcc.gnu.org:/cvs/gcc checkout
> gcc

поехало, значит правлю скрипт

#! /bin/sh
KEY="checkout"
CVSROOT=:pserver:anoncvs@gcc.gnu.org:/cvs/gcc
#CVSROOT=:pserver:anoncvs@sources.redhat.com:/cvs/gcc
#CVSROOT=:pserver:anoncvs@subversions.gnu.org:/cvsroot/gcc
export CVSROOT
cvs $KEY CVSROOT
cvs $KEY gcc
cvs $KEY wwwdocs
cvs $KEY benchmarks
cvs $KEY boehm-gc
cvs $KEY egcs

-- 
ВсехБлаг!       А. Л. Клютченя
 mail:	asoneofus@kde.ru
 www:	http://www.qt.kde.ru
 icq:	113679387



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

* Re: [Comm] GCC from CVS error
  2002-12-16 23:04   ` A.L. Klyutchenya
@ 2002-12-16 23:15     ` A.L. Klyutchenya
  0 siblings, 0 replies; 4+ messages in thread
From: A.L. Klyutchenya @ 2002-12-16 23:15 UTC (permalink / raw)
  To: community

17 Декабрь 2002 02:04, A.L. Klyutchenya написал:
> #! /bin/sh
> KEY="checkout"
> CVSROOT=:pserver:anoncvs@gcc.gnu.org:/cvs/gcc
> #CVSROOT=:pserver:anoncvs@sources.redhat.com:/cvs/gcc
> #CVSROOT=:pserver:anoncvs@subversions.gnu.org:/cvsroot/gcc
> export CVSROOT
> cvs $KEY CVSROOT
> cvs $KEY gcc
> cvs $KEY wwwdocs
> cvs $KEY benchmarks
> cvs $KEY boehm-gc
> cvs $KEY egcs

Прдон, по другому естественно...

-- 
ВсехБлаг!       А. Л. Клютченя
 mail:	asoneofus@kde.ru
 www:	http://www.qt.kde.ru
 icq:	113679387



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

end of thread, other threads:[~2002-12-16 23:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-12-16 19:47 [Comm] GCC from CVS error A.L. Klyutchenya
2002-12-16 22:21 ` Vitaly Lipatov
2002-12-16 23:04   ` A.L. Klyutchenya
2002-12-16 23:15     ` A.L. Klyutchenya

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git