python-adfs

changeset 62:d4f12a23145a

Updated the version number and changed the license from the MIT license to the GNU General Public License.
author David Boddie <david@boddie.org.uk>
date Sun Apr 10 01:59:51 2005 +0200
parents 2b6d3c4cafe0
children 1a92043cd7bb
files ADF2INF.py ADFSlib.py setup.py
diffstat 3 files changed, 35 insertions(+), 37 deletions(-) [+]
line diff
     1.1 --- a/ADF2INF.py	Sun Apr 10 01:31:57 2005 +0200
     1.2 +++ b/ADF2INF.py	Sun Apr 10 01:59:51 2005 +0200
     1.3 @@ -11,23 +11,21 @@
     1.4  
     1.5  Copyright (c) 2000-2003, David Boddie
     1.6  
     1.7 -Permission is hereby granted, free of charge, to any person obtaining a copy
     1.8 -of this software and associated documentation files (the "Software"), to
     1.9 -deal in the Software without restriction, including without limitation the
    1.10 -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
    1.11 -sell copies of the Software, and to permit persons to whom the Software is
    1.12 -furnished to do so, subject to the following conditions:
    1.13 +This software is free software; you can redistribute it and/or
    1.14 +modify it under the terms of the GNU General Public License as
    1.15 +published by the Free Software Foundation; either version 2 of
    1.16 +the License, or (at your option) any later version.
    1.17  
    1.18 -The above copyright notice and this permission notice shall be included in
    1.19 -all copies or substantial portions of the Software.
    1.20 +This software is distributed in the hope that it will be useful,
    1.21 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.22 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.23 +GNU General Public License for more details.
    1.24  
    1.25 -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    1.26 -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    1.27 -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    1.28 -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    1.29 -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    1.30 -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
    1.31 -DEALINGS IN THE SOFTWARE.
    1.32 +You should have received a copy of the GNU General Public
    1.33 +License along with this library; see the file COPYING
    1.34 +If not, write to the Free Software Foundation, Inc.,
    1.35 +59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
    1.36 +
    1.37  """
    1.38  
    1.39  
    1.40 @@ -45,7 +43,7 @@
    1.41      use_getopt = 1
    1.42  
    1.43  
    1.44 -__version__ = "0.36c (Mon 21st July 2003)"
    1.45 +__version__ = "0.40c (Sun 10th April 2005)"
    1.46  
    1.47  default_convert_dict = {"/": "."}
    1.48  
     2.1 --- a/ADFSlib.py	Sun Apr 10 01:31:57 2005 +0200
     2.2 +++ b/ADFSlib.py	Sun Apr 10 01:59:51 2005 +0200
     2.3 @@ -4,30 +4,28 @@
     2.4  
     2.5  A library for reading ADFS disc images.
     2.6  
     2.7 -Copyright (c) 2003, David Boddie
     2.8 +Copyright (c) 2003-2005, David Boddie
     2.9  
    2.10 -Permission is hereby granted, free of charge, to any person obtaining a copy
    2.11 -of this software and associated documentation files (the "Software"), to
    2.12 -deal in the Software without restriction, including without limitation the
    2.13 -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
    2.14 -sell copies of the Software, and to permit persons to whom the Software is
    2.15 -furnished to do so, subject to the following conditions:
    2.16 +This software is free software; you can redistribute it and/or
    2.17 +modify it under the terms of the GNU General Public License as
    2.18 +published by the Free Software Foundation; either version 2 of
    2.19 +the License, or (at your option) any later version.
    2.20  
    2.21 -The above copyright notice and this permission notice shall be included in
    2.22 -all copies or substantial portions of the Software.
    2.23 +This software is distributed in the hope that it will be useful,
    2.24 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    2.25 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    2.26 +GNU General Public License for more details.
    2.27  
    2.28 -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    2.29 -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    2.30 -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    2.31 -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    2.32 -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    2.33 -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
    2.34 -DEALINGS IN THE SOFTWARE.
    2.35 +You should have received a copy of the GNU General Public
    2.36 +License along with this library; see the file COPYING
    2.37 +If not, write to the Free Software Foundation, Inc.,
    2.38 +59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
    2.39 +
    2.40  """
    2.41  
    2.42  __author__ = "David Boddie <david@boddie.org.uk>"
    2.43 -__date__ = "Mon 21st July 2003"
    2.44 -__version__ = "0.21"
    2.45 +__date__ = "Sun 10th April 2005"
    2.46 +__version__ = "0.22"
    2.47  
    2.48  
    2.49  import os, string, struct
     3.1 --- a/setup.py	Sun Apr 10 01:31:57 2005 +0200
     3.2 +++ b/setup.py	Sun Apr 10 01:59:51 2005 +0200
     3.3 @@ -26,13 +26,15 @@
     3.4          sys.exit()
     3.5  
     3.6  
     3.7 +import ADFSlib
     3.8 +
     3.9  setup(
    3.10 -    name="ADFSlib",
    3.11 +    name="ADF2INF",
    3.12      description="ADFS disk image reader and utility",
    3.13      author="David Boddie",
    3.14      author_email="david@boddie.org.uk",
    3.15 -    url="http://www.boddie.org.uk/david/Projects/Python/ADFSlib/",
    3.16 -    version="0.21",
    3.17 +    url="http://www.boddie.org.uk/david/Projects/Python/ADFSlib",
    3.18 +    version=ADFSlib.__version__,
    3.19      py_modules=["ADFSlib"],
    3.20      scripts=["ADF2INF.py"]
    3.21      )