Remove opkg_internal_use_only and fix associated assumptions RE pkg->provides.
authorgraham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Tue, 10 Nov 2009 05:00:59 +0000 (05:00 +0000)
committergraham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Tue, 10 Nov 2009 05:00:59 +0000 (05:00 +0000)
commitdc23bec5af327cff093dc471441124944c39cc9c
tree83adfb0244b66655373d56167e2d26923dc1f96a
parent6e59ec90af245ddf2d2534981fa0eb7804a8686d
Remove opkg_internal_use_only and fix associated assumptions RE pkg->provides.

It appears that the opkg_internal_use_only provides string was introduced to
bandaid over problems with assuming that the pkg->provides, pkg->provides_str
and pkg->provides_count are all the same length. As each pkg provides itself,
the pkg->provides array was one longer than the str and count fields. Most of
the uses of pkg->provides did not take this into account.

This behaviour has been changed. pkg->provides is now pkg->provides_count long
and it is pkg->provides_str which is shorter by one.

Associated dead code has also been removed.

git-svn-id: http://opkg.googlecode.com/svn/trunk@277 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
libopkg/opkg_remove.c
libopkg/pkg.c
libopkg/pkg_depends.c
libopkg/pkg_depends.h
libopkg/pkg_parse.c