Re: [Re: [Re: [Cooker] libgncengine.so.0?]]

2000-07-13 Thread Pixel

Quel Qun <[EMAIL PROTECTED]> writes:

> Yep, because it does not clear the old records.

? you mean, the noise in urpmi.cfg?

> I also have a file (urpmi.cfg) showing my ftp password in clear.

not a big deal, is it? 
do you have any solution?




Re: [Re: [Re: [Cooker] libgncengine.so.0?]]

2000-07-12 Thread Quel Qun

Yep, because it does not clear the old records.
I also have a file (urpmi.cfg) showing my ftp password in clear.

Pixel <[EMAIL PROTECTED]> wrote:
> Quel Qun <[EMAIL PROTECTED]> writes:
> 
> > The problem is that its (urpm*) database update is cumbersome.
> 
> urpmi.update -a , cumbersome?


=-=
kk1


Get free email and a permanent address at http://www.netaddress.com/?N=1




Re: [Re: [Re: [Cooker] libgncengine.so.0?]]

2000-07-12 Thread Quel Qun

Chmouel Boudjnah <[EMAIL PROTECTED]> wrote:
> Quel Qun <[EMAIL PROTECTED]> writes:
> 
> > The problem is that its (urpm*) database update is cumbersome.
> 
> cumberwhat ? it the same file of Packages.gz  from debian.
Cumbersome = clumsy, hawkward, hard to use. Also, I still haven't found how to
update a package or how to force an install when I got the 'everything is
already installed' message.
> 
> > Welcome to Frisco, Chmou!
> 
> ironic ?
No, not at all! I came to live here (just a bit south) 3 years ago and I still
like it. Hope you found few nice places to go.
> 
> -- 
> MandrakeSoft Inchttp://www.mandrakesoft.com
> San-Francisco, CA USA --Chmouel


=-=
kk1


Get free email and a permanent address at http://www.netaddress.com/?N=1




Re: [Re: [Cooker] libgncengine.so.0?]

2000-07-12 Thread Pixel

Quel Qun <[EMAIL PROTECTED]> writes:

> The problem is that its (urpm*) database update is cumbersome.

urpmi.update -a , cumbersome?




Re: [Re: [Cooker] libgncengine.so.0?]

2000-07-12 Thread Chmouel Boudjnah

Quel Qun <[EMAIL PROTECTED]> writes:

> The problem is that its (urpm*) database update is cumbersome.

cumberwhat ? it the same file of Packages.gz  from debian.

> Welcome to Frisco, Chmou!

ironic ?

-- 
MandrakeSoft Inchttp://www.mandrakesoft.com
San-Francisco, CA USA --Chmouel




Re: [Re: [Cooker] libgncengine.so.0?]

2000-07-12 Thread Quel Qun

The problem is that its (urpm*) database update is cumbersome.

Welcome to Frisco, Chmou!

Chmouel Boudjnah <[EMAIL PROTECTED]> wrote:
> David Walluck <[EMAIL PROTECTED]> writes:
> 
> > Well, you are btruying to make RPM more apt like... but these frontens
are
> > odd.. didn't ROM v4 just come out? How about putting these features into
> > RPM itself? :)
> 
> urpmi urpf etc... are to rpm what apt is to dpkg (a front-end).
> 
> -- 
> MandrakeSoft Inchttp://www.mandrakesoft.com
> San-Francisco, CA USA --Chmouel


=-=
kk1


Get free email and a permanent address at http://www.netaddress.com/?N=1




Re: [Cooker] libgncengine.so.0?

2000-07-12 Thread Chmouel Boudjnah

David Walluck <[EMAIL PROTECTED]> writes:

> Well, you are btruying to make RPM more apt like... but these frontens are
> odd.. didn't ROM v4 just come out? How about putting these features into
> RPM itself? :)

urpmi urpf etc... are to rpm what apt is to dpkg (a front-end).

-- 
MandrakeSoft Inchttp://www.mandrakesoft.com
San-Francisco, CA USA --Chmouel




Re: [Cooker] libgncengine.so.0?

2000-07-12 Thread David Walluck

Well, you are btruying to make RPM more apt like... but these frontens are
odd.. didn't ROM v4 just come out? How about putting these features into
RPM itself? :)

On Wed, 12 Jul 2000, Vincent wrote:

> David Walluck a écrit :
> > 
> > Isn't this one of the major problems of RPM? It needs a lib but can't
> > tell you what package to get.
> 
> 
> urpmf can !
> 
> Vince
> 




Re: [Cooker] libgncengine.so.0?

2000-07-12 Thread Vincent

David Walluck a écrit :
> 
> Isn't this one of the major problems of RPM? It needs a lib but can't
> tell you what package to get.


urpmf can !

