/usr/share/common-lisp/source/py-configparser/py-configparser.asd is in cl-py-configparser 20131003-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 | (in-package #:cl-user)
(defpackage #:py-configparser-system
(:use #:cl #:asdf))
(in-package #:py-configparser-system)
(defsystem py-configparser
:name "py-configparser"
:author "Erik Huelsmann"
:version "1.1-dev"
:license "MIT"
:description "Common Lisp implementation of the Python ConfigParser module"
:depends-on (#:parse-number)
:components ((:file "package")
(:file "config" :depends-on ("package"))
(:file "parser" :depends-on ("config"))))
|