/usr/share/doc/cl-asdf/examples/test-package.asd is in cl-asdf 2:3.1.6-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | ;;; NB: This way of managing packages is explicitly NOT recommended.
;;; However, it is found in the wild, and debugging it is a pain, so
;;; we should probably not break. The thing that this is testing is
;;; that unrelated definitions of symbols naming ASDF keywords should
;;; not affect the parsing of a system.
(in-package :cl-user) ; BAD BAD BAD
(asdf:defsystem test-package
:components ((:module "foo" :components ((:file "bar") (:file "baz")))))
|