libhtml-defang-perl (1.02-1) debian-dir only changes

Summary

 debian/changelog                |    5 +++++
 debian/compat                   |    1 +
 debian/control                  |   24 ++++++++++++++++++++++++
 debian/copyright                |   28 ++++++++++++++++++++++++++++
 debian/libhtml-defang-perl.docs |    1 +
 debian/rules                    |    4 ++++
 debian/watch                    |    2 ++
 7 files changed, 65 insertions(+)

    
download this patch

Patch contents

--- libhtml-defang-perl-1.02.orig/debian/watch
+++ libhtml-defang-perl-1.02/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/HTML-Defang/   .*/HTML-Defang-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$
--- libhtml-defang-perl-1.02.orig/debian/libhtml-defang-perl.docs
+++ libhtml-defang-perl-1.02/debian/libhtml-defang-perl.docs
@@ -0,0 +1 @@
+README
--- libhtml-defang-perl-1.02.orig/debian/rules
+++ libhtml-defang-perl-1.02/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@
--- libhtml-defang-perl-1.02.orig/debian/compat
+++ libhtml-defang-perl-1.02/debian/compat
@@ -0,0 +1 @@
+7
--- libhtml-defang-perl-1.02.orig/debian/changelog
+++ libhtml-defang-perl-1.02/debian/changelog
@@ -0,0 +1,5 @@
+libhtml-defang-perl (1.02-1) unstable; urgency=low
+
+  * Initial Release (closes: Bug#575285).
+
+ -- Ivan Kohler <ivan-debian@420.am>  Wed, 24 Mar 2010 13:29:07 -0700
--- libhtml-defang-perl-1.02.orig/debian/copyright
+++ libhtml-defang-perl-1.02/debian/copyright
@@ -0,0 +1,28 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Kurian Jose Aerthail <cpan@kurianja.fastmail.fm>. Thanks to Rob Mueller <cpan@robm.fastmail.fm> for initial code, guidance and support and bug fixes.
+Source: http://search.cpan.org/dist/HTML-Defang/
+Name: HTML-Defang
+
+Files: *
+Copyright: 2003-2009, The FastMail Partnership
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2010, Ivan Kohler <ivan-debian@420.am>
+License: Artistic or GPL-1+
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian GNU/Linux systems, the complete text of the Artistic License
+ can be found in `/usr/share/common-licenses/Artistic'
+
+License: GPL-1+
+ This program 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 1, or (at your option)
+ any later version.
+ .
+ On Debian GNU/Linux systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'
--- libhtml-defang-perl-1.02.orig/debian/control
+++ libhtml-defang-perl-1.02/debian/control
@@ -0,0 +1,24 @@
+Source: libhtml-defang-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl
+Maintainer: Ivan Kohler <ivan-debian@420.am>
+Standards-Version: 3.8.4
+Homepage: http://search.cpan.org/dist/HTML-Defang/
+
+Package: libhtml-defang-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: Cleans HTML as well as CSS of scripting and other executable contents, and neutralises XSS attacks.
+ HTML::Defang accepts an input HTML and/or CSS string and removes any
+ executable code including scripting, embedded objects, applets, etc., and
+ neutralises any XSS attacks. A whitelist based approach is used which means
+ only HTML known to be safe is allowed through.
+ .
+ HTML::Defang uses a custom html tag parser. The parser has been designed and
+ tested to work with nasty real world html and to try and emulate as close as
+ possible what browsers actually do with strange looking constructs. The test
+ suite has been built based on examples from a range of sources such as
+ http://ha.ckers.org/xss.html and http://imfo.ru/csstest/css_hacks/import.php
+ to ensure that as many as possible XSS attack scenarios have been dealt with.