--- stanford-pwdhash-1.6.orig/debian/changelog +++ stanford-pwdhash-1.6/debian/changelog @@ -0,0 +1,21 @@ +stanford-pwdhash (1.6-0ubuntu4) jaunty; urgency=low + + * No longer list firefox-2 as alternate dependency (LP: #272959). + + [ Alexander Sack ] + * no changes upload to keep archive and bzr in sync + + -- Benjamin Drung Mon, 15 Dec 2008 18:11:00 +0100 + +stanford-pwdhash (1.6-0ubuntu2) intrepid; urgency=low + + * Depend on abrowser as an alternative to the firefox metapackage + (LP: #272772). + + -- Colin Watson Tue, 14 Oct 2008 20:30:48 +0100 + +stanford-pwdhash (1.6-0ubuntu1) intrepid; urgency=low + + * Initial release (LP: #216892) + + -- Benjamin Drung Mon, 11 Aug 2008 14:59:07 +0200 --- stanford-pwdhash-1.6.orig/debian/copyright +++ stanford-pwdhash-1.6/debian/copyright @@ -0,0 +1,44 @@ +This package was debianized by Benjamin Drung on +Sun, 13 Apr 2008 14:25:06 +0200. + +It was downloaded from http://crypto.stanford.edu/PwdHash/ + +Upstream Authors: + + Collin Jackson + Blake Ross + Nick Miyake + Dan Boneh + John Mitchell + +Copyright: + + Copyright (C) 2005 Collin Jackson + +Copyright for chrome/stanford-pwdhash/content/md5.js: + + Version 2.1 Copyright (C) Paul Johnston 1999 - 2002 + +License: + + Redistribution and use in source and binary forms, with or without + modification, are permitted under the terms of the BSD License. + + THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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. + +On Debian systems, the complete text of the BSD License can be +found in `/usr/share/common-licenses/BSD'. + + +The Debian packaging is (C) 2008, Benjamin Drung and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- stanford-pwdhash-1.6.orig/debian/compat +++ stanford-pwdhash-1.6/debian/compat @@ -0,0 +1 @@ +5 --- stanford-pwdhash-1.6.orig/debian/control +++ stanford-pwdhash-1.6/debian/control @@ -0,0 +1,20 @@ +Source: stanford-pwdhash +Section: web +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Benjamin Drung +Build-Depends: cdbs, debhelper (>= 5), mozilla-devscripts (>= 0.5~), zip +Homepage: https://www.pwdhash.com/ +Standards-Version: 3.8.0 +Vcs-Bzr: https://code.launchpad.net/~ubuntu-dev/firefox-extensions/stanford-pwdhash.ubuntu + +Package: pwdhash +Architecture: all +Depends: firefox | abrowser | firefox-3.0 +Description: Web password hashing add-on for Firefox + This extension automatically generates per-site passwords if you prefix your + password with @@ or press F2 beforehand. Prevents JavaScript from reading your + password as it is typed. The same password will be generated at each subdomain: + a.example.com matches b.example.com, a.example.co.uk matches b.example.co.uk, + but a.co.uk and b.co.uk are different. Hashed passwords can also be generated + at https://www.pwdhash.com/ --- stanford-pwdhash-1.6.orig/debian/watch +++ stanford-pwdhash-1.6/debian/watch @@ -0,0 +1,22 @@ +# Example watch control file for uscan +# Rename this file to "watch" and then you can run the "uscan" command +# to check for upstream updates and more. +# See uscan(1) for format + +# Compulsory line, this is a version 3 file +version=3 + +# Uncomment to examine a Webpage +# +http://crypto.stanford.edu/PwdHash/ stanford-pwdhash-(.*)\.tar.gz + +# Uncomment to examine a Webserver directory +#http://www.example.com/pub/pwdhash-(.*)\.tar\.gz + +# Uncommment to examine a FTP server +#ftp://ftp.example.com/pub/pwdhash-(.*)\.tar\.gz debian uupdate + +# Uncomment to find new files on sourceforge, for devscripts >= 2.9 +# http://sf.net/pwdhash/pwdhash-(.*)\.tar\.gz + + --- stanford-pwdhash-1.6.orig/debian/rules +++ stanford-pwdhash-1.6/debian/rules @@ -0,0 +1,25 @@ +#!/usr/bin/make -f + +# name the package (as in debian/control) that will ship the extension +MOZ_EXTENSION_PKG := pwdhash + +# xpi.mk will auto detect the .xpi in your package. if you want to do it +# explicit, use this variable +#MOZ_XPI_FILE := yourextension.xpi + +# xpi.mk tries to auto detect the extension manager id (em:id) from the .xpis +# install.rdf file. There might be cases where this doesn't work. use the following +# variable to explicitly define an extension ID and disable auto detection +MOZ_XPI_EMID := {bb8d77b0-a845-4249-a205-ef7395587b69} + +# xpi.mk will run a build command before packaging an .xpi file. you can use this +# to produce an .xpi. if you define this, the clean rule will remove any .xpi file +# found in the top level directory +MOZ_XPI_BUILD_COMMAND = zip -r pwdhash.xpi chrome chrome.manifest install.js install.rdf LICENSE + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/mozilla-devscripts/xpi.mk + +# Add here any variable or target overrides you need. +