Vince




Re: [Cooker] libgncengine.so.0?

2000-07-11 Thread Quel Qun

Thanks a lot.
Now I have no excuse to delay my accounting ;-)
=-=
kk1


>From: Christopher Molnar <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Re: [Cooker] libgncengine.so.0?
>Date: Tue, 11 Jul 2000 08:50:04 -0400 (EDT)
>
>My screw-up, fixed try -3mdk
>
>-Chris
>
>On Mon, 10 Jul 2000, Quel Qun wrote:
>
> > The new gnucash cannot be installed:
> >
> > # rpm -Uvh gnucash-1.4.2-1mdk.i586.rpm
> > error: failed dependencies:
> > libgncengine.so.0 is needed by gnucash-1.4.2-1mdk
> >
> > I cannot find any rpm containing this library.
> > =-=
> > kk1
> > 
> > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
> >
> >
> >
>


Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com




Re: [Cooker] libgncengine.so.0?

2000-07-11 Thread Quel Qun

A little script can find it for you:

#! /bin/tcsh
#
# Looks for a package that contains a string

set RPMDIR = /cooker/Mandrake/RPMS

set rpmliste = `ls $RPMDIR`

foreach rpm ($rpmliste)
  set trig = `rpm -qpl $RPMDIR/$rpm | grep $1`
  if ($#trig != 0) then
echo $trig found in $rpm
  endif
end
#

Surely not the best but it works.
Of course, through ftp if you don't mirror locally, it 'might' be a bit 
slow...
=-=
kk1

>From: David Walluck <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Re: [Cooker] libgncengine.so.0?
>Date: Mon, 10 Jul 2000 21:16:07 -0400 (EDT)
>
>Isn't this one of the major problems of RPM? It needs a lib but can't
>tell you what package to get.
>
>On Mon, 10 Jul 2000, Quel Qun wrote:
>
> > The new gnucash cannot be installed:
> >
> > # rpm -Uvh gnucash-1.4.2-1mdk.i586.rpm
> > error: failed dependencies:
> > libgncengine.so.0 is needed by gnucash-1.4.2-1mdk
> >
> > I cannot find any rpm containing this library.
> > =-=
> > kk1
> >

Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com




Re: [Cooker] libgncengine.so.0?

2000-07-11 Thread Christopher Molnar


Not a problem of RPM but the packager (me) who was trying to get this out
and forgot to include the libs :-( The missing lib is part of the
package. Fixed now in -3mdk. Sorry.

-Chris



On Mon, 10 Jul 2000, David Walluck wrote:

> Isn't this one of the major problems of RPM? It needs a lib but can't
> tell you what package to get.
> 
> On Mon, 10 Jul 2000, Quel Qun wrote:
> 
> > The new gnucash cannot be installed:
> > 
> > # rpm -Uvh gnucash-1.4.2-1mdk.i586.rpm
> > error: failed dependencies:
> > libgncengine.so.0 is needed by gnucash-1.4.2-1mdk
> > 
> > I cannot find any rpm containing this library.
> > =-=
> > kk1
> > 
> > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
> > 
> 
> 
> 




Re: [Cooker] libgncengine.so.0?

2000-07-11 Thread Christopher Molnar

My screw-up, fixed try -3mdk

-Chris

On Mon, 10 Jul 2000, Quel Qun wrote:

> The new gnucash cannot be installed:
> 
> # rpm -Uvh gnucash-1.4.2-1mdk.i586.rpm
> error: failed dependencies:
> libgncengine.so.0 is needed by gnucash-1.4.2-1mdk
> 
> I cannot find any rpm containing this library.
> =-=
> kk1
> 
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
> 
> 
> 




Re: [Cooker] libgncengine.so.0?

2000-07-10 Thread Ron Stodden

David Walluck wrote:
> 
> Isn't this one of the major problems of RPM? It needs a lib but can't
> tell you what package to get.

FWIW, you can easily find out if you use http://www.rpmfind.net.  
Bring up the page for an RPM and it will show all the dependencies. 
Click on a dependency and it will bring up the page for the RPM that
contains that dependent file.

-- 

Regards,

Ron. [AU] - sent by Mandrake Linux.




Re: [Cooker] libgncengine.so.0?

2000-07-10 Thread David Walluck

Isn't this one of the major problems of RPM? It needs a lib but can't
tell you what package to get.

On Mon, 10 Jul 2000, Quel Qun wrote:

> The new gnucash cannot be installed:
> 
> # rpm -Uvh gnucash-1.4.2-1mdk.i586.rpm
> error: failed dependencies:
> libgncengine.so.0 is needed by gnucash-1.4.2-1mdk
> 
> I cannot find any rpm containing this library.
> =-=
> kk1
> 
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
>