r53820 - in /branches/upstream/libnet-subnets-perl/current: .perltidyrc Changes MANIFEST META.yml Makefile.PL examples/matching.pl lib/Net/Subnets.pm t/01use.t t/02pod.t t/03podcoverage.t t/04check.t t/05range.t t/06list.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Mar 7 01:54:13 UTC 2010


Author: jawnsy-guest
Date: Sun Mar  7 01:54:07 2010
New Revision: 53820

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=53820
Log:
[svn-upgrade] Integrating new upstream version, libnet-subnets-perl (1.01)

Removed:
    branches/upstream/libnet-subnets-perl/current/.perltidyrc
Modified:
    branches/upstream/libnet-subnets-perl/current/Changes
    branches/upstream/libnet-subnets-perl/current/MANIFEST
    branches/upstream/libnet-subnets-perl/current/META.yml
    branches/upstream/libnet-subnets-perl/current/Makefile.PL
    branches/upstream/libnet-subnets-perl/current/examples/matching.pl
    branches/upstream/libnet-subnets-perl/current/lib/Net/Subnets.pm
    branches/upstream/libnet-subnets-perl/current/t/01use.t
    branches/upstream/libnet-subnets-perl/current/t/02pod.t
    branches/upstream/libnet-subnets-perl/current/t/03podcoverage.t
    branches/upstream/libnet-subnets-perl/current/t/04check.t
    branches/upstream/libnet-subnets-perl/current/t/05range.t
    branches/upstream/libnet-subnets-perl/current/t/06list.t

Modified: branches/upstream/libnet-subnets-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-subnets-perl/current/Changes?rev=53820&op=diff
==============================================================================
--- branches/upstream/libnet-subnets-perl/current/Changes (original)
+++ branches/upstream/libnet-subnets-perl/current/Changes Sun Mar  7 01:54:07 2010
@@ -1,4 +1,7 @@
 Revision history for Perl extension Net::Subnets.
+
+1.01  2010-03-01 00:00:00
+        - Removed .perltidyrc.
 
 1.0   2009-12-10 00:00:00
         - Fixed everything.

Modified: branches/upstream/libnet-subnets-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-subnets-perl/current/MANIFEST?rev=53820&op=diff
==============================================================================
--- branches/upstream/libnet-subnets-perl/current/MANIFEST (original)
+++ branches/upstream/libnet-subnets-perl/current/MANIFEST Sun Mar  7 01:54:07 2010
@@ -1,4 +1,3 @@
-.perltidyrc
 Changes
 examples/matching.pl
 lib/Net/Subnets.pm

Modified: branches/upstream/libnet-subnets-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-subnets-perl/current/META.yml?rev=53820&op=diff
==============================================================================
--- branches/upstream/libnet-subnets-perl/current/META.yml (original)
+++ branches/upstream/libnet-subnets-perl/current/META.yml Sun Mar  7 01:54:07 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Net-Subnets
-version:            1.0
+version:            1.01
 abstract:           ~
 author:
     - Sebastian Riedel (sri at cpan.org)

Modified: branches/upstream/libnet-subnets-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-subnets-perl/current/Makefile.PL?rev=53820&op=diff
==============================================================================
--- branches/upstream/libnet-subnets-perl/current/Makefile.PL (original)
+++ branches/upstream/libnet-subnets-perl/current/Makefile.PL Sun Mar  7 01:54:07 2010
@@ -1,6 +1,6 @@
 #!/usr/bin/env perl
 
-# Copyright (C) 2003-2009, Sebastian Riedel.
+# Copyright (C) 2003-2010, Sebastian Riedel.
 
 use strict;
 use warnings;

Modified: branches/upstream/libnet-subnets-perl/current/examples/matching.pl
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-subnets-perl/current/examples/matching.pl?rev=53820&op=diff
==============================================================================
--- branches/upstream/libnet-subnets-perl/current/examples/matching.pl (original)
+++ branches/upstream/libnet-subnets-perl/current/examples/matching.pl Sun Mar  7 01:54:07 2010
@@ -1,6 +1,6 @@
 #!/usr/bin/env perl
 
-# Copyright (C) 2003-2009, Sebastian Riedel.
+# Copyright (C) 2003-2010, Sebastian Riedel.
 
 use Net::Subnets;
 

