--- jsdebugger-0.5.orig/debian/control +++ jsdebugger-0.5/debian/control @@ -0,0 +1,19 @@ +Source: jsdebugger +Section: web +Priority: optional +Maintainer: Debian Javascript Maintainers +Uploaders: Marcelo Jorge Vieira (metal) , Steve Kemp +Build-Depends: debhelper (>= 7) +Standards-Version: 3.8.3 +Homepage: http://blog.jwchat.org/javascript-debug-logger/ +Vcs-Browser: http://git.debian.org/?p=pkg-javascript/jsdebugger.git +Vcs-Git: git://git.debian.org/git/pkg-javascript/jsdebugger.git +DM-Upload-Allowed: yes + +Package: libjs-debugger +Architecture: all +Depends: ${misc:Depends} +Recommends: javascript-common +Description: a console logger for debugging JavaScript + Is a simple JavaScript Debug Logger originally written for use with JWChat, + but it should work with any other JavaScript based web application too. --- jsdebugger-0.5.orig/debian/changelog +++ jsdebugger-0.5/debian/changelog @@ -0,0 +1,22 @@ +jsdebugger (0.5-3) unstable; urgency=low + + * Added watch file + * Updated Standards-Version to 3.8.3 + + -- Marcelo Jorge Vieira (metal) Sun, 03 Jan 2010 21:11:14 -0200 + +jsdebugger (0.5-2) unstable; urgency=low + + [ Marcelo Jorge Vieira (metal) ] + * Added DM-Upload-Allowed control field + + [ Daniel Baumann ] + * Removing myself from uploaders. + + -- Daniel Baumann Wed, 26 Aug 2009 18:06:39 +0200 + +jsdebugger (0.5-1) unstable; urgency=low + + * Initial release (Closes: #503003) + + -- Marcelo Jorge Vieira (metal) Thu, 21 Oct 2008 15:27:00 +0300 --- jsdebugger-0.5.orig/debian/compat +++ jsdebugger-0.5/debian/compat @@ -0,0 +1 @@ +7 --- jsdebugger-0.5.orig/debian/README.Debian +++ jsdebugger-0.5/debian/README.Debian @@ -0,0 +1,19 @@ +jsdebugger for Debian +-------------------------- + +In order to make use of jsdebugger in your html, include the following lines in +your html header: + + + + [...] + + if (typeof console == 'undefined' || !console) { + console = new Debugger(4,'HelloWorld'); + console.start(); + [...] + console.log('foo has value: ' + foo, 2); + } + + -- Marcelo Jorge Vieira (metal) Thu, 21 Oct 2008 15:28:00 +0300 --- jsdebugger-0.5.orig/debian/watch +++ jsdebugger-0.5/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://blog.jwchat.org/javascript-debug-logger/ \ + /download/Debugger-(.*).tar.gz --- jsdebugger-0.5.orig/debian/rules +++ jsdebugger-0.5/debian/rules @@ -0,0 +1,30 @@ +#!/usr/bin/make -f + +clean: + dh_testdir + dh_testroot + + dh_clean + +build: + +install: + +binary: binary-indep + +binary-arch: + +binary-indep: install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_install + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +.PHONY: clean build install binary binary-arch binary-indep --- jsdebugger-0.5.orig/debian/copyright +++ jsdebugger-0.5/debian/copyright @@ -0,0 +1,18 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat +Upstream-Name: JSDebugger +Upstream-Maintainer: Stefan Strigler +Upstream-Source: http://svn.jwchat.org/JSDebugger/trunk + +Files: * +Copyright: (c) 2003-2007 Stefan Strigler +License: GPL-2+ + +Files: debian/* +Copyright: (C) 2008 Marcelo Jorge Vieira (metal) +License: 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' --- jsdebugger-0.5.orig/debian/install +++ jsdebugger-0.5/debian/install @@ -0,0 +1,2 @@ +*.js /usr/share/javascript/debugger/ +*.html /usr/share/javascript/debugger/