Add support for square brackets around IPv6 addresses to
[puri.git] / puri.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; Programmer: Kevin Rosenberg
3
4
5 (in-package #:cl-user)
6 (defpackage #:puri-system (:use #:cl #:asdf))
7 (in-package #:puri-system)
8
9
10 (defsystem puri
11   :name "cl-puri"
12   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
13   :licence "GNU Lesser General Public License"
14   :description "Portable Universal Resource Indentifier Library"
15   :components
16   ((:file "src")))
17
18 (defmethod perform ((o test-op) (c (eql (find-system 'puri))))
19   (oos 'load-op 'puri-tests)
20   (oos 'test-op 'puri-tests))
21
22 (defsystem puri-tests
23     :depends-on (:puri :ptester) 
24     :components
25     ((:file "tests")))
26
27 (defmethod perform ((o test-op) (c (eql (find-system 'puri-tests))))
28   (or (funcall (intern (symbol-name '#:do-tests)
29                        (find-package :puri-tests)))
30       (error "test-op failed")))
31
32 (defmethod operation-done-p ((o test-op) (c (eql (find-system 'puri-tests))))
33   (values nil))