On Thu, Apr 7, 2011 at 12:53 PM, Brandon Van Every <bvanevery@gmail.com> wrote:
Is there some easy way in Quicklisp to find all the packages that use cl-opengl? (ql:system-apropos "cl-opengl") only lists cl-opengl itself. I've been Googling about cl-opengl but that method is proving to be slow.
On the Quicklisp mailing list I was given this code snippet: (use-package :ql-dist) (remove-if-not (lambda (system) (member "cl-opengl" (required-systems system) :test #'string=)) (provided-systems t)) It produced these results: (#<SYSTEM blackthorn / blackthorn-engine-20110320-hg / quicklisp 2011-03-20> #<SYSTEM cells-gtk / cells-gtk3-20110219-git / quicklisp 2011-03-20> #<SYSTEM cl-glu / cl-opengl-20110320-git / quicklisp 2011-03-20> #<SYSTEM cl-glut / cl-opengl-20110320-git / quicklisp 2011-03-20> #<SYSTEM cl-glut-examples / cl-opengl-20110320-git / quicklisp 2011-03-20> #<SYSTEM glaw / glaw-20110219-git / quicklisp 2011-03-20> #<SYSTEM glop-test / glop-20110219-git / quicklisp 2011-03-20> #<SYSTEM test-gtk / cells-gtk3-20110219-git / quicklisp 2011-03-20> #<SYSTEM until-it-dies.base / until-it-dies-20101006-git / quicklisp 2011-03-20>) ? Cheers, Brandon Van Every