/usr/share/doc/cl-asdf/examples/test-nested-components.script is in cl-asdf 2:3.0.3-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 | ;;; -*- Lisp -*-
;;; check that added nesting via modules doesn't confuse ASDF
(setf *central-registry* nil)
(load "test-nested-components-1.asd")
(print
(list
:a
(traverse 'compile-op 'test-nested-components-a)
(traverse 'compile-op 'test-nested-components-b)
:x
(traverse 'compile-op 'db-agraph-preflight)
(traverse 'compile-op 'db-agraph-preflight-2)))
#|
(oos 'compile-op 'test-nested-components-a)
(oos 'compile-op 'test-nested-components-b)
(print
(list
(traverse 'load-op 'test-nested-components-a)
(traverse 'load-op 'test-nested-components-b)))
|#
|