I recently wrote a tool to help keeping up with slackware updates without slapt-get or swaret. It's actually a fairly simple frontend for wget with ability to compare versions of installed packages to the versions of the packages on the server and download newer versions is desired. It can also be used to find out what package (or which packages) contain certain files. Comes in handy if you have problems with missing libs or such. You can get it here:
http://www.student.oulu.fi/~psulasal/scripts/fetchpkg
Place it in for example /usr/local/bin and give it execute rights (chmod a+x fetchpkg). fetchpkg -help will give you some information on how to use it. Fetchpkg will need MIRROR environment variable set pointing to the desired slackware mirror (using alternative sources like linuxpackages is also possible). Here is a script that you can place in /etc/profile.d for that purpose:
http://www.student.oulu.fi/~psulasal...ts/fetchpkg.sh (also remember to make it executable as well).
With fetchpkg.sh in /etc/profile.d, you can use the variables defined in it (edit them as needed) to control the MIRROR variable (i.e. MIRROR=$LINUXPACKAGES would use the linuxpackages mirror and MIRROR=$OFFICIAL would use the official slackware mirror).
The script doesn't do any installing/upgrading and you can (should?) run it as a regular user (not root). I originally wrote it for myself, but maybe it's useful for someone else also
