
Author: hhubner Date: 2006-02-17 15:15:22 -0600 (Fri, 17 Feb 2006) New Revision: 1842 Removed: branches/xml-class-rework/bknr/src/bknr-id3.asd branches/xml-class-rework/bknr/src/id3/ Modified: branches/xml-class-rework/bknr/src/bknr.asd Log: Get rid of the id3 module. This has not been used very often, but it was very annoying because it depends on the external libid3tag library be present. There is native ID3 tag reading code available from Peter Seibels' PCL book, if someone needs the capability, please import this. Deleted: branches/xml-class-rework/bknr/src/bknr-id3.asd =================================================================== --- branches/xml-class-rework/bknr/src/bknr-id3.asd 2006-02-17 21:12:10 UTC (rev 1841) +++ branches/xml-class-rework/bknr/src/bknr-id3.asd 2006-02-17 21:15:22 UTC (rev 1842) @@ -1,22 +0,0 @@ -(in-package :cl-user) - -(defpackage :bknr-id3.system - (:use :cl :asdf) - (:export :*bknr-id3-directory*)) - -(in-package :bknr-id3.system) - -(defvar *bknr-id3-directory* - (make-pathname :name nil :type nil :version nil - :defaults (parse-namestring *load-truename*))) - -(defsystem :bknr-id3 - :name "bknr-id3 - lisp bindings for libid3tag" - :author "Manuel Odendahl <manuel@bl0rg.net>" - :version "0" - :licence "BSD" - :description "LISP UFFI bindings for libid3tag" - :depends-on (:bknr-utils :uffi) - - :components ((:module "id3" :components ((:file "package") - (:file "id3" :depends-on ("package")))))) Modified: branches/xml-class-rework/bknr/src/bknr.asd =================================================================== --- branches/xml-class-rework/bknr/src/bknr.asd 2006-02-17 21:12:10 UTC (rev 1841) +++ branches/xml-class-rework/bknr/src/bknr.asd 2006-02-17 21:15:22 UTC (rev 1842) @@ -36,7 +36,6 @@ :bknr-data-impex #+(not allegro) :acl-compat) - ;:bknr-id3) :components ((:file "packages") @@ -128,4 +127,4 @@ (:file "import-images-handler" :depends-on ("image-tags" "image")) (:file "session-image")) - :depends-on ("web")))) \ No newline at end of file + :depends-on ("web"))))