| 1 | MissingH: Haskell libraries
|
| 2 | Copyright (C) 2004-2006 John Goerzen <jgoerzen@complete.org>
|
| 3 |
|
| 4 | All code is under the following license unless otherwise noted:
|
| 5 | This program is free software; you can redistribute it and/or modify
|
| 6 | it under the terms of the GNU General Public License as published by
|
| 7 | the Free Software Foundation; either version 2 of the License, or
|
| 8 | (at your option) any later version.
|
| 9 |
|
| 10 | This program is distributed in the hope that it will be useful,
|
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 13 | GNU General Public License for more details.
|
| 14 |
|
| 15 | You should have received a copy of the GNU General Public License
|
| 16 | along with this program; if not, write to the Free Software
|
| 17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
| 18 |
|
| 19 | The GNU General Public License is available in the file COPYING in the source
|
| 20 | distribution. Debian GNU/Linux users may find this in
|
| 21 | /usr/share/common-licenses/GPL-2.
|
| 22 |
|
| 23 | If the GPL is unacceptable for your uses, please e-mail me; alternative
|
| 24 | terms can be negotiated for your project.
|
| 25 |
|
| 26 | ============================================================================
|
| 27 | Special Notes for Included Code
|
| 28 | ============================================================================
|
| 29 |
|
| 30 | MissingH includes some code from other authors. The copyright and license
|
| 31 | statements for these sources are included below. All are GPL-compatible
|
| 32 | licenses, so if you have any doubt about how to treat MissingH as a whole,
|
| 33 | simply know that the GPL should be understood to cover the entire library.
|
| 34 |
|
| 35 | If you split out the parts originally from other authors, and use them
|
| 36 | completely independently of the rest of the library, you may treat them
|
| 37 | under the licenses shown below.
|
| 38 |
|
| 39 | ----------------------------------------------------
|
| 40 | Portions of System.Path come from Volker Wysk's HsShellScript
|
| 41 | library, version 2.1.0. That code is Copyright (c) 2004 Volker Wysk
|
| 42 | and is licensed under the GNU LGPL 2.1
|
| 43 |
|
| 44 | Debian GNU/Linux users may find the GNU LGPL 2.1 at
|
| 45 | /usr/share/common-licenses/LGPL-2.1. Alternatively, you may find it
|
| 46 | at 3rd-party-licenses/LGPL-2.1 in the source distribution.
|
| 47 |
|
| 48 | Pursuant to the terms of the LGPL, you may consider this code to fall
|
| 49 | under the GPL as part of the whole MissingH work.
|
| 50 | ----------------------------------------------------
|
| 51 | Data.Hash.CRC32.Posix is
|
| 52 | (C) 2002 HardCore SoftWare, Doug Hoyte
|
| 53 | and is "distributed under the terms of the GNU GPL." This license is
|
| 54 | the same as the main license for MissingH.
|
| 55 |
|
| 56 | The code was obtained from
|
| 57 | http://cvs.sourceforge.net/viewcvs.py/haskell-libs/libs/crypto/crc32.hs
|
| 58 |
|
| 59 | ----------------------------------------------------
|
| 60 | Data.Compression.Inflate is
|
| 61 | Copyright 2004 Ian Lynagh <igloo@earth.li>
|
| 62 | Licence: 3 clause BSD.
|
| 63 |
|
| 64 | Debian GNU/Linux users may find the 3-clause BSD license at
|
| 65 | /usr/share/common-licenses/BSD. Alternatively, you may find it at
|
| 66 | 3rd-party-licenses/BSD. Please note that the University of California
|
| 67 | has no claim on this code; simply substitute Ian Lynagh for the
|
| 68 | University wherever it may occur in that file.
|
| 69 |
|
| 70 | The code was obtained from
|
| 71 | http://urchin.earth.li/darcs/ian/inflate/Inflate.lhs
|
| 72 |
|
| 73 | ----------------------------------------------------
|
| 74 | Data.Hash.MD5* is
|
| 75 | Copyright 2001 Ian Lynagh <igloo@earth.li>
|
| 76 | Licence: GPL or 3 clause BSD
|
| 77 |
|
| 78 | Debian GNU/Linux users may find the 3-clause BSD license at
|
| 79 | /usr/share/common-licenses/BSD. Alternatively, you may find it at
|
| 80 | 3rd-party-licenses/BSD. Please note that the University of California
|
| 81 | has no claim on this code; simply substitute Ian Lynagh for the
|
| 82 | University wherever it may occur in that file.
|
| 83 |
|
| 84 | The code was obtained from
|
| 85 | http://web.comlab.ox.ac.uk/oucl/work/ian.lynagh/md5/
|
| 86 |
|
| 87 | ----------------------------------------------------
|
| 88 | System.Time.Utils.ParseDate is from
|
| 89 | http://www.dtek.chalmers.se/~d00bring/projects.html
|
| 90 |
|
| 91 | Copyright (c) Björn Bringert
|
| 92 | License: GNU General Public License, version 2
|
| 93 |
|
| 94 | I (John Goerzen) have modified only the module name and Haddock
|
| 95 | comments at the top of it.
|
| 96 |
|
| 97 |
|