OpenLayers OpenLayers

Changeset 5643

Show
Ignore:
Timestamp:
01/03/08 03:07:28 (1 year ago)
Author:
crschmidt
Message:

Update copyright to include minimize license text,
update get-orig-source to follow 6.7.8.2 #4 in
developers reference.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sandbox/crschmidt/debian/openlayers-utils.copyright

    r5582 r5643  
    3434SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
    3535 
    36 This includes jsmin.py, which is licensed as follows: 
     36This includes minimize.py, which is licensed as follows: 
    3737 
    38 This code is originally from jsmin by Douglas Crockford, it was translated to 
    39 Python by Baruch Even. The original code had the following copyright and 
    40 license. 
     38Copyright 2008, Christopher Schmidt 
     39Released under the MIT License 
    4140 
    42 jsmin.c 
    43 2007-01-08 
     41Permission is hereby granted, free of charge, to any person obtaining a copy 
     42of this software and associated documentation files (the "Software"), to deal 
     43in the Software without restriction, including without limitation the rights 
     44to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
     45copies of the Software, and to permit persons to whom the Software is 
     46furnished to do so, subject to the following conditions: 
    4447 
    45 Copyright (c) 2002 Douglas Crockford  (www.crockford.com) 
    46  
    47 Permission is hereby granted, free of charge, to any person obtaining a copy of 
    48 this software and associated documentation files (the "Software"), to deal in 
    49 the Software without restriction, including without limitation the rights to 
    50 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
    51 of the Software, and to permit persons to whom the Software is furnished to do 
    52 so, subject to the following conditions: 
    53  
    54 The above copyright notice and this permission notice shall be included in all 
    55 copies or substantial portions of the Software. 
    56  
    57 The Software shall be used for Good, not Evil. 
     48The above copyright notice and this permission notice shall be included in 
     49all copies or substantial portions of the Software. 
    5850 
    5951THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
     
    6254AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
    6355LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
    64 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
    65 SOFTWARE. 
    66  
     56OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
     57THE SOFTWARE. 
    6758 
    6859The Debian packaging is (C) 2007, Christopher Schmidt <crschmidt@metacarta.com> 
  • sandbox/crschmidt/debian/rules

    r5641 r5643  
    115115    tar -zxf ../tarballs/OpenLayers-$(USVERSION).tar.gz -C ../tarballs 
    116116    rm ../tarballs/OpenLayers-$(USVERSION)/tools/jsmin.* 
    117     cd ../tarballs && tar -czf openlayers_$(USVERSION).dfsg.orig.tar.gz OpenLayers-$(USVERSION) 
     117    rm ../tarballs/OpenLayers-$(USVERSION)/OpenLayers.js 
     118    mv ../tarballs/OpenLayers-$(USVERSION) ../tarballs/OpenLayers-$(USVERSION).orig 
     119    cd ../tarballs && tar -czf openlayers_$(USVERSION).dfsg.orig.tar.gz OpenLayers-$(USVERSION).orig 
    118120 
    119121unpack: get-orig-source 
    120122    export USVERSION=`uscan --dehs |  sed -n 's/.*<upstream-version>\(.*\)<\/upstream-version>.*/\1/p'` 
    121123    cp ../tarballs/openlayers_$(USVERSION).dfsg.orig.tar.gz . 
     124    rm -rf OpenLayers-$(USVERSION).orig 
    122125    tar -zvxf openlayers_$(USVERSION).dfsg.orig.tar.gz 
    123126 
    124127pre-build: unpack 
    125     cd OpenLayers-$(USVERSION) && \ 
     128    cd OpenLayers-$(USVERSION).orig && \ 
    126129        svn export http://svn.openlayers.org/sandbox/crschmidt/debian/ 
    127130