forked from rotatef/aws-sign4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaws-sign4.asd
57 lines (52 loc) · 2.11 KB
/
aws-sign4.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
53
54
55
56
;;;; aws-sign4
;;;;
;;;; Copyright (C) 2013 Thomas Bakketun <[email protected]>
;;;;
;;;; This library is free software: you can redistribute it and/or modify
;;;; it under the terms of the GNU Lesser General Public License as published
;;;; by the Free Software Foundation, either version 3 of the License, or
;;;; (at your option) any later version.
;;;;
;;;; This library is distributed in the hope that it will be useful,
;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;;; GNU General Public License for more details.
;;;;
;;;; You should have received a copy of the GNU General Public License
;;;; along with this library. If not, see <http://www.gnu.org/licenses/>.
(defsystem #:aws-sign4
:name "aws-sign4"
:licence "GNU Lesser General Public Licence 3.0"
:author "Thomas Bakketun <[email protected]>"
:description "A library for Amazon Web Services signing version 4"
:depends-on (:local-time
:cl-ppcre
:ironclad
:split-sequence
:flexi-streams
:secret-values)
:serial t
:components ((:file "package")
(:file "aws-sign4")))
(defsystem #:aws-sign4-example
:name "aws-sign4-example"
:licence "Example"
:depends-on (:aws-sign4 :drakma)
:components ((:module example
:serial t
:components ((:file "package")
(:file "example")))))
(defsystem #:aws-sign4-tests
:name "aws-sign4-tests"
:licence "GNU Lesser General Public Licence 3.0"
:author "Thomas Bakketun <[email protected]>"
:description "Tests for aws-sign4"
:depends-on (:aws-sign4)
:components ((:module tests
:serial t
:components ((:file "package")
(:file "test")))))
(defmethod perform ((o test-op) (c (eql (find-system '#:aws-sign4))))
(operate 'load-op '#:aws-sign4-tests)
(funcall (find-symbol (string :run-tests)
:aws-sign4-tests)))