So, if anyone cares, here's the script that runs great to change the
package names over:
----------------------
#!/bin/sh
ipkg update;
for i in `ipkg status|grep opie|cut -d" " -f2`;
do
ipkg remove $i;
ipkg install $i;
done;
----------------------
Thanks, Chris.
-M@
On 22 Feb 2002, Chris Larson wrote:
> ipkg update; for i in `ipkg status|grep opie|cut -d" " -f2`; do ipkg
> remove $i; ipkg install $i; done;
>
> On Fri, 2002-02-22 at 13:24, Matthew Hixson wrote:
> > Would it be possible to modify that command to automagically reinstall
> > each of the packages immediately after they've been removed so that we
> > don't have to reinstall everything by hand?
> > Thanks,
> > -M@
> >
> >
> > On Fri, 22 Feb 2002, Benjamin Long wrote:
> >
> > > We've changed the names of the packages to make versioning saner. The
> > > packages now have a timestamp in them instead of the "-beta#" subversion.
> > > Unfortunately, ipkg chokes on this if you try to upgrade from the older
> > > packages. It thinks the packages are a lower version number. To get around
> > > this, you can run:
> > > for i in `ipkg status|grep opie|cut -d" " -f2`; do ipkg remove $i; done;
> > > This will remove all the old opie-* packages and allow you to install the new
> > > ones.
> > >
> > > Sorry for the hiccup.
> > >
> > > Benjamin Long
> > > _______________________________________________
> > > Open Source User Interface and Apps built on Qt Embedded
> > > Opie mailing list
> > > Opie@handhelds.org
> > > http://handhelds.org/mailman/listinfo/opie
> > >
> >
> > _______________________________________________
> > Open Source User Interface and Apps built on Qt Embedded
> > Opie mailing list
> > Opie@handhelds.org
> > http://handhelds.org/mailman/listinfo/opie
> --
> Chris Larson, RHCE, LPIC-1, LCP - aka Kergoth
> kergoth at digitalnemesis dot net
>
> _______________________________________________
> Open Source User Interface and Apps built on Qt Embedded
> Opie mailing list
> Opie@handhelds.org
> http://handhelds.org/mailman/listinfo/opie
>
Received on Sat Feb 23 01:20:44 2002
This archive was generated by hypermail 2.1.8 : Tue May 04 2004 - 09:50:02 EDT