<?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>debian.dev-zero.nl</title>
	<atom:link href="http://debian.dev-zero.nl/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://debian.dev-zero.nl/blog</link>
	<description>A Debian package repository</description>
	<lastBuildDate>Mon, 24 Oct 2011 14:24:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Maemo 5 Fremantle</title>
		<link>http://debian.dev-zero.nl/blog/archives/166</link>
		<comments>http://debian.dev-zero.nl/blog/archives/166#comments</comments>
		<pubDate>Tue, 30 Aug 2011 20:29:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Package updates]]></category>

		<guid isPermaLink="false">http://debian.dev-zero.nl/blog/?p=166</guid>
		<description><![CDATA[As of now, debian.dev-zero.nl also carries a repository for Maemo 5 Fremantle. Maemo is the Debian-based operating system created by Nokia, running on N810 internet tablets and N900 phones. Development of Maemo at Nokia has come somewhat to a halt, since first MeeGo was announced, and later Nokia announced the strategic partnership with Microsoft to [...]]]></description>
			<content:encoded><![CDATA[<p>As of now, debian.dev-zero.nl also carries a repository for <a href="http://wiki.maemo.org/Task:Maemo_roadmap/Fremantle" target="_blank">Maemo 5 Fremantle</a>. Maemo is the Debian-based operating system created by Nokia, running on <a href="http://en.wikipedia.org/wiki/Nokia_N810" target="_blank">N810 internet tablets</a> and <a href="http://en.wikipedia.org/wiki/Nokia_N900" target="_blank">N900 phones</a>. Development of Maemo at Nokia has come somewhat to a halt, since first <a href="https://meego.com/" target="_blank">MeeGo</a> was announced, and later Nokia <a href="http://www.engadget.com/2011/02/11/nokia-and-microsoft-enter-strategic-alliance-on-windows-phone-b/" target="_blank">announced</a> the strategic partnership with Microsoft to switch to Windows Phone 7 devices.</p>
<p>Since I own a N900, and every now and then, I need a package that is not available from Nokia&#8217;s, or other community-driven repositories, I decided to host the packages that I build myself on this website. To get the packages, add this to your sources.list:</p>
<pre style="padding-left: 30px;">deb http://debian.dev-zero.nl/debian/ fremantle main</pre>
<p>At this time, two packages are available here:</p>
<ul>
<li><del>libncursesw5, copied from <a href="http://repository.maemo.org/pool/fremantle/free/n/ncurses/" target="_blank">repository.maemo.org</a>, because it is only in the SDK repository and it is a dependency of Zsh</del></li>
<li>zsh 4.3.12, ported from Debian unstable, built using the <a href="http://www.developer.nokia.com/info/sw.nokia.com/id/c05693a1-265c-4c7f-a389-fc227db4c465/Maemo_5_SDK.html" target="_blank">Maemo SDK</a></li>
</ul>
<p>If any more packages are added in the future, I will write about it on this blog.</p>
<p><strong>Update 5 Sep 2011:</strong></p>
<p>The package &#8216;libncursesw5&#8242; was removed from the repository, because it is available in downloads.maemo.nokia.com, one of the repositories that is configured on a Maemo 5 device by default.<strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://debian.dev-zero.nl/blog/archives/166/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Incron: easy use of the inotify system</title>
		<link>http://debian.dev-zero.nl/blog/archives/159</link>
		<comments>http://debian.dev-zero.nl/blog/archives/159#comments</comments>
		<pubDate>Tue, 22 Feb 2011 09:24:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://debian.dev-zero.nl/blog/?p=159</guid>
		<description><![CDATA[This is just a short post, to point out the convenience of a tool named &#8216;incron&#8216;. Incron is described as an &#8216;inotify cron&#8216; system. It behaves much like traditional cron, but instead of time periods, filesystem events are used to trigger certain actions. In my daily work, quite often I come across situations, where I [...]]]></description>
			<content:encoded><![CDATA[<p>This is just a short post, to point out the convenience of a tool named &#8216;<a href="http://inotify.aiken.cz/?section=incron&amp;page=about&amp;lang=en" target="_blank">incron</a>&#8216;. Incron is described as an &#8216;<em>inotify cron</em>&#8216; system. It behaves much like traditional <em>cron</em>, but instead of time periods, filesystem events are used to trigger certain actions.</p>
<p>In my daily work, quite often I come across situations, where I have to post-process files, that are uploaded to a certain place. For example, a third party regularly uploads video files to one of our servers, and when they do, I have to make sure they are transcoded to a different audio and video format. Enter &#8216;incron&#8217;. It allows you, in a <em>crontab</em> kind of way to define commands, that have to be executed when certain files or directories change.</p>
<p>I have an incron-tab entry, that looks like this:</p>
<blockquote>
<pre>/home/vod/videofiles IN_MOVED_TO /usr/local/bin/process_upload $#</pre>
</blockquote>
<p><em>/home/vod/videofiles</em> is a directory, and when a file is moved into that directory (which is done by the uploading party, through the FTP server) and subsequently the inotify event &#8216;<em>IN_MOVED_TO</em>&#8216; is triggered, the <em>process_upload</em> script is fired, with the name of the file (specified as &#8216;<em>$#</em>&#8216;) as its first argument. Couldn&#8217;t be simpler.</p>
<p>Take a look at <a href="http://inotify.aiken.cz/?section=incron&amp;page=why&amp;lang=en">incron&#8217;s web page</a> for more use cases, examples and documentation.</p>
]]></content:encoded>
			<wfw:commentRss>http://debian.dev-zero.nl/blog/archives/159/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recording audio in Ubuntu</title>
		<link>http://debian.dev-zero.nl/blog/archives/153</link>
		<comments>http://debian.dev-zero.nl/blog/archives/153#comments</comments>
		<pubDate>Fri, 28 Jan 2011 16:48:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://debian.dev-zero.nl/blog/?p=153</guid>
		<description><![CDATA[Today, I was looking for a way -on my Ubuntu Lucid workstation- to record audio, but not from a specific source, but let&#8217;s say the audio from &#8216;the system&#8217;. In particular, I wanted to record the audio output of a Windows application running under Wine. After some googling, I found this blog posting, that explains [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I was looking for a way -on my Ubuntu Lucid workstation- to record audio, but not from a specific source, but let&#8217;s say the audio from &#8216;the system&#8217;. In particular, I wanted to record the audio output of a <a href="http://www.spotify.com/nl/get-spotify/overview/">Windows application</a> running under <a href="http://www.winehq.org/">Wine</a>.</p>
<p>After some googling, I found <a href="http://www.outflux.net/blog/archives/2009/04/19/recording-from-pulseaudio/">this blog posting</a>, that explains how to record audio from the &#8216;monitor&#8217; source of a Pulseaudio device. Just what I needed! So I wrote the script below. It uses Gstreamer for the recording, but some ideas for other tools are included as well.</p>
<pre>#!/bin/zsh
# A script to record audio from a pulseaudio monitor device
# Needed packages:
# - pulseaudio-utils (for pactl and -if wanted- parec)
# - gstreamer0.10-tools (for gst-launch-0.10)
# - gstreamer0.10-plugins-ugly-multiverse (for lame mp3 encoder)
# - gstreamer0.10-plugins-good (for wavenc)
# - lame (for lame, if wanted)
#
# Ideas from
# http://www.outflux.net/blog/archives/2009/04/19/recording-from-pulseaudio/

FORMAT=mp3
OUT=$1
d=

while getopts wa i
do
 case "$i"
 in
  w)
   FORMAT=wav
   ;;
  a)
   d=`date +%Y%m%d%H%M%S`
   ;;
 esac
done

shift "$(($OPTIND - 1))"

if [ "$d" != "" ]
then
 OUT="/tmp/$d.$FORMAT"
fi

if [ "$OUT" = "" ]
then
 echo "Usage: `basename $0` [-w] &lt;filename&gt;" &gt;&amp;2
 echo "       `basename $0` -a" &gt;&amp;2
 echo "Options:" &gt;&amp;2
 echo " -w               use wav encoding instead of mp3" &gt;&amp;2
 echo " -a               auto-filename, /tmp/&lt;timestamp&gt;.(mp3|wav)" &gt;&amp;2
 exit 1
fi

monitor=$(pactl list | grep -m 1 'Monitor Source' | awk '{print $3}')
if [ "$monitor" = "" ]
then
 echo "Error: no monitor device found" &gt;&amp;2
 exit 1
fi

echo "Using monitor: $monitor"
echo "Recording to : $OUT"
echo "File format  : $FORMAT"

encoder="lame vbr=4 vbr-quality=2"
if [ "$FORMAT" = "wav" ]
then
 encoder="wavenc"
fi

# Some ideas for use of other tools instead of Gstreamer:
#   parec -d "$monitor" | sox -t raw -r 44100 -sLb 16 -c 2 - $OUT.wav
#   parec -d "$monitor" | sox -t raw -r 44100 -sLb 16 -c 2 - $OUT.wav silence 1 0.50 0.1% 1 2.0 0.1% : newfile : restart
#   parec -d "$monitor" | lame -rh - $OUT
gst-launch-0.10 pulsesrc device=$monitor ! queue ! audio/x-raw-int,rate=44100,channels=2 ! audioconvert ! $encoder ! filesink location=$OUT
</pre>
<p>I hope it will be of use to anyone.</p>
]]></content:encoded>
			<wfw:commentRss>http://debian.dev-zero.nl/blog/archives/153/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Distributed Checksum Clearinghouse</title>
		<link>http://debian.dev-zero.nl/blog/archives/149</link>
		<comments>http://debian.dev-zero.nl/blog/archives/149#comments</comments>
		<pubDate>Fri, 07 Jan 2011 13:40:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Package updates]]></category>

		<guid isPermaLink="false">http://debian.dev-zero.nl/blog/?p=149</guid>
		<description><![CDATA[Distributed Checksum Clearinghouse, a.k.a. DCC is an anti-spam content filter, that works by comparing checksums of received mail, to recognize (and possibly block) unsollicited bulk e-mail. At DevZero.nl, over 50% of the SPAM we receive, is found with DCC, and there are very few false positives. DCC has been around for more than 10 years, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rhyolite.com/dcc/">Distributed Checksum Clearinghouse</a>, a.k.a. DCC is an anti-spam content filter, that works by comparing checksums of received mail, to recognize (and possibly block) unsollicited bulk e-mail. At DevZero.nl, over 50% of the SPAM we receive, is found with DCC, and there are very few false positives. DCC has been around for more than 10 years, but unfortunately, its license does not comply with the <a href="http://www.debian.org/social_contract.html#guidelines">DFSG</a> and it was <a href="http://packages.qa.debian.org/d/dcc/news/20080207T223223Z.html">removed from Debian</a> in 2008.</p>
<p>Debian.dev-zero.nl has carried a Debian package for DCC since it was founded, but it hasn&#8217;t been updated in quite a while. The version that was in the archive (1.3.102) dated from February 2009. The latest version, that was released on November 9, 2010 is 1.3.134, and this version was packaged and uploaded to <em>lenny-custom</em> today.</p>
<p>As usual, both <em>i386</em> and <em>amd64</em> packages are available. A small warning: the packages have not been  tested extensively, but I run them in production, so any problems that arise, I will fix.</p>
]]></content:encoded>
			<wfw:commentRss>http://debian.dev-zero.nl/blog/archives/149/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.3.3-7</title>
		<link>http://debian.dev-zero.nl/blog/archives/137</link>
		<comments>http://debian.dev-zero.nl/blog/archives/137#comments</comments>
		<pubDate>Fri, 07 Jan 2011 12:30:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Package updates]]></category>

		<guid isPermaLink="false">http://debian.dev-zero.nl/blog/?p=137</guid>
		<description><![CDATA[Last Wednesday, PHP 5.3.3-7 was uploaded to unstable. This version contains about 15 patches for problems that have been fixed in newer versions upstream, including a problem on 32-bit installations with large floating point numbers, that could crash or hang your server. Enough reason for a new backport, so as of now, this version (5.3.3-7tzz1~bpo50) [...]]]></description>
			<content:encoded><![CDATA[<p>Last Wednesday, PHP 5.3.3-7 was uploaded to unstable. This version contains about <a href="http://packages.debian.org/changelogs/pool/main/p/php5/php5_5.3.3-7/changelog">15 patches</a> for problems that have been fixed in newer versions upstream, including <a href="http://www.pcworld.idg.com.au/article/372418/php_floating_point_bug_crashes_servers/">a problem on 32-bit installations with large floating point numbers</a>, that could crash or hang your server.</p>
<p>Enough reason for a new backport, so as of now, this version (5.3.3-7tzz1~bpo50) is available on debian.dev-zero.nl, in <em>lenny-custom</em>. It is <em>i386</em>-only at the moment, <em>amd64</em> will follow soon.</p>
<p>My own changelog additions are:</p>
<pre style="padding-left: 30px;">php5 (5.3.3-7tzz1) unstable; urgency=low</pre>
<pre style="padding-left: 30px;">* Packaged for Lenny
* Added a patch to allow the 5th argument of mail() in safe mode
  (001-safe_mode_mail_arg5_ok.patch)
* Change build-dep on automake from 1.11 to automake (&gt;= 1.10) |
  automake1.11 | automake1.10</pre>
<pre style="padding-left: 30px;">-- Martijn Grendelman &lt;m@rtijn.net&gt;  Wed, 05 Jan 2011 16:35:51 +0100</pre>
]]></content:encoded>
			<wfw:commentRss>http://debian.dev-zero.nl/blog/archives/137/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exim 4.72</title>
		<link>http://debian.dev-zero.nl/blog/archives/132</link>
		<comments>http://debian.dev-zero.nl/blog/archives/132#comments</comments>
		<pubDate>Tue, 28 Dec 2010 10:09:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Package updates]]></category>

		<guid isPermaLink="false">http://debian.dev-zero.nl/blog/?p=132</guid>
		<description><![CDATA[Earlier this month, a serious security vulnerability was discoverd in Exim.  While a security update for Lenny&#8217;s version 4.69-9 was released the very same day, different versions remain vulnerable. On December 26th, version 4.72-3 was uploaded to Unstable, containing the fixes for this issue from upstream&#8217;s version 4.73 RC1. I am sure, that this version [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier this month, a <a href="http://www.debian.org/security/2010/dsa-2131">serious security vulnerability</a> was discoverd in Exim.  While a security update for Lenny&#8217;s version 4.69-9 was released the very same day, different versions <a href="http://security-tracker.debian.org/tracker/CVE-2010-4345">remain vulnerable</a>. On December 26th, version 4.72-3 was uploaded to <em>Unstable</em>, containing the fixes for this issue from upstream&#8217;s version 4.73 RC1.</p>
<p>I am sure, that this version will enter <a href="http://packages.debian.org/source/lenny-backports/exim4">Lenny-backports</a> when it hits <em>Testing</em>, but until then, a Lenny build is available from <em>debian.dev-zero.nl</em>. As usual, both <em>i386</em> and <em>amd64</em> are here.</p>
<p>Please note that this package was built against <a href="http://packages.debian.org/lenny-backports/libdb4.8">libdb4.8 from Lenny-backports</a>, so you can not install this package without access to the backports repository.</p>
<p><strong>Update January 7, 2011:</strong> exim4 4.72-3~bpo50+1 has entered backports.debian.org yesterday, so the exim4 packages have been removed from debian.dev-zero.nl</p>
]]></content:encoded>
			<wfw:commentRss>http://debian.dev-zero.nl/blog/archives/132/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removals</title>
		<link>http://debian.dev-zero.nl/blog/archives/130</link>
		<comments>http://debian.dev-zero.nl/blog/archives/130#comments</comments>
		<pubDate>Thu, 23 Dec 2010 15:55:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Package updates]]></category>

		<guid isPermaLink="false">http://debian.dev-zero.nl/blog/?p=130</guid>
		<description><![CDATA[The following outdated packages have just been removed from the archive: zaptel-modules-2.6.26-1-amd64 zaptel-modules-2.6.26-1-686 cciss-vol-status debian-sipo-keyring apache2 and everything related, they are available on backports.debian.org now libapr1, libapr1-dbg, libapr1-dev, they are available on backports.debian.org now libaprutil1 and everything related, they are available on backports.debian.org now Many other outdated packages (mostly VLC and other multimedia-stuff) will remain [...]]]></description>
			<content:encoded><![CDATA[<p>The following outdated packages have just been removed from the archive:</p>
<ul>
<li>zaptel-modules-2.6.26-1-amd64</li>
<li>zaptel-modules-2.6.26-1-686</li>
<li>cciss-vol-status</li>
<li>debian-sipo-keyring</li>
<li>apache2 and everything related, they are available on backports.debian.org now</li>
<li>libapr1, libapr1-dbg, libapr1-dev, they are available on backports.debian.org now</li>
<li>libaprutil1 and everything related, they are available on backports.debian.org now</li>
</ul>
<p>Many other outdated packages (mostly VLC and other multimedia-stuff) will remain in the archive, but will not be updated anymore. Since I have upgraded my workstation to Squeeze, I haven&#8217;t got any way to test the packages before I upload them. Other packages may receive updates.</p>
]]></content:encoded>
			<wfw:commentRss>http://debian.dev-zero.nl/blog/archives/130/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.3.3</title>
		<link>http://debian.dev-zero.nl/blog/archives/126</link>
		<comments>http://debian.dev-zero.nl/blog/archives/126#comments</comments>
		<pubDate>Thu, 23 Dec 2010 15:45:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Package updates]]></category>

		<guid isPermaLink="false">http://debian.dev-zero.nl/blog/?p=126</guid>
		<description><![CDATA[It took a while -as a matter of fact, this is the first update to the repository in over 8 months- but today, the latest version of PHP was uploaded to debian.dev-zero.nl. While PHP 5.3.3 was already released in July by the PHP development team, it took until late October for the first release by [...]]]></description>
			<content:encoded><![CDATA[<p>It took a while -as a matter of fact, this is the first update to the repository in over 8 months- but today, the latest version of PHP was uploaded to debian.dev-zero.nl. While PHP 5.3.3 was already released in July by the PHP development team, it took until late October for the first release by the Debian maintainer team to reach <em>unstable</em>. After that, four more uploads were done, and with version 5.3.3-6, things seem to have stabalized a little and this version migrated to <em>testing</em> on December 13th.</p>
<p>As usual, the PHP packages are available in <em>lenny-custom</em>, for both <em>amd64</em> and <em>i386.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://debian.dev-zero.nl/blog/archives/126/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.3.2</title>
		<link>http://debian.dev-zero.nl/blog/archives/121</link>
		<comments>http://debian.dev-zero.nl/blog/archives/121#comments</comments>
		<pubDate>Wed, 07 Apr 2010 12:19:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Package updates]]></category>

		<guid isPermaLink="false">http://debian.dev-zero.nl/blog/?p=121</guid>
		<description><![CDATA[On March 4th, PHP 5.3.2 was released by the PHP development team and on March 13th, it was uploaded to Unstable. Today, this version (5.3.2-1) was backported to Lenny and uploaded to lenny-custom. As usual, both amd64 and i386 are available.]]></description>
			<content:encoded><![CDATA[<p>On March 4th, PHP 5.3.2 was released by the PHP development team and on March 13th, it was uploaded to Unstable. Today, this version (5.3.2-1) was backported to Lenny and uploaded to <em>lenny-custom</em>.</p>
<p>As usual, both <em>amd64</em> and <em>i386</em> are available.</p>
]]></content:encoded>
			<wfw:commentRss>http://debian.dev-zero.nl/blog/archives/121/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache updated</title>
		<link>http://debian.dev-zero.nl/blog/archives/119</link>
		<comments>http://debian.dev-zero.nl/blog/archives/119#comments</comments>
		<pubDate>Fri, 26 Mar 2010 15:40:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Package updates]]></category>

		<guid isPermaLink="false">http://debian.dev-zero.nl/blog/?p=119</guid>
		<description><![CDATA[The backport of Apache 2.2 was updated to 2.2.15-2 from Testing. In Testing/Unstable, this package (apache2.2-bin, to be precise)  has a dependency on libssl &#62;= 0.9.8m, because of some fixes concerning secure session renegotiation in mod_ssl. However, this version was built against Lenny&#8217;s 0.9.8g. For more information on secure session renegotiation in OpenSSL, see  its [...]]]></description>
			<content:encoded><![CDATA[<p>The backport of Apache 2.2 was updated to 2.2.15-2 from Testing. In Testing/Unstable, this package (<em>apache2.2-bin</em>, to be precise)  has a dependency on libssl &gt;= 0.9.8m, because of some fixes concerning secure session renegotiation in mod_ssl. However, this version was built against Lenny&#8217;s 0.9.8g.</p>
<p>For more information on secure session renegotiation in OpenSSL, see  <a href="http://www.openssl.org/docs/ssl/SSL_CTX_set_options.html#SECURE_RENEGOTIATION" target="_blank">its documentation</a>.</p>
<p>Packages are available for <em>i386</em> and <em>am64</em>, as usual.</p>
]]></content:encoded>
			<wfw:commentRss>http://debian.dev-zero.nl/blog/archives/119/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

