r821 - in trunk: . archivers extras platform test

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sun Mar 11 06:10:28 EDT 2007


Author: icculus
Date: 2007-03-11 06:10:28 -0400 (Sun, 11 Mar 2007)
New Revision: 821

Added:
   trunk/LICENSE.txt
Removed:
   trunk/LICENSE
Modified:
   trunk/CHANGELOG
   trunk/CMakeLists.txt
   trunk/INSTALL
   trunk/archivers/dir.c
   trunk/archivers/grp.c
   trunk/archivers/hog.c
   trunk/archivers/lzma.c
   trunk/archivers/mvl.c
   trunk/archivers/qpak.c
   trunk/archivers/wad.c
   trunk/archivers/zip.c
   trunk/extras/globbing.c
   trunk/extras/globbing.h
   trunk/extras/ignorecase.c
   trunk/extras/ignorecase.h
   trunk/extras/physfshttpd.c
   trunk/extras/physfsrwops.c
   trunk/extras/physfsrwops.h
   trunk/extras/selfextract.c
   trunk/physfs.c
   trunk/physfs.h
   trunk/physfs.spec.in
   trunk/physfs_byteorder.c
   trunk/physfs_internal.h
   trunk/platform/beos.cpp
   trunk/platform/macclassic.c
   trunk/platform/os2.c
   trunk/platform/pocketpc.c
   trunk/platform/posix.c
   trunk/platform/skeleton.c
   trunk/platform/unix.c
   trunk/platform/windows.c
   trunk/test/test_physfs.c
Log:
Renamed LICENSE to LICENSE.txt


Modified: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/CHANGELOG	2007-03-11 10:10:28 UTC (rev 821)
@@ -5,6 +5,7 @@
 03112007 - Removed zlib_license_change.txt ... it's in Subversion and the 1.0
            branch for history's sake. Added shared and static build options
            to CMakeLists.txt, and the expected "make install" target.
+           Renamed some FILENAME files to FILENAME.txt.
 03082007 - Fixed a comment in physfs.h. Renamed win32.c to windows.c.
            Cleaned up whitespace/formatting in pocketpc.c. Updated PocketPC
            code to expect UTF-8 strings from the higher level. Changed

Modified: trunk/CMakeLists.txt
===================================================================
--- trunk/CMakeLists.txt	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/CMakeLists.txt	2007-03-11 10:10:28 UTC (rev 821)
@@ -1,7 +1,7 @@
 # PhysicsFS; a portable, flexible file i/o abstraction.
 # Copyright (C) 2007  Ryan C. Gordon.
 #
-# Please see the file LICENSE in the source's root directory.
+# Please see the file LICENSE.txt in the source's root directory.
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.4)
 

Modified: trunk/INSTALL
===================================================================
--- trunk/INSTALL	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/INSTALL	2007-03-11 10:10:28 UTC (rev 821)
@@ -7,8 +7,9 @@
 
 ALL PLATFORMS:
 
-Please understand your rights and mine: read the text file LICENSE in the root
-of the source tree. If you can't abide by it, delete this source tree now.
+Please understand your rights and mine: read the text file LICENSE.txt in the
+ root of the source tree. If you can't abide by it, delete this source tree
+ now.
 
 If you've got Doxygen (http://www.doxygen.org/) installed, you can run it
  without any command line arguments in the root of the source tree to generate

Deleted: trunk/LICENSE
===================================================================
--- trunk/LICENSE	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/LICENSE	2007-03-11 10:10:28 UTC (rev 821)
@@ -1,29 +0,0 @@
-
-   Copyright (c) 2003 Ryan C. Gordon and others.
-
-   This software is provided 'as-is', without any express or implied warranty.
-   In no event will the authors be held liable for any damages arising from
-   the use of this software.
-
-   Permission is granted to anyone to use this software for any purpose,
-   including commercial applications, and to alter it and redistribute it
-   freely, subject to the following restrictions:
-
-   1. The origin of this software must not be misrepresented; you must not
-   claim that you wrote the original software. If you use this software in a
-   product, an acknowledgment in the product documentation would be
-   appreciated but is not required.
-
-   2. Altered source versions must be plainly marked as such, and must not be
-   misrepresented as being the original software.
-
-   3. This notice may not be removed or altered from any source distribution.
-
-       Ryan C. Gordon <icculus at icculus.org>
-
-
-(Please note that versions of PhysicsFS prior to 0.1.9 are licensed under
-the GNU Lesser General Public License, which restricts you significantly more.
-For your own safety, please make sure you've got 0.1.9 or later if you plan
-to use physfs in a commercial or closed-source project.)
-

