Home | History | Annotate | Line # | Download | only in debian
copyright revision 1.1
      1  1.1  christos Upstream source http://dickey.his.com/byacc/byacc.html
      2  1.1  christos 
      3  1.1  christos Berkeley Yacc is in the public domain; changes made to it by the current
      4  1.1  christos maintainer are likewise unrestricted.  That applies to most of the files.
      5  1.1  christos A few files (currently those related to autoconf scripting) have other
      6  1.1  christos licenses as noted here.
      7  1.1  christos 
      8  1.1  christos Current byacc upstream maintainer: Thomas Dickey <dickey (a] invisible-island.net>
      9  1.1  christos 
     10  1.1  christos Public domain notice and no warranty:
     11  1.1  christos -------------------------------------------------------------------------------
     12  1.1  christos     Berkeley Yacc is an LALR(1) parser generator.  Berkeley Yacc has been made
     13  1.1  christos as compatible as possible with AT&T Yacc.  Berkeley Yacc can accept any input
     14  1.1  christos specification that conforms to the AT&T Yacc documentation.  Specifications
     15  1.1  christos that take advantage of undocumented features of AT&T Yacc will probably be
     16  1.1  christos rejected.
     17  1.1  christos 
     18  1.1  christos     Berkeley Yacc is distributed with no warranty whatever.  The code
     19  1.1  christos is certain to contain errors.  Neither the author nor any contributor
     20  1.1  christos takes responsibility for any consequences of its use.
     21  1.1  christos 
     22  1.1  christos     Berkeley Yacc is in the public domain.  The data structures and algorithms
     23  1.1  christos used in Berkeley Yacc are all either taken from documents available to the
     24  1.1  christos general public or are inventions of the author.  Anyone may freely distribute
     25  1.1  christos source or binary forms of Berkeley Yacc whether unchanged or modified.
     26  1.1  christos Distributers may charge whatever fees they can obtain for Berkeley Yacc.
     27  1.1  christos Programs generated by Berkeley Yacc may be distributed freely.
     28  1.1  christos 
     29  1.1  christos     Please report bugs to
     30  1.1  christos 
     31  1.1  christos 			robert.corbett (a] eng.Sun.COM
     32  1.1  christos 
     33  1.1  christos Include a small example if possible.  Please include the banner string from
     34  1.1  christos skeleton.c with the bug report.  Do not expect rapid responses.
     35  1.1  christos -------------------------------------------------------------------------------
     36  1.1  christos 
     37  1.1  christos Files: aclocal.m4
     38  1.1  christos Licence: other-BSD
     39  1.1  christos Copyright:  2004-2009,2010 by Thomas E. Dickey
     40  1.1  christos     Permission is hereby granted, free of charge, to any person obtaining a
     41  1.1  christos     copy of this software and associated documentation files (the
     42  1.1  christos     "Software"), to deal in the Software without restriction, including
     43  1.1  christos     without limitation the rights to use, copy, modify, merge, publish,
     44  1.1  christos     distribute, distribute with modifications, sublicense, and/or sell
     45  1.1  christos     copies of the Software, and to permit persons to whom the Software is
     46  1.1  christos     furnished to do so, subject to the following conditions:
     47  1.1  christos     
     48  1.1  christos     The above copyright notice and this permission notice shall be included
     49  1.1  christos     in all copies or portions of the Software.
     50  1.1  christos     
     51  1.1  christos     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
     52  1.1  christos     OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
     53  1.1  christos     MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
     54  1.1  christos     IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
     55  1.1  christos     DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
     56  1.1  christos     OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
     57  1.1  christos     THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     58  1.1  christos     
     59  1.1  christos     Except as contained in this notice, the name(s) of the above copyright
     60  1.1  christos     holders shall not be used in advertising or otherwise to promote the
     61  1.1  christos     sale, use or other dealings in this Software without prior written
     62  1.1  christos     authorization.
     63  1.1  christos 
     64  1.1  christos Files: install-sh
     65  1.1  christos Copyright:  1994 X Consortium
     66  1.1  christos Licence: other-BSD
     67  1.1  christos     Permission is hereby granted, free of charge, to any person obtaining a copy
     68  1.1  christos     of this software and associated documentation files (the "Software"), to
     69  1.1  christos     deal in the Software without restriction, including without limitation the
     70  1.1  christos     rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
     71  1.1  christos     sell copies of the Software, and to permit persons to whom the Software is
     72  1.1  christos     furnished to do so, subject to the following conditions:
     73  1.1  christos 
     74  1.1  christos     The above copyright notice and this permission notice shall be included in
     75  1.1  christos     all copies or substantial portions of the Software.
     76  1.1  christos 
     77  1.1  christos     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     78  1.1  christos     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     79  1.1  christos     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
     80  1.1  christos     X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
     81  1.1  christos     AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
     82  1.1  christos     TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     83  1.1  christos 
     84  1.1  christos     Except as contained in this notice, the name of the X Consortium shall not
     85  1.1  christos     be used in advertising or otherwise to promote the sale, use or other deal-
     86  1.1  christos     ings in this Software without prior written authorization from the X Consor-
     87  1.1  christos     tium.
     88  1.1  christos 
     89  1.1  christos     FSF changes to this file are in the public domain.
     90  1.1  christos 
     91  1.1  christos     Calling this script install-sh is preferred over install.sh, to prevent
     92  1.1  christos     `make' implicit rules from creating a file called install from it
     93  1.1  christos     when there is no Makefile.
     94  1.1  christos 
     95  1.1  christos     This script is compatible with the BSD install script, but was written
     96  1.1  christos     from scratch.  It can only install one file at a time, a restriction
     97  1.1  christos     shared with many OS's install programs.
     98  1.1  christos 
     99  1.1  christos Files: debian/*
    100  1.1  christos Copyright:  2010 Thomas E. Dickey
    101  1.1  christos Licence: other-BSD
    102  1.1  christos     Permission to use, copy, modify, and distribute this software and its
    103  1.1  christos     documentation for any purpose and without fee is hereby granted,
    104  1.1  christos     provided that the above copyright notice appear in all copies and that
    105  1.1  christos     both that copyright notice and this permission notice appear in
    106  1.1  christos     supporting documentation, and that the name of the above listed
    107  1.1  christos     copyright holder(s) not be used in advertising or publicity pertaining
    108  1.1  christos     to distribution of the software without specific, written prior
    109  1.1  christos     permission.
    110  1.1  christos 
    111  1.1  christos     THE ABOVE LISTED COPYRIGHT HOLDER(S) DISCLAIM ALL WARRANTIES WITH REGARD
    112  1.1  christos     TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
    113  1.1  christos     AND FITNESS, IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE
    114  1.1  christos     LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
    115  1.1  christos     WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
    116  1.1  christos     ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
    117  1.1  christos     OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
    118  1.1  christos 
    119  1.1  christos On Debian systems, the complete text of the GNU General
    120  1.1  christos Public License can be found in '/usr/share/common-licenses/GPL-2'
    121