-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.options-syntax-xml.asd
51 lines (39 loc) · 2.28 KB
/
configuration.options-syntax-xml.asd
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
;;;; configuration.options-syntax-xml.asd --- System definition for XML support.
;;;;
;;;; Copyright (C) 2011-2018 Jan Moringen
;;;;
;;;; Author: Jan Moringen <jmoringe@techfak.uni-bielefeld.de>
(defsystem "configuration.options-syntax-xml"
:description "XML-syntax configuration source."
:license "LLGPLv3" ; see COPYING file for details.
:author "Jan Moringen <jmoringe@techfak.uni-bielefeld.de>"
:maintainer "Jan Moringen <jmoringe@techfak.uni-bielefeld.de>"
:homepage "https://github.com/scymtym/configuration.options"
:bug-tracker "https://github.com/scymtym/configuration.options/issues"
:source-control (:git "https://github.com/scymtym/configuration.options.git")
:version (:read-file-form "version-string.sexp")
:depends-on ("alexandria"
(:version "let-plus" "0.2")
(:version "configuration.options" (:read-file-form "version-string.sexp"))
(:version "xml.location" "0.2.0"))
:components ((:module "sources"
:pathname "src/sources"
:components ((:file "syntax-xml"))))
:in-order-to ((test-op (test-op "configuration.options-syntax-xml/test"))))
(defsystem "configuration.options-syntax-xml/test"
:description "Unit tests for the configuration.options-syntax-xml system."
:license "LLGPLv3" ; see COPYING file for details.
:author "Jan Moringen <jmoringe@techfak.uni-bielefeld.de>"
:maintainer "Jan Moringen <jmoringe@techfak.uni-bielefeld.de>"
:version (:read-file-form "version-string.sexp")
:depends-on ("alexandria"
(:version "let-plus" "0.2")
(:version "configuration.options-syntax-xml" (:read-file-form "version-string.sexp"))
(:version "fiveam" "1.3")
(:version "configuration.options/test" (:read-file-form "version-string.sexp")))
:components ((:module "sources"
:pathname "test/sources"
:components ((:file "syntax-xml"))))
:perform (test-op (operation component)
(uiop:symbol-call '#:configuration.options.sources.syntax-xml.test
'#:run-tests)))