Copied: trunk/LICENSE.txt (from rev 817, trunk/LICENSE)
===================================================================
--- trunk/LICENSE.txt	                        (rev 0)
+++ trunk/LICENSE.txt	2007-03-11 10:10:28 UTC (rev 821)
@@ -0,0 +1,29 @@
+
+   Copyright (c) 2003 Ryan C. Gordon and others.
+
+   This software is provided 'as-is', without any express or implied warranty.
+   In no event will the authors be held liable for any damages arising from
+   the use of this software.
+
+   Permission is granted to anyone to use this software for any purpose,
+   including commercial applications, and to alter it and redistribute it
+   freely, subject to the following restrictions:
+
+   1. The origin of this software must not be misrepresented; you must not
+   claim that you wrote the original software. If you use this software in a
+   product, an acknowledgment in the product documentation would be
+   appreciated but is not required.
+
+   2. Altered source versions must be plainly marked as such, and must not be
+   misrepresented as being the original software.
+
+   3. This notice may not be removed or altered from any source distribution.
+
+       Ryan C. Gordon <icculus at icculus.org>
+
+
+(Please note that versions of PhysicsFS prior to 0.1.9 are licensed under
+the GNU Lesser General Public License, which restricts you significantly more.
+For your own safety, please make sure you've got 0.1.9 or later if you plan
+to use physfs in a commercial or closed-source project.)
+

Modified: trunk/archivers/dir.c
===================================================================
--- trunk/archivers/dir.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/archivers/dir.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -1,7 +1,7 @@
 /*
  * Standard directory I/O support routines for PhysicsFS.
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Ryan C. Gordon.
  */

