-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.options-syntax-ini.asd
52 lines (39 loc) · 2.28 KB
/
configuration.options-syntax-ini.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
52
;;;; configuration.options-syntax-ini.asd --- Ini syntax for the options system.
;;;;
;;;; Copyright (C) 2013-2018 Jan Moringen
;;;;
;;;; Author: Jan Moringen <jmoringe@techfak.uni-bielefeld.de>
(defsystem "configuration.options-syntax-ini"
:description "INI 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 "parser.ini" "0.4"))
:components ((:module "sources"
:pathname "src/sources"
:components ((:file "syntax-ini"))))
:in-order-to ((test-op (test-op "configuration.options-syntax-ini/test"))))
(defsystem "configuration.options-syntax-ini/test"
:description "Unit tests for the configuration.options-syntax-ini 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-ini" (: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-ini"))))
:perform (test-op (operation component)
(uiop:symbol-call '#:configuration.options.sources.syntax-ini.test
'#:run-tests)))