<?xml version="1.0" encoding="ascii"?>
<rss version="2.0">
  <channel>
    <link>http://project.juiblex.co.uk/hg/razor/</link>
    <language>en-us</language>

    <title>razor: librazor/razor.h history</title>
    <description>librazor/razor.h revision history</description>
    <item>
    <title>Add support for preloading lua modules. This is useful both when</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{2523d03a840e}/librazor/razor.h</link>
    <description><![CDATA[Add support for preloading lua modules. This is useful both when<br/>
providing lua bindings to applications based on librazor and when<br/>
producing static binaries using librazor (where otherwise the lua<br/>
POSIX library would need to be included as an additional dynamic<br/>
object).]]></description>
    <author>&#74;&#46;&#32;&#65;&#108;&#105;&#32;&#72;&#97;&#114;&#108;&#111;&#119;&#32;&#60;&#97;&#108;&#105;&#64;&#106;&#117;&#105;&#98;&#108;&#101;&#120;&#46;&#99;&#111;&#46;&#117;&#107;&#62;</author>
    <pubDate>Wed, 29 Apr 2009 17:00:01 +0100</pubDate>
</item>
<item>
    <title>Add support for named roots so that we can understand MS-Windows paths</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{c9c90315ea24}/librazor/razor.h</link>
    <description><![CDATA[Add support for named roots so that we can understand MS-Windows paths<br/>
such as c:/windows. Without this, the user always has to ensure they<br/>
are on the correct drive before running razor.]]></description>
    <author>&#74;&#46;&#32;&#65;&#108;&#105;&#32;&#72;&#97;&#114;&#108;&#111;&#119;&#32;&#60;&#97;&#108;&#105;&#64;&#106;&#117;&#105;&#98;&#108;&#101;&#120;&#46;&#99;&#111;&#46;&#117;&#107;&#62;</author>
    <pubDate>Wed, 22 Apr 2009 15:09:17 +0100</pubDate>
</item>
<item>
    <title>Implement relocatations when installing rpms.</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{48b0adfe3059}/librazor/razor.h</link>
    <description><![CDATA[Implement relocatations when installing rpms.]]></description>
    <author>&#74;&#46;&#32;&#65;&#108;&#105;&#32;&#72;&#97;&#114;&#108;&#111;&#119;&#32;&#60;&#97;&#108;&#105;&#64;&#106;&#117;&#105;&#98;&#108;&#101;&#120;&#46;&#99;&#111;&#46;&#117;&#107;&#62;</author>
    <pubDate>Thu, 22 Jan 2009 22:54:45 +0000</pubDate>
</item>
<item>
    <title>Change the install iterator API to what we want.</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{5ebed314390c}/librazor/razor.h</link>
    <description><![CDATA[Change the install iterator API to what we want.]]></description>
    <author>&#75;&#114;&#105;&#115;&#116;&#105;&#97;&#110;&#32;&#72;&#63;&#103;&#115;&#98;&#101;&#114;&#103;&#32;&#60;&#107;&#114;&#104;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Tue, 08 Jul 2008 22:02:58 -0400</pubDate>
</item>
<item>
    <title>Document the razor_importer API.</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{a69289c9080c}/librazor/razor.h</link>
    <description><![CDATA[Document the razor_importer API.]]></description>
    <author>&#75;&#114;&#105;&#115;&#116;&#105;&#97;&#110;&#32;&#72;&#63;&#103;&#115;&#98;&#101;&#114;&#103;&#32;&#60;&#107;&#114;&#104;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Tue, 01 Jul 2008 10:49:48 -0400</pubDate>
</item>
<item>
    <title>convert the NULL sentinel to RAZOR_DETAIL_LAST</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{95b6bcadd6c4}/librazor/razor.h</link>
    <description><![CDATA[convert the NULL sentinel to RAZOR_DETAIL_LAST]]></description>
    <author>&#82;&#105;&#99;&#104;&#97;&#114;&#100;&#32;&#72;&#117;&#103;&#104;&#101;&#115;&#32;&#60;&#114;&#105;&#99;&#104;&#97;&#114;&#100;&#64;&#104;&#117;&#103;&#104;&#115;&#105;&#101;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Tue, 01 Jul 2008 09:22:25 +0100</pubDate>
</item>
<item>
    <title>Get rid of razor_set_get_package().</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{cd3954499086}/librazor/razor.h</link>
    <description><![CDATA[Get rid of razor_set_get_package().<br/>
<br/>
This was always a silly little helper function, not general enough for<br/>
real world applications.  Use an iterator to search through the set to<br/>
find the package of interest.]]></description>
    <author>&#75;&#114;&#105;&#115;&#116;&#105;&#97;&#110;&#32;&#72;&#63;&#103;&#115;&#98;&#101;&#114;&#103;&#32;&#60;&#107;&#114;&#104;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Mon, 30 Jun 2008 13:28:59 -0400</pubDate>
