--- strophejs-1.0.1.dfsg.orig/debian/control +++ strophejs-1.0.1.dfsg/debian/control @@ -0,0 +1,23 @@ +Source: strophejs +Section: web +Priority: optional +Maintainer: Debian XMPP Maintainers +Uploaders: Marcelo Jorge Vieira (metal) +Build-Depends: debhelper (>= 7.0.50~), yui-compressor +Standards-Version: 3.8.4 +Homepage: http://code.stanziq.com/strophe/ +Vcs-Git: git://git.debian.org/git/pkg-xmpp/strophejs.git +Vcs-Browser: http://git.debian.org/?p=pkg-xmpp/strophejs.git;a=summary + +Package: libjs-strophe +Architecture: all +Depends: ${misc:Depends}, libjs-jquery +Recommends: javascript-common +Description: Library for writing XMPP clients + Strophe provides the following features: + . + * XMPP compliant + * TLS support via SChannel, GNUTLS or OpenSSL + * SASL authentication using ANONYMOUS, DIGEST-MD5 or PLAIN methods + as well as legacy jabber authentication + * Customizable logging and memory management --- strophejs-1.0.1.dfsg.orig/debian/changelog +++ strophejs-1.0.1.dfsg/debian/changelog @@ -0,0 +1,11 @@ +strophejs (1.0.1.dfsg-2) unstable; urgency=low + + * Added watch file + + -- Marcelo Jorge Vieira (metal) Wed, 02 Jun 2010 14:41:16 -0300 + +strophejs (1.0.1.dfsg-1) unstable; urgency=low + + * Initial release (Closes: #521316) + + -- Marcelo Jorge Vieira (metal) Sat, 22 May 2010 12:14:11 -0300 --- strophejs-1.0.1.dfsg.orig/debian/compat +++ strophejs-1.0.1.dfsg/debian/compat @@ -0,0 +1 @@ +7 --- strophejs-1.0.1.dfsg.orig/debian/README.Debian +++ strophejs-1.0.1.dfsg/debian/README.Debian @@ -0,0 +1,13 @@ +strophejs for Debian +-------------------- + +In order to make use of strophejs in your html, include the following lines in +your html header: + + + + + + -- Marcelo Jorge Vieira Sun, 29 Mar 2009 14:20:11 -0300 --- strophejs-1.0.1.dfsg.orig/debian/watch +++ strophejs-1.0.1.dfsg/debian/watch @@ -0,0 +1,3 @@ +version=3 +opts=dversionmangle=s/\.dfsg$// \ +http://code.stanziq.com/strophe/strophejs/releases/strophejs-(.*).tar.gz --- strophejs-1.0.1.dfsg.orig/debian/rules +++ strophejs-1.0.1.dfsg/debian/rules @@ -0,0 +1,14 @@ +#!/usr/bin/make -f +%: + dh $@ + +override_dh_auto_build: + yui-compressor strophe.js -o strophe.min.js + for file in plugins/*; do \ + name=$${file%.js}; \ + yui-compressor $$name.js -o $$name.min.js; \ + done + +override_dh_auto_clean: + rm -f strophe.min.js + rm -f plugins/*.min.js --- strophejs-1.0.1.dfsg.orig/debian/copyright +++ strophejs-1.0.1.dfsg/debian/copyright @@ -0,0 +1,83 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat +Upstream-Name: strophejs +Upstream-Source: http://code.stanziq.com/cgit/strophe/strophejs/snapshot/ + +Files: * +Copyright: (c) 2006-2008, OGG, LLC +License: MIT + +Files: src/b64.js +Homepage: http://rumkin.com +Copyright: (c) Tyler Akins +License: Public Domain + +Files: src/md5.js +Homepage: http://pajhome.org.uk/crypt/md5 +Copyright: + (c) 1999-2002, Paul Johnston + Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet +License: BSD + +Files: src/sha1.js +Homepage: http://pajhome.org.uk/crypt/md5 +Copyright: + (c) 2000-2002, Paul Johnston + Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet +License: BSD + +Files: tests/testrunner.js (QUnit - jQuery unit testrunner) +Copyright: (c) 2008 John Resig, Jörn Zaefferer +License: MIT | GPL-2 + +Files: tests/testrunner.js (jsDump) +Copyright: (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com +License: BSD + +Files: plugins/strophe.pubsub.js +Homepage: http://www.naturaldocs.org/ +Copyright: (C) 2008, Stanziq Inc. +License: MIT + +Files: doc/javascript/main.js +Homepage: http://www.naturaldocs.org/ +Copyright: (C) 2003-2008 Greg Valure +License: GPL-2 + +Files: doc/styles/main.css +Homepage: http://www.naturaldocs.org/ +Copyright: (C) 2003-2008 Greg Valure +License: GPL-2 + +Files: debian/* +Copyright: (c) 2010, Marcelo Jorge Vieira +License: MIT | BSD | GPL-2 + +License: GPL-2 + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-2' + +License: BSD + On Debian GNU/Linux systems, the complete text of the BSD License + can be found in `/usr/share/common-licenses/BSD' + +License: MIT + + Copyright (c) 2006-2009 Collecta, Inc. + + 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. --- strophejs-1.0.1.dfsg.orig/debian/libjs-strophe.install +++ strophejs-1.0.1.dfsg/debian/libjs-strophe.install @@ -0,0 +1,5 @@ +*.js /usr/share/javascript/strophe/ +plugins /usr/share/javascript/strophe/ +contrib /usr/share/javascript/strophe/ + +doc/* /usr/share/doc/libjs-strophe/html/ --- strophejs-1.0.1.dfsg.orig/debian/libjs-strophe.examples +++ strophejs-1.0.1.dfsg/debian/libjs-strophe.examples @@ -0,0 +1 @@ +examples/*