Dan Winship <danw@gnome.org> [Fri, 08 Feb 2008 14:39:34 -0500] rev 117
improve the list abstraction with "struct list_head" and "struct list"
both structs are actually just uint32_t's in disguise, using bitfields
to avoid the need for explicit bit operations, and using two type names
to hide the RAZOR_IMMEDIATE hack from the public API
Dan Winship <danw@gnome.org> [Fri, 08 Feb 2008 11:19:36 -0500] rev 116
Add a list abstraction for package/property lists
Dan Winship <danw@gnome.org> [Thu, 07 Feb 2008 09:58:48 -0500] rev 115
split array and hashtable code out into a new file
Dan Winship <danw@gnome.org> [Wed, 06 Feb 2008 13:02:50 -0500] rev 114
clean up some duplicated code around calls to add_to_property_pool
Dan Winship <danw@gnome.org> [Wed, 06 Feb 2008 12:59:27 -0500] rev 113
pad repo files with 0 bytes, not random memory
so you can do:
./razor import-yum
mv rawhide.repo rawhide.repo.orig
make
./razor import-yum
diff rawhide.repo.orig rawhide.repo
(doesn't work with system.repo at the moment...)
Dan Winship <danw@gnome.org> [Wed, 06 Feb 2008 12:37:49 -0500] rev 112
fix dependencies
Dan Winship <danw@gnome.org> [Tue, 05 Feb 2008 12:14:50 -0500] rev 111
s/import/yum/
Dan Winship <danw@gnome.org> [Tue, 05 Feb 2008 12:02:53 -0500] rev 110
update
Dan Winship <danw@gnome.org> [Mon, 04 Feb 2008 14:25:45 -0500] rev 109
Support for less/equal/greater version in requires/conflicts, etc
Add less/equal/greater information to razor_property, and update
importers and other code.
Move the rpm importer from import.c to rpm.c to avoid code
duplication, and then rename import.c to yum.c since that's all that's
left.
Dan Winship <danw@gnome.org> [Mon, 04 Feb 2008 10:46:29 -0500] rev 108
Fix repo format on x86_64 by using uint32_t instead of unsigned long