Changeset 5643
- Timestamp:
- 01/03/08 03:07:28 (1 year ago)
- Files:
-
- sandbox/crschmidt/debian/openlayers-utils.copyright (modified) (2 diffs)
- sandbox/crschmidt/debian/rules (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/crschmidt/debian/openlayers-utils.copyright
r5582 r5643 34 34 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 35 35 36 This includes jsmin.py, which is licensed as follows:36 This includes minimize.py, which is licensed as follows: 37 37 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. 38 Copyright 2008, Christopher Schmidt 39 Released under the MIT License 41 40 42 jsmin.c 43 2007-01-08 41 Permission is hereby granted, free of charge, to any person obtaining a copy 42 of this software and associated documentation files (the "Software"), to deal 43 in the Software without restriction, including without limitation the rights 44 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 45 copies of the Software, and to permit persons to whom the Software is 46 furnished to do so, subject to the following conditions: 44 47 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. 48 The above copyright notice and this permission notice shall be included in 49 all copies or substantial portions of the Software. 58 50 59 51 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR … … 62 54 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 63 55 LIABILITY, 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 56 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 57 THE SOFTWARE. 67 58 68 59 The Debian packaging is (C) 2007, Christopher Schmidt <crschmidt@metacarta.com> sandbox/crschmidt/debian/rules
r5641 r5643 115 115 tar -zxf ../tarballs/OpenLayers-$(USVERSION).tar.gz -C ../tarballs 116 116 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 118 120 119 121 unpack: get-orig-source 120 122 export USVERSION=`uscan --dehs | sed -n 's/.*<upstream-version>\(.*\)<\/upstream-version>.*/\1/p'` 121 123 cp ../tarballs/openlayers_$(USVERSION).dfsg.orig.tar.gz . 124 rm -rf OpenLayers-$(USVERSION).orig 122 125 tar -zvxf openlayers_$(USVERSION).dfsg.orig.tar.gz 123 126 124 127 pre-build: unpack 125 cd OpenLayers-$(USVERSION) && \128 cd OpenLayers-$(USVERSION).orig && \ 126 129 svn export http://svn.openlayers.org/sandbox/crschmidt/debian/ 127 130
