diff --git a/etc/autodist/distdb b/etc/autodist/distdb index 35666f7..e8ae662 100644 --- a/etc/autodist/distdb +++ b/etc/autodist/distdb @@ -243,10 +243,10 @@ kdesdk,kdetoys,kdebindings,kdewebdev,kdeedu,kdeartwork,kde-i18n kde4=( kdelibs,kdepimlibs,oxygen-icons,kde-runtime,kactivities,kde-workspace,kde-wallpapers,kde-baseapps,kdepim4,\ -kdepim-runtime,kdeadmin,kdenetwork4,kdeartwork,kdegames,kdetoys,kdesdk,marble,\ -kdeplasma-addons,kde-l10n,blinken,cantor,gwenview,libkdeedu,analitza,kalgebra,kalzium,kamera,\ +kdepim-runtime,kdeadmin,kdenetwork4,kdegames,kdetoys,kdesdk,libkdcraw,libkexiv2,kdeartwork,marble,\ +kdeplasma-addons,kde-l10n,blinken,cantor,libkipi,gwenview,libkdeedu,analitza,kalgebra,kalzium,kamera,\ kanagram,kate,kbruch,kcolorchooser,kdegraphics-strigi-analyzer,kgamma,kgeography,khangman,kig,kiten,\ -klettres,kmplot,kolourpaint,konsole,kruler,ksnapshot,kstars,libkdcraw,libkexiv2,libkipi,libksane,\ +klettres,kmplot,kolourpaint,konsole,kruler,ksnapshot,kstars,libksane,\ okular,smokegen,smokeqt,smokekde,svgpart,rocs,kwordquiz,kturtle,ktouch,qtruby,korundum,\ kross-interpreters,perl-Qt4,perl-KDE,kdegraphics-thumbnailers,ksaneplugin,parley,step,\ ark,filelight,kcalc,kcharselect,kdf,kfloppy,kgpg,kremotecontrol,ktimer,kwallet,sweeper,\ diff --git a/etc/autodist/legacy b/etc/autodist/legacy index 35cf0c8..511c5be 100644 --- a/etc/autodist/legacy +++ b/etc/autodist/legacy @@ -94,3 +94,7 @@ libpcre0 libcdio12 libpoppler12 libaudiofile0 +libxcb-util1 +parted2 +libguile1 +libgnutls2 diff --git a/etc/cron.daily/40-autodist-cleanold b/etc/cron.daily/40-autodist-cleanold index 0c0e616..86edf28 100755 --- a/etc/cron.daily/40-autodist-cleanold +++ b/etc/cron.daily/40-autodist-cleanold @@ -23,5 +23,11 @@ for i in `seq 0 ${#AUTOPORT_ARCH[*]}`; do elif [ "${AUTOPORT_UPDATE[$i]}" ]; then clean /var/autodist ${AUTOPORT_ARCH[$i]} find /var/tmp/autodist/ -maxdepth 1 -ctime +25 -exec rm -rf {} \; + elif [ "${AUTOPORT_NATIVE[$i]}" -a "${AUTOPORT_CHROOT_USER[$i]}" ]; then + WORKINGHOME=`getent passwd ${AUTOPORT_CHROOT_USER[$i]} | cut -d: -f6` + if [ -e $WORKINGHOME ]; then + clean $WORKINGHOME ${AUTOPORT_ARCH[$i]} + fi + find /var/tmp/autodist/ -maxdepth 1 -ctime +25 -exec rm -rf {} \; fi done