[Mono-dev] mono-find-(provides|requires)

Andrew Jorgensen ajorgensen at novell.com
Fri Dec 12 10:56:48 EST 2008


There are some significant problems with the mono-find-(provides|requires) scripts as they exist now.  Some examples will illustrate the problem best:

smuxi requires mono(log4net) which is provided by log4net but it is also provided by mojoportal.  If you install mojoportal and then smuxi you will not get log4net and smuxi will not run.  As a stop-gap we currently filter the provides to remove things likelog4net from the provides list of mojoportal, for instance, but this is hacky and difficult to maintain.

The first logical step is to modify mono-find-provides so that it does not emit a provides for anything which is not in the gac.  This has the following problem:

monodevelop-boo requires mono(MonoDevelop.Core) but if mono-find-provides does not emit provides for things not installed in the gac then nothing provides mono(MonoDevelop.Core).

We could manually say that monodevelop provides mono(MonoDevelop.Core) but this would be error-prone and difficult to maintain, particularly as API versions may change between releases and the packager has no easy way to see that change.

Perhaps there's a way to check if a particular requirement is going tobe satisfied from the gac or from some other location and not emit arequires if it's not satisfied by the gac?  Then packagers would have to manually add a requires on the package that provides the assembly.  Also not desirable I think.

Another option would be to insist that MonoDevelop installMonoDevelop.Core to the gac but maybe that's undesirable.  Or maybe itis?  Please let me know if that's a good solution.

I don't know how best to solve this issue but it needs to be solved.  As more mono-based packages are added to linux distributions the problem will grow.  Please share your well-reasoned ideas and / or proposed patches.



More information about the Mono-devel-list mailing list