diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2008-07-04 14:22:06 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2008-07-04 14:22:06 +0300 |
commit | d902040e1484f1352dafc96c77678da0ebf44035 (patch) | |
tree | a2477ca24b474e201130bce13efe98d18a47a73c /python | |
parent | d0fbf7b246d4232a3a833753d488646e0636de2a (diff) | |
download | rpm-d902040e1484f1352dafc96c77678da0ebf44035.tar.gz rpm-d902040e1484f1352dafc96c77678da0ebf44035.tar.bz2 rpm-d902040e1484f1352dafc96c77678da0ebf44035.zip |
Remove solvedb API and other related stuff
- nobody has used the solvedb for anything in years
- the mechanism + rpmcache are horribly broken on multilib
- solvedb is way too heavyweight to be really usable as a general mechanism
- solver callback hook left in place as that could in theory be usable still
- we need something better to replace this all, getting rid of it now
so we're not stuck with the API forever
Diffstat (limited to 'python')
-rw-r--r-- | python/rpmts-py.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/python/rpmts-py.c b/python/rpmts-py.c index 8846334b7..cf7e4a3c6 100644 --- a/python/rpmts-py.c +++ b/python/rpmts-py.c @@ -347,9 +347,6 @@ fprintf(stderr, "*** rpmts_Check(%p) ts %p cb %p\n", s, s->ts, cbInfo.cb); xx = rpmtsCheck(s->ts); ps = rpmtsProblems(s->ts); - if (cbInfo.cb) - xx = rpmtsSetSolveCallback(s->ts, rpmtsSolve, NULL); - PyEval_RestoreThread(cbInfo._save); if (ps != NULL) { |