diff -Nru luarocks-2.0.8/debian/changelog luarocks-2.0.8/debian/changelog --- luarocks-2.0.8/debian/changelog 2012-03-24 18:08:04.000000000 +0000 +++ luarocks-2.0.8/debian/changelog 2012-04-15 12:15:28.000000000 +0000 @@ -1,3 +1,9 @@ +luarocks (2.0.8-2) unstable; urgency=low + + * Clen up luarocks manifest files in postrm script (Closes: #668660) + + -- Enrico Tassi Sun, 15 Apr 2012 14:14:22 +0200 + luarocks (2.0.8-1) unstable; urgency=low * Moved from CDBS to dh7 diff -Nru luarocks-2.0.8/debian/luarocks.postrm luarocks-2.0.8/debian/luarocks.postrm --- luarocks-2.0.8/debian/luarocks.postrm 1970-01-01 00:00:00.000000000 +0000 +++ luarocks-2.0.8/debian/luarocks.postrm 2012-04-15 12:14:16.000000000 +0000 @@ -0,0 +1,10 @@ +#!/bin/sh +set -e + +case $1 in + remove|purge) + rm -rf /usr/local/lib/luarocks/ + ;; +esac + +#DEBHELPER#