</item>
<item>
    <title>the vararg list must be terminated with zero else 64bit machines may crash</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{bf23ba00db03}/librazor/razor.h</link>
    <description><![CDATA[the vararg list must be terminated with zero else 64bit machines may crash<br/>
<br/>
On 64 bit systems, the integer 0 is 32 bits and the pointer 0 is 64 bits.<br/>
The upper 32 bits will not be cleared and the loop will never terminate.<br/>
Also add the RAZOR_SENTINEL __attribute__ ((__sentinel__(0))) on GCC4<br/>
so we catch where we get this wrong automatically.<br/>
<br/>
This also fixes the new search functionality from James which was missed<br/>
in the merge.]]></description>
    <author>&#82;&#105;&#99;&#104;&#97;&#114;&#100;&#32;&#72;&#117;&#103;&#104;&#101;&#115;&#32;&#60;&#114;&#105;&#99;&#104;&#97;&#114;&#100;&#64;&#104;&#117;&#103;&#104;&#115;&#105;&#101;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Mon, 30 Jun 2008 10:46:20 +0100</pubDate>
</item>
<item>
    <title>convert razor_package_get_details() and razor_package_iterator_next() to varargs</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{9b71b537d175}/librazor/razor.h</link>
    <description><![CDATA[convert razor_package_get_details() and razor_package_iterator_next() to varargs<br/>
<br/>
The functions for getting package details about a package were limited to a few<br/>
things, when in the future we will want to support much more about a package.<br/>
The iterator was also limited to name,version,arch when most of the time we<br/>
didn't need all this data.]]></description>
    <author>&#82;&#105;&#99;&#104;&#97;&#114;&#100;&#32;&#72;&#117;&#103;&#104;&#101;&#115;&#32;&#60;&#114;&#105;&#99;&#104;&#97;&#114;&#100;&#64;&#104;&#117;&#103;&#104;&#115;&#105;&#101;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Mon, 30 Jun 2008 08:51:26 +0100</pubDate>
</item>
<item>
    <title>Add return codes to razor_set_open_files and open_details</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{75da311eda45}/librazor/razor.h</link>
    <description><![CDATA[Add return codes to razor_set_open_files and open_details]]></description>
    <author>&#74;&#97;&#109;&#101;&#115;&#32;&#66;&#111;&#119;&#101;&#115;&#32;&#60;&#106;&#98;&#111;&#119;&#101;&#115;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Thu, 26 Jun 2008 17:16:13 -0400</pubDate>
</item>
<item>
    <title>Get the test driver compiling and running again (but not passing).</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{6e19775d8930}/librazor/razor.h</link>
    <description><![CDATA[Get the test driver compiling and running again (but not passing).]]></description>
    <author>&#74;&#97;&#109;&#101;&#115;&#32;&#66;&#111;&#119;&#101;&#115;&#32;&#60;&#106;&#98;&#111;&#119;&#101;&#115;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Wed, 25 Jun 2008 20:53:48 -0400</pubDate>
</item>
<item>
    <title>Implement rpm --query --file</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{27b0d4068feb}/librazor/razor.h</link>
    <description><![CDATA[Implement rpm --query --file]]></description>
    <author>&#74;&#97;&#109;&#101;&#115;&#32;&#66;&#111;&#119;&#101;&#115;&#32;&#60;&#106;&#98;&#111;&#119;&#101;&#115;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Mon, 23 Jun 2008 20:48:48 -0400</pubDate>
</item>
<item>
    <title>Nuke ARRAY_SIZE and obsolete razor_set_list_unsatisfied from razor.h.</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{3980d1d9148e}/librazor/razor.h</link>
    <description><![CDATA[Nuke ARRAY_SIZE and obsolete razor_set_list_unsatisfied from razor.h.]]></description>
    <author>&#75;&#114;&#105;&#115;&#116;&#105;&#97;&#110;&#32;&#72;&#63;&#103;&#115;&#98;&#101;&#114;&#103;&#32;&#60;&#107;&#114;&#104;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Mon, 23 Jun 2008 17:31:32 -0400</pubDate>
</item>
<item>
    <title>Set up gtkdoc for razor.</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{63644cc28e0b}/librazor/razor.h</link>
    <description><![CDATA[Set up gtkdoc for razor.<br/>
<br/>
Despite its name, gtkdoc doesn't require gtk+ and is a nice way to<br/>
generate DocBook format API documentation.]]></description>
    <author>&#75;&#114;&#105;&#115;&#116;&#105;&#97;&#110;&#32;&#72;&#63;&#103;&#115;&#98;&#101;&#114;&#103;&#32;&#60;&#107;&#114;&#104;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Mon, 23 Jun 2008 13:54:56 -0400</pubDate>
</item>
<item>
    <title>Merge commit 'jbowes/master'</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{5b0601d184ed}/librazor/razor.h</link>
    <description><![CDATA[Merge commit 'jbowes/master']]></description>
    <author>&#75;&#114;&#105;&#115;&#116;&#105;&#97;&#110;&#32;&#72;&#63;&#103;&#115;&#98;&#101;&#114;&#103;&#32;&#60;&#107;&#114;&#104;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Mon, 23 Jun 2008 09:59:08 -0400</pubDate>
</item>
<item>
    <title>Merge branch 'krh/master'</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{29d5002bd17f}/librazor/razor.h</link>
    <description><![CDATA[Merge branch 'krh/master'<br/>
<br/>
Conflicts:<br/>
<br/>
	librazor/razor.h<br/>
	librazor/rpm.c<br/>
	razor.c<br/>
	src/main.c]]></description>
    <author>&#74;&#97;&#109;&#101;&#115;&#32;&#66;&#111;&#119;&#101;&#115;&#32;&#60;&#106;&#98;&#111;&#119;&#101;&#115;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Fri, 20 Jun 2008 19:04:47 -0400</pubDate>
</item>
<item>
    <title>Introduce install/remove iterators.</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{ccb1c11968ab}/librazor/razor.h</link>
    <description><![CDATA[Introduce install/remove iterators.<br/>
<br/>
These iterator constructors lets you pass in two sets and creates<br/>
an iterator for the packages to remove or the packages to install.<br/>
The iterators will step through the packages in a sequence that respects<br/>
the pre, post, preun and postun modifiers.<br/>
<br/>
Right now, the install order isn't actually implemented, this patch just<br/>
implements the API changes and updates the applications.]]></description>
    <author>&#75;&#114;&#105;&#115;&#116;&#105;&#97;&#110;&#32;&#72;&#63;&#103;&#115;&#98;&#101;&#114;&#103;&#32;&#60;&#107;&#114;&#104;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Fri, 20 Jun 2008 21:56:43 -0400</pubDate>
</item>
<item>
    <title>Fix the razor_set_diff() callback prototype.</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{338a577cdfd2}/librazor/razor.h</link>
    <description><![CDATA[Fix the razor_set_diff() callback prototype.<br/>
<br/>
The old proto type didn't let us pass the razor_package.]]></description>
    <author>&#75;&#114;&#105;&#115;&#116;&#105;&#97;&#110;&#32;&#72;&#63;&#103;&#115;&#98;&#101;&#114;&#103;&#32;&#60;&#107;&#114;&#104;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Fri, 20 Jun 2008 21:38:29 -0400</pubDate>
</item>
<item>
    <title>Add getter to return system set for a razor_root.</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{ce5402017488}/librazor/razor.h</link>
    <description><![CDATA[Add getter to return system set for a razor_root.]]></description>
    <author>&#75;&#114;&#105;&#115;&#116;&#105;&#97;&#110;&#32;&#72;&#63;&#103;&#115;&#98;&#101;&#114;&#103;&#32;&#60;&#107;&#114;&#104;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Fri, 20 Jun 2008 18:26:46 -0400</pubDate>
</item>
<item>
    <title>Rename razor_importer_new to _create to follow convention.</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{061a5b815727}/librazor/razor.h</link>
    <description><![CDATA[Rename razor_importer_new to _create to follow convention.]]></description>
    <author>&#75;&#114;&#105;&#115;&#116;&#105;&#97;&#110;&#32;&#72;&#63;&#103;&#115;&#98;&#101;&#114;&#103;&#32;&#60;&#107;&#114;&#104;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Fri, 20 Jun 2008 16:48:44 -0400</pubDate>
</item>
<item>
    <title>Break up the monolithic razor.c.</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{057933050c42}/librazor/razor.h</link>
    <description><![CDATA[Break up the monolithic razor.c.]]></description>
    <author>&#75;&#114;&#105;&#115;&#116;&#105;&#97;&#110;&#32;&#72;&#63;&#103;&#115;&#98;&#101;&#114;&#103;&#32;&#60;&#107;&#114;&#104;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Fri, 20 Jun 2008 15:10:34 -0400</pubDate>
</item>
<item>
    <title>Record the time of dependencies (post, pre, postun, preun).</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{63444a10fb8e}/librazor/razor.h</link>
    <description><![CDATA[Record the time of dependencies (post, pre, postun, preun).]]></description>
    <author>&#75;&#114;&#105;&#115;&#116;&#105;&#97;&#110;&#32;&#72;&#63;&#103;&#115;&#98;&#101;&#114;&#103;&#32;&#60;&#107;&#114;&#104;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Fri, 20 Jun 2008 14:18:52 -0400</pubDate>
</item>
<item>
    <title>Autoconfify razor.</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{c3eb520e2219}/librazor/razor.h</link>
    <description><![CDATA[Autoconfify razor.<br/>
<br/>
committer: Kristian H?gsberg &lt;krh@redhat.com&gt;]]></description>
    <author>&#82;&#105;&#99;&#104;&#97;&#114;&#100;&#32;&#72;&#117;&#103;&#104;&#101;&#115;&#32;&#60;&#114;&#104;&#117;&#103;&#104;&#101;&#115;&#64;&#114;&#101;&#100;&#104;&#97;&#116;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Mon, 16 Jun 2008 15:40:30 -0400</pubDate>
</item>

  </channel>
</rss>
