Re: portsdb -Uu hung

2006-11-29 Thread Lowell Gilbert
David Abrahams [EMAIL PROTECTED] writes:

 I seem to be having the same problem described in
 http://www.freebsdforums.org/forums/showthread.php?t=22211, with no
 system calls shown by truss.

My instinct is that it's unlikely to be related, even if the symptoms
look similar.

 Unfortunately, the fix of upgrading perl from 5.6 to 5.8 doesn't apply
 to me: my version of Perl is already at 5.8.8, and probably was from
 the moment FreeBSD was installed. I'm relatively new
 at all this.  Can someone help me set things right again?

It's only happening with -a?
Will it upgrade individual ports okay?
Does it suck up CPU while it's hung?
Have you upgraded portupgrade to 2.2.2?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu hung

2006-11-29 Thread Alex Zbyslaw
Are you *sure* it's hung?  -U does a make index in /usr/ports which 
takes *forever* as it has to run a make command in *every single port*. 

If you've just updated your ports tree with cvsup then consider running 
make fetchindex from /usr/ports which just grabs the latest pre-built 
version and then just doing portsdb -u, though anything that needs the 
.db file to be up-to-date will do this automatically.


--Alex

PS The thread you reference seems to be about portupgrade -a which is 
confusing since your subject line says portsdb -Uu.  Though both part of 
portupgrade, the similarity ends there.


Like Lowell said:


Does it suck up CPU while it's hung?


What does top show for CPU usage?  You will probably not see any process 
hogging the cpu as, like I said, it's one short make after another after 
another after another ... repeat until sick.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu hung

2006-11-29 Thread Alex Zbyslaw

Alex Zbyslaw wrote:

Are you *sure* it's hung?  -U does a make index in /usr/ports which 
takes *forever* as it has to run a make command in *every single port*.
If you've just updated your ports tree with cvsup then consider 
running make fetchindex from /usr/ports which just grabs the latest 
pre-built version and then just doing portsdb -u, though anything 
that needs the .db file to be up-to-date will do this automatically.


Just seen that portsdb -F will fetch the index and the man page even 
recommends running portsdb -Fu (not -Uu) after a cvsup.


If -Fu still hangs for you, then you really do have a problem.

--Alex


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu hung

2006-11-29 Thread David Abrahams
Lowell Gilbert [EMAIL PROTECTED] writes:

 David Abrahams [EMAIL PROTECTED] writes:

 I seem to be having the same problem described in
 http://www.freebsdforums.org/forums/showthread.php?t=22211, with no
 system calls shown by truss.

 My instinct is that it's unlikely to be related, even if the symptoms
 look similar.

 Unfortunately, the fix of upgrading perl from 5.6 to 5.8 doesn't apply
 to me: my version of Perl is already at 5.8.8, and probably was from
 the moment FreeBSD was installed. I'm relatively new
 at all this.  Can someone help me set things right again?

 It's only happening with -a?
 Will it upgrade individual ports okay?
 Does it suck up CPU while it's hung?
 Have you upgraded portupgrade to 2.2.2?

It eventually finished after seeming to make no progress and not
showing up in top for the longest time.  Sorry for the false (?)
alarm.

-- 
Dave Abrahams
Boost Consulting
www.boost-consulting.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu

2006-09-15 Thread Colin Percival
ke han wrote:
 I am using
 portsnap fetch
 portsnap update
 
 to sync my ports tree on FreeBSd 6.1...it seems it maintains an index
 when I run update.

Yes.

 I am used to using:
 portsversion and portsupdate to upgrade ports...in this method I have
 also used
 portsdb -Uu
 to rebuild an index anytime prior to running these commands...yes
 portsdb takes a while and I've always wondered if this is necessary
 prior to running any of these commands..

portsdb -Uu does two things:
1. It rebuilds the ports INDEX.  This is done by portsdb -U and takes a long 
time.
2. It rebuilds the ports INDEX.db database.  This is done by portsdb -u, takes
only a few seconds, and is done automatically when you run portupgrade if the
database is out of date.

 So my question is:  Is the index being maintained by portsnap the same
 or a replacement to that used by portupgrade?  Do I have to maintain
 both sets of indexes in order to use portsupdate??

The ports INDEX file generated by portsdb -U is the same file as portsnap
generates.  Since the INDEX.db database is generated automatically, this means
there is no need to run portsdb between running portsnap and running 
portupgrade.

My standard ports update/upgrade procedure is:
portsnap fetch
portsnap update
pkg_version -vIL=   # this is equivalent to portversion -vL=
portupgrade -a

Colin Percival
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu

2006-09-15 Thread Kris Kennaway
On Thu, Sep 14, 2006 at 11:58:46PM -0700, Colin Percival wrote:
 ke han wrote:
  I am using
  portsnap fetch
  portsnap update
  
  to sync my ports tree on FreeBSd 6.1...it seems it maintains an index
  when I run update.
 
 Yes.
 
  I am used to using:
  portsversion and portsupdate to upgrade ports...in this method I have
  also used
  portsdb -Uu
  to rebuild an index anytime prior to running these commands...yes
  portsdb takes a while and I've always wondered if this is necessary
  prior to running any of these commands..
 
 portsdb -Uu does two things:
 1. It rebuilds the ports INDEX.  This is done by portsdb -U and takes a 
 long time.
 2. It rebuilds the ports INDEX.db database.  This is done by portsdb -u, 
 takes
 only a few seconds, and is done automatically when you run portupgrade if the
 database is out of date.
 
  So my question is:  Is the index being maintained by portsnap the same
  or a replacement to that used by portupgrade?  Do I have to maintain
  both sets of indexes in order to use portsupdate??
 
 The ports INDEX file generated by portsdb -U is the same file as portsnap
 generates.  Since the INDEX.db database is generated automatically, this means
 there is no need to run portsdb between running portsnap and running 
 portupgrade.
 
 My standard ports update/upgrade procedure is:
 portsnap fetch
 portsnap update
 pkg_version -vIL= # this is equivalent to portversion -vL=
 portupgrade -a

When I installed portsnap with 'portsnap fetch extract' and then ran
portupgrade -fa (this was during an update from 6.x to 7.x), it
replaced the index with the one from 'make fetchindex'.

 
 Colin Percival
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 


pgp7uA9adYyeW.pgp
Description: PGP signature


Re: portsdb -Uu broken on AMD64 system

2006-07-21 Thread Mark Linimon
This has already been fixed.  Please re-cvsup and try again.

mcl
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu broken on AMD64 system

2006-07-21 Thread Dino Vliet
Awesomeeverything works fine again!
You are getting faster and faster at these forums as
time progresses:-)

Just today I presented a plan at the company where I'm
employed to use a open source BI tool and emphasized
that the support from the community is excellent!!

FreeBSD is NO EXCEPTION!!!

Thanks

--- Mark Linimon [EMAIL PROTECTED] wrote:

 This has already been fixed.  Please re-cvsup and
 try again.
 
 mcl
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu duplicate entry warnings

