<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>rullzer &#187; Programming things</title>
	<atom:link href="http://rullzer.com/blog/category/linux/programming-things/feed/" rel="self" type="application/rss+xml" />
	<link>http://rullzer.com/blog</link>
	<description>an experience beyond</description>
	<lastBuildDate>Thu, 24 Jun 2010 22:23:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>qbook</title>
		<link>http://rullzer.com/blog/2010/04/25/qbook/</link>
		<comments>http://rullzer.com/blog/2010/04/25/qbook/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 15:28:06 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2010/04/25/qbook/">rullzer</span></dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming things]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[qbook]]></category>
		<category><![CDATA[qfacebookconnect]]></category>
		<category><![CDATA[Qt]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/?p=206</guid>
		<description><![CDATA[This morning I was up rather early (well not that early but the others were still asleep   ). So I decided to do a little coding and came up with a very simple Qt desktop client for facebook. Since it would of course be nice to have client sitting in your task bar [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I was up rather early (well not that early but the others were still asleep <img src='http://rullzer.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ). So I decided to do a little coding and came up with a very simple <a href="http://qt.nokia.com">Qt</a> desktop client for <a href="http://facebook.com">facebook</a>. Since it would of course be nice to have client sitting in your task bar showing new notifications, later this can be extended but for now that will do.</p>
<p>All this was created in a about an hour but would not have been possible without <a href="http://gitorious.org/qfacebookconnect">qfacebookconnect</a>.</p>
<p>It is far from finished and no notifications are really visible yet but a nice start is made (not bad for 45 minutes coding). See the git repository of <a href="http://gitorious.org/qbook">qbook</a> if you want to take a peak, all paths are currently hard coded so you will need to do a little hacking, this is mainly because qfacebookconnect is not yet in portage so I can properly link to it.</p>
<p>Maybe next time when I am up early I will first fix an ebuild for that one <img src='http://rullzer.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2010/04/25/qbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sabnzbd behind apache</title>
		<link>http://rullzer.com/blog/2009/09/04/sabnzbd-behind-apache/</link>
		<comments>http://rullzer.com/blog/2009/09/04/sabnzbd-behind-apache/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 12:14:44 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2009/09/04/sabnzbd-behind-apache/">rullzer</span></dc:creator>
				<category><![CDATA[Annoying things]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Programming things]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[SABnzbd]]></category>
		<category><![CDATA[SABnzbdplus]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/?p=172</guid>
		<description><![CDATA[So after upgrading my sabnzbd installation to version 0.4.11, which I by the way the way should create a better ebuild for and do some dependency cleaning but that is a different story.
Like I was saying after upgrading to version 0.4.11 I decided I wanted to close port 8080 (the one sabnzbd is using) to [...]]]></description>
			<content:encoded><![CDATA[<p>So after upgrading my <a href="http://www.sabnzbd.org/">sabnzbd</a> installation to version 0.4.11, which I by the way the way should create a better ebuild for and do some dependency cleaning but that is a different story.</p>
<p>Like I was saying after upgrading to version 0.4.11 I decided I wanted to close port 8080 (the one sabnzbd is using) to the outside word. Now I know apache has some nice proxy functions so it should be easy.</p>
<p>Make sure apache is compiled with the following modules: <strong>apache2_modules_proxy apache2_modules_proxy_http apache2_modules_proxy_balancer</strong></p>
<p>That was the hard part. Now just add a vhost:<br />
<code><br />
<VirtualHost *:80><br />
  ServerName yourserver.com<br />
  <Location /><br />
    order deny,allow<br />
    deny from all<br />
    allow from all<br />
    ProxyPass http://localhost:8080/sabnzbd/<br />
    ProxyPassReverse http://localhost:8080/sabnzbd/a<br />
  </Location><br />
  ErrorLog /var/log/apache2/error.sabnzb.log<br />
  LogLevel warn<br />
  CustomLog /var/log/apache2/access.sabnzb.log combined<br />
</VirtualHost><br />
</code></p>
<p>This assumes that you have sabnzbd listening on <strong>localhost:8080</strong>. Now you probably do not want the whole world watching your downloads (or deleting them or whatever). So we just add some basic apache authentication, use htpasswd2 to create a file with authorized users and add the following lines into the location block.</p>
<p><code><br />
AuthName "Login Required"<br />
AuthType Basic<br />
AuthUserFile <<PASSWORD FILE>><br />
require valid-user<br />
</code></p>
<p>That is all.<br />
Happy downloading!</p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2009/09/04/sabnzbd-behind-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WiiMoteControl</title>
		<link>http://rullzer.com/blog/2008/12/04/wiimotecontrol/</link>
		<comments>http://rullzer.com/blog/2008/12/04/wiimotecontrol/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 20:08:38 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2008/12/04/wiimotecontrol/">rullzer</span></dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming things]]></category>
		<category><![CDATA[Bluetooth]]></category>
		<category><![CDATA[WiiMote]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/?p=160</guid>
		<description><![CDATA[I have been playing the idea to control my PC with a WiiMote for some time now. But this week I decided to actually write it. 
It is a very simple program using bluez for the bluetooth connection with the WiiMote (which we need, obviously) and XTestFakeKeyEvent. This has as a side effect that it [...]]]></description>
			<content:encoded><![CDATA[<p>I have been playing the idea to control my PC with a WiiMote for some time now. But this week I decided to actually write it. </p>
<p>It is a very simple program using <a href="http://www.bluez.org/">bluez</a> for the bluetooth connection with the WiiMote (which we need, obviously) and XTestFakeKeyEvent. This has as a side effect that it will only work with X running. But that should not be a problem since well. Who would want to control his terminal with a WiiMote?</p>
<p>The very very basics is done. The D-Pad on the WiiMote generates up/down/left/right-keyevents. I just need to find a use full meaning for the other buttons. But maybe a control file in which the user can specify all is a better solution.</p>
<p>Currently it is not published on-line (yet) since I need to clean the code a little.</p>
<p>I am aware some other programs can do what I want but after checking out the sources they just seem to complex. I want it all simple, clean and small..</p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2008/12/04/wiimotecontrol/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>last.fm support comming to QtMPC</title>
		<link>http://rullzer.com/blog/2008/11/24/lastfm-support-comming-to-qtmpc/</link>
		<comments>http://rullzer.com/blog/2008/11/24/lastfm-support-comming-to-qtmpc/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 23:08:06 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2008/11/24/lastfm-support-comming-to-qtmpc/">rullzer</span></dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Programming things]]></category>
		<category><![CDATA[last.fm]]></category>
		<category><![CDATA[libmaia]]></category>
		<category><![CDATA[MPD]]></category>
		<category><![CDATA[QtMPC]]></category>
		<category><![CDATA[XML-RPC]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/?p=156</guid>
		<description><![CDATA[Sander and I are thinking about adding last.fm support to QtMPC. This since the interface for requesting album covers, artist/album info is so much easier then the amazon-api. 
For this we found a nice library: libmaia. Beside a small bug I found (which reminds me I have to report it upstream). This works very well. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://knopper.tk">Sander</a> and I are thinking about adding <a href="http://last.fm">last.fm</a> support to QtMPC. This since the interface for requesting album covers, artist/album info is so much easier then the <a href="http://amazon.com">amazon</a>-api. </p>
<p>For this we found a nice library: <a href="http://wiedi.frubar.net/blog/2008/03/08/libmaia-xml-rpc-with-qt4/">libmaia</a>. Beside a small bug I found (which reminds me I have to report it upstream). This works very well. I browsed a little trough the source and it is pure Qt so it won&#8217;t limit the platforms <a href="http://qtmpc.lowblog.nl">QtMPC</a> can run on.</p>
<p>Now of course last.fm support does not limit us to retrieving album covers. We can also submit the played songs to last.fm so the users can keep scrobbling. Now the only thing I could not figure out if submitting played songs can also be done trough XML-RPC? Is there anyone with experience in this are that can tell me if it is possible?</p>
<p>Other than this we are waiting for <a href="http://musicpd.org">MPD</a> 0.14, which will include idle (event) support, before go coding like crazy on QtMPC again. This since events will require a change in QtMPC. Good change which will allow QtMPC to have much less wake ups. Which is generally a good thing.</p>
<p>Of course we still do bug fixes.</p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2008/11/24/lastfm-support-comming-to-qtmpc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DIY Openstreetmap Slippy map</title>
		<link>http://rullzer.com/blog/2008/08/31/diy-openstreetmap-slippy-map/</link>
		<comments>http://rullzer.com/blog/2008/08/31/diy-openstreetmap-slippy-map/#comments</comments>
		<pubDate>Sun, 31 Aug 2008 19:42:09 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2008/08/31/diy-openstreetmap-slippy-map/">rullzer</span></dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Programming things]]></category>
		<category><![CDATA[diy]]></category>
		<category><![CDATA[osm]]></category>
		<category><![CDATA[slippy map]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/2008/08/31/diy-openstreetmap-slippy-map/</guid>
		<description><![CDATA[It has been long since my last post. Too long. I won&#8217;t fill you up on all the things I have done. Or maybe I will in other posts. But today I want to talk about openstreetmap.
As you might (or might not) know openstreetmap aims to provide a free (as in speech) map of the [...]]]></description>
			<content:encoded><![CDATA[<p>It has been long since my last post. Too long. I won&#8217;t fill you up on all the things I have done. Or maybe I will in other posts. But today I want to talk about <a href="http://www.openstreetmap.org">openstreetmap</a>.</p>
<p>As you might (or might not) know openstreetmap aims to provide a free (as in speech) map of the world. You can help by adding or editing the map. This is what I have been doing the last couple of months. Mostly fixing roads or adding new cycleways. Now of course cycling is good exercise. And it feels good to contribute to a free world map. However the real kick is seeing your changes of your work!</p>
<p>This can be seen on the <a href="http://www.openstreetmap.org">main website</a>. However that is only updated once a week. There are several other tile servers that serve a part of the map. These servers are generally updated more often. However when you use a tile server you are can&#8217;t change the rendering. So how great would it be to create your own rendering?</p>
<p>Check out <a href="http://wiki.openstreetmap.org/index.php/Deploying_your_own_Slippy_Map_Gentoo">my wiki entry</a>. Of course it is a wiki so add all improvement you can think of. </p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2008/08/31/diy-openstreetmap-slippy-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing abandond distfiles</title>
		<link>http://rullzer.com/blog/2008/01/23/removing-abandond-distfiles/</link>
		<comments>http://rullzer.com/blog/2008/01/23/removing-abandond-distfiles/#comments</comments>
		<pubDate>Wed, 23 Jan 2008 00:19:28 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2008/01/23/removing-abandond-distfiles/">rullzer</span></dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming things]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/2008/01/23/removing-abandond-distfiles/</guid>
		<description><![CDATA[After going trough my /usr/portage/distfiles/ I found a lot of tarballs that belong to versions of packages that are no longer in portage. Now these tarballs take up a lot of space. Doing a nice rm -rf * will ofcource take care of the problem but then all the tarballs that are still in portage [...]]]></description>
			<content:encoded><![CDATA[<p>After going trough my <strong>/usr/portage/distfiles/</strong> I found a lot of tarballs that belong to versions of packages that are no longer in portage. Now these tarballs take up a lot of space. Doing a nice rm -rf * will ofcource take care of the problem but then all the tarballs that are still in portage will have to be downloaded again if once of the gentoo boxes in the network needs it (currently 4). Now it is not that I have a datalimit but it is a matter of principle.</p>
<p>So there must be an easier solution. I&#8217;ll try to look into it but python is writen in portage so maybe I can just include it and check for all packages and versions and remove the tarballs that have no corresponding ebuild. This script doesn&#8217;t have to run every day since it would take some time I guess but once a week or so just to keep the system clean.</p>
<p>Please let me know if anybody is interested in such an app or knows if it already exists&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2008/01/23/removing-abandond-distfiles/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Media PC / QtMPC</title>
		<link>http://rullzer.com/blog/2008/01/13/media-pc-qtmpc/</link>
		<comments>http://rullzer.com/blog/2008/01/13/media-pc-qtmpc/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 10:42:18 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2008/01/13/media-pc-qtmpc/">rullzer</span></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming things]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/2008/01/13/media-pc-qtmpc/</guid>
		<description><![CDATA[It has been some time since my last post where I wrote I had the need for a Project in the vacation. And well I found one and altough the vacation is already over for a week I&#8217;m still (when I&#8217;m nog busy for school) working on it with Sander. For more info about why [...]]]></description>
			<content:encoded><![CDATA[<p>It has been some time since my <a href="http://rullzer.com/blog/2007/12/28/project-need/">last post</a> where I wrote I had the need for a Project in the vacation. And well I found one and altough the vacation is already over for a week I&#8217;m still (when I&#8217;m nog busy for school) working on it with <a href="http://knopper.tk/posts">Sander</a>. For more info about why and the program see <a href="http://knopper.tk/posts">his blog</a>.</p>
<p>But in shoort. We are working on a Qt4 frontend for <a href="http://www.musicpd.org/">mpd</a>: <a href="http://qtmpc.lowblog.nl/">QtMPC</a>. So far it is already useable. Sander even kicked apache from his media PC since he didn&#8217;t use it anymore. We are far from supporting everything MPD supports but we are getting there. Soon (I hope) 0.3 will be released since we are making good progress but ofcourse the svn is available all the time <img src='http://rullzer.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><code>svn co http://qtmpc.lowblog.nl/svn qtmpc</code></p>
<p>Working on QtMPC made me realise that I had way to many music files. So maybe it is also time for me to get a media PC. However the budget is limit. But after talking to Sander yesterday I realised that an old pc would also work. However they make way to much noise. So right now I&#8217;m looking for some kind of old thin-client or something like that. Since crosscompiling can be done on the server or on my old laptop.</p>
<p>Now I could ofcourse get a cable and connect it to the server and the stereo but I&#8217;d rather not have alsa running on my server. Also if it is a pc with lets say 300 mhz. That would be more than enough to play music. It would consume much less power than my old laptop (wich is currently hooked up to the stereo). So that is again a big plus.</p>
<p>Ah well maybe when my next salary arrives.</p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2008/01/13/media-pc-qtmpc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project Need</title>
		<link>http://rullzer.com/blog/2007/12/28/project-need/</link>
		<comments>http://rullzer.com/blog/2007/12/28/project-need/#comments</comments>
		<pubDate>Fri, 28 Dec 2007 20:20:47 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2007/12/28/project-need/">rullzer</span></dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming things]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/2007/12/28/project-need/</guid>
		<description><![CDATA[So since it is vacation, Christmas is over and I have some time to fill. I have been thinking about some projects to do but could not really think of something doable in a few days. Since well I do not mind long term project I just want something where I have something working in [...]]]></description>
			<content:encoded><![CDATA[<p>So since it is vacation, Christmas is over and I have some time to fill. I have been thinking about some projects to do but could not really think of something doable in a few days. Since well I do not mind long term project I just want something where I have something working in a few days. </p>
<p>I had a nice idea that I borrowed from <a href="http://tokoe-kde.blogspot.com/2007/12/never-miss-bus-again-with-plasma.html">Tobias Koenig</a> about bus-services. So I checked the transport company in Amsterdam. Wrote them a nice email if they have a way to communicate with the database. XML-RPC or something like that. Since I do understand they would not allow me directly on the database. An email came back that they do not have such a service and indeed could not allow me on directly on the database.</p>
<p>That is all understandable but the departure times are all available on the internet so I decided to give it one last try. A dump of the departure times from the database. But again they could not help me. Now I wonder why is that. I wrote a nice email that I just wanted to make a nice program. Why can&#8217;t they share that stuff with me? Or anyone else?</p>
<p>Now I could ofcourse parse the whole stuf by myself. But that would mean I had to write some ugly parser in their web of html. Which I do not like. </p>
<p>So that project won&#8217;t work for me. Then a friend of mine suggested a simple bittorrent client. That can run on a server and a nice client program to connect to it. So It can run while you are asleep or whatever. However after looking at a bittorrent file and the protocol I figured that would not be something I could have working in a few days.</p>
<p>So no project now. If you have any suggestions drop a comment please. </p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2007/12/28/project-need/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SABnzbdplus -&gt; SABnzbd (improved ebuild)</title>
		<link>http://rullzer.com/blog/2007/11/13/sabnzbdplus-sabnzbd-improved-ebuild/</link>
		<comments>http://rullzer.com/blog/2007/11/13/sabnzbdplus-sabnzbd-improved-ebuild/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 11:08:06 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2007/11/13/sabnzbdplus-sabnzbd-improved-ebuild/">rullzer</span></dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming things]]></category>
		<category><![CDATA[ebuil]]></category>
		<category><![CDATA[SABnzbd]]></category>
		<category><![CDATA[SABnzbdplus]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/2007/11/13/sabnzbdplus-sabnzbd-improved-ebuild/</guid>
		<description><![CDATA[I had some contact with the SABnzbdplus maintianers today and it tuns out that the program is still called SABnzbd. So I switched the name of the ebuild and all reverences to SABnzbdplus are removed. This does mean users will have to chown their custom download dirs again. Sorry for that Chris.
Changes to the ebuild:

All [...]]]></description>
			<content:encoded><![CDATA[<p>I had some contact with the SABnzbdplus maintianers today and it tuns out that the program is still called SABnzbd. So I switched the name of the ebuild and all reverences to SABnzbdplus are removed. This does mean users will have to chown their custom download dirs again. Sorry for that <a href="http://rullzer.com/blog/2007/11/13/sabnzbdplus-027-ebuild/#comment-2149">Chris</a>.</p>
<p>Changes to the ebuild:</p>
<ul>
<li>All templates in the original package are now installed</li>
<li>More info at the end of the ebuild</li>
<li>Passes repoman, well not totally since it uses local use flags.</li>
<li>Changelog enty</li>
</ul>
<p>If you have the time please grab the ebuild <a href="http://rullzer.com/ebuilds/sabnzbd-0.2.7.tar.bz2">here</a> and give it a spin.</p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2007/11/13/sabnzbdplus-sabnzbd-improved-ebuild/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SABnzbdplus-0.2.7 ebuild</title>
		<link>http://rullzer.com/blog/2007/11/13/sabnzbdplus-027-ebuild/</link>
		<comments>http://rullzer.com/blog/2007/11/13/sabnzbdplus-027-ebuild/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 00:01:16 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2007/11/13/sabnzbdplus-027-ebuild/">rullzer</span></dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming things]]></category>
		<category><![CDATA[ebuild]]></category>
		<category><![CDATA[SABnzbd]]></category>
		<category><![CDATA[SABnzbdplus]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/2007/11/13/sabnzbdplus-027-ebuild/</guid>
		<description><![CDATA[It is 40 minutes past midnight. However I did not want to keep this from you!
About a week back I saw that in my feed reader all the messages from the SABnzbd project were empty. Which means that there was no activity for a very long time. So after browsing trought the forums I found [...]]]></description>
			<content:encoded><![CDATA[<p>It is 40 minutes past midnight. However I did not want to keep this from you!</p>
<p>About a week back I saw that in my feed reader all the messages from the SABnzbd project were empty. Which means that there was no activity for a very long time. So after browsing trought the forums I found that SABnzbd was abbandond. It made me sad. But the good thing is that I saw that a new group of people has started a succesor for SABnzbd, SABnzbdplus. </p>
<blockquote><p><a href="http://sourceforge.net/projects/sabnzbdplus/">SABnzbdplus</a>: Binary Newsgrabber written in Python, server-oriented using a web-interface. The active successor of the abandoned SABnzbd project</p></blockquote>
<p>Now what does this mean for the SABnzbd users? Well it comes down to that their usenet download tool is supported again and actively developed. So you can expet new features. Bug fixes etc. So all good news. (for current changes see the changelog).</p>
<p>Now the response I got to my SABnzbd-0.2.5 ebuild (<a href="http://rullzer.com/blog/2007/02/23/sabnzbd-ebuild/">see original blog post</a>) was quite a lot. People thanking me and sending in suggestions. Unfortunatly the ebuild never made it into gentoo portage. But times have changed. Currently Cherrypy-2.2.1-r1 is in portage. So that means this ebuild does not need any other ebuilds. </p>
<p>Having said that I must admit that is not entirely true. It still need yenc if you want that. However we come to that. Since well that package is quite small and only a few python script being installed. It should be no problem getting that into portage. However I do not yet feel quite ready to sumbit my new ebuild to portage since it needs some testing and some features (like the included Nova themes) are not yet available after installing the ebuild. So it will need a lot of fine tuning. However that is proces that will take some time and I could really use your help. So please if you got some spare time emerge the ebuild, try it and let me know how it works out.</p>
<p>I now have only tested it on amd64 but since it are all python scripts it should work on any arch that has the required deps. As stated you will need the <a href="https://bugs.gentoo.org/show_bug.cgi?id=168192">yenc</a> ebuild. Other than it should all work fine.</p>
<p>Now if you were using my pervious ebuild be sure to unmerge that first. Else you will get file collison!</p>
<p>And finally <a href="http://rullzer.com/ebuilds/sabnzbdplus-0.2.7.tar.bz2">here</a> the ebuild can be found.</p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2007/11/13/sabnzbdplus-027-ebuild/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
