Fabrice FACORAT ([EMAIL PROTECTED]) wrote:
> le sam 17-11-2001 � 18:38, Han a �crit :
> > With the latest attempt to run my cookerupdate script:
> > [~]# cat `which cookerupdate`
> > #!/bin/sh
> > /usr/sbin/urpmi.update --auto-select && /usr/sbin/urpmi --auto-select
> > :)
> > ..still fails so I tried using rpmdrake and that failed cause it got
> > tons of package conflicts ie it tried to use rpm -ivh instead of rpm
> > -Uvh
> > Off course the packages were in /usr/rpms, the originating dir for the
> > symlink /var/cache/urpmi/rpms ( hint hint ) so a rpm -Uvh * did all
> > the updates.
> the probl�me comes from urpmi
> #- install package.
> my @rpms_install = grep { $_ !~ /\.src.\.rpm/ } values
> %{$urpm->extract_packages_to_install(\%sources) || {}};
> my @rpms_upgrade = grep { $_ !~ /\.src.\.rpm/ } values %sources;
> Would you mind try this ?
> #- install package.
> my @rpms_install = grep { $_ !~ /\.src.\.rpm/ } values
> %{$urpm->extract_packages_to_install(\%sources) || {}};
> my @rpms_upgrade = grep { $_ !~ /\.src.\.rpm/ } values
> %{$urpm->select_packages_to_upgrade(%sources) || {}};
> just modify urpmi. It's the line 293.
my cookerupdate still gives the:
......blah.......
package ghostscript-6.51-31mdk.i586 is not found.
package libSDL1.2-1.2.3-2mdk.i586 is not found.
unable to get source packages, aborting
rpmdrake said: everything allready installed.
my line 293:
my @rpms_upgrade = grep { $_ !~ /\.src.\.rpm/ } values
%{$urpm->select_packages_to_upgrade(%sources) || {}};
hmmm
Cya, Han.