~ubuntu-branches/ubuntu/saucy/libiptables-chainmgr-perl/saucy

« back to all changes in this revision

Viewing changes to Changes

  • Committer: Package Import Robot
  • Author(s): Fabrizio Regalli, Franck Joncourt, gregor herrmann, Ansgar Burchardt, Fabrizio Regalli
  • Date: 2012-02-27 16:54:38 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20120227165438-qnie2z6hrkqwadka
Tags: 0.9.9-1
[ Franck Joncourt ]
* Swith to dh 7
  Updated d.{control,compat,rules}
* Bumped up Standards-Version to 3.8.3:
  + Removed old versionned perl BD.
* Refreshed both d.control and d.copyright with my new email address.
* Switch to dpkg-source 3.0 (quilt) format.

[ gregor herrmann ]
* Set Standards-Version to 3.9.1; replace Conflicts with Breaks.

[ Ansgar Burchardt ]
* debian/control: Convert Vcs-* fields to Git.

[ Fabrizio Regalli ]
* Imported Upstream version 0.9.9
* d/copyright:
  + Updated using copyright-format 1.0
  + Changed Upstream-Maintainer in Upstream-Contact
  + Changed Upstream-Source in Source
  + Updated both licenses text
  + Added Martín Ferrari to debian/* copyright files
  + Changed "|" with "or" in license type
  + Added myself to debian/* copyright files
  + Updated year
* Updated d/compat to 8
* Updated debhelper to (>= 8)
* Bump Standards-Version to 3.9.3
* Added myself to Uploaders
* Changed Homepage in d/control using default search.cpan.org
* Added libnetaddr-ip-perl in B-D-I and Depends
* Removed {Breaks,Replaces} psad (<= 2.1.2-1) in d/control

[ gregor herrmann ]
* debian/watch: fix CPAN URL, and drop the other location.
* Drop (build) dependency on libnetwork-ipv4addr-perl.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Revision history for Perl extension IPTables::ChainMgr.
2
2
 
 
3
0.9.9 Sun Feb 26 14:03:24 2012
 
4
    - Updated to handle IPv6 via ip6tables.  All functions in the previous
 
5
      version of this module now work with ip6tables - just instantiate the
 
6
      IPTables::ChainMgr object with something like the following:
 
7
 
 
8
        my %opts = (
 
9
            'iptables' => $ip6tables_bin,
 
10
            'iptout'   => '/tmp/ip6tables.out',
 
11
            'ipterr'   => '/tmp/ip6tables.err',
 
12
            'debug'    => 0,
 
13
            'verbose'  => 0
 
14
        );
 
15
 
 
16
    - Switched to using NetAddr::IP instead of the old Net::IPv4Addr module.
 
17
      This greatly assisted in the ability to offer IPv6 support via ip6tables.
 
18
    - Bug fix to ensure proper handling of empty 'extended' hashes via the
 
19
      'keys' function.
 
20
    - (Miloslav Trmac) Bug fix for "Use of qw(...) as parentheses is
 
21
      deprecated" warnings as described here:
 
22
            https://bugzilla.redhat.com/show_bug.cgi?id=771781
 
23
    - Added a test suite at: t/basic_tests.pl
 
24
    - Migrated to git for source control:
 
25
            http://www.cipherdyne.org/cgi-bin/gitweb.cgi?p=IPTables-ChainMgr.git;a=summary
 
26
            https://github.com/mrash/IPTables-ChainMgr
 
27
 
3
28
0.9 Sat Feb 11 23:11:45 2008
4
29
    - Added Net::IPv4Addr prerequisite to Makefile.PL (patch submitted by
5
30
      Dominik Gehl).