/usr/share/doc/cl-asdf/examples/test-asdf.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 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | (defpackage :test-asdf-system
(:use :cl :asdf))
(in-package :test-asdf-system)
(defsystem :test-asdf :class package-inferred-system)
(defsystem :test-asdf/all
:version "0"
:depends-on ((:version :test-asdf/2 "2")
:test-asdf/4))
(defsystem :test-asdf/1
:components ((:file "file1" :if-feature :common-lisp)
(:file "does-not-exist" :if-feature (:not :common-lisp))))
(defsystem :test-asdf/2
:version "2.2"
:depends-on (:test-asdf/1)
:components ((:module "foo" :pathname ""
:components ((:module "bar" :pathname ""
:components ((:file "file2")))))))
(defsystem :test-asdf/4
:components ((:file "file3")
(:file "file4" :in-order-to ((load-op (load-op "file3"))
(compile-op (load-op "file3"))))))
(defsystem :test-asdf/test9-1
:version "1.1"
:components ((:file "file2"))
:depends-on ((:version :test-asdf/test9-2 "2.0")))
(defsystem :test-asdf/test-module-depend
:depends-on
((:feature :sbcl (:require :sb-posix))
(:feature :allegro (:require "osi")))
:components
((:file "file1" :if-feature :common-lisp)
(:file "doesnt-exist" :if-feature (:not :common-lisp))
(:module "quux"
:pathname ""
:depends-on ("file1")
:components
((:file "file2")
(:module "file3mod"
:pathname ""
:components
((:file "file3" :if-feature :common-lisp)
(:file "does-not-exist" :if-feature (:not :common-lisp))))))))
(defsystem :test-asdf/test9-2
:version "1.0"
:components ((:file "file1")))
(defsystem :test-asdf/test9-3
:depends-on ((:version :test-asdf/test9-2 "1.0")))
(defsystem :test-asdf/test-source-directory-1
:pathname "some/relative/pathname/")
(defsystem :test-asdf/test-source-directory-2
:pathname "some/relative/pathname/with-file.type")
(defsystem :test-asdf/bundle-1
:components ((:file "file1") (:file "file3")))
(defsystem :test-asdf/bundle-2
:depends-on (:test-asdf/bundle-1) :components
((:file "file2")
(:file "invalid-file" :if-feature (:not :common-lisp))))
(defsystem :test-asdf/force
:depends-on (:test-asdf/force1)
:components ((:file "file3")))
(defsystem :test-asdf/force1
:components ((:file "file1")))
|