TODO
====

manpages
--------

 * man scripts still miss them, maybe something autogenerated with help2man would be nice


install suggests for autopkgtest
--------------------------------

For autopkgtest-pkg-r its needed to install more packages than Depends.  An
attempt was made in autopkgtest-pkg-r but this is not run as root and thus
does not work.  Here is the code snippet that was tried - but it needs to
be found out where to sneak this in properly

# install Suggests since these are usually needed for testing
suggests=$(apt-cache depends ${pkgname} | grep Suggests | sed 's/Suggests: //')
if [ "$suggests" != "" ] ; then
  apt-get install -y ${suggeste}
fi

# install additional Test-Depends that can be specifed in debian/tests/control
if [ -d debian/tests ] ; then
  if [ -e debian/tests/control ] ; then
   apt-get install -y `grep Depends debian/tests/control | sed -e 's/^Depends://' -e 's/@builddeps@//' -e 's/@//g' -e 's/,//g'`
 fi
fi
