Skip to content

Commit

Permalink
Remove unneeded uses of "#:" in ASDF files.
Browse files Browse the repository at this point in the history
  • Loading branch information
brown committed Nov 28, 2011
1 parent 819368c commit 9812d7c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 15 deletions.
4 changes: 1 addition & 3 deletions example/protobuf-example.asd
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@

;;;; protobuf-example.asd


(cl:in-package #:common-lisp-user)

(defpackage #:protobuf-example-system
Expand All @@ -10,7 +9,6 @@

(in-package #:protobuf-example-system)


(defsystem protobuf-example
:name "Protocol Buffer Example"
:description "Protocol buffer example code"
Expand All @@ -19,7 +17,7 @@ buffer definitions."
:version "0.4"
:author "Robert Brown"
:licence "See file COPYING and the copyright messages in individual files."
:defsystem-depends-on (:protobuf)
:defsystem-depends-on (protobuf)
:components ((:static-file "Makefile")
(:static-file "README")
(:cl-source-file "package")
Expand Down
6 changes: 3 additions & 3 deletions protobuf-test.asd
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
:version "0.5.2"
:author "Robert Brown"
:license "See file COPYING and the copyright messages in individual files."
:defsystem-depends-on (#:protobuf)
:depends-on (#:hu.dwim.stefil)
:defsystem-depends-on (protobuf)
:depends-on (hu.dwim.stefil)
:components
((:static-file "golden")
(:file "message-test" :depends-on ("unittest"))
Expand All @@ -64,7 +64,7 @@
:depends-on ("unittest_import")
:proto-search-path ("./"))))

(defmethod perform ((operation test-op) (component (eql (find-system :protobuf-test))))
(defmethod perform ((operation test-op) (component (eql (find-system 'protobuf-test))))
(funcall (read-from-string "message-test:test-message"))
(funcall (read-from-string "proto-lisp-test:test-proto-lisp"))
(funcall (read-from-string "wire-format-test:test-wire-format")))
Expand Down
8 changes: 4 additions & 4 deletions protobuf.asd
Original file line number Diff line number Diff line change
Expand Up @@ -221,10 +221,10 @@ file and the .fasl file."
:perform (load-op :after (operation component)
(pushnew :protobuf cl:*features*)
(provide 'protobuf))
:depends-on (#:com.google.base
#:varint
#-(or allegro clisp sbcl) #:trivial-utf-8)
:in-order-to ((test-op (test-op :protobuf-test)))
:depends-on (com.google.base
varint
#-(or allegro clisp sbcl) trivial-utf-8)
:in-order-to ((test-op (test-op protobuf-test)))
:components
((:static-file "COPYING")
(:static-file "README")
Expand Down
4 changes: 2 additions & 2 deletions varint/varint-test.asd
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
(in-package #:varint-test-system)

(defsystem varint-test
:depends-on (:varint #:hu.dwim.stefil)
:depends-on (varint hu.dwim.stefil)
:components
((:file "varint_test")))

(defmethod perform ((operation test-op) (component (eql (find-system :varint-test))))
(defmethod perform ((operation test-op) (component (eql (find-system 'varint-test))))
(funcall (read-from-string "varint-test:test-varint")))
6 changes: 3 additions & 3 deletions varint/varint.asd
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@

(in-package #:varint-system)

(defsystem #:varint
:depends-on (#:com.google.base)
:in-order-to ((test-op (test-op :varint-test)))
(defsystem varint
:depends-on (com.google.base)
:in-order-to ((test-op (test-op varint-test)))
:components
((:file "package")
(:file "varint" :depends-on ("package"))))

0 comments on commit 9812d7c

Please sign in to comment.