Modified: trunk/archivers/grp.c
===================================================================
--- trunk/archivers/grp.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/archivers/grp.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -19,7 +19,7 @@
  *
  * (That info is from http://www.advsys.net/ken/build.htm ...)
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Ryan C. Gordon.
  */

Modified: trunk/archivers/hog.c
===================================================================
--- trunk/archivers/hog.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/archivers/hog.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -23,7 +23,7 @@
  *
  * (That info is from http://www.descent2.com/ddn/specs/hog/)
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Bradley Bell.
  *  Based on grp.c by Ryan C. Gordon.

Modified: trunk/archivers/lzma.c
===================================================================
--- trunk/archivers/lzma.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/archivers/lzma.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -1,7 +1,7 @@
 /*
  * LZMA support routines for PhysicsFS.
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file is written by Dennis Schridde, with some peeking at "7zMain.c"
  *   by Igor Pavlov.

Modified: trunk/archivers/mvl.c
===================================================================
--- trunk/archivers/mvl.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/archivers/mvl.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -21,7 +21,7 @@
  *
  * (That info is from http://www.descent2.com/ddn/specs/mvl/)
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Bradley Bell.
  *  Based on grp.c by Ryan C. Gordon.

Modified: trunk/archivers/qpak.c
===================================================================
--- trunk/archivers/qpak.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/archivers/qpak.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -24,7 +24,7 @@
  *
  *  ========================================================================
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Ryan C. Gordon.
  */

Modified: trunk/archivers/wad.c
===================================================================
--- trunk/archivers/wad.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/archivers/wad.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -36,7 +36,7 @@
  * I don't think it's really that important though.
  *
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  * This file written by Travis Wells, based on the GRP archiver by
  *  Ryan C. Gordon.

Modified: trunk/archivers/zip.c
===================================================================
--- trunk/archivers/zip.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/archivers/zip.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -1,7 +1,7 @@
 /*
  * ZIP support routines for PhysicsFS.
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Ryan C. Gordon, with some peeking at "unzip.c"
  *   by Gilles Vollant.

Modified: trunk/extras/globbing.c
===================================================================
--- trunk/extras/globbing.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/extras/globbing.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -22,7 +22,7 @@
  *  NO WARRANTY.
  *
  * Unless otherwise stated, the rest of PhysicsFS falls under the zlib license.
- *  Please see LICENSE in the root of the source tree.
+ *  Please see LICENSE.txt in the root of the source tree.
  *
  *  \author Ryan C. Gordon.
  */

Modified: trunk/extras/globbing.h
===================================================================
--- trunk/extras/globbing.h	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/extras/globbing.h	2007-03-11 10:10:28 UTC (rev 821)
@@ -25,7 +25,7 @@
  *  NO WARRANTY.
  *
  * Unless otherwise stated, the rest of PhysicsFS falls under the zlib license.
- *  Please see LICENSE in the root of the source tree.
+ *  Please see LICENSE.txt in the root of the source tree.
  *
  *  \author Ryan C. Gordon.
  */

Modified: trunk/extras/ignorecase.c
===================================================================
--- trunk/extras/ignorecase.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/extras/ignorecase.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -22,7 +22,7 @@
  *  NO WARRANTY.
  *
  * Unless otherwise stated, the rest of PhysicsFS falls under the zlib license.
- *  Please see LICENSE in the root of the source tree.
+ *  Please see LICENSE.txt in the root of the source tree.
  *
  *  \author Ryan C. Gordon.
  */

Modified: trunk/extras/ignorecase.h
===================================================================
--- trunk/extras/ignorecase.h	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/extras/ignorecase.h	2007-03-11 10:10:28 UTC (rev 821)
@@ -39,7 +39,7 @@
  *  NO WARRANTY.
  *
  * Unless otherwise stated, the rest of PhysicsFS falls under the zlib license.
- *  Please see LICENSE in the root of the source tree.
+ *  Please see LICENSE.txt in the root of the source tree.
  *
  *  \author Ryan C. Gordon.
  */

Modified: trunk/extras/physfshttpd.c
===================================================================
--- trunk/extras/physfshttpd.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/extras/physfshttpd.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -27,7 +27,7 @@
  *  NO WARRANTY.
  *
  * Unless otherwise stated, the rest of PhysicsFS falls under the zlib license.
- *  Please see LICENSE in the root of the source tree.
+ *  Please see LICENSE.txt in the root of the source tree.
  *
  *  This file was written by Ryan C. Gordon. (icculus at icculus.org).
  */

Modified: trunk/extras/physfsrwops.c
===================================================================
--- trunk/extras/physfsrwops.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/extras/physfsrwops.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -13,7 +13,7 @@
  *  NO WARRANTY.
  *
  * Unless otherwise stated, the rest of PhysicsFS falls under the zlib license.
- *  Please see LICENSE in the root of the source tree.
+ *  Please see LICENSE.txt in the root of the source tree.
  *
  * SDL falls under the LGPL license. You can get SDL at http://www.libsdl.org/
  *

Modified: trunk/extras/physfsrwops.h
===================================================================
--- trunk/extras/physfsrwops.h	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/extras/physfsrwops.h	2007-03-11 10:10:28 UTC (rev 821)
@@ -13,7 +13,7 @@
  *  NO WARRANTY.
  *
  * Unless otherwise stated, the rest of PhysicsFS falls under the zlib license.
- *  Please see LICENSE in the root of the source tree.
+ *  Please see LICENSE.txt in the root of the source tree.
  *
  * SDL falls under the LGPL license. You can get SDL at http://www.libsdl.org/
  *

Modified: trunk/extras/selfextract.c
===================================================================
--- trunk/extras/selfextract.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/extras/selfextract.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -12,7 +12,7 @@
  *  NO WARRANTY.
  *
  * Unless otherwise stated, the rest of PhysicsFS falls under the zlib license.
- *  Please see LICENSE in the root of the source tree.
+ *  Please see LICENSE.txt in the root of the source tree.
  *
  *  This file was written by Ryan C. Gordon. (icculus at icculus.org).
  */

Modified: trunk/physfs.c
===================================================================
--- trunk/physfs.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/physfs.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -3,7 +3,7 @@
  *
  * Documentation is in physfs.h. It's verbose, honest.  :)
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Ryan C. Gordon.
  */

Modified: trunk/physfs.h
===================================================================
--- trunk/physfs.h	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/physfs.h	2007-03-11 10:10:28 UTC (rev 821)
@@ -200,7 +200,7 @@
  *
  * Other stuff:
  *
- * Please see the file LICENSE in the source's root directory for licensing
+ * Please see the file LICENSE.txt in the source's root directory for licensing
  *  and redistribution rights.
  *
  * Please see the file CREDITS in the source's root directory for a more or

Modified: trunk/physfs.spec.in
===================================================================
--- trunk/physfs.spec.in	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/physfs.spec.in	2007-03-11 10:10:28 UTC (rev 821)
@@ -67,7 +67,7 @@
 
 %files
 %defattr(-,root,root)
-%doc CHANGELOG CREDITS INSTALL LICENSE TODO zlib_license_change.txt
+%doc CHANGELOG CREDITS INSTALL LICENSE.txt TODO zlib_license_change.txt
 %{_bindir}/test_physfs
 %{_libdir}/*so.*
 

Modified: trunk/physfs_byteorder.c
===================================================================
--- trunk/physfs_byteorder.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/physfs_byteorder.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -3,7 +3,7 @@
  *
  * Documentation is in physfs.h. It's verbose, honest.  :)
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Ryan C. Gordon.
  */

Modified: trunk/physfs_internal.h
===================================================================
--- trunk/physfs_internal.h	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/physfs_internal.h	2007-03-11 10:10:28 UTC (rev 821)
@@ -2,7 +2,7 @@
  * Internal function/structure declaration. Do NOT include in your
  *  application.
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Ryan C. Gordon.
  */

Modified: trunk/platform/beos.cpp
===================================================================
--- trunk/platform/beos.cpp	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/platform/beos.cpp	2007-03-11 10:10:28 UTC (rev 821)
@@ -1,7 +1,7 @@
 /*
  * BeOS platform-dependent support routines for PhysicsFS.
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Ryan C. Gordon.
  */

Modified: trunk/platform/macclassic.c
===================================================================
--- trunk/platform/macclassic.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/platform/macclassic.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -1,7 +1,7 @@
 /*
  * MacOS Classic support routines for PhysicsFS.
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Ryan C. Gordon.
  */

Modified: trunk/platform/os2.c
===================================================================
--- trunk/platform/os2.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/platform/os2.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -1,7 +1,7 @@
 /*
  * OS/2 support routines for PhysicsFS.
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Ryan C. Gordon.
  */

Modified: trunk/platform/pocketpc.c
===================================================================
--- trunk/platform/pocketpc.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/platform/pocketpc.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -1,7 +1,7 @@
 /*
  * Skeleton platform-dependent support routines for PhysicsFS.
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Ryan C. Gordon.
  */

Modified: trunk/platform/posix.c
===================================================================
--- trunk/platform/posix.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/platform/posix.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -1,7 +1,7 @@
 /*
  * Posix-esque support routines for PhysicsFS.
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Ryan C. Gordon.
  */

Modified: trunk/platform/skeleton.c
===================================================================
--- trunk/platform/skeleton.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/platform/skeleton.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -1,7 +1,7 @@
 /*
  * Skeleton platform-dependent support routines for PhysicsFS.
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Ryan C. Gordon.
  */

Modified: trunk/platform/unix.c
===================================================================
--- trunk/platform/unix.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/platform/unix.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -1,7 +1,7 @@
 /*
  * Unix support routines for PhysicsFS.
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Ryan C. Gordon.
  */

Modified: trunk/platform/windows.c
===================================================================
--- trunk/platform/windows.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/platform/windows.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -1,7 +1,7 @@
 /*
  * Win32 support routines for PhysicsFS.
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Ryan C. Gordon, and made sane by Gregory S. Read.
  */

Modified: trunk/test/test_physfs.c
===================================================================
--- trunk/test/test_physfs.c	2007-03-11 09:44:21 UTC (rev 820)
+++ trunk/test/test_physfs.c	2007-03-11 10:10:28 UTC (rev 821)
@@ -1,7 +1,7 @@
 /**
  * Test program for PhysicsFS. May only work on Unix.
  *
- * Please see the file LICENSE in the source's root directory.
+ * Please see the file LICENSE.txt in the source's root directory.
  *
  *  This file written by Ryan C. Gordon.
  */




More information about the physfs-commits mailing list