<?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: src/rpm.c history</title>
    <description>src/rpm.c revision history</description>
    <item>
    <title>Go back to having all info in one rzdb file.</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{fda83d91e600}/src/rpm.c</link>
    <description><![CDATA[Go back to having all info in one rzdb file.<br/>
<br/>
We can still split the rzdb file into a main file and a file data and a details file, but that's only for optimizing the required download size. On the system we always combine the parts back into one rzdb file once downloaded.<br/>
<br/>
committer: J. Ali Harlow &lt;ali@juiblex.co.uk&gt;]]></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, 03 Jul 2009 19:06:29 +0100</pubDate>
</item>
<item>
    <title>Add basic support for uninstall scripts.</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{f8c27fe9fe63}/src/rpm.c</link>
    <description><![CDATA[Add basic support for uninstall scripts.<br/>
RPM_INSTALL_PREFIX{n} is not yet supported and upgrading a package<br/>
where an uninstall script changes may need more work to ensure the<br/>
old script doesn't get included in the merged set (when it is too<br/>
late to remove). I haven't yet tested whether this is a real problem.]]></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>Fri, 12 Jun 2009 16:59:11 +0100</pubDate>
</item>
<item>
    <title>rename the .repo files to .rzdb files</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{9a7691262ce6}/src/rpm.c</link>
    <description><![CDATA[rename the .repo files to .rzdb files]]></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>Wed, 02 Jul 2008 18:46:47 +0100</pubDate>
</item>
<item>
    <title>convert the NULL sentinel to RAZOR_DETAIL_LAST</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{95b6bcadd6c4}/src/rpm.c</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}/src/rpm.c</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}/src/rpm.c</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}/src/rpm.c</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>get rpm -qpi working fully</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{dc69c55cf462}/src/rpm.c</link>
    <description><![CDATA[get rpm -qpi working fully]]></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 18:15:59 -0400</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}/src/rpm.c</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>For rpm --query, --requires is also -R</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{5a20654e903c}/src/rpm.c</link>
    <description><![CDATA[For rpm --query, --requires is also -R]]></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 21:38:33 -0400</pubDate>
</item>
<item>
    <title>Implement rpm --query --file</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{27b0d4068feb}/src/rpm.c</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>Display razor version number for rpm --version</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{4b0a1201342a}/src/rpm.c</link>
    <description><![CDATA[Display razor version number for rpm --version]]></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:20:08 -0400</pubDate>
</item>
<item>
    <title>Implement rpm --query --list</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{1862b95f4cd6}/src/rpm.c</link>
    <description><![CDATA[Implement rpm --query --list]]></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:09:56 -0400</pubDate>
</item>
<item>
    <title>Add some support for --info.</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{9b652c3617d9}/src/rpm.c</link>
    <description><![CDATA[Add some support for --info.]]></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 14:34:47 -0400</pubDate>
</item>
<item>
    <title>Fix the razor_set_diff() callback prototype.</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{338a577cdfd2}/src/rpm.c</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>Rename razor_importer_new to _create to follow convention.</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{061a5b815727}/src/rpm.c</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>Record the time of dependencies (post, pre, postun, preun).</title>
    <link>http://project.juiblex.co.uk/hg/razor/log{63444a10fb8e}/src/rpm.c</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}/src/rpm.c</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>
