2008-02-26redo razor_set_update to only rebuild the set once
Dan Winship <danw@gnome.org> [Tue, 26 Feb 2008 16:39:01 -0500] rev 134
redo razor_set_update to only rebuild the set once

messy, and with too much duplicated code...

2008-02-26fix one of the tests to match the probably mistaken python version, and
Dan Winship <danw@gnome.org> [Tue, 26 Feb 2008 13:47:31 -0500] rev 133
fix one of the tests to match the probably mistaken python version, and
add two more comments pointing out oddities in the python tests

2008-02-22Merge branch 'master' of git+ssh://people.freedesktop.org/~danw/razor
Dan Winship <danw@gnome.org> [Fri, 22 Feb 2008 12:53:07 -0500] rev 132
Merge branch 'master' of git+ssh://people.freedesktop.org/~danw/razor

Conflicts:

razor.c

2008-02-21make razor_set_update not loop forever on unsatisfiable dependencies
Dan Winship <danw@gnome.org> [Thu, 21 Feb 2008 14:58:39 -0500] rev 131
make razor_set_update not loop forever on unsatisfiable dependencies

this is mostly a dead-end, as to get the next test working i need to
rewrite the code as suggested in the comment above razor_set_revalidate

2008-02-22redo razor_set_remove() to only do a single merge
Dan Winship <danw@gnome.org> [Fri, 22 Feb 2008 12:49:13 -0500] rev 130
redo razor_set_remove() to only do a single merge

2008-02-21Add support for removing packages
Dan Winship <danw@gnome.org> [Thu, 21 Feb 2008 12:09:13 -0500] rev 129
Add support for removing packages

Should be redone to avoid rebuilding the set multiple times

First two tests pass now

2008-02-20fix rebuild_property_package_lists to put the lists in the right pool
Dan Winship <danw@gnome.org> [Wed, 20 Feb 2008 16:54:03 -0500] rev 128
fix rebuild_property_package_lists to put the lists in the right pool

(likewise rebuild_file_package_lists, which was copied from it)

2008-02-20Merge file lists when updating
Dan Winship <danw@gnome.org> [Wed, 20 Feb 2008 13:34:55 -0500] rev 127
Merge file lists when updating

Currently a bit of a mess due to repeated rewriting. To be cleaned up
after we decide whether or not to keep the current file layout

2008-02-20Fix file importing code to not generate some duplicate directories
Dan Winship <danw@gnome.org> [Wed, 20 Feb 2008 12:42:42 -0500] rev 126
Fix file importing code to not generate some duplicate directories

build_file_tree() depends on the fact that the contents of a directory
are sorted immediately after it in the file list, but '.' sorts before '/'
lexicographically, so you'd actually end up with, eg:

/etc/yum
/etc/yum.conf
/etc/yum/pluginconf.d

which would cause a second entry for /etc/yum to be added to the file
list.

For now I've fixed this by make compare_filenames() do a special strcmp
by hand, manually sorting '/' before anything else.

2008-02-15redo test framework, with tests taken from yum sources
Dan Winship <danw@gnome.org> [Fri, 15 Feb 2008 15:09:37 -0500] rev 125
redo test framework, with tests taken from yum sources

(none of them pass yet...)