r5323: *** empty log message ***

This commit is contained in:
Kevin M. Rosenberg
2003-07-18 20:34:37 +00:00
commit 9e5b1ca169
10 changed files with 2091 additions and 0 deletions

29
puri.asd Normal file
View File

@ -0,0 +1,29 @@
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; Programmer: Kevin Rosenberg
(in-package #:cl-user)
(defpackage #:puri-system (:use #:cl #:asdf))
(in-package #:puri-system)
(defsystem puri
:name "cl-puri"
:maintainer "Kevin M. Rosenberg <kmr@debian.org>"
:licence "GNU Lesser General Public License"
:description "Portable Universal Resource Indentifier Library"
:components
((:file "src")))
(defmethod perform ((o test-op) (c (eql (find-system 'puri))))
(oos 'load-op 'puri-tests)
(oos 'test-op 'puri-tests))
(defsystem puri-tests
:depends-on (:rt :tester)
:components
((:file "tests")))
(defmethod perform ((o test-op) (c (eql (find-system 'puri-tests))))
(or (funcall (intern (symbol-name '#:do-tests) (find-package :rt)))
(error "test-op failed")))