[SCM] Packaging Net::IPTrie in Debian branch, master, updated. 0134fc83b113b1ca28aaf0b639613d3a0f619381

Carlos Vicente cvicente at cpan.org
Sun Feb 12 17:04:43 UTC 2012


The following commit has been merged in the master branch:
commit c461954db33b42595ef7de523b5589e94748fc54
Author: Carlos Vicente <cvicente at cpan.org>
Date:   Sun Feb 12 08:22:58 2012 -0800

    Fixed various issues

diff --git a/debian/changelog b/debian/changelog
index cde099e..0f1ee58 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,24 +1,6 @@
-libnet-iptrie-perl (0.7-1) UNRELEASED; urgency=low
+libnet-iptrie-perl (0.7-1) unstable; urgency=low
 
-  TODO:
-  - d/changelog: close ITP bug [also detected by lintian]
-  - d/copyright: "same terms as Perl" translates into "Artistic | GPL-1+"
-  - d/control:
-    + libmodule-build-perl: --> "perl (>= 5.11.3) | libmodule-build-perl (>= 0.360000)"
-      and this belongs in B-D and not B-D-I (because it's used during clean)
-      [also detected by lintian]
-    + remove version from libnetaddr-ip-perl in B-D-I and Depends (even
-      oldstable has 4.007)
-    + B-D-I and Depends: remove version from libscalar-list-utils-perl (even
-      oldstable has 1:1.23) [and it would need to be 1:1.21 if we needed it]
-    + remove unversioned "perl" from Depends, gets added via
-      dh_perl/${perl:Depends}
-    + comsmetic: wrap long description, the line lengths are bit weird
-      [also detected by lintian]
-  - lintian:
-    W: libnet-iptrie-perl: manpage-has-bad-whatis-entry usr/share/man/man3/Net::IPTrie::Node.3pm.gz
-  - debian/source/format: please use "3.0 (quilt)" like we do for all packages
 
-  * Initial Release.
+  * Initial Release (Closes: #659380)
 
  -- Carlos Vicente <cvicente at cpan.org>  Fri, 10 Feb 2012 12:48:23 -0800
diff --git a/debian/control b/debian/control
index eed0d1e..1aee11e 100644
--- a/debian/control
+++ b/debian/control
@@ -3,11 +3,10 @@ Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Carlos Vicente <cvicente at cpan.org>
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 8)
-Build-Depends-Indep: libmodule-build-perl (>= 0.36),
-                     libnetaddr-ip-perl (>= 4.007),
-                     perl,
-                     perl (>= 5.10.1) | libscalar-list-utils-perl (>= 1.21)
+Build-Depends: debhelper (>= 8),
+	       perl (>= 5.11.3) | libmodule-build-perl (>= 0.360000),
+Build-Depends-Indep: libnetaddr-ip-perl
+                     libscalar-list-utils-perl
 Standards-Version: 3.9.2
 Vcs-Browser: http://git.debian.org/git/pkg-perl/packages/libnet-iptrie-perl.git
 Vcs-Git: git://git.debian.org/git/pkg-perl/packages/libnet-iptrie-perl.git
@@ -17,11 +16,10 @@ Package: libnet-iptrie-perl
 Architecture: all
 Depends: ${misc:Depends},
          ${perl:Depends},
-         libnetaddr-ip-perl (>= 4.007),
-         perl,
-         perl (>= 5.10.1) | libscalar-list-utils-perl (>= 1.21)
+         libnetaddr-ip-perl
+         perl (>= 5.11.3) | libscalar-list-utils-perl
 Description: Perl module for building IPv4 and IPv6 address space hierarchies
  Net::IPTrie uses a radix tree (or trie) to quickly build the hierarchy of a
- given address space (both IPv4 and IPv6). This allows the user to perform fast subnet or routing
- lookups. It is implemented exclusively in Perl.
+ given address space (both IPv4 and IPv6). This allows the user to perform 
+fast subnet or routing lookups. It is implemented exclusively in Perl.
 
diff --git a/debian/copyright b/debian/copyright
index 5f64cad..c252091 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -5,16 +5,22 @@ Source: http://search.cpan.org/dist/Net-IPTrie/
 
 Files: *
 Copyright: 2007-2010 Carlos Vicente <cvicente at cpan.org>
-License: Artistic
+License: Artistic | GPL-1+
 
 Files: debian/*
 Copyright: 2012, Carlos Vicente <cvicente at cpan.org>
-License: Artistic
+License: Artistic | 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 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 systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'
diff --git a/debian/patches/node_descr.patch b/debian/patches/node_descr.patch
new file mode 100644
index 0000000..d2d8fff
--- /dev/null
+++ b/debian/patches/node_descr.patch
@@ -0,0 +1,13 @@
+Index: Net-IPTrie-0.7/lib/Net/IPTrie/Node.pm
+===================================================================
+--- Net-IPTrie-0.7.orig/lib/Net/IPTrie/Node.pm	2012-02-12 08:12:41.922435409 -0800
++++ Net-IPTrie-0.7/lib/Net/IPTrie/Node.pm	2012-02-12 08:14:23.114433715 -0800
+@@ -25,7 +25,7 @@
+ 
+ =head1 NAME
+ 
+-Net::IPTrie::Node
++Net::IPTrie::Node - Implements attributes and behavior for nodes inside the trie
+ 
+ =head1 SYNOPSIS
+ 
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..5bbaf7b
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+node_descr.patch
diff --git a/debian/source/format b/debian/source/format
index d3827e7..163aaf8 100644
--- a/debian/source/format
+++ b/debian/source/format
@@ -1 +1 @@
-1.0
+3.0 (quilt)
diff --git a/lib/Net/IPTrie/Node.pm b/lib/Net/IPTrie/Node.pm
index f76c5cf..712d473 100644
--- a/lib/Net/IPTrie/Node.pm
+++ b/lib/Net/IPTrie/Node.pm
@@ -25,7 +25,7 @@ use base qw (Net::IPTrie::_Node);
 
 =head1 NAME
 
-Net::IPTrie::Node
+Net::IPTrie::Node - Implements attributes and behavior for nodes inside the trie
 
 =head1 SYNOPSIS
 

-- 
Packaging Net::IPTrie in Debian



More information about the Pkg-perl-cvs-commits mailing list