From: Hal Niner
Subject: Best way of including dependencies
Date: 
Message-ID: <1533d93d.0308290815.e05b7fa@posting.google.com>
Hi,

Say I have a lisp application on a single file that depends on some
packages (cclib, ppcre and graystreams, for instance).

Which is the best way of including dependencies information so when I
load/compile the file, I don't have to manually issue (mk:oos) and
(asdf:op) commands on the REPL?  I've seen people using defpackage,
others use eval-when ... require, others use eval-when ... mk:oos. 
Which one is the standard practice?

Thanks.