<?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 on: Building python 2.6.4 RPM for CentOS 5.4</title>
	<atom:link href="http://www.grenadepod.com/2009/12/26/building-python-2-6-4-rpm-for-centos-5-4/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.grenadepod.com/2009/12/26/building-python-2-6-4-rpm-for-centos-5-4/</link>
	<description>Dispersing the Seeds</description>
	<lastBuildDate>Tue, 07 Feb 2012 23:07:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Zucker Bunnie</title>
		<link>http://www.grenadepod.com/2009/12/26/building-python-2-6-4-rpm-for-centos-5-4/comment-page-1/#comment-5112</link>
		<dc:creator>Zucker Bunnie</dc:creator>
		<pubDate>Tue, 13 Sep 2011 19:04:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.grenadepod.com/?p=655#comment-5112</guid>
		<description>I am trying to use this tutorial for the latest version Pythong 3.2 but compile failed. Any patch file or what lines/entries I should be changing in python.spec file? Thank you</description>
		<content:encoded><![CDATA[<p>I am trying to use this tutorial for the latest version Pythong 3.2 but compile failed. Any patch file or what lines/entries I should be changing in python.spec file? Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Didier</title>
		<link>http://www.grenadepod.com/2009/12/26/building-python-2-6-4-rpm-for-centos-5-4/comment-page-1/#comment-1689</link>
		<dc:creator>Didier</dc:creator>
		<pubDate>Thu, 03 Feb 2011 15:44:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.grenadepod.com/?p=655#comment-1689</guid>
		<description>Success on x86_64 arch with this patch

&lt;code&gt;

25d24
 %define config_ipv6 yes
29c29
 %define config_htmldir /var/www/htdocs/python
41c41
 %define release 2
70c70
&lt; Packager: pulegium 
---
&gt; Packager: didier fabert 
138a139,141
&gt; * Thu Feb 03 2011 Didier Fabert  [2.6.4-2]
&gt; - x86_64 ready
&gt;
233,234c236,237
&lt; ./configure --enable-shared --enable-unicode=ucs4 %{ipv6} %{pymalloc} --prefix=%{__prefix} --disable-rpath
 %configure --enable-shared --enable-unicode=ucs4 %{ipv6} %{pymalloc} --disable-rpath
&gt; %{__make} %{?_smp_mflags}
242c245
&gt;setup.cfg
---
&gt; echo &#039;install_dir=&#039;&quot;${RPM_BUILD_ROOT}%{_bindir}&quot; &gt;&gt;setup.cfg
245,246c248,252
&lt; mkdir -p $RPM_BUILD_ROOT%{__prefix}/%{libdirname}/python%{libvers}/lib-dynload
 mkdir -p $RPM_BUILD_ROOT/usr/lib64
&gt; ln -s $RPM_BUILD_ROOT/usr/lib64 $RPM_BUILD_ROOT/usr/lib
&gt; mkdir -p $RPM_BUILD_ROOT%{_libdir}/python%{libvers}/lib-dynload
&gt; export QA_RPATHS=$[ 0x0001&#124;0x0010 ]
&gt; make install DESTDIR=$RPM_BUILD_ROOT
252c258
       cd $RPM_BUILD_ROOT%{_bindir}
254c260
       sed &#039;s&#124;#!.*&#124;#!%{_bindir}/bin/env python&#039;%{binsuffix}&#039;&#124;&#039; \
264c270
    ( cd $RPM_BUILD_ROOT%{_bindir}; rm -f python[0-9a-zA-Z]*;
266,269c272,275
&lt;    ( cd $RPM_BUILD_ROOT%{__prefix}/bin; mv -f python-config python&quot;%{binsuffix}&quot;-config )
&lt;    ( cd $RPM_BUILD_ROOT%{__prefix}/share/man/man1; mv python.1 python%{binsuffix}.1 )
&lt;    ( cd $RPM_BUILD_ROOT%{__prefix}/bin; mv -f pydoc pydoc&quot;%{binsuffix}&quot; )
    ( cd $RPM_BUILD_ROOT%{_bindir}; mv -f python-config python&quot;%{binsuffix}&quot;-config )
&gt;    ( cd $RPM_BUILD_ROOT%{_datadir}/man/man1; mv python.1 python%{binsuffix}.1 )
&gt;    ( cd $RPM_BUILD_ROOT%{_bindir}; mv -f pydoc pydoc&quot;%{binsuffix}&quot; )
&gt;    ( cd $RPM_BUILD_ROOT%{_bindir}; mv -f idle idle&quot;%{binsuffix}&quot; )
274,280c280,287
${RPM_BUILD_ROOT}%{__prefix}/bin/idle%{binsuffix}
&gt;${RPM_BUILD_ROOT}%{__prefix}/bin/idle%{binsuffix}
&gt;${RPM_BUILD_ROOT}%{__prefix}/bin/idle%{binsuffix}
&gt;${RPM_BUILD_ROOT}%{__prefix}/bin/idle%{binsuffix}
&gt;${RPM_BUILD_ROOT}%{__prefix}/bin/idle%{binsuffix}
&lt; chmod 755 $RPM_BUILD_ROOT%{__prefix}/bin/idle%{binsuffix}
 echo &#039;#!%{_bindir}/env python%{binsuffix}&#039; &gt;${RPM_BUILD_ROOT}%{_bindir}/idle%{binsuffix}
&gt; echo &#039;import os, sys&#039; &gt;&gt;${RPM_BUILD_ROOT}%{_bindir}/idle%{binsuffix}
&gt; echo &#039;os.execvp(&quot;%{_bindir}/python%{binsuffix}&quot;, [&quot;%{_bindir}/python%{binsuffix}&quot;, &quot;%{_libdir}/python%{libvers}/idlelib/idle.py&quot;] + sys.argv[1:])&#039; &gt;&gt;${RPM_BUILD_ROOT}%{_bindir}/idle%{binsuffix}
&gt; echo &#039;print &quot;Failed to exec Idle&quot;&#039; &gt;&gt;${RPM_BUILD_ROOT}%{_bindir}/idle%{binsuffix}
&gt; echo &#039;sys.exit(1)&#039; &gt;&gt;${RPM_BUILD_ROOT}%{_bindir}/idle%{binsuffix}
&gt; chmod 755 $RPM_BUILD_ROOT%{_bindir}/idle%{binsuffix}
&gt; cp -a Tools $RPM_BUILD_ROOT%{_libdir}/python%{libvers}
&gt;
284c291
 find &quot;$RPM_BUILD_ROOT&quot;%{_libdir}/python%{libvers}/lib-dynload -type f &#124;
287c294
 find &quot;$RPM_BUILD_ROOT&quot;%{_bindir} -type f -o -type l &#124;
292,293c299,300
&lt; find &quot;$RPM_BUILD_ROOT&quot;&quot;%{__prefix}&quot;/%{libdirname}/python%{libvers}/idlelib \
 find &quot;$RPM_BUILD_ROOT&quot;%{_libdir}/python%{libvers}/idlelib \
&gt;       &quot;$RPM_BUILD_ROOT&quot;%{_libdir}/python%{libvers}/Tools -type f &#124;
295c302,303
&gt;tools.files
---
&gt;
&gt; echo &quot;%{_bindir}/idle%{binsuffix}&quot; &gt;&gt;tools.files
312c320
    sed &#039;s&#124;^#!.*python&#124;#!%{_bindir}/env python&#039;&quot;%{binsuffix}&quot;&#039;&#124;&#039; \
337a346,348
&gt; rm -f $RPM_BUILD_ROOT/usr/lib
&gt; rm -Rf $RPM_BUILD_ROOT/%{_libdir}/debug
&gt;
352,383c363
&lt; %{__prefix}/share/man/man1/python%{binsuffix}.1*
&lt;
&lt; %attr(755,root,root) %dir %{__prefix}/include/python%{libvers}
&lt; %attr(755,root,root) %dir %{__prefix}/%{libdirname}/python%{libvers}/
&lt; %{__prefix}/%{libdirname}/python%{libvers}/*.txt
&lt; %{__prefix}/%{libdirname}/python%{libvers}/*.py*
&lt; %{__prefix}/%{libdirname}/python%{libvers}/pdb.doc
&lt; #%{__prefix}/%{libdirname}/python%{libvers}/profile.doc
&lt; %{__prefix}/%{libdirname}/python%{libvers}/curses
&lt; %{__prefix}/%{libdirname}/python%{libvers}/distutils
&lt; %{__prefix}/%{libdirname}/python%{libvers}/encodings
&lt; %{__prefix}/%{libdirname}/python%{libvers}/plat-linux2
&lt; %{__prefix}/%{libdirname}/python%{libvers}/site-packages
&lt; %{__prefix}/%{libdirname}/python%{libvers}/test
&lt; %{__prefix}/%{libdirname}/python%{libvers}/xml
&lt; %{__prefix}/%{libdirname}/python%{libvers}/email
&lt; %{__prefix}/%{libdirname}/python%{libvers}/sqlite3
&lt; %{__prefix}/%{libdirname}/python%{libvers}/compiler
&lt; %{__prefix}/%{libdirname}/python%{libvers}/bsddb
&lt; %{__prefix}/%{libdirname}/python%{libvers}/hotshot
&lt; %{__prefix}/%{libdirname}/python%{libvers}/logging
&lt; %{__prefix}/%{libdirname}/python%{libvers}/lib-old
&lt; %{__prefix}/%{libdirname}/python%{libvers}/multiprocessing
&lt; %{__prefix}/%{libdirname}/python%{libvers}/lib2to3
&lt; %{__prefix}/%{libdirname}/python%{libvers}/json
&lt; %{__prefix}/%{libdirname}/python%{libvers}/ctypes
&lt; %{__prefix}/%{libdirname}/python%{libvers}/wsgiref
&lt; %{__prefix}/%{libdirname}/python%{libvers}/wsgiref.egg-info
&lt; %{__prefix}/%{libdirname}/libpython%{libvers}.so*
&lt; %{__prefix}/%{libdirname}/python%{libvers}/lib-tk
&lt; %{__prefix}/%{libdirname}/python%{libvers}/Tools
 %{_datadir}/man/man1/python%{binsuffix}.1*
384a365,393
&gt; %attr(755,root,root) %dir %{_includedir}/python%{libvers}
&gt; %attr(755,root,root) %dir %{_libdir}/python%{libvers}/
&gt; %{_libdir}/python%{libvers}/*.txt
&gt; %{_libdir}/python%{libvers}/*.py*
&gt; %{_libdir}/python%{libvers}/pdb.doc
&gt; #%{_libdir}/python%{libvers}/profile.doc
&gt; %{_libdir}/python%{libvers}/curses
&gt; %{_libdir}/python%{libvers}/distutils
&gt; %{_libdir}/python%{libvers}/encodings
&gt; %{_libdir}/python%{libvers}/plat-linux2
&gt; %{_libdir}/python%{libvers}/site-packages
&gt; %{_libdir}/python%{libvers}/test
&gt; %{_libdir}/python%{libvers}/xml
&gt; %{_libdir}/python%{libvers}/email
&gt; %{_libdir}/python%{libvers}/sqlite3
&gt; %{_libdir}/python%{libvers}/compiler
&gt; %{_libdir}/python%{libvers}/bsddb
&gt; %{_libdir}/python%{libvers}/hotshot
&gt; %{_libdir}/python%{libvers}/logging
&gt; %{_libdir}/python%{libvers}/lib-old
&gt; %{_libdir}/python%{libvers}/multiprocessing
&gt; %{_libdir}/python%{libvers}/lib2to3
&gt; %{_libdir}/python%{libvers}/json
&gt; %{_libdir}/python%{libvers}/ctypes
&gt; %{_libdir}/python%{libvers}/wsgiref
&gt; %{_libdir}/python%{libvers}/wsgiref.egg-info
&gt; %{_libdir}/libpython%{libvers}.so*
&gt; %{_libdir}/python%{libvers}/lib-tk
&gt; %{_libdir}/python%{libvers}/Tools
388,389c397,398
&lt; %{__prefix}/include/python%{libvers}/*.h
 %{_includedir}/python%{libvers}/*.h
&gt; %{_libdir}/python%{libvers}/config
397,398c406,407
&lt; %{__prefix}/%{libdirname}/python%{libvers}/lib-tk
 %{_libdir}/python%{libvers}/lib-tk
&gt; %{_libdir}/python%{libvers}/lib-dynload/_tkinter.so*

&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Success on x86_64 arch with this patch</p>
<p><code></p>
<p>25d24<br />
 %define config_ipv6 yes<br />
29c29<br />
 %define config_htmldir /var/www/htdocs/python<br />
41c41<br />
 %define release 2<br />
70c70<br />
&lt; Packager: pulegium<br />
---<br />
&gt; Packager: didier fabert<br />
138a139,141<br />
&gt; * Thu Feb 03 2011 Didier Fabert  [2.6.4-2]<br />
&gt; - x86_64 ready<br />
&gt;<br />
233,234c236,237<br />
&lt; ./configure --enable-shared --enable-unicode=ucs4 %{ipv6} %{pymalloc} --prefix=%{__prefix} --disable-rpath<br />
 %configure --enable-shared --enable-unicode=ucs4 %{ipv6} %{pymalloc} --disable-rpath<br />
&gt; %{__make} %{?_smp_mflags}<br />
242c245<br />
&gt;setup.cfg<br />
---<br />
&gt; echo 'install_dir='"${RPM_BUILD_ROOT}%{_bindir}" &gt;&gt;setup.cfg<br />
245,246c248,252<br />
&lt; mkdir -p $RPM_BUILD_ROOT%{__prefix}/%{libdirname}/python%{libvers}/lib-dynload<br />
 mkdir -p $RPM_BUILD_ROOT/usr/lib64<br />
&gt; ln -s $RPM_BUILD_ROOT/usr/lib64 $RPM_BUILD_ROOT/usr/lib<br />
&gt; mkdir -p $RPM_BUILD_ROOT%{_libdir}/python%{libvers}/lib-dynload<br />
&gt; export QA_RPATHS=$[ 0x0001|0x0010 ]<br />
&gt; make install DESTDIR=$RPM_BUILD_ROOT<br />
252c258<br />
       cd $RPM_BUILD_ROOT%{_bindir}<br />
254c260<br />
       sed 's|#!.*|#!%{_bindir}/bin/env python'%{binsuffix}'|' \<br />
264c270<br />
    ( cd $RPM_BUILD_ROOT%{_bindir}; rm -f python[0-9a-zA-Z]*;<br />
266,269c272,275<br />
&lt;    ( cd $RPM_BUILD_ROOT%{__prefix}/bin; mv -f python-config python&quot;%{binsuffix}&quot;-config )<br />
&lt;    ( cd $RPM_BUILD_ROOT%{__prefix}/share/man/man1; mv python.1 python%{binsuffix}.1 )<br />
&lt;    ( cd $RPM_BUILD_ROOT%{__prefix}/bin; mv -f pydoc pydoc&quot;%{binsuffix}&quot; )<br />
    ( cd $RPM_BUILD_ROOT%{_bindir}; mv -f python-config python"%{binsuffix}"-config )<br />
&gt;    ( cd $RPM_BUILD_ROOT%{_datadir}/man/man1; mv python.1 python%{binsuffix}.1 )<br />
&gt;    ( cd $RPM_BUILD_ROOT%{_bindir}; mv -f pydoc pydoc"%{binsuffix}" )<br />
&gt;    ( cd $RPM_BUILD_ROOT%{_bindir}; mv -f idle idle"%{binsuffix}" )<br />
274,280c280,287<br />
${RPM_BUILD_ROOT}%{__prefix}/bin/idle%{binsuffix}<br />
&gt;${RPM_BUILD_ROOT}%{__prefix}/bin/idle%{binsuffix}<br />
&gt;${RPM_BUILD_ROOT}%{__prefix}/bin/idle%{binsuffix}<br />
&gt;${RPM_BUILD_ROOT}%{__prefix}/bin/idle%{binsuffix}<br />
&gt;${RPM_BUILD_ROOT}%{__prefix}/bin/idle%{binsuffix}<br />
&lt; chmod 755 $RPM_BUILD_ROOT%{__prefix}/bin/idle%{binsuffix}<br />
 echo '#!%{_bindir}/env python%{binsuffix}' &gt;${RPM_BUILD_ROOT}%{_bindir}/idle%{binsuffix}<br />
&gt; echo 'import os, sys' &gt;&gt;${RPM_BUILD_ROOT}%{_bindir}/idle%{binsuffix}<br />
&gt; echo 'os.execvp("%{_bindir}/python%{binsuffix}", ["%{_bindir}/python%{binsuffix}", "%{_libdir}/python%{libvers}/idlelib/idle.py"] + sys.argv[1:])' &gt;&gt;${RPM_BUILD_ROOT}%{_bindir}/idle%{binsuffix}<br />
&gt; echo 'print "Failed to exec Idle"' &gt;&gt;${RPM_BUILD_ROOT}%{_bindir}/idle%{binsuffix}<br />
&gt; echo 'sys.exit(1)' &gt;&gt;${RPM_BUILD_ROOT}%{_bindir}/idle%{binsuffix}<br />
&gt; chmod 755 $RPM_BUILD_ROOT%{_bindir}/idle%{binsuffix}<br />
&gt; cp -a Tools $RPM_BUILD_ROOT%{_libdir}/python%{libvers}<br />
&gt;<br />
284c291<br />
 find "$RPM_BUILD_ROOT"%{_libdir}/python%{libvers}/lib-dynload -type f |<br />
287c294<br />
 find "$RPM_BUILD_ROOT"%{_bindir} -type f -o -type l |<br />
292,293c299,300<br />
&lt; find &quot;$RPM_BUILD_ROOT&quot;&quot;%{__prefix}&quot;/%{libdirname}/python%{libvers}/idlelib \<br />
 find "$RPM_BUILD_ROOT"%{_libdir}/python%{libvers}/idlelib \<br />
&gt;       "$RPM_BUILD_ROOT"%{_libdir}/python%{libvers}/Tools -type f |<br />
295c302,303<br />
&gt;tools.files<br />
---<br />
&gt;<br />
&gt; echo "%{_bindir}/idle%{binsuffix}" &gt;&gt;tools.files<br />
312c320<br />
    sed 's|^#!.*python|#!%{_bindir}/env python'"%{binsuffix}"'|' \<br />
337a346,348<br />
&gt; rm -f $RPM_BUILD_ROOT/usr/lib<br />
&gt; rm -Rf $RPM_BUILD_ROOT/%{_libdir}/debug<br />
&gt;<br />
352,383c363<br />
&lt; %{__prefix}/share/man/man1/python%{binsuffix}.1*<br />
&lt;<br />
&lt; %attr(755,root,root) %dir %{__prefix}/include/python%{libvers}<br />
&lt; %attr(755,root,root) %dir %{__prefix}/%{libdirname}/python%{libvers}/<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/*.txt<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/*.py*<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/pdb.doc<br />
&lt; #%{__prefix}/%{libdirname}/python%{libvers}/profile.doc<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/curses<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/distutils<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/encodings<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/plat-linux2<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/site-packages<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/test<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/xml<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/email<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/sqlite3<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/compiler<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/bsddb<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/hotshot<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/logging<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/lib-old<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/multiprocessing<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/lib2to3<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/json<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/ctypes<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/wsgiref<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/wsgiref.egg-info<br />
&lt; %{__prefix}/%{libdirname}/libpython%{libvers}.so*<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/lib-tk<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/Tools<br />
 %{_datadir}/man/man1/python%{binsuffix}.1*<br />
384a365,393<br />
&gt; %attr(755,root,root) %dir %{_includedir}/python%{libvers}<br />
&gt; %attr(755,root,root) %dir %{_libdir}/python%{libvers}/<br />
&gt; %{_libdir}/python%{libvers}/*.txt<br />
&gt; %{_libdir}/python%{libvers}/*.py*<br />
&gt; %{_libdir}/python%{libvers}/pdb.doc<br />
&gt; #%{_libdir}/python%{libvers}/profile.doc<br />
&gt; %{_libdir}/python%{libvers}/curses<br />
&gt; %{_libdir}/python%{libvers}/distutils<br />
&gt; %{_libdir}/python%{libvers}/encodings<br />
&gt; %{_libdir}/python%{libvers}/plat-linux2<br />
&gt; %{_libdir}/python%{libvers}/site-packages<br />
&gt; %{_libdir}/python%{libvers}/test<br />
&gt; %{_libdir}/python%{libvers}/xml<br />
&gt; %{_libdir}/python%{libvers}/email<br />
&gt; %{_libdir}/python%{libvers}/sqlite3<br />
&gt; %{_libdir}/python%{libvers}/compiler<br />
&gt; %{_libdir}/python%{libvers}/bsddb<br />
&gt; %{_libdir}/python%{libvers}/hotshot<br />
&gt; %{_libdir}/python%{libvers}/logging<br />
&gt; %{_libdir}/python%{libvers}/lib-old<br />
&gt; %{_libdir}/python%{libvers}/multiprocessing<br />
&gt; %{_libdir}/python%{libvers}/lib2to3<br />
&gt; %{_libdir}/python%{libvers}/json<br />
&gt; %{_libdir}/python%{libvers}/ctypes<br />
&gt; %{_libdir}/python%{libvers}/wsgiref<br />
&gt; %{_libdir}/python%{libvers}/wsgiref.egg-info<br />
&gt; %{_libdir}/libpython%{libvers}.so*<br />
&gt; %{_libdir}/python%{libvers}/lib-tk<br />
&gt; %{_libdir}/python%{libvers}/Tools<br />
388,389c397,398<br />
&lt; %{__prefix}/include/python%{libvers}/*.h<br />
 %{_includedir}/python%{libvers}/*.h<br />
&gt; %{_libdir}/python%{libvers}/config<br />
397,398c406,407<br />
&lt; %{__prefix}/%{libdirname}/python%{libvers}/lib-tk<br />
 %{_libdir}/python%{libvers}/lib-tk<br />
&gt; %{_libdir}/python%{libvers}/lib-dynload/_tkinter.so*</p>
<p></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to Install Python 2.6 on Fedora 8?</title>
		<link>http://www.grenadepod.com/2009/12/26/building-python-2-6-4-rpm-for-centos-5-4/comment-page-1/#comment-1311</link>
		<dc:creator>How to Install Python 2.6 on Fedora 8?</dc:creator>
		<pubDate>Sat, 20 Nov 2010 23:12:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.grenadepod.com/?p=655#comment-1311</guid>
		<description>[...] source using rpmbuild. I have tried using src rpms from newer versions of Fedora. I&#8217;ve tried these CentOS instructions. Nothing seems to actually result in an rpm file that installs [...]</description>
		<content:encoded><![CDATA[<p>[...] source using rpmbuild. I have tried using src rpms from newer versions of Fedora. I&#8217;ve tried these CentOS instructions. Nothing seems to actually result in an rpm file that installs [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gary</title>
		<link>http://www.grenadepod.com/2009/12/26/building-python-2-6-4-rpm-for-centos-5-4/comment-page-1/#comment-748</link>
		<dc:creator>Gary</dc:creator>
		<pubDate>Wed, 16 Jun 2010 14:48:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.grenadepod.com/?p=655#comment-748</guid>
		<description>FYI, The fedora version of the 64 bit patch did not work for me.</description>
		<content:encoded><![CDATA[<p>FYI, The fedora version of the 64 bit patch did not work for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gary</title>
		<link>http://www.grenadepod.com/2009/12/26/building-python-2-6-4-rpm-for-centos-5-4/comment-page-1/#comment-747</link>
		<dc:creator>Gary</dc:creator>
		<pubDate>Wed, 16 Jun 2010 14:47:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.grenadepod.com/?p=655#comment-747</guid>
		<description>I too am struggling with the 64bit version. Anyone have a patch for 64bit yet?</description>
		<content:encoded><![CDATA[<p>I too am struggling with the 64bit version. Anyone have a patch for 64bit yet?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremi</title>
		<link>http://www.grenadepod.com/2009/12/26/building-python-2-6-4-rpm-for-centos-5-4/comment-page-1/#comment-726</link>
		<dc:creator>Jeremi</dc:creator>
		<pubDate>Fri, 14 May 2010 19:41:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.grenadepod.com/?p=655#comment-726</guid>
		<description>Where&#039;s the update on how to install python on 64bit Cent OS?</description>
		<content:encoded><![CDATA[<p>Where&#8217;s the update on how to install python on 64bit Cent OS?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Case</title>
		<link>http://www.grenadepod.com/2009/12/26/building-python-2-6-4-rpm-for-centos-5-4/comment-page-1/#comment-678</link>
		<dc:creator>Case</dc:creator>
		<pubDate>Tue, 30 Mar 2010 13:20:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.grenadepod.com/?p=655#comment-678</guid>
		<description>You can use this patch from Fedora project: http://cvs.fedoraproject.org/viewvc/F-12/python/python-2.6-lib64.patch</description>
		<content:encoded><![CDATA[<p>You can use this patch from Fedora project: <a href="http://cvs.fedoraproject.org/viewvc/F-12/python/python-2.6-lib64.patch" rel="nofollow">http://cvs.fedoraproject.org/viewvc/F-12/python/python-2.6-lib64.patch</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cokey</title>
		<link>http://www.grenadepod.com/2009/12/26/building-python-2-6-4-rpm-for-centos-5-4/comment-page-1/#comment-661</link>
		<dc:creator>cokey</dc:creator>
		<pubDate>Mon, 08 Mar 2010 22:19:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.grenadepod.com/?p=655#comment-661</guid>
		<description>Any progress on the 64 bit version?</description>
		<content:encoded><![CDATA[<p>Any progress on the 64 bit version?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan</title>
		<link>http://www.grenadepod.com/2009/12/26/building-python-2-6-4-rpm-for-centos-5-4/comment-page-1/#comment-654</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Tue, 23 Feb 2010 16:43:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.grenadepod.com/?p=655#comment-654</guid>
		<description>What might be required to get the equivalent of make altinstall?</description>
		<content:encoded><![CDATA[<p>What might be required to get the equivalent of make altinstall?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pulegium</title>
		<link>http://www.grenadepod.com/2009/12/26/building-python-2-6-4-rpm-for-centos-5-4/comment-page-1/#comment-652</link>
		<dc:creator>pulegium</dc:creator>
		<pubDate>Thu, 18 Feb 2010 20:14:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.grenadepod.com/?p=655#comment-652</guid>
		<description>David, you&#039;re right, this only produces 32 bit version. If you need 64 you need to change some build files, so that they point to lib64 instead of lib. I&#039;m working on a patch at the moment, will add it to the page soon, check back in a few days.</description>
		<content:encoded><![CDATA[<p>David, you&#8217;re right, this only produces 32 bit version. If you need 64 you need to change some build files, so that they point to lib64 instead of lib. I&#8217;m working on a patch at the moment, will add it to the page soon, check back in a few days.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

