[Cl-heap-cvs] r12 - in cl-heap: tags/release-0.1.3 trunk
Author: rneeser Date: Wed Mar 17 00:36:15 2010 New Revision: 12 Log: Added missing file, and a tag for the release. Added: cl-heap/tags/release-0.1.3/ - copied from r10, /cl-heap/trunk/ cl-heap/tags/release-0.1.3/ChangeLog - copied unchanged from r11, /cl-heap/trunk/ChangeLog cl-heap/tags/release-0.1.3/binary-heap.lisp - copied unchanged from r11, /cl-heap/trunk/binary-heap.lisp cl-heap/tags/release-0.1.3/cl-heap-tests.asd cl-heap/tags/release-0.1.3/cl-heap.asd - copied unchanged from r11, /cl-heap/trunk/cl-heap.asd cl-heap/tags/release-0.1.3/condition.lisp - copied unchanged from r11, /cl-heap/trunk/condition.lisp cl-heap/tags/release-0.1.3/fibonacci-heap.lisp - copied unchanged from r11, /cl-heap/trunk/fibonacci-heap.lisp cl-heap/tags/release-0.1.3/heap.lisp - copied unchanged from r11, /cl-heap/trunk/heap.lisp cl-heap/tags/release-0.1.3/package.lisp - copied unchanged from r11, /cl-heap/trunk/package.lisp cl-heap/tags/release-0.1.3/priority-queue.lisp - copied unchanged from r11, /cl-heap/trunk/priority-queue.lisp cl-heap/tags/release-0.1.3/tests.lisp - copied unchanged from r11, /cl-heap/trunk/tests.lisp cl-heap/trunk/cl-heap-tests.asd Added: cl-heap/tags/release-0.1.3/cl-heap-tests.asd ============================================================================== --- (empty file) +++ cl-heap/tags/release-0.1.3/cl-heap-tests.asd Wed Mar 17 00:36:15 2010 @@ -0,0 +1,37 @@ +;;; -*- Mode: Lisp; -*- +;;; +;;; Copyright 2009-2010 Rudolph Neeser <rudy.neeser@gmail.com> +;;; +;;; This file is part of CL-HEAP +;;; +;;; CL-HEAP is free software: you can redistribute it and/or modify +;;; it under the terms of the GNU General Public License as published by +;;; the Free Software Foundation, either version 3 of the License, or +;;; (at your option) any later version. +;;; +;;; CL-HEAP 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 CL-HEAP. If not, see <http://www.gnu.org/licenses/>. + +;;;---------------------------------------------------------------- + + +(defpackage #:cl-heap-tests-asdf + (:use :common-lisp :asdf)) + +(in-package #:cl-heap-tests-asdf) + +(defsystem :cl-heap-tests + :description "Tests for the CL-HEAP package, an implementation of + heap and priority queue data structures." + :version "0.1.3" + :author "Rudy Neeser <rudy.neeser@gmail.com>" + :license "GPLv3" + :depends-on (:xlunit :cl-heap) + :serial t + :components ((:file "tests"))) + Added: cl-heap/trunk/cl-heap-tests.asd ============================================================================== --- (empty file) +++ cl-heap/trunk/cl-heap-tests.asd Wed Mar 17 00:36:15 2010 @@ -0,0 +1,37 @@ +;;; -*- Mode: Lisp; -*- +;;; +;;; Copyright 2009-2010 Rudolph Neeser <rudy.neeser@gmail.com> +;;; +;;; This file is part of CL-HEAP +;;; +;;; CL-HEAP is free software: you can redistribute it and/or modify +;;; it under the terms of the GNU General Public License as published by +;;; the Free Software Foundation, either version 3 of the License, or +;;; (at your option) any later version. +;;; +;;; CL-HEAP 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 CL-HEAP. If not, see <http://www.gnu.org/licenses/>. + +;;;---------------------------------------------------------------- + + +(defpackage #:cl-heap-tests-asdf + (:use :common-lisp :asdf)) + +(in-package #:cl-heap-tests-asdf) + +(defsystem :cl-heap-tests + :description "Tests for the CL-HEAP package, an implementation of + heap and priority queue data structures." + :version "0.1.3" + :author "Rudy Neeser <rudy.neeser@gmail.com>" + :license "GPLv3" + :depends-on (:xlunit :cl-heap) + :serial t + :components ((:file "tests"))) +
participants (1)
-
Rudy Neeser