debian/0000755000000000000000000000000012265057734007201 5ustar debian/control0000644000000000000000000000211612235745055010601 0ustar Source: almond Section: web Priority: extra Maintainer: Georges Khaznadar Build-Depends: debhelper (>= 8.0.0), node-uglify Standards-Version: 3.9.4 Homepage: https://github.com/jrburke/almond/ #Vcs-Git: git://git.debian.org/collab-maint/almond.git #Vcs-Browser: http://git.debian.org/?p=collab-maint/almond.git;a=summary Package: node-almond Architecture: any Depends: nodejs, ${misc:Depends} Description: minimal AMD API implementation for use in optimized browser builds Some developers like to use the AMD API to code modular JavaScript, but after doing an optimized build, they do not want to include a full AMD loader like RequireJS, since they do not need all that functionality. . In the context of Javascript modules, AMD refers to a format specification which makes modules easier to use. See http://requirejs.org/docs/whyamd.html#amd . Some use cases, like mobile, are very sensitive to file sizes. . By including almond in the built file, there is no need for RequireJS. almond is around **1 kilobyte** when minified with Closure Compiler and gzipped. debian/compat0000644000000000000000000000000212235215004010356 0ustar 8 debian/watch0000644000000000000000000000014012246621724010220 0ustar version=3 https://github.com/jrburke/almond/tags \ /jrburke/almond/archive/([.\d]*)\.tar\.gz debian/copyright0000644000000000000000000000746512235216206011134 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: almond Source: https://github.com/jrburke/almond/archive/0.2.6.tar.gz Files: * Copyright: 2010-2011, The Dojo Foundation 2010-2013 James Burke License: dual license, new BSD, MIT almond is released under two licenses: new BSD, and MIT. You may pick the license that best suits your development needs. The text of both licenses are provided below. . The "New" BSD License: . 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 the Dojo Foundation nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . 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. . MIT License . Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Files: debian/* Copyright: 2013 Georges Khaznadar License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . On Debian systems, the complete text of the GNU General Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". debian/source/0000755000000000000000000000000012235215004010460 5ustar debian/source/format0000644000000000000000000000001412235215004011666 0ustar 3.0 (quilt) debian/node-almond.install0000644000000000000000000000006512235220210012741 0ustar almond.js usr/lib/nodejs almond.min.js usr/lib/nodejsdebian/README.source0000644000000000000000000000027712235215004011345 0ustar almond for Debian ----------------- debian/docs0000644000000000000000000000001212235215004010024 0ustar README.md debian/changelog0000644000000000000000000000127412265057612011052 0ustar almond (0.2.9-1) unstable; urgency=medium * upgraded to the last upstream version -- Georges Khaznadar Mon, 13 Jan 2014 22:49:33 +0100 almond (0.2.7-1) unstable; urgency=low * upgraded to the newest upstream release * impoved debian/watch -- Georges Khaznadar Sun, 01 Dec 2013 12:56:07 +0100 almond (0.2.6-2) unstable; urgency=low * added a paragraph in the description of the package. Closes: #728553 -- Georges Khaznadar Mon, 04 Nov 2013 17:22:42 +0100 almond (0.2.6-1) unstable; urgency=low * Initial release (Closes: #728553) -- Georges Khaznadar Sat, 02 Nov 2013 16:28:01 +0100 debian/rules0000755000000000000000000000106712235220326010247 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ override_dh_auto_build: uglifyjs -o almond.min.js almond.js override_dh_auto_clean: rm -f almond.min.js *~ dh_auto_clean