<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments for Brad Walker</title>
	<atom:link href="http://bradmwalker.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://bradmwalker.com</link>
	<description>Development Log</description>
	<pubDate>Tue, 06 Jan 2009 20:35:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on New Emacs 23 Yum Repository Online by Brad Walker</title>
		<link>http://bradmwalker.com/2008/05/23/new-emacs-23-yum-repository-online/comment-page-2/#comment-871</link>
		<dc:creator>Brad Walker</dc:creator>
		<pubDate>Tue, 23 Dec 2008 12:48:54 +0000</pubDate>
		<guid isPermaLink="false">http://bradmwalker.com/?p=15#comment-871</guid>
		<description>New i386 and x86_64 builds for F8-10 are up. Download the repository RPM on the sidepanel. I'm still working on a build for EPEL 5.</description>
		<content:encoded><![CDATA[<p>New i386 and x86_64 builds for F8-10 are up. Download the repository RPM on the sidepanel. I&#8217;m still working on a build for EPEL 5.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Emacs 23 Yum Repository Online by Allen Halsey</title>
		<link>http://bradmwalker.com/2008/05/23/new-emacs-23-yum-repository-online/comment-page-2/#comment-862</link>
		<dc:creator>Allen Halsey</dc:creator>
		<pubDate>Tue, 25 Nov 2008 19:19:54 +0000</pubDate>
		<guid isPermaLink="false">http://bradmwalker.com/?p=15#comment-862</guid>
		<description>Can we have a build for Fedora 10 (released today)?</description>
		<content:encoded><![CDATA[<p>Can we have a build for Fedora 10 (released today)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yum Repository Online by arnab</title>
		<link>http://bradmwalker.com/2008/02/26/yum-repository-online/comment-page-1/#comment-23</link>
		<dc:creator>arnab</dc:creator>
		<pubDate>Fri, 23 May 2008 20:00:11 +0000</pubDate>
		<guid isPermaLink="false">http://bradmwalker.com/?p=4#comment-23</guid>
		<description>First of all thanks for maintaining the repository.  I have the package working perfectly under Fedora 9.  But after a recent update I noticed that the emacs status bar fonts all got corrupted.  I am using the Liberation fonts.  However, the staus bar displays its text in some kind of (ugly) bold bitmap font.  Any idea?</description>
		<content:encoded><![CDATA[<p>First of all thanks for maintaining the repository.  I have the package working perfectly under Fedora 9.  But after a recent update I noticed that the emacs status bar fonts all got corrupted.  I am using the Liberation fonts.  However, the staus bar displays its text in some kind of (ugly) bold bitmap font.  Any idea?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yum Repository Online by Kevin Murphy</title>
		<link>http://bradmwalker.com/2008/02/26/yum-repository-online/comment-page-1/#comment-22</link>
		<dc:creator>Kevin Murphy</dc:creator>
		<pubDate>Sun, 18 May 2008 00:45:33 +0000</pubDate>
		<guid isPermaLink="false">http://bradmwalker.com/?p=4#comment-22</guid>
		<description>Using CentOS 5, after installing the yum repository, I ran yum and got this error:

http://rpm.bradmwalker.com/5/repodata/repomd.xml: [Errno 14] HTTP Error 500: Internal Server Error
Trying other mirror.
Error: Cannot open/read repomd.xml file for repository: brad-walker</description>
		<content:encoded><![CDATA[<p>Using CentOS 5, after installing the yum repository, I ran yum and got this error:</p>
<p><a href="http://rpm.bradmwalker.com/5/repodata/repomd.xml" rel="nofollow">http://rpm.bradmwalker.com/5/repodata/repomd.xml</a>: [Errno 14] HTTP Error 500: Internal Server Error<br />
Trying other mirror.<br />
Error: Cannot open/read repomd.xml file for repository: brad-walker</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New RPM-Spec-Mode by Chip Coldwell</title>
		<link>http://bradmwalker.com/2008/03/31/new-rpm-spec-mode/comment-page-1/#comment-20</link>
		<dc:creator>Chip Coldwell</dc:creator>
		<pubDate>Thu, 24 Apr 2008 15:41:49 +0000</pubDate>
		<guid isPermaLink="false">http://bradmwalker.com/?p=9#comment-20</guid>
		<description>Actually, the problem with signing rpms is now fixed in the patched rpm-spec-mode that comes with emacs-22.2-1.  So functionally, it is exactly the same as the unpatched version, except that it uses a real compilation buffer that is read-only.

Code here:

  (progn
    (defun list-&#62;string (lst)
      (if (cdr lst)
          (concat (car lst) " " (list-&#62;string (cdr lst)))
        (car lst)))
    (compilation-start (list-&#62;string (cons rpm-spec-build-command buildoptions)) 'rpmbuild-mode))
  
  (if (and rpm-spec-sign-gpg (not rpm-no-gpg))
      (let ((build-proc (get-buffer-process
                         (get-buffer
                          (compilation-buffer-name "rpmbuild" nil nil))))
            (rpm-passwd-cache (read-passwd "GPG passphrase: ")))
        (process-send-string build-proc (concat rpm-passwd-cache "\n")))))</description>
		<content:encoded><![CDATA[<p>Actually, the problem with signing rpms is now fixed in the patched rpm-spec-mode that comes with emacs-22.2-1.  So functionally, it is exactly the same as the unpatched version, except that it uses a real compilation buffer that is read-only.</p>
<p>Code here:</p>
<p>  (progn<br />
    (defun list-&gt;string (lst)<br />
      (if (cdr lst)<br />
          (concat (car lst) &#8221; &#8221; (list-&gt;string (cdr lst)))<br />
        (car lst)))<br />
    (compilation-start (list-&gt;string (cons rpm-spec-build-command buildoptions)) &#8216;rpmbuild-mode))</p>
<p>  (if (and rpm-spec-sign-gpg (not rpm-no-gpg))<br />
      (let ((build-proc (get-buffer-process<br />
                         (get-buffer<br />
                          (compilation-buffer-name &#8220;rpmbuild&#8221; nil nil))))<br />
            (rpm-passwd-cache (read-passwd &#8220;GPG passphrase: &#8220;)))<br />
        (process-send-string build-proc (concat rpm-passwd-cache &#8220;\n&#8221;)))))</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yum Repository Online by Christian Betz</title>
		<link>http://bradmwalker.com/2008/02/26/yum-repository-online/comment-page-1/#comment-19</link>
		<dc:creator>Christian Betz</dc:creator>
		<pubDate>Mon, 21 Apr 2008 14:50:18 +0000</pubDate>
		<guid isPermaLink="false">http://bradmwalker.com/?p=4#comment-19</guid>
		<description>Thank you so much my emacs now looks awesome!</description>
		<content:encoded><![CDATA[<p>Thank you so much my emacs now looks awesome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Emacs 23 Fedora Packages by Brad Walker</title>
		<link>http://bradmwalker.com/2008/02/19/emacs-23-fedora-packages/comment-page-1/#comment-9</link>
		<dc:creator>Brad Walker</dc:creator>
		<pubDate>Mon, 31 Mar 2008 13:34:43 +0000</pubDate>
		<guid isPermaLink="false">http://bradmwalker.com/?p=3#comment-9</guid>
		<description>Upgrading between 22.1.fc8 and 22.1.50.fc9 also causes this problem. I reported this upstream: &lt;a href="https://bugzilla.redhat.com/show_bug.cgi?id=439076" title="Bugzilla Bug 439076: Upgrading emacs-22.1 to 22.1.50 keeps old symlinks" rel="nofollow"&gt;Redhat Bugzilla #439076&lt;/a&gt;.

Two workarounds in addition to &lt;code&gt;alternatives --config emacs&lt;/code&gt; exist:
&lt;ol&gt;&lt;li&gt;Uninstall emacs then install the new version instead of &lt;code&gt;yum upgrade 'emacs*'&lt;/code&gt;.
&lt;li&gt;Use &lt;code&gt;alternatives --remove emacs &#60;full-path-to-missing-binaries&#62;&lt;/code&gt; to remove broken symlinks.&lt;/li&gt;&lt;/ol&gt;</description>
		<content:encoded><![CDATA[<p>Upgrading between 22.1.fc8 and 22.1.50.fc9 also causes this problem. I reported this upstream: <a href="https://bugzilla.redhat.com/show_bug.cgi?id=439076" title="Bugzilla Bug 439076: Upgrading emacs-22.1 to 22.1.50 keeps old symlinks" rel="nofollow">Redhat Bugzilla #439076</a>.</p>
<p>Two workarounds in addition to <code>alternatives --config emacs</code> exist:</p>
<ol>
<li>Uninstall emacs then install the new version instead of <code>yum upgrade 'emacs*'</code>.
</li>
<li>Use <code>alternatives --remove emacs &lt;full-path-to-missing-binaries&gt;</code> to remove broken symlinks.</li>
</ol>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yum Repository Online by Brad Walker</title>
		<link>http://bradmwalker.com/2008/02/26/yum-repository-online/comment-page-1/#comment-8</link>
		<dc:creator>Brad Walker</dc:creator>
		<pubDate>Mon, 31 Mar 2008 12:58:41 +0000</pubDate>
		<guid isPermaLink="false">http://bradmwalker.com/?p=4#comment-8</guid>
		<description>vt reported that 23.0.60-0.10.20080330cvs fixed the Russian Gnus defect.</description>
		<content:encoded><![CDATA[<p>vt reported that 23.0.60-0.10.20080330cvs fixed the Russian Gnus defect.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yum Repository Online by vt</title>
		<link>http://bradmwalker.com/2008/02/26/yum-repository-online/comment-page-1/#comment-7</link>
		<dc:creator>vt</dc:creator>
		<pubDate>Sun, 30 Mar 2008 00:47:18 +0000</pubDate>
		<guid isPermaLink="false">http://bradmwalker.com/?p=4#comment-7</guid>
		<description>With last update (23.0.60-0.9.20080326cvs.fc8.i386) I got broken russian language in gnus :( What can I do?</description>
		<content:encoded><![CDATA[<p>With last update (23.0.60-0.9.20080326cvs.fc8.i386) I got broken russian language in gnus <img src='http://bradmwalker.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> What can I do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yum Repository Online by adam stokes</title>
		<link>http://bradmwalker.com/2008/02/26/yum-repository-online/comment-page-1/#comment-4</link>
		<dc:creator>adam stokes</dc:creator>
		<pubDate>Tue, 18 Mar 2008 12:55:29 +0000</pubDate>
		<guid isPermaLink="false">http://bradmwalker.com/?p=4#comment-4</guid>
		<description>thx for the emacs packages, been waiting for xft implementation for awhile : )</description>
		<content:encoded><![CDATA[<p>thx for the emacs packages, been waiting for xft implementation for awhile : )</p>
]]></content:encoded>
	</item>
</channel>
</rss>
