~ubuntu-branches/ubuntu/wily/cl-csv/wily

« back to all changes in this revision

Viewing changes to cl-csv-clsql.asd

  • Committer: Package Import Robot
  • Author(s): Dimitri Fontaine
  • Date: 2014-08-04 19:57:54 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140804195754-vo64b5r1daxwg8ld
Tags: 20140211-1
Quicklisp release update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
;; -*- lisp -*-
 
2
 
 
3
(eval-when (:compile-toplevel :load-toplevel :execute)
 
4
  (unless (find-package :cl-csv.system)
 
5
    (defpackage :cl-csv.system
 
6
        (:use :common-lisp :asdf))))
 
7
 
 
8
(in-package cl-csv.system)
 
9
 
 
10
(defsystem :cl-csv-clsql
 
11
  :description "Facilities for reading and writing CSV format files (and importing and exporting csvs from databases)"
 
12
  :licence "BSD"
 
13
  :version "0.1"
 
14
  :components ((:file "data-table")
 
15
               (:file "clsql"))
 
16
  :depends-on (:clsql-helper :cl-csv :data-table-clsql))
 
17
 
 
18
;; Copyright (c) 2011 Russ Tyndall , Acceleration.net http://www.acceleration.net
 
19
;; All rights reserved.
 
20
;;
 
21
;; Redistribution and use in source and binary forms, with or without
 
22
;; modification, are permitted provided that the following conditions are
 
23
;; met:
 
24
;;
 
25
;;  - Redistributions of source code must retain the above copyright
 
26
;;    notice, this list of conditions and the following disclaimer.
 
27
;;
 
28
;;  - Redistributions in binary form must reproduce the above copyright
 
29
;;    notice, this list of conditions and the following disclaimer in the
 
30
;;    documentation and/or other materials provided with the distribution.
 
31
;;
 
32
;;  - Neither the name of Edward Marco Baringer, nor BESE, nor the names
 
33
;;    of its contributors may be used to endorse or promote products
 
34
;;    derived from this software without specific prior written permission.
 
35
;;
 
36
;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
37
;; "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
38
;; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
39
;; A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
 
40
;; OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
41
;; SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
42
;; LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
43
;; DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
44
;; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
45
;; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
46
;; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.