Skip to content

Commit

Permalink
Add LICENSE.txt for conda packaing as requested in bug #42
Browse files Browse the repository at this point in the history
  • Loading branch information
senex committed May 22, 2018
1 parent 69ededb commit 416b5ea
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CppHeaderParser/CppHeaderParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def lineno():
"""Returns the current line number in our program."""
return inspect.currentframe().f_back.f_lineno

version = __version__ = "2.7.3"
version = __version__ = "2.7.4"

tokens = [
'NUMBER',
Expand Down
6 changes: 3 additions & 3 deletions CppHeaderParser/doc/CppHeaderParser.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading">
<tr bgcolor="#7799ee">
<td valign=bottom>&nbsp;<br>
<font color="#ffffff" face="helvetica, arial">&nbsp;<br><big><big><strong>CppHeaderParser</strong></big></big> (version 2.7.3)</font></td
<font color="#ffffff" face="helvetica, arial">&nbsp;<br><big><big><strong>CppHeaderParser</strong></big></big> (version 2.7.4)</font></td
><td align=right valign=bottom
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/senex/workspace/cppheaderparser/CppHeaderParser/CppHeaderParser.py">/home/senex/workspace/cppheaderparser/CppHeaderParser/CppHeaderParser.py</a></font></td></tr></table>
<p><tt>Parse&nbsp;C++&nbsp;header&nbsp;files&nbsp;and&nbsp;generate&nbsp;a&nbsp;data&nbsp;structure<br>
Expand Down Expand Up @@ -1418,7 +1418,7 @@

<tr><td bgcolor="#55aa55"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</td>
<td width="100%"><strong>C99_NONSTANDARD</strong> = {'int16': 'short int', 'int32': 'int', 'int64': 'int64_t', 'int8': 'signed char', 'uint': 'unsigned int', 'uint16': 'unsigned short int', 'uint32': 'unsigned int', 'uint64': 'uint64_t', 'uint8': 'unsigned char'}<br>
<strong>__version__</strong> = '2.7.3'<br>
<strong>__version__</strong> = '2.7.4'<br>
<strong>debug</strong> = 0<br>
<strong>debug_trace</strong> = 0<br>
<strong>doxygenCommentCache</strong> = ''<br>
Expand Down Expand Up @@ -1459,5 +1459,5 @@
<strong>t_TEMPLATE_NAME</strong> = 'CppHeaderParser_template_[0-9]+'<br>
<strong>t_ignore</strong> = ' <font color="#c040c0">\r</font>.?@<font color="#c040c0">\x0c</font>'<br>
<strong>tokens</strong> = ['NUMBER', 'FLOAT_NUMBER', 'TEMPLATE_NAME', 'NAME', 'OPEN_PAREN', 'CLOSE_PAREN', 'OPEN_BRACE', 'CLOSE_BRACE', 'OPEN_SQUARE_BRACKET', 'CLOSE_SQUARE_BRACKET', 'COLON', 'SEMI_COLON', 'COMMA', 'TAB', 'BACKSLASH', 'PIPE', 'PERCENT', 'EXCLAMATION', 'CARET', 'COMMENT_SINGLELINE', ...]<br>
<strong>version</strong> = '2.7.3'</td></tr></table>
<strong>version</strong> = '2.7.4'</td></tr></table>
</body></html>
33 changes: 33 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
Copyright (C) 2011, Jashua R. Cloutier
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.

* Neither the name of Jashua R. Cloutier nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission. Stories,
blog entries etc making reference to this project may mention the
name Jashua R. Cloutier in terms of project originator/creator etc.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

setup(
name = 'CppHeaderParser',
version = '2.7.3',
version = '2.7.4',
author = 'Jashua Cloutier',
author_email = 'jashuac@bellsouth.net',
url = 'http://senexcanis.com/open-source/cppheaderparser/',
Expand Down

0 comments on commit 416b5ea

Please sign in to comment.