debian/0000755000000000000000000000000012147715216007174 5ustar debian/compat0000644000000000000000000000000211627241050010362 0ustar 7 debian/control0000644000000000000000000000127012117447333010576 0ustar Source: y-u-no-validate Section: web Priority: optional Maintainer: Jakub Wilk Build-Depends: debhelper (>= 7), mozilla-devscripts (>= 0.16~) Standards-Version: 3.9.4 Homepage: https://addons.mozilla.org/firefox/addon/y-u-no-validate/ Package: xul-ext-y-u-no-validate Architecture: all Depends: ${misc:Depends}, ${xpi:Depends} Recommends: ${xpi:Recommends} Provides: ${xpi:Provides} Enhances: ${xpi:Enhances} Breaks: ${xpi:Breaks} Description: browser extension to make security exceptions temporary by default y-u-no-validate is an Iceweasel extension that makes the "Permanently store this exception" checkbox in the "Add Security Exception" dialog unchecked by default. debian/patches/0000755000000000000000000000000012147635474010632 5ustar debian/patches/compatibility.diff0000644000000000000000000000151512147635440014330 0ustar Description: mark the package as compatible with all future versions of Iceweasel/Iceape Author: Jakub Wilk Forwarded: not-needed Last-Update: 2013-05-24 --- a/install.rdf +++ b/install.rdf @@ -13,7 +13,7 @@ {ec8030f7-c20a-464f-9b0e-13a3a9e97384} 3.5 - 11.0 + * @@ -22,7 +22,7 @@ {92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a} 2.1 - 2.8 + * debian/patches/series0000644000000000000000000000002311743632646012041 0ustar compatibility.diff debian/copyright0000644000000000000000000000376512147714705011144 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Y U no validate Upstream-Contact: Marcin Szewczyk Source: https://addons.mozilla.org/firefox/addon/y-u-no-validate/ Files: * Copyright: 2012, Marcin Szewczyk License: GPL-3+ Y U no validate 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 3 of the License, or (at your option) any later version. . Y U no validate 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 can find the GPL version 3 in /usr/share/common-licenses/GPL-3 on Debian systems. Files: debian/* Copyright: 2012-2013, Jakub Wilk License: Expat 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. debian/watch0000644000000000000000000000014112135052016010206 0ustar version=3 http://ftp.mozilla.org/pub/mozilla.org/addons/11368/ y_u_no_validate-([0-9.]+).*[.]xpi debian/changelog0000644000000000000000000000200712147715213011042 0ustar y-u-no-validate (2013052401-1) unstable; urgency=low * New upstream release. + Update compatibility.diff to mark the package as compatible with all future versions of Iceape. * Unpack .jar inside .orig.tar. * Update watch file. * Update copyright file. * Don't use dh_testdir; instead use makefile rules to ensure that debian/rules can be only run in the correct directory. * Move README to /usr/share/doc. -- Jakub Wilk Fri, 24 May 2013 18:51:22 +0200 y-u-no-validate (2012032501-2) unstable; urgency=low * Upload to unstable. * Remove “en-US/” from the homepage URL. * Bump standards version to 3.9.4 (no changes needed). -- Jakub Wilk Mon, 11 Mar 2013 22:38:54 +0100 y-u-no-validate (2012032501-1) experimental; urgency=low * Initial release (closes: #665717). * Add patch (compatibility.diff) to mark the package as compatible with all future versions of Iceweasel. -- Jakub Wilk Mon, 18 Jun 2012 19:57:25 +0200 debian/get-orig-source.sh0000644000000000000000000000115312147634504012543 0ustar #!/bin/sh set -e export TAR_OPTIONS='--owner root --group root --mode a+rX' export GZIP_OPTIONS='-9n' set -x destdir=$1 [ -z "$destdir" ] && destdir=$(shell pwd) tmpdir=$(mktemp -d) uscan --no-conf --verbose --force-download --destdir "$tmpdir" ( cd "$tmpdir" version=$(echo *.xpi | sed -r -e 's/.*-([0-9.]+)-.*/\1/') mkdir "y-u-no-validate-$version.orig" cd *.orig/ unzip ../*.xpi for jar in chrome/*.jar do unzip "${jar}" -d "${jar}!/" rm "$jar" done cd .. tar -czf "$destdir/y-u-no-validate_$version.orig.tar.gz" *.orig/ ) rm -rf "$tmpdir" # vim:ts=4 sw=4 et debian/clean0000644000000000000000000000002511627244567010206 0ustar debian/xul-ext-*.xpi debian/source/0000755000000000000000000000000011627240746010477 5ustar debian/source/format0000644000000000000000000000001411627240746011705 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000132512147715134010254 0ustar #!/usr/bin/make -f .PHONY: build build-arch build-indep build: build-arch build-indep build-arch: ; build-indep: debian/control xpi-pack . debian/xul-ext-y-u-no-validate.xpi .PHONY: binary binary-arch binary-indep binary: binary-arch binary-indep binary-arch: ; binary-indep: build-indep dh_testroot dh_prep install-xpi -x README -r debian/xul-ext-y-u-no-validate.xpi dh_xul-ext dh_installdocs README dh_installchangelogs dh_compress dh_fixperms dh_installdeb dh_gencontrol dh_md5sums dh_builddeb .PHONY: clean clean: debian/control dh_clean here = $(dir $(firstword $(MAKEFILE_LIST)))/.. .PHONY: get-orig-source get-orig-source: cd $(here) && sh debian/get-orig-source.sh $(CURDIR) # vim:ts=4 sw=4 noet