Modified: branches/upstream/libnet-subnets-perl/current/lib/Net/Subnets.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-subnets-perl/current/lib/Net/Subnets.pm?rev=53820&op=diff
==============================================================================
--- branches/upstream/libnet-subnets-perl/current/lib/Net/Subnets.pm (original)
+++ branches/upstream/libnet-subnets-perl/current/lib/Net/Subnets.pm Sun Mar  7 01:54:07 2010
@@ -1,11 +1,11 @@
-# Copyright (C) 2003-2009, Sebastian Riedel.
+# Copyright (C) 2003-2010, Sebastian Riedel.
 
 package Net::Subnets;
 
 use strict;
 use vars qw/$VERSION/;
 
-$VERSION = '1.0';
+$VERSION = '1.01';
 
 sub new {
     my $self = shift;
@@ -174,7 +174,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2003-2009, Sebastian Riedel.
+Copyright (C) 2003-2010, Sebastian Riedel.
 
 This program is free software, you can redistribute it and/or modify it under
 the terms of the Artistic License version 2.0.

Modified: branches/upstream/libnet-subnets-perl/current/t/01use.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-subnets-perl/current/t/01use.t?rev=53820&op=diff
==============================================================================
--- branches/upstream/libnet-subnets-perl/current/t/01use.t (original)
+++ branches/upstream/libnet-subnets-perl/current/t/01use.t Sun Mar  7 01:54:07 2010
@@ -1,6 +1,6 @@
 #!/usr/bin/env perl
 
-# Copyright (C) 2003-2009, Sebastian Riedel.
+# Copyright (C) 2003-2010, Sebastian Riedel.
 
 use strict;
 use warnings;

Modified: branches/upstream/libnet-subnets-perl/current/t/02pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-subnets-perl/current/t/02pod.t?rev=53820&op=diff
==============================================================================
--- branches/upstream/libnet-subnets-perl/current/t/02pod.t (original)
+++ branches/upstream/libnet-subnets-perl/current/t/02pod.t Sun Mar  7 01:54:07 2010
@@ -1,6 +1,6 @@
 #!/usr/bin/env perl
 
-# Copyright (C) 2005-2009, Sebastian Riedel.
+# Copyright (C) 2005-2010, Sebastian Riedel.
 
 use strict;
 use warnings;

Modified: branches/upstream/libnet-subnets-perl/current/t/03podcoverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-subnets-perl/current/t/03podcoverage.t?rev=53820&op=diff
==============================================================================
--- branches/upstream/libnet-subnets-perl/current/t/03podcoverage.t (original)
+++ branches/upstream/libnet-subnets-perl/current/t/03podcoverage.t Sun Mar  7 01:54:07 2010
@@ -1,6 +1,6 @@
 #!/usr/bin/env perl
 
-# Copyright (C) 2005-2009, Sebastian Riedel.
+# Copyright (C) 2005-2010, Sebastian Riedel.
 
 use strict;
 use warnings;

Modified: branches/upstream/libnet-subnets-perl/current/t/04check.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-subnets-perl/current/t/04check.t?rev=53820&op=diff
==============================================================================
--- branches/upstream/libnet-subnets-perl/current/t/04check.t (original)
+++ branches/upstream/libnet-subnets-perl/current/t/04check.t Sun Mar  7 01:54:07 2010
@@ -1,6 +1,6 @@
 #!/usr/bin/env perl
 
-# Copyright (C) 2003-2009, Sebastian Riedel.
+# Copyright (C) 2003-2010, Sebastian Riedel.
 
 use strict;
 use warnings;

Modified: branches/upstream/libnet-subnets-perl/current/t/05range.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-subnets-perl/current/t/05range.t?rev=53820&op=diff
==============================================================================
--- branches/upstream/libnet-subnets-perl/current/t/05range.t (original)
+++ branches/upstream/libnet-subnets-perl/current/t/05range.t Sun Mar  7 01:54:07 2010
@@ -1,6 +1,6 @@
 #!/usr/bin/env perl
 
-# Copyright (C) 2003-2009, Sebastian Riedel.
+# Copyright (C) 2003-2010, Sebastian Riedel.
 
 use strict;
 use warnings;

Modified: branches/upstream/libnet-subnets-perl/current/t/06list.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-subnets-perl/current/t/06list.t?rev=53820&op=diff
==============================================================================
--- branches/upstream/libnet-subnets-perl/current/t/06list.t (original)
+++ branches/upstream/libnet-subnets-perl/current/t/06list.t Sun Mar  7 01:54:07 2010
@@ -1,6 +1,6 @@
 #!/usr/bin/env perl
 
-# Copyright (C) 2003-2009, Sebastian Riedel.
+# Copyright (C) 2003-2010, Sebastian Riedel.
 
 use strict;
 use warnings;




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