2005-08-24 Thread Alex Zbyslaw

Kris Kennaway wrote:


On Tue, Aug 23, 2005 at 08:07:13AM -0400, bob self wrote:
 

I've been told that these messages are not a problem. But I do think that 
they

are warnings. How can I get rid of these warnings?
   



You don't, they're not a problem.  If you really don't want to see
them, I recommend closing your eyes while running the command :-).

 


Warning: Duplicate INDEX entry: freeciv-gtk2-2.0.2
Warning: Duplicate INDEX entry: mod_frontpage2-5.0.2.2635
Warning: Duplicate INDEX entry: mod_jk2-apache2-2.0.4
Warning: Duplicate INDEX entry: mod_rpaf-ap2-0.5

I get these after running 'portsdb -Uu

I've searched the archives but haven't found the solution.


For (t)csh:

alias portsdb 'portsdb \!:* | egrep -v Warning: Duplicate INDEX'

(that's  then ' at the end)

For (ba)sh I think it's:

alias portsdb='portsdb $@ 21 | egrep -v Warning: Duplicate INDEX'

This is the power of Unix.  Use it.

--Alex

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu duplicate entry warnings

2005-08-23 Thread Kris Kennaway
On Tue, Aug 23, 2005 at 08:07:13AM -0400, bob self wrote:
 
 I've been told that these messages are not a problem. But I do think that 
 they
 are warnings. How can I get rid of these warnings?

You don't, they're not a problem.  If you really don't want to see
them, I recommend closing your eyes while running the command :-).

 Warning: Duplicate INDEX entry: freeciv-gtk2-2.0.2
 Warning: Duplicate INDEX entry: mod_frontpage2-5.0.2.2635
 Warning: Duplicate INDEX entry: mod_jk2-apache2-2.0.4
 Warning: Duplicate INDEX entry: mod_rpaf-ap2-0.5
 
 I get these after running 'portsdb -Uu
 
 I've searched the archives but haven't found the solution.
 
 Bob
 
 
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 


pgpchNMzRiyAL.pgp
Description: PGP signature


Re: portsdb -uU error

2005-06-10 Thread Mark Jones
On 6/10/05, Steven Friedrich [EMAIL PROTECTED] wrote:
 Anybody else seeing this error?


 portsdb -uU
 Updating the ports index ... Generating INDEX.tmp - please wait..Variable
 PKGNAMESUFFIX is recursive.
 === x11-wm/fvwm2 failed
 *** Error code 1
 1 error

 --
 i386 FreeBSD 4.11-STABLE

Yes, I've had the same error, but not specifically x11-wm/fvwm2
failed, and on 5.4-RELEASE.

cvsup your ports again, then try portsdb -uU again.

You could also portsdb -uF instead - that will fetch the index from
freebsd.org, instead of building it locally. I think that might
require that you cvsup ports-all, with no exclusions.

--
Mark Jones

(Sorry if you got this twice, Steven, forgot to send it to the list
the first time.)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU error

2005-06-10 Thread Kris Kennaway
On Fri, Jun 10, 2005 at 10:06:09AM -0500, Mark Jones wrote:
 On 6/10/05, Steven Friedrich [EMAIL PROTECTED] wrote:
  Anybody else seeing this error?
 
 
  portsdb -uU
  Updating the ports index ... Generating INDEX.tmp - please wait..Variable
  PKGNAMESUFFIX is recursive.
  === x11-wm/fvwm2 failed
  *** Error code 1
  1 error
 
  --
  i386 FreeBSD 4.11-STABLE
 
 Yes, I've had the same error, but not specifically x11-wm/fvwm2
 failed, and on 5.4-RELEASE.

The same error, except it's completely different? :)

The real same error has been reported and discussed on freebsd-ports,
so you should review the discussion there.

Kris


pgpxvBK1BJmFj.pgp
Description: PGP signature


Re: portsdb -uU error (I also need some tips)

2005-03-13 Thread Jason Henson
On 03/13/05 12:09:24, Fafa Diliha Romanova wrote:
Hello!
There's been a lot of mess in my ports lately.
I want to get rid of this:
pkg_delete: package bsdpan-libwww-perl-5.800 has no origin recorded
pkg_delete: package bsdpan-libwww-perl-5.800 has no origin recorded
Which pops up every time I install/deinstall a port or package.
I have done a 'pkgdb -F' which seemed to work.
Upon 'portsdb -uU' I get:
It looks like a problem with /var/db/pkg.  You have time to wipe
/var/db/pkg and remove all ports?  Try portmanager before you wipe your  
ports and db.

Have you cd /usr/ports  mkae fetchindex?
Stop in /usr/ports.
No such file or directory - /tmp/INDEX8274.0
portsdb: index chmod error
chmod error?  Are you root or what?
#
So what is this?
Also, can anybody tell me if these commands are all I need to
do a full cleanup and upgrade of my ports?
This is my /root/make.PORTS:
#
cvsup -g -L 2 /etc/cvsupfile  pkgdb -F  portupgrade -ra   
portsdb
-uU  portupgrade -ra  pkgdb -F

Don't do pkgdb unattended, you may need to answer questions.  You could  
skip all this index stuff if you use portmanager.  But you need
/var/db/pkg in good condition to use pormanager, I think?
#
Thank you all so much!
All the best,
-- Fafa

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU error (I also need some tips)

2005-03-13 Thread Jeff Hinrichs
Fafa Diliha Romanova wrote:
Hello!
There's been a lot of mess in my ports lately.
I want to get rid of this:
pkg_delete: package bsdpan-libwww-perl-5.800 has no origin recorded
pkg_delete: package bsdpan-libwww-perl-5.800 has no origin recorded
Which pops up every time I install/deinstall a port or package.
I have done a 'pkgdb -F' which seemed to work.
Upon 'portsdb -uU' I get:
#
Updating the ports index ... Generating INDEX.tmp - please wait..cannot create 
/tmp/index.UHO8TTKq/INDEX.tmp.desc.german: No such file or directory
*** Error code 2
1 error

Before reporting this error, verify that you are running a supported
version of FreeBSD (see http://www.FreeBSD.org/ports/) and that you
have a complete and up-to-date ports collection.  (INDEX builds are
not supported with partial or out-of-date ports collections -- in
particular, if you are using cvsup, you must cvsup the ports-all
collection, and have no refuse files.)  If that is the case, then
report the failure to [EMAIL PROTECTED] together with relevant
details of your ports configuration (including FreeBSD version,
your architecture, your environment, and your /etc/make.conf
settings, especially compiler flags and WITH/WITHOUT settings).
Note: the latest pre-generated version of INDEX may be fetched
automatically with make fetchindex.

*** Error code 1
Stop in /usr/ports.
*** Error code 1
Stop in /usr/ports.
No such file or directory - /tmp/INDEX8274.0
portsdb: index chmod error
#
So what is this?
Also, can anybody tell me if these commands are all I need to
do a full cleanup and upgrade of my ports?
This is my /root/make.PORTS:
#
cvsup -g -L 2 /etc/cvsupfile  pkgdb -F  portupgrade -ra  portsdb -uU  
portupgrade -ra  pkgdb -F
#
Thank you all so much!
All the best,
-- Fafa
This may not fix all of your problems, but doing a
 cd /usr/ports
 make fetchindex
is much faster and less problematic than
 portsdb -uU
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU error (I also need some tips)

2005-03-13 Thread Michael C. Shultz
On Sunday 13 March 2005 11:01 am, Jason Henson wrote:
 On 03/13/05 12:09:24, Fafa Diliha Romanova wrote:
  Hello!
 
  There's been a lot of mess in my ports lately.
  I want to get rid of this:
 
  pkg_delete: package bsdpan-libwww-perl-5.800 has no origin recorded
  pkg_delete: package bsdpan-libwww-perl-5.800 has no origin recorded
 
  Which pops up every time I install/deinstall a port or package.
  I have done a 'pkgdb -F' which seemed to work.
 
  Upon 'portsdb -uU' I get:

 It looks like a problem with /var/db/pkg.  You have time to wipe
 /var/db/pkg and remove all ports?  Try portmanager before you wipe
 your ports and db.

 Have you cd /usr/ports  mkae fetchindex?

  Stop in /usr/ports.
  No such file or directory - /tmp/INDEX8274.0
  portsdb: index chmod error

 chmod error?  Are you root or what?

  #
 
  So what is this?
 
  Also, can anybody tell me if these commands are all I need to
  do a full cleanup and upgrade of my ports?
 
  This is my /root/make.PORTS:
 
  #
 
  cvsup -g -L 2 /etc/cvsupfile  pkgdb -F  portupgrade -ra 
  portsdb
  -uU  portupgrade -ra  pkgdb -F

 Don't do pkgdb unattended, you may need to answer questions.  You
 could skip all this index stuff if you use portmanager.  But you need
 /var/db/pkg in good condition to use pormanager, I think?

portmanager doesn't use /var/db/pkg/pkgdb.db, I think that is what
you are refering to.  It should be able to fix this person's problem 
like you suggested though.

-Mike



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU error (I also need some tips)

2005-03-13 Thread Fafa Diliha Romanova

Hey!

I haven't tried fetchindex or portmanager.
I'll try them now.

As for the make.PORTS, I run them inside screen, so incase
I need to answer something, it won't continue untill I do.

But do you guys have a suggestion to how a more efficient
make.PORTS could look like? Now I'll include

cd /usr/ports  make fetchindex

into it but how about the order and amount of instances of
each command etc?

Thanks.

- Original Message -
From: Jeff Hinrichs [EMAIL PROTECTED]
To: Fafa Diliha Romanova [EMAIL PROTECTED]
Subject: Re: portsdb -uU error (I also need some tips)
Date: Sun, 13 Mar 2005 12:55:25 -0600

 
 Fafa Diliha Romanova wrote:
  Hello!
 
  There's been a lot of mess in my ports lately.
  I want to get rid of this:
 
  pkg_delete: package bsdpan-libwww-perl-5.800 has no origin recorded
  pkg_delete: package bsdpan-libwww-perl-5.800 has no origin recorded
 
  Which pops up every time I install/deinstall a port or package.
  I have done a 'pkgdb -F' which seemed to work.
 
  Upon 'portsdb -uU' I get:
 
  #
 
  Updating the ports index ... Generating INDEX.tmp - please 
  wait..cannot create /tmp/index.UHO8TTKq/INDEX.tmp.desc.german: No 
  such file or directory
  *** Error code 2
  1 error
 
  
  Before reporting this error, verify that you are running a supported
  version of FreeBSD (see http://www.FreeBSD.org/ports/) and that you
  have a complete and up-to-date ports collection.  (INDEX builds are
  not supported with partial or out-of-date ports collections -- in
  particular, if you are using cvsup, you must cvsup the ports-all
  collection, and have no refuse files.)  If that is the case, then
  report the failure to [EMAIL PROTECTED] together with relevant
  details of your ports configuration (including FreeBSD version,
  your architecture, your environment, and your /etc/make.conf
  settings, especially compiler flags and WITH/WITHOUT settings).
 
  Note: the latest pre-generated version of INDEX may be fetched
  automatically with make fetchindex.
  
 
  *** Error code 1
 
  Stop in /usr/ports.
  *** Error code 1
 
  Stop in /usr/ports.
  No such file or directory - /tmp/INDEX8274.0
  portsdb: index chmod error
 
  #
 
  So what is this?
 
  Also, can anybody tell me if these commands are all I need to
  do a full cleanup and upgrade of my ports?
 
  This is my /root/make.PORTS:
 
  #
 
  cvsup -g -L 2 /etc/cvsupfile  pkgdb -F  portupgrade -ra  
  portsdb -uU  portupgrade -ra  pkgdb -F
 
  #
 
  Thank you all so much!
 
  All the best,
  -- Fafa
 
 This may not fix all of your problems, but doing a
   cd /usr/ports
   make fetchindex
 is much faster and less problematic than
   portsdb -uU

-- 
___
Sign-up for Ads Free at Mail.com
http://promo.mail.com/adsfreejump.htm

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU error (I also need some tips)

2005-03-13 Thread Michael C. Shultz
On Sunday 13 March 2005 11:59 am, Fafa Diliha Romanova wrote:
 Hey!

 I haven't tried fetchindex or portmanager.
 I'll try them now.

 As for the make.PORTS, I run them inside screen, so incase
 I need to answer something, it won't continue untill I do.

 But do you guys have a suggestion to how a more efficient
 make.PORTS could look like? Now I'll include

 cd /usr/ports  make fetchindex

 into it but how about the order and amount of instances of
 each command etc?

 Thanks.

portmanager doesn't need fetchindex, but if you want to make the
readme.html's or do things like make search= in /usr/ports then
make fetchindex is a good idea.  You are going to loose the index
every time you cvsup so here is how I would set up a script to
automate things as much as possible:

cd /usr/ports
make update   (this assumes you have /etc/make.conf setup for cvsup)
make fetchindex
portmanager -u

 - Original Message -
 From: Jeff Hinrichs [EMAIL PROTECTED]
 To: Fafa Diliha Romanova [EMAIL PROTECTED]
 Subject: Re: portsdb -uU error (I also need some tips)
 Date: Sun, 13 Mar 2005 12:55:25 -0600

  Fafa Diliha Romanova wrote:
   Hello!
  
   There's been a lot of mess in my ports lately.
   I want to get rid of this:
  
   pkg_delete: package bsdpan-libwww-perl-5.800 has no origin
   recorded pkg_delete: package bsdpan-libwww-perl-5.800 has no
   origin recorded
  
   Which pops up every time I install/deinstall a port or package.
   I have done a 'pkgdb -F' which seemed to work.
  
   Upon 'portsdb -uU' I get:
  
   #
  
   Updating the ports index ... Generating INDEX.tmp - please
   wait..cannot create /tmp/index.UHO8TTKq/INDEX.tmp.desc.german: No
   such file or directory
   *** Error code 2
   1 error
  
   *
  *** Before reporting this error, verify that you are running a
   supported version of FreeBSD (see http://www.FreeBSD.org/ports/)
   and that you have a complete and up-to-date ports collection. 
   (INDEX builds are not supported with partial or out-of-date ports
   collections -- in particular, if you are using cvsup, you must
   cvsup the ports-all collection, and have no refuse files.) 
   If that is the case, then report the failure to [EMAIL PROTECTED]
   together with relevant details of your ports configuration
   (including FreeBSD version, your architecture, your environment,
   and your /etc/make.conf settings, especially compiler flags and
   WITH/WITHOUT settings).
  
   Note: the latest pre-generated version of INDEX may be fetched
   automatically with make fetchindex.
   *
  ***
  
   *** Error code 1
  
   Stop in /usr/ports.
   *** Error code 1
  
   Stop in /usr/ports.
   No such file or directory - /tmp/INDEX8274.0
   portsdb: index chmod error
  
   #
  
   So what is this?
  
   Also, can anybody tell me if these commands are all I need to
   do a full cleanup and upgrade of my ports?
  
   This is my /root/make.PORTS:
  
   #
  
   cvsup -g -L 2 /etc/cvsupfile  pkgdb -F  portupgrade -ra 
   portsdb -uU  portupgrade -ra  pkgdb -F
  
   #
  
   Thank you all so much!
  
   All the best,
   -- Fafa
 
  This may not fix all of your problems, but doing a
cd /usr/ports
make fetchindex
  is much faster and less problematic than
portsdb -uU
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu - Stop.

2005-03-03 Thread Ewald Jenisch
On Mon, Feb 28, 2005 at 01:35:28PM -0500, Lowell Gilbert wrote:
  # portsdb -Uu
  Updating the ports index ... Generating INDEX.tmp - please 
  wait..apsfilter-7.2.6
  : /usr/ports/print/acroread5 non-existent -- dependency list incomplete
  === print/apsfilter failed
  *** Error code 1
  1 error
 
 The current version of the apsfilter port should be looking at
 /usr/ports/print/acroread instead of .../acroread5.
 
 ...
 The makefile you have in /usr/ports/print/apsfilter is at least a week
 or two out of date, so double-check against the problems in this
 message.  

Hi,

Thanks much for the hint! I waited for a day, cvsup-ed the ports-tree
again, then re-build apsfilter - and the problem is gone :-).

Best regards,
-ewald


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu - Stop.

2005-02-28 Thread Alexey Karguine
Ewald Jenisch wrote:
Hi,
today I cvsup-ed one of my 5.3 systems by using the same procedure as
many times before:
cvsup -g -L 2 ./ports-supfile
pkgdb -F
portsdb -Uu
The first two steps (cvsup, pkgdb) went OK without error, but during
portsdb -Uu I get an error as follows:
# portsdb -Uu
Updating the ports index ... Generating INDEX.tmp - please wait..apsfilter-7.2.6
: /usr/ports/print/acroread5 non-existent -- dependency list incomplete
=== print/apsfilter failed
*** Error code 1
1 error

Before reporting this error, verify that you are running a supported
version of FreeBSD (see http://www.FreeBSD.org/ports/) and that you
have a complete and up-to-date ports collection.  (INDEX builds are
not supported with partial or out-of-date ports collections -- in
particular, if you are using cvsup, you must cvsup the ports-all
collection, and have no refuse files.)  If that is the case, then
report the failure to [EMAIL PROTECTED] together with relevant
details of your ports configuration (including FreeBSD version,
your architecture, your environment, and your /etc/make.conf
settings, especially compiler flags and WITH/WITHOUT settings).
Note: the latest pre-generated version of INDEX may be fetched
automatically with make fetchindex.

*** Error code 1
Stop in /usr/ports.
*** Error code 1
Stop in /usr/ports.
failed to generate INDEX!
portsdb: index generation error


What can I do against this error?
Thanks much in advance for any clue,
-ewald
You may do:
cd /usr/ports
make fetchindex
to fetch index-file. You not must generate this file yourself and 
wasting your time and CPU-resourses.

--
Alexey Karguine
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu - Stop.

2005-02-28 Thread Ewald Jenisch

 On Mon, Feb 28, 2005 at 07:54:05PM +0300, Alexey Karguine wrote:
 
 You may do:
 
 cd /usr/ports
 make fetchindex
 
 to fetch index-file. You not must generate this file yourself and 
 wasting your time and CPU-resourses.

Hi Alexey,

Thanks for the hint - it did the trick. 

However I still wonder why portsdb -Uu suddenly dies with this error
after running for months without any problem...

-ewald

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu - Stop.

2005-02-28 Thread Lowell Gilbert
Ewald Jenisch [EMAIL PROTECTED] writes:

 today I cvsup-ed one of my 5.3 systems by using the same procedure as
 many times before:
 
 cvsup -g -L 2 ./ports-supfile
 pkgdb -F
 portsdb -Uu
 
 The first two steps (cvsup, pkgdb) went OK without error, but during
 portsdb -Uu I get an error as follows:
 
 
 # portsdb -Uu
 Updating the ports index ... Generating INDEX.tmp - please 
 wait..apsfilter-7.2.6
 : /usr/ports/print/acroread5 non-existent -- dependency list incomplete
 === print/apsfilter failed
 *** Error code 1
 1 error

The current version of the apsfilter port should be looking at
/usr/ports/print/acroread instead of .../acroread5.

 
 Before reporting this error, verify that you are running a supported
 version of FreeBSD (see http://www.FreeBSD.org/ports/) and that you
 have a complete and up-to-date ports collection.  (INDEX builds are
 not supported with partial or out-of-date ports collections -- in
 particular, if you are using cvsup, you must cvsup the ports-all
 collection, and have no refuse files.)  If that is the case, then
 report the failure to [EMAIL PROTECTED] together with relevant
 details of your ports configuration (including FreeBSD version,
 your architecture, your environment, and your /etc/make.conf
 settings, especially compiler flags and WITH/WITHOUT settings).

The makefile you have in /usr/ports/print/apsfilter is at least a week
or two out of date, so double-check against the problems in this
message.  
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU fails

2005-02-07 Thread Lowell Gilbert
Vonleigh Simmons [EMAIL PROTECTED] writes:

  Have you got a refuse file?  Don't.
 
   No.
 
  Are you doing the cvsup on the ports-all collection,
  with a cvs tag of '.'?  If not, do.
 
   Yes and yes.

Have you got enough bandwidth to comfortably remove the whole
multimedia directory and cvsup again?  The problem you're hitting it
that you are *not* getting the whole ports collection.  You need to
figure out why that is; I am not seeing the same symptoms.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU fails

2005-02-05 Thread Vonleigh Simmons
Figure out why /usr/ports/multimedia/libtheora is non-existent, and
fix it.
As another part of the message warned you, building an INDEX requires
a *full* ports collection, so if you are missing some it will fail.
	I don't have that folder. I'm not sure why I don't, I haven't changed 
everything, and have it so that it does cvsup daily, one day it just 
started failing.

What can I do to force it to resync properly?
Vonleigh Simmons
http://illusionart.com/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU fails

2005-02-05 Thread Lowell Gilbert
Vonleigh Simmons [EMAIL PROTECTED] writes:

  Figure out why /usr/ports/multimedia/libtheora is non-existent, and
  fix it.
 
  As another part of the message warned you, building an INDEX requires
  a *full* ports collection, so if you are missing some it will fail.
 
   I don't have that folder. I'm not sure why I don't, I haven't
 changed everything, and have it so that it does cvsup daily, one day
 it just started failing.
 
   What can I do to force it to resync properly?

Have you got a refuse file?  Don't.  
Are you doing the cvsup on the ports-all collection, 
with a cvs tag of '.'?  If not, do.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU fails

2005-02-05 Thread Vonleigh Simmons
Have you got a refuse file?  Don't.
No.
Are you doing the cvsup on the ports-all collection,
with a cvs tag of '.'?  If not, do.
Yes and yes.
Vonleigh Simmons
http://illusionart.com/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU fails

2005-02-04 Thread Kent Stewart
On Friday 04 February 2005 02:04 am, Vonleigh Simmons wrote:
   While running portsdb -uU I get the following error:

 Updating the ports index ... Generating INDEX.tmp - please
 wait..icecast2-2.2.0,1: /usr/ports/multimedia/libtheora
 non-existent -- dependency list incomplete
 === audio/icecast2 failed
 *** Error code 1
 1 error

   This is on FreeBSD 5.3 stable after a recent cvsup. Any help fixing
 this matter is appreciated.


When this happens, the easy answer is to user make fetchindex and then 
only do a portsdb -u. I am not seeing any messages about INDEX dying 
in ports@ and that usually means you are refusing something that 
another port needs. The only choice then is to use fetchindex.

Kent


 Vonleigh Simmons
 http://illusionart.com/

 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU fails

2005-02-04 Thread Vonleigh Simmons
When this happens, the easy answer is to user make fetchindex and 
then
only do a portsdb -u.
	That worked fine. I'm confused though, am I not supposed to use the -U 
flag at all?  Because after running those two I tried -Uu again and I 
got the same error. If I'm not supposed to use -U, has it been replaced 
by something or is it not necessary?

Vonleigh Simmons
http://illusionart.com/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU fails

2005-02-04 Thread Lowell Gilbert
Vonleigh Simmons [EMAIL PROTECTED] writes:

   While running portsdb -uU I get the following error:
 
 Updating the ports index ... Generating INDEX.tmp - please
 wait..icecast2-2.2.0,1: /usr/ports/multimedia/libtheora non-existent
 -- dependency list incomplete
 === audio/icecast2 failed
 *** Error code 1
 1 error
 
   This is on FreeBSD 5.3 stable after a recent cvsup. Any help
 fixing this matter is appreciated.

Figure out why /usr/ports/multimedia/libtheora is non-existent, and
fix it.  

As another part of the message warned you, building an INDEX requires
a *full* ports collection, so if you are missing some it will fail.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU fails

2005-02-04 Thread Peter Harmsen
On Fri, 4 Feb 2005 03:34:43 -0800
Vonleigh Simmons [EMAIL PROTECTED] wrote:

  When this happens, the easy answer is to user make fetchindex and 
  then
  only do a portsdb -u.
 
   That worked fine. I'm confused though, am I not supposed to use the -U 
 flag at all?  Because after running those two I tried -Uu again and I 
 got the same error. If I'm not supposed to use -U, has it been replaced 
 by something or is it not necessary?
***
Well i have ran into the same situation.I just added f for force and afterwards 
i updated everything that could be upgraded.

So i most of the times use portsdb -Ufu and portupgrade -afrR or -arR 
serie/(meta-)app.This seems to work for me.Strange though because portsdb -Uu 
seemed to work for me until lately.

Peter Harmsen
 
 Vonleigh Simmons
 http://illusionart.com/
 
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: 'portsdb -Uu' vs 'make fetchindex' vs 'make index'

2004-12-21 Thread Joshua Tinnin
On Tue, Dec 21, 2004 at 05:34:06AM -0500, Gerard Seibert wrote:
 I am not sure if I quite understand this entire ports updating scenario
 correctly. I I run the command: 'cvsup ports-supfile', I then need to
 run either 'portsdb -Uu' or 'make index'. I also have the option of
 running 'make fetchindex' in place of either of those two proceeding
 commands. Is that correct?
 
Yes, basically.

Running portsdb -U will make an index. If you run portsdb -Uu you don't
have to make index as an additional step. Additionally, portsdb -u will 
automatically be run when it needs to be run, but you can run it 
manually as well. One of the fastest ways to update your tree and index 
is to cvsup, then cd /usr/ports  make fetchindex. You can run 
portsdb -u if you want, but you don't have to. It might help catch 
dependency problems if you do, however.

 I would assume, that I should run the 'make fetchindex' command
 immediately after running the 'cvsup' command.

Yes, you can do that, as I mentioned above.
 
 Does anyone have any suggestions as to a better way to accomplish this
 feat?

Test out different ways of updating, to find out which ones you want to 
use - for instance you can also use sysutils/p5-FreeBSD-Portindex - and 
then write scripts to accomplish it, and/or set it up as a cron job.

- jt
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu Segmentation fault

2004-11-11 Thread Tabor Kelly
Tabor Kelly wrote:
This has been discussed DOZENS of times on this list including TODAY.

What do you think the archives are for?!

Sorry, I will look harder. Like I said, I found a lot of people having
the problem (in the archives), I didn't find anyone explaining what
causes the problem or how to fix it.
Again, Sorry.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU cause the server hanging up

2004-11-06 Thread Lowell Gilbert
kinux [EMAIL PROTECTED] writes:

 i am tried to cvsup my ports then portsdb -uU found portsdb update
 take a lot of CPU resource (above 80%), then i just make the server
 hanging up, does it can limit the resource usage for portsdb update?

Maybe nice(1) is what you are looking for?

-- 
Lowell Gilbert, embedded/networking software engineer, Boston area
http://be-well.ilk.org/~lowell/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu error

2004-07-06 Thread Kris Kennaway
On Mon, Jul 05, 2004 at 08:55:32AM +, Ariane  Ron Joordens wrote:
 Hi everyone,
 
 I have just cvsupped successfully and tried to run portsdb -Uu. I received the 
 following error:
 _
 freebsd# portsdb -Uu
 Updating the ports index ... Generating INDEX.tmp - please 
 wait..fr-mozilla-flp-1.7: /usr/ports/www/mozilla-gtk2 non-existent -- 
 dependency list incomplete
 === french/mozilla-flp failed
 *** Error code 1
 1 error

Looks like you have mozilla-gtk2 installed, but this port was recently
removed.  www/mozex/Makefile.xpi does some slightly over-clever
gymnastics that detect this, which causes the breakage.

 
 
 Before reporting this error, verify that you are running a supported
 version of FreeBSD (see http://www.FreeBSD.org/ports/) and that you
 have a complete and up-to-date ports collection (INDEX builds are
 not supported with partial or out-of-date ports collections).  If
 so, then report the failure to [EMAIL PROTECTED] together with
 relevant details of your ports configuration (including FreeBSD
 version, environment and /etc/make.conf settings).
 

Note that you didn't quite follow these instructions.

Kris



pgpgjxnOfZ8kA.pgp
Description: PGP signature


Re: portsdb -Uu error

2004-07-06 Thread suporte dsgx
well looks like u don't have the whole /usr/ports .. plz re-run cvsup over
ports ..
to update everything and try to install again
- Original Message -
From: Ariane  Ron Joordens [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, July 05, 2004 1:55 AM
Subject: portsdb -Uu error


 Hi everyone,

 I have just cvsupped successfully and tried to run portsdb -Uu. I received
the
 following error:
 _
 freebsd# portsdb -Uu
 Updating the ports index ... Generating INDEX.tmp - please
 wait..fr-mozilla-flp-1.7: /usr/ports/www/mozilla-gtk2 non-existent --
 dependency list incomplete
 === french/mozilla-flp failed
 *** Error code 1
 1 error

 
 Before reporting this error, verify that you are running a supported
 version of FreeBSD (see http://www.FreeBSD.org/ports/) and that you
 have a complete and up-to-date ports collection (INDEX builds are
 not supported with partial or out-of-date ports collections).  If
 so, then report the failure to [EMAIL PROTECTED] together with
 relevant details of your ports configuration (including FreeBSD
 version, environment and /etc/make.conf settings).
 

 *** Error code 1

 Stop in /usr/ports.
 *** Error code 1

 Stop in /usr/ports.
 failed to generate INDEX!
 portsdb: index generation error
 __

 I have FreeBSD 4.10, I cvsup to RELENG_4_10 and refuse nothing.

 freebsd# uname -a
 FreeBSD freebsd.home.com 4.10-RELEASE FreeBSD 4.10-RELEASE #0: Fri May 28
 21:00:30 GMT 2004

 This is my cvs-supfile:
 _
 # $FreeBSD: src/share/examples/cvsup/cvs-supfile,v 1.26.2.11 2003/09/12
 19:01:13 ceri Exp $

 *default host=cvsup.au.FreeBSD.org
 *default base=/usr/local/etc/cvsup
 *default prefix=/usr
 *default tag=RELENG_4_10
 *default release=cvs
 *default delete use-rel-suffix
 *default compress
 src-all
 ports-all tag=.
 doc-all tag=.
 ___

 This is my /etc/make.conf file:
 _
 #make.conf file contains options for rebuilding the system and ports from
 source
 #Copied from tutorial: Turn FreeBSD into a Multimedia Workstation by Dru
 Lavigne
 #
 CPUTYPE=p3
 CFLAGS= -O -pipe
 CXXFLAGS+= -funroll-loops
 COPTFLAGS= -O -pipe
 #
 #To avoid building various parts of the base system:
 NO_BIND= true # do not build BIND
 NO_FORTRAN= true # do not build g77 and related libraries
 NO_I4B= true # do not build isdn4bsd package
 NOPROFILE= true # Avoid compiling profiled libraries
 NOUUCP= true # do not build uucp related programs
 DOC_LANG= en_US.ISO8859-1
 #
 USA_RESIDENT= YES
 __


 Does anyone know if this is a problem with french/mozilla-flp or a problem
 with my setup? Do you need more info?

 Thanks for your help.

 Ron

 Please CC me as I am not subscribed to the list on this address

 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
[EMAIL PROTECTED]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu error

2004-06-29 Thread Kent Stewart
On Tuesday 29 June 2004 09:11 am, Anthony Edwards wrote:
 This looks to be a fairly straightforward error:

    begin error message 
 fishcat# portsdb -Uu
 Updating the ports index ... Generating INDEX.tmp - please
 wait..drweb_postfix-4.29.12f: /usr/ports/security/drwebd
 non-existent -- dependency list incomplete
 === security/drweb-postfix failed
 *** Error code 1
 1 error

 
 Before reporting this error, verify that you are running a supported
 version of FreeBSD (see http://www.FreeBSD.org/ports/) and that you
 have a complete and up-to-date ports collection (INDEX builds are
 not supported with partial or out-of-date ports collections).  If
 so, then report the failure to [EMAIL PROTECTED] together with
 relevant details of your ports configuration (including FreeBSD
 version, environment and /etc/make.conf settings).
 

 Stop in /usr/ports.
 failed to generate INDEX!
 portsdb: index generation error
    end error message 

 bash-2.05b$ pwd
 /usr/ports/security
 bash-2.05b$ ls | more
 [...]
 dropbear
 drweb
 drweb-postfix
 drweb-qmail
 drweb-sendmail
 dsniff
 [...]

 As the portsdb -Uu error message states, /usr/ports/security/drwebd
 is non-existent (at least following a cvsup of the ports tree today,
 I am not sure if it was there before) and so the portsdb -Uu run
 fails with the error message shown above.

 My FreeBSD version is RELENG_4 (FreeBSD-STABLE).

 What is the fix for this please?  Waiting until a new cvsup corrects
 the error above, or...?

If you follow ports, I was told you also should also follow cvs-all. It 
was fixed about an hour ago. So, it should have made it to your 
favorite cvsup-mirror. 

A faster fix is to edit the drweb_postfix make file and change the 
drwebd entry on the PORTSDIR entry to just drweb.

Kent
-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu error

2004-06-29 Thread Anthony Edwards
On Tue, Jun 29, 2004 at 09:30:25AM -0700, Kent Stewart wrote:

 If you follow ports, I was told you also should also follow cvs-all. It 
 was fixed about an hour ago. So, it should have made it to your 
 favorite cvsup-mirror. 
 
Indeed yes, now resolved.  I have also subscribed to cvs-all in order to
track such things in the future.

-- 
Anthony Edwards
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu trouble in www/mod_auth_check

2004-06-18 Thread Alexey Karguine
On Wed, 16 Jun 2004 10:46:01 -0500 Guillermo Garc_a-Rojas [EMAIL PROTECTED] wrote:

Ooops! 
Today the problem disapeared itself. I didn't anything else to fix it.


 Same problem.

 I was using a refuse file. So I stop using it and the problem disapeared.

 On Wed, 16 Jun 2004 19:02:55 +0400, Alexey Karguine [EMAIL PROTECTED] wrote:

  Hello!

  I have FreeBSD 4.10 machine.

  Every night this machine sinchronizes the ports-tree using cvsup by the
  cron and runs 'portsdb -Uu'.

  One week ago i recieved this letter from the cron daemon:

  -- cut --

  Updating the ports index ... Generating INDEX.tmp - please 
  wait..mod_auth_pwcheck-1.1: /usr/ports//apache13 non-existent -- dependency list 
  incomplete
   === www/mod_auth_pwcheck failed
   *** Error code 1
   1 error

   
   Before reporting this error, verify that you are running a supported
   version of FreeBSD (see http://www.FreeBSD.org/ports/) and that you
   have a complete and up-to-date ports collection (INDEX builds are
   not supported with partial or out-of-date ports collections).  If
   so, then report the failure to [EMAIL PROTECTED] together with
   relevant details of your ports configuration (including FreeBSD
   version, environment and /etc/make.conf settings).
   

   *** Error code 1

   Stop in /usr/ports.
   *** Error code 1

   Stop in /usr/ports.
   failed to generate INDEX!
   portsdb: index generation error
  -- cut --

  I tried to 'portupgrade -f portupgrade' and to manually cvsuping
  ports-tree. That steps didn't give any results.

  What can I do to fix this problem.

  Thanks!

  P.S. Sorry for my english, I'm not real englishman. =)

  --bm

  ___
  [EMAIL PROTECTED] mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to [EMAIL PROTECTED]

 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

--bm

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu trouble in www/mod_auth_check

2004-06-16 Thread Guillermo GarcĂ­a-Rojas
Same problem.

I was using a refuse file. So I stop using it and the problem disapeared.

On Wed, 16 Jun 2004 19:02:55 +0400, Alexey Karguine [EMAIL PROTECTED] wrote:
 
 Hello!
 
 I have FreeBSD 4.10 machine.
 
 Every night this machine sinchronizes the ports-tree using cvsup by the
 cron and runs 'portsdb -Uu'.
 
 One week ago i recieved this letter from the cron daemon:
 
 -- cut --
 
 Updating the ports index ... Generating INDEX.tmp - please 
 wait..mod_auth_pwcheck-1.1: /usr/ports//apache13 non-existent -- dependency list 
 incomplete
  === www/mod_auth_pwcheck failed
  *** Error code 1
  1 error
 
  
  Before reporting this error, verify that you are running a supported
  version of FreeBSD (see http://www.FreeBSD.org/ports/) and that you
  have a complete and up-to-date ports collection (INDEX builds are
  not supported with partial or out-of-date ports collections).  If
  so, then report the failure to [EMAIL PROTECTED] together with
  relevant details of your ports configuration (including FreeBSD
  version, environment and /etc/make.conf settings).
  
 
  *** Error code 1
 
  Stop in /usr/ports.
  *** Error code 1
 
  Stop in /usr/ports.
  failed to generate INDEX!
  portsdb: index generation error
 -- cut --
 
 I tried to 'portupgrade -f portupgrade' and to manually cvsuping
 ports-tree. That steps didn't give any results.
 
 What can I do to fix this problem.
 
 Thanks!
 
 P.S. Sorry for my english, I'm not real englishman. =)
 
 --bm
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu and new mirror

2004-04-02 Thread Kris Kennaway
On Thu, Apr 01, 2004 at 10:50:01PM +0930, Brian Astill wrote:
 My ISP now stores all the FBSD ports and sources
 
 #portsdb -Uu
 Updating the ports index ...make: don't know how to make 
 //ftp.filearena.net/pub/FreeBSD/ports/distfiles//(continuing): 
 malformed entry: make: don't know how to make 
 //ftp.filearena.net/pub/FreeBSD/ports/distfiles//(continuing)
 make: don't know how to make 
 //ftp.filearena.net/pub/FreeBSD/ports/distfiles//(continuing): 
 malformed entry: make: don't know how to make 
 //ftp.filearena.net/pub/FreeBSD/ports/distfiles//(continuing)
 
 and so on ad infinitum (well nearly :-) )  until:
 
 failed to generate INDEX!
 /usr/local/lib/ruby/site_ruby/1.6/portsdb.rb:210:in `update': index 
 generation error (PortsDB::IndexFileError)
 from /usr/local/sbin/portsdb:154:in `main'
 from /usr/local/sbin/portsdb:66:in `initialize'
 from /usr/local/sbin/portsdb:66:in `new'
 from /usr/local/sbin/portsdb:66:in `main'
 from /usr/local/sbin/portsdb:205
 
 OK, so I have rebuilt the ports index files by commenting out the 
 offending references to filearena in /etc/make.conf BUT I need to 
 uncomment them again to take advantage of my ISP's collection of 
 distfiles.

Sounds like you have something incorrect in make.conf, but you forgot
to include it so we can't be sure :-)

Kris


pgp0.pgp
Description: PGP signature


Re: portsdb -Uu and new mirror

2004-04-02 Thread Brian Astill
On Fri, 2 Apr 2004 07:36 am, Kris Kennaway wrote:
 On Thu, Apr 01, 2004 at 10:50:01PM +0930, Brian Astill wrote:
  My ISP now stores all the FBSD ports and sources
 
  #portsdb -Uu
  Updating the ports index ...make: don't know how to make
  //ftp.filearena.net/pub/FreeBSD/ports/distfiles//(continuing):
snip
  and so on ad infinitum (well nearly :-) )  until:
 
  failed to generate INDEX!
  /usr/local/lib/ruby/site_ruby/1.6/portsdb.rb:210:in `update': index
  generation error (PortsDB::IndexFileError)
  from /usr/local/sbin/portsdb:154:in `main'
  from /usr/local/sbin/portsdb:66:in `initialize'
  from /usr/local/sbin/portsdb:66:in `new'
  from /usr/local/sbin/portsdb:66:in `main'
  from /usr/local/sbin/portsdb:205
 
  OK, so I have rebuilt the ports index files by commenting out the
  offending references to filearena in /etc/make.conf BUT I need to
  uncomment them again to take advantage of my ISP's collection of
  distfiles.

 Sounds like you have something incorrect in make.conf, but you forgot
 to include it so we can't be sure :-)

Fussy-fussy!  :-)

The lines I have added look like this:
# Port master sites.
#
# If you want your port fetches to go somewhere else than the default
# (specified below) in case the distfile/patchfile was not found,
# uncomment this and change it to a location nearest you.  (Don't
# remove the /${DIST_SUBDIR}/ part.)
#
MASTER_SITE_BACKUP?=\
#   ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR}/
#
# If you want your port fetches to check the above site first (before
# the MASTER_SITES specified in the port Makefiles), uncomment the
# line below.  You can also change the right side to point to wherever
# you want 
ftp://ftp.filearena.net/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR}/
MASTER_SITE_OVERRIDE?=${MASTER_SITE_BACKUP}
#



-- 
Regards,
Brian
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu and new mirror

2004-04-02 Thread Kris Kennaway
On Fri, Apr 02, 2004 at 01:28:46PM +0930, Brian Astill wrote:
 On Fri, 2 Apr 2004 07:36 am, Kris Kennaway wrote:
  On Thu, Apr 01, 2004 at 10:50:01PM +0930, Brian Astill wrote:
   My ISP now stores all the FBSD ports and sources
  
   #portsdb -Uu
   Updating the ports index ...make: don't know how to make
   //ftp.filearena.net/pub/FreeBSD/ports/distfiles//(continuing):
 snip
   and so on ad infinitum (well nearly :-) )  until:
  
   failed to generate INDEX!
   /usr/local/lib/ruby/site_ruby/1.6/portsdb.rb:210:in `update': index
   generation error (PortsDB::IndexFileError)
   from /usr/local/sbin/portsdb:154:in `main'
   from /usr/local/sbin/portsdb:66:in `initialize'
   from /usr/local/sbin/portsdb:66:in `new'
   from /usr/local/sbin/portsdb:66:in `main'
   from /usr/local/sbin/portsdb:205
  
   OK, so I have rebuilt the ports index files by commenting out the
   offending references to filearena in /etc/make.conf BUT I need to
   uncomment them again to take advantage of my ISP's collection of
   distfiles.
 
  Sounds like you have something incorrect in make.conf, but you forgot
  to include it so we can't be sure :-)
 
 Fussy-fussy!  :-)
 
 The lines I have added look like this:

 MASTER_SITE_BACKUP?=\
 # ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR}/
 #
 # If you want your port fetches to check the above site first (before
 # the MASTER_SITES specified in the port Makefiles), uncomment the
 # line below.  You can also change the right side to point to wherever
 # you want 
 ftp://ftp.filearena.net/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR}/

There are two errors there.  Probably what you intended was for
MASTER_SITE_BACKUP to be set to ftp://ftp.filearena.net/..., but
comments are not ignored when doing line continuations, so the
variable is set to the literal next line, and the ftp:// becomes a
syntax error.

Kris


pgp0.pgp
Description: PGP signature


Re: portsdb -Uu and new mirror

2004-04-02 Thread Brian Astill
On Fri, 2 Apr 2004 02:14 pm, Kris Kennaway wrote:

 There are two errors there.  Probably what you intended was for
 MASTER_SITE_BACKUP to be set to ftp://ftp.filearena.net/..., but
 comments are not ignored when doing line continuations, so the
 variable is set to the literal next line, and the ftp:// becomes a
 syntax error.

Gee!  I wonder where THAT is documented.
Anyway - fixed.  Hopefully no more trouble, thanks to you.

-- 
Regards,
Brian
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu and new mirror

2004-04-02 Thread Kris Kennaway
On Sat, Apr 03, 2004 at 12:13:30PM +0930, Brian Astill wrote:
 On Fri, 2 Apr 2004 02:14 pm, Kris Kennaway wrote:
 
  There are two errors there.  Probably what you intended was for
  MASTER_SITE_BACKUP to be set to ftp://ftp.filearena.net/..., but
  comments are not ignored when doing line continuations, so the
  variable is set to the literal next line, and the ftp:// becomes a
  syntax error.
 
 Gee!  I wonder where THAT is documented.
 Anyway - fixed.  Hopefully no more trouble, thanks to you.

Somewhere in the make(1) documentation, probably.

Kris


pgp0.pgp
Description: PGP signature


Re: portsdb -uU

2004-01-23 Thread Kent Stewart
On Friday 23 January 2004 09:54 am, Lou Katz wrote:
 I am running 4.7. When I run 'portsdb -uU' I get LOTS of output of
 the form:

 someport: somethingelse non-existent -- dependency list incomplete

 Does this matter?
 How do I fix this?

Sometimes and you can't fix it. Portsdb is complaining about the data it 
encountered processing the port tree.

Kent

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU

2004-01-23 Thread Lowell Gilbert
Lou Katz [EMAIL PROTECTED] writes:

 I am running 4.7. When I run 'portsdb -uU' I get LOTS of output of the form:
 
 someport: somethingelse non-existent -- dependency list incomplete
 
 Does this matter?

Only if you want the ports that are reporting it.
(which you probably don't, if you don't have the dependencies present)

 How do I fix this?

Get the whole ports tree?  [My guess is you're only getting part of it.]

-- 
Lowell Gilbert, embedded/networking software engineer, Boston area: 
resume/CV at http://be-well.ilk.org:8088/~lowell/resume/
username/password public
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: 'Portsdb -Uu' Fails

2004-01-02 Thread Kent Stewart
On Friday 02 January 2004 01:39 am, Rishi Chopra wrote:
 I'm attempting my first 'portsdb -Uu' after a successful CVSUp, but
 am running into some problems:

 idfubar# portsdb -Uu
 Updating the ports index ... perl: not found
 /usr/local/sbin/make_describe_pass2:70:in `write': Broken pipe
 (Errno::EPIPE)
 from /usr/local/sbin/make_describe_pass2:70:in `puts'
 from /usr/local/sbin/make_describe_pass2:70
 failed to generate INDEX!
 portsdb: index generation error

 Where have I failed?


You may not have. Sometimes people update the ports and leave things 
out. If you have done a recent cvsup of ports-all, try the following.

cd /usr/ports
make index
portsdb -u

There are times when portsdb has problems and there are times when 
make index falls on its face. I had a good make index at  
UTC.

Kent

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU

2003-11-18 Thread Adam McLaurin
On Mon, 17 Nov 2003 23:12:13 -0700
RYAN vAN GINNEKEN [EMAIL PROTECTED] wrote:

 getting this error for my portsdb -uU i just snipped part of it
 because 
 it is huge almost all the ports i would say.
 Did a cvsup for all the ports and realized i did not have the space to
 
 spare for them so did a rm -R * in the /usr/ports dir did another
 cvsup 
 just the ports i needed and now i get this horrible error my cvsup
 file 
 is also included in case it has something to do with things.


I'd recommend going through 'pkgdb -F' and fixing all your dependency
errors, then try again.

-- 
Adam
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -uU

2003-11-18 Thread Lowell Gilbert
RYAN vAN GINNEKEN [EMAIL PROTECTED] writes:

 getting this error for my portsdb -uU i just snipped part of it
 because it is huge almost all the ports i would say.
 Did a cvsup for all the ports and realized i did not have the space to
 spare for them so did a rm -R * in the /usr/ports dir did another
 cvsup just the ports i needed and now i get this horrible error my
 cvsup file is also included in case it has something to do with things.

If the dependency isn't there when the database is being built, portdb
will complain (makes sense; you can't build that port without its
dependencies, after all).  It does, however, continue.  So it makes
sense that you would get a massive number of such complaints if you
downloaded only a few categories of ports.

If it's just the messages that are bothering you, redirect them to
/dev/null when you build the portupgrade db.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb -Uu * /usr/local/ permission denied error

2003-02-24 Thread Kris Kennaway
On Mon, Feb 24, 2003 at 05:48:55PM -0500, Michael Sharp wrote:
 I normally update my ports tree by running cvsup, portsdb -Uu, pkgdb -F,
 then portversion |grep  .  I also have a jail that has its own ports
 tree. On the host system, when running portsdb -Uu, I am getting the
 following that I dont understand:

See failure notices on ports@

